From 7e6d92c485cbffdb7bec9cd6d57c824bda8a5913 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 23 May 2024 21:45:18 +0200 Subject: [PATCH] tools: update ESLint to v9 and use flat config Closes: https://github.com/nodejs/node/issues/52567 PR-URL: https://github.com/nodejs/node/pull/52780 Fixes: https://github.com/nodejs/node/issues/52567 Reviewed-By: Moshe Atlow Reviewed-By: Yagiz Nizipli Reviewed-By: Antoine du Hamel --- .eslintignore | 15 - .eslintrc.js | 375 - .github/label-pr-config.yml | 2 +- .gitignore | 3 - Makefile | 4 +- benchmark/.eslintrc.yaml | 8 - benchmark/eslint.config_partial.mjs | 17 + doc/.eslintrc.yaml | 17 - doc/contributing/collaborator-guide.md | 2 +- doc/eslint.config_partial.mjs | 40 + eslint.config.mjs | 383 + lib/.eslintrc.yaml | 276 - lib/eslint.config_partial.mjs | 486 + lib/internal/util.js | 1 + test/.eslintrc.yaml | 94 - test/common/.eslintrc.yaml | 3 - test/common/index.js | 2 +- test/eslint.config_partial.mjs | 165 + test/parallel/test-assert.js | 1 + .../test-eslint-alphabetize-errors.js | 5 +- .../test-eslint-alphabetize-primordials.js | 5 +- ...test-eslint-async-iife-no-unused-result.js | 4 +- .../test-eslint-avoid-prototype-pollution.js | 47 +- .../test-eslint-duplicate-requires.js | 6 +- .../test-eslint-no-array-destructuring.js | 5 +- .../test-eslint-prefer-common-mustsucceed.js | 4 +- .../test-eslint-prefer-primordials.js | 5 +- test/parallel/test-eslint-prefer-proto.js | 4 +- .../test-eslint-prefer-util-format-errors.js | 2 +- .../test-eslint-require-common-first.js | 6 +- test/parallel/test-eslint-required-modules.js | 6 +- test/parallel/test-runner-mocking.js | 1 + test/wpt/.eslintrc.yaml | 3 - tools/.eslintrc.yaml | 14 - tools/dep_updaters/update-eslint.sh | 4 + .../eslint-rules/avoid-prototype-pollution.js | 6 +- tools/eslint-rules/no-duplicate-requires.js | 2 +- tools/eslint-rules/require-common-first.js | 2 +- tools/eslint-rules/required-modules.js | 2 +- tools/eslint.config_partial.mjs | 29 + tools/eslint.config_utils.mjs | 35 + tools/js2c.cc | 7 + tools/node_modules/eslint/bin/eslint.js | 9 +- .../node_modules/eslint/conf/config-schema.js | 93 - .../node_modules/eslint/conf/ecma-version.js | 16 + tools/node_modules/eslint/conf/globals.js | 1 + .../eslint/conf/rule-type-list.json | 4 +- tools/node_modules/eslint/lib/api.js | 18 +- .../eslint/lib/cli-engine/cli-engine.js | 21 +- .../eslint/lib/cli-engine/file-enumerator.js | 4 +- .../lib/cli-engine/formatters/checkstyle.js | 60 - .../lib/cli-engine/formatters/compact.js | 60 - .../formatters/formatters-meta.json | 30 +- .../lib/cli-engine/formatters/jslint-xml.js | 41 - .../eslint/lib/cli-engine/formatters/junit.js | 82 - .../eslint/lib/cli-engine/formatters/unix.js | 58 - .../lib/cli-engine/formatters/visualstudio.js | 63 - .../lib/cli-engine/lint-result-cache.js | 8 +- .../eslint/lib/cli-engine/load-rules.js | 4 +- .../eslint/lib/cli-engine/xml-escape.js | 34 - tools/node_modules/eslint/lib/cli.js | 157 +- .../eslint/lib/config/default-config.js | 3 + .../eslint/lib/config/flat-config-array.js | 134 +- .../eslint/lib/config/flat-config-helpers.js | 61 +- .../eslint/lib/config/flat-config-schema.js | 8 +- .../eslint/lib/config/rule-validator.js | 48 +- .../eslint/lib/eslint/eslint-helpers.js | 178 +- .../node_modules/eslint/lib/eslint/eslint.js | 1271 +- .../eslint/lib/eslint/flat-eslint.js | 1155 -- tools/node_modules/eslint/lib/eslint/index.js | 4 +- .../eslint/lib/eslint/legacy-eslint.js | 728 + .../lib/linter/apply-disable-directives.js | 90 +- .../code-path-analysis/code-path-analyzer.js | 3 +- .../linter/code-path-analysis/code-path.js | 62 +- .../linter/code-path-analysis/fork-context.js | 4 +- .../lib/linter/config-comment-parser.js | 19 +- tools/node_modules/eslint/lib/linter/index.js | 4 +- .../eslint/lib/linter/interpolate.js | 26 +- .../node_modules/eslint/lib/linter/linter.js | 637 +- .../eslint/lib/linter/report-translator.js | 8 +- tools/node_modules/eslint/lib/linter/rules.js | 21 +- .../eslint/lib/linter/source-code-fixer.js | 2 +- .../node_modules/eslint/lib/linter/timing.js | 24 +- tools/node_modules/eslint/lib/options.js | 38 +- .../lib/rule-tester/flat-rule-tester.js | 1131 -- .../eslint/lib/rule-tester/index.js | 4 +- .../eslint/lib/rule-tester/rule-tester.js | 775 +- .../eslint/lib/rules/array-bracket-newline.js | 2 +- .../eslint/lib/rules/array-bracket-spacing.js | 2 +- .../eslint/lib/rules/block-scoped-var.js | 2 +- .../eslint/lib/rules/callback-return.js | 4 +- .../eslint/lib/rules/camelcase.js | 8 +- .../eslint/lib/rules/capitalized-comments.js | 17 +- .../eslint/lib/rules/comma-dangle.js | 2 +- .../eslint/lib/rules/comma-style.js | 4 +- .../eslint/lib/rules/complexity.js | 15 +- .../eslint/lib/rules/constructor-super.js | 199 +- .../eslint/lib/rules/default-case.js | 2 +- .../node_modules/eslint/lib/rules/eol-last.js | 4 +- .../eslint/lib/rules/func-style.js | 46 +- .../lib/rules/function-paren-newline.js | 4 +- .../eslint/lib/rules/indent-legacy.js | 10 +- tools/node_modules/eslint/lib/rules/indent.js | 10 +- tools/node_modules/eslint/lib/rules/index.js | 3 +- .../eslint/lib/rules/key-spacing.js | 4 +- .../eslint/lib/rules/line-comment-position.js | 5 +- .../lib/rules/lines-around-directive.js | 4 +- .../eslint/lib/rules/max-depth.js | 2 +- .../node_modules/eslint/lib/rules/max-len.js | 6 +- .../eslint/lib/rules/max-lines.js | 6 +- .../eslint/lib/rules/max-nested-callbacks.js | 2 +- .../eslint/lib/rules/max-params.js | 2 +- .../eslint/lib/rules/max-statements.js | 2 +- .../lib/rules/multiline-comment-style.js | 18 +- .../node_modules/eslint/lib/rules/new-cap.js | 2 +- .../eslint/lib/rules/newline-after-var.js | 2 +- .../eslint/lib/rules/newline-before-return.js | 2 +- .../eslint/lib/rules/no-case-declarations.js | 14 +- .../rules/no-constant-binary-expression.js | 17 +- .../eslint/lib/rules/no-constant-condition.js | 25 +- .../eslint/lib/rules/no-constructor-return.js | 4 +- .../eslint/lib/rules/no-dupe-class-members.js | 4 +- .../eslint/lib/rules/no-else-return.js | 2 +- .../eslint/lib/rules/no-empty-function.js | 4 +- .../eslint/lib/rules/no-empty-static-block.js | 2 +- .../eslint/lib/rules/no-extend-native.js | 3 +- .../eslint/lib/rules/no-extra-boolean-cast.js | 106 +- .../eslint/lib/rules/no-extra-semi.js | 2 +- .../eslint/lib/rules/no-fallthrough.js | 57 +- .../eslint/lib/rules/no-implicit-coercion.js | 90 +- .../eslint/lib/rules/no-inner-declarations.js | 25 +- .../eslint/lib/rules/no-invalid-regexp.js | 2 +- .../eslint/lib/rules/no-invalid-this.js | 2 +- .../eslint/lib/rules/no-lone-blocks.js | 6 +- .../eslint/lib/rules/no-loss-of-precision.js | 2 +- .../rules/no-misleading-character-class.js | 381 +- .../lib/rules/no-mixed-spaces-and-tabs.js | 2 +- .../lib/rules/no-multiple-empty-lines.js | 2 +- .../lib/rules/no-new-native-nonconstructor.js | 2 +- .../eslint/lib/rules/no-new-symbol.js | 9 +- .../eslint/lib/rules/no-restricted-exports.js | 15 +- .../eslint/lib/rules/no-restricted-globals.js | 2 +- .../eslint/lib/rules/no-restricted-imports.js | 226 +- .../eslint/lib/rules/no-restricted-modules.js | 4 +- .../eslint/lib/rules/no-return-await.js | 2 +- .../eslint/lib/rules/no-sequences.js | 1 + .../eslint/lib/rules/no-this-before-super.js | 58 +- .../eslint/lib/rules/no-trailing-spaces.js | 5 +- .../eslint/lib/rules/no-unneeded-ternary.js | 2 +- .../lib/rules/no-unsafe-optional-chaining.js | 2 +- .../rules/no-unused-private-class-members.js | 2 +- .../eslint/lib/rules/no-unused-vars.js | 233 +- .../eslint/lib/rules/no-useless-assignment.js | 566 + .../lib/rules/no-useless-backreference.js | 2 +- .../lib/rules/no-useless-computed-key.js | 4 +- .../eslint/lib/rules/no-useless-return.js | 9 +- .../eslint/lib/rules/object-curly-spacing.js | 6 +- .../lib/rules/object-property-newline.js | 2 +- .../eslint/lib/rules/object-shorthand.js | 41 +- .../node_modules/eslint/lib/rules/one-var.js | 10 +- .../eslint/lib/rules/padded-blocks.js | 14 +- .../eslint/lib/rules/prefer-arrow-callback.js | 6 +- .../eslint/lib/rules/prefer-reflect.js | 2 +- .../eslint/lib/rules/prefer-regex-literals.js | 2 +- .../eslint/lib/rules/prefer-template.js | 2 +- tools/node_modules/eslint/lib/rules/radix.js | 4 +- .../eslint/lib/rules/require-jsdoc.js | 122 - .../eslint/lib/rules/semi-style.js | 2 +- .../eslint/lib/rules/sort-imports.js | 2 +- .../eslint/lib/rules/sort-keys.js | 2 +- .../eslint/lib/rules/sort-vars.js | 2 +- .../eslint/lib/rules/space-unary-ops.js | 2 +- tools/node_modules/eslint/lib/rules/strict.js | 2 +- .../eslint/lib/rules/use-isnan.js | 108 +- .../eslint/lib/rules/utils/ast-utils.js | 23 +- .../eslint/lib/rules/utils/char-source.js | 240 + .../lib/rules/utils/lazy-loading-rule-map.js | 2 +- .../lib/rules/utils/patterns/letters.js | 36 - .../eslint/lib/rules/utils/unicode/index.js | 13 +- .../eslint/lib/rules/valid-jsdoc.js | 516 - .../eslint/lib/rules/yield-star-spacing.js | 2 +- .../eslint/lib/shared/config-validator.js | 347 - .../eslint/lib/shared/deprecation-warnings.js | 58 - .../lib/shared/relative-module-resolver.js | 50 - .../eslint/lib/shared/runtime-info.js | 5 +- .../eslint/lib/shared/serialization.js | 55 + tools/node_modules/eslint/lib/shared/stats.js | 30 + .../eslint/lib/shared/string-utils.js | 20 +- tools/node_modules/eslint/lib/shared/types.js | 36 +- .../eslint/lib/source-code/index.js | 4 +- .../eslint/lib/source-code/source-code.js | 384 +- .../token-store/backward-token-cursor.js | 6 +- .../lib/source-code/token-store/cursors.js | 6 +- .../forward-token-comment-cursor.js | 6 +- .../token-store/forward-token-cursor.js | 6 +- .../lib/source-code/token-store/index.js | 6 +- .../eslint/lib/unsupported-api.js | 8 +- .../eslint/messages/config-file-missing.js | 16 + .../eslint/messages/eslintrc-incompat.js | 23 +- .../eslint/messages/no-config-found.js | 2 +- .../eslint/messages/plugin-conflict.js | 2 +- .../eslint/messages/plugin-invalid.js | 2 +- .../eslint/messages/plugin-missing.js | 2 +- .../eslint/node_modules/.bin/rimraf | 1 - .../node_modules/@babel/core/lib/index.js | 2 +- .../core/lib/vendor/import-meta-resolve.js | 2 +- .../node_modules/@babel/core/package.json | 20 +- .../@babel/eslint-parser/lib/client.cjs | 2 +- .../eslint-parser/lib/experimental-worker.cjs | 2 +- .../@babel/eslint-parser/lib/index.cjs | 2 +- .../@babel/eslint-parser/lib/parse.cjs | 2 +- .../@babel/eslint-parser/package.json | 8 +- .../@babel/eslint-parser/tsconfig.tsbuildinfo | 1 + .../@babel/generator/lib/printer.js | 4 +- .../@babel/generator/package.json | 6 +- .../helper-module-transforms/package.json | 14 +- .../@babel/helper-plugin-utils/package.json | 5 +- .../helper-plugin-utils/tsconfig.tsbuildinfo | 1 + .../@babel/helper-simple-access/lib/index.js | 2 +- .../@babel/helper-simple-access/package.json | 8 +- .../package.json | 4 +- .../helper-validator-identifier/package.json | 2 +- .../scripts/generate-identifier-regex.js | 8 +- .../@babel/helpers/lib/helpers-generated.js | 2 +- .../@babel/helpers/lib/helpers.js | 11 +- .../@babel/helpers/lib/helpers/usingCtx.js | 11 +- .../node_modules/@babel/helpers/package.json | 10 +- .../@babel/highlight/lib/index.js | 4 +- .../@babel/highlight/package.json | 4 +- .../node_modules/@babel/parser/lib/index.js | 262 +- .../node_modules/@babel/parser/package.json | 4 +- .../@babel/traverse/lib/path/family.js | 3 +- .../@babel/traverse/lib/path/index.js | 15 +- .../@babel/traverse/lib/path/introspection.js | 3 +- .../lib/path/lib/virtual-types-validator.js | 6 +- .../@babel/traverse/lib/path/modification.js | 13 +- .../@babel/traverse/lib/scope/index.js | 3 + .../node_modules/@babel/traverse/package.json | 14 +- .../@babel/types/lib/definitions/core.js | 4 +- .../@babel/types/lib/index.js.flow | 14 +- .../node_modules/@babel/types/package.json | 10 +- .../@es-joy/jsdoccomment/.babelrc.json | 20 - .../@es-joy/jsdoccomment/.ncurc.js | 8 - .../@es-joy/jsdoccomment/dist/index.cjs.cjs | 967 +- .../@es-joy/jsdoccomment/package.json | 63 +- .../jsdoccomment/src/commentHandler.js | 10 +- .../jsdoccomment/src/commentParserToESTree.js | 140 +- .../jsdoccomment/src/estreeToString.js | 230 +- .../@es-joy/jsdoccomment/src/index.js | 29 +- .../@es-joy/jsdoccomment/src/jsdoccomment.js | 42 +- .../@es-joy/jsdoccomment/src/parseComment.js | 8 +- .../jsdoccomment/src/parseInlineTags.js | 22 +- .../@es-joy/jsdoccomment/src/toCamelCase.js | 2 +- .../@es-joy/jsdoccomment/tsconfig-prod.json | 18 - .../node_modules/eslint-visitor-keys/LICENSE | 201 + .../dist/eslint-visitor-keys.cjs | 384 + .../dist/eslint-visitor-keys.d.cts | 27 + .../eslint-visitor-keys/lib/index.js | 65 + .../eslint-visitor-keys/lib/visitor-keys.js | 315 + .../eslint-visitor-keys/package.json | 74 + .../eslintrc/dist/eslintrc-universal.cjs | 75 +- .../@eslint/eslintrc/dist/eslintrc.cjs | 95 +- .../eslintrc/lib/config-array-factory.js | 6 +- .../eslintrc/lib/config-array/config-array.js | 19 +- .../@eslint/eslintrc/lib/index.js | 4 +- .../eslintrc/lib/shared/config-validator.js | 81 +- .../node_modules/globals/globals.json | 1998 +++ .../eslintrc/node_modules/globals/index.js | 2 + .../eslintrc/node_modules/globals}/license | 2 +- .../node_modules/globals/package.json | 58 + .../eslintrc/node_modules/globals/readme.md | 44 + .../@eslint/eslintrc/package.json | 10 +- .../node_modules/@eslint/js/package.json | 4 +- .../@eslint/js/src/configs/eslint-all.js | 12 +- .../js/src/configs/eslint-recommended.js | 17 +- .../@humanwhocodes/config-array/api.js | 130 +- .../@humanwhocodes/config-array/package.json | 8 +- .../retry/LICENSE} | 1 - .../@humanwhocodes/retry/dist/retrier.cjs | 284 + .../@humanwhocodes/retry/dist/retrier.d.cts | 28 + .../@humanwhocodes/retry/dist/retrier.js | 283 + .../@humanwhocodes/retry/dist/retrier.min.js | 1 + .../@humanwhocodes/retry/dist/retrier.mjs | 282 + .../@humanwhocodes/retry/package.json | 76 + .../eslint-plugin-js/dist/configs.js | 8 +- .../@stylistic/eslint-plugin-js/dist/index.js | 3 +- .../dist/line-comment-position.js | 97 + .../dist/multiline-comment-style.js | 290 + .../eslint-plugin-js/dist/spaced-comment.js | 15 +- .../@stylistic/eslint-plugin-js/dist/utils.js | 2 +- .../@stylistic/eslint-plugin-js/package.json | 16 +- .../node_modules/@types/eslint/package.json | 4 +- .../types}/LICENSE | 21 +- .../types/dist/generated/ast-spec.js | 202 + .../@typescript-eslint/types/dist/index.js | 24 + .../@typescript-eslint/types/dist/lib.js | 7 + .../types/dist/parser-options.js | 3 + .../types/dist/ts-estree.js | 28 + .../@typescript-eslint/types/package.json | 88 + .../@ungap/structured-clone/LICENSE | 15 - .../structured-clone/cjs/deserialize.js | 78 - .../@ungap/structured-clone/cjs/index.js | 27 - .../@ungap/structured-clone/cjs/json.js | 24 - .../@ungap/structured-clone/cjs/package.json | 1 - .../@ungap/structured-clone/cjs/serialize.js | 160 - .../@ungap/structured-clone/cjs/types.js | 22 - .../structured-clone/esm/deserialize.js | 79 - .../@ungap/structured-clone/esm/index.js | 25 - .../@ungap/structured-clone/esm/json.js | 21 - .../@ungap/structured-clone/esm/serialize.js | 161 - .../@ungap/structured-clone/esm/types.js | 11 - .../@ungap/structured-clone/package.json | 53 - .../structured-clone/structured-json.js | 1 - .../node_modules/caniuse-lite/data/agents.js | 2 +- .../caniuse-lite/data/browserVersions.js | 2 +- .../caniuse-lite/data/features/aac.js | 2 +- .../data/features/abortcontroller.js | 2 +- .../caniuse-lite/data/features/ac3-ec3.js | 2 +- .../data/features/accelerometer.js | 2 +- .../data/features/addeventlistener.js | 2 +- .../data/features/alternate-stylesheet.js | 2 +- .../data/features/ambient-light.js | 2 +- .../caniuse-lite/data/features/apng.js | 2 +- .../data/features/array-find-index.js | 2 +- .../caniuse-lite/data/features/array-find.js | 2 +- .../caniuse-lite/data/features/array-flat.js | 2 +- .../data/features/array-includes.js | 2 +- .../data/features/arrow-functions.js | 2 +- .../caniuse-lite/data/features/asmjs.js | 2 +- .../data/features/async-clipboard.js | 2 +- .../data/features/async-functions.js | 2 +- .../caniuse-lite/data/features/atob-btoa.js | 2 +- .../caniuse-lite/data/features/audio-api.js | 2 +- .../caniuse-lite/data/features/audio.js | 2 +- .../caniuse-lite/data/features/audiotracks.js | 2 +- .../caniuse-lite/data/features/autofocus.js | 2 +- .../caniuse-lite/data/features/auxclick.js | 2 +- .../caniuse-lite/data/features/av1.js | 2 +- .../caniuse-lite/data/features/avif.js | 2 +- .../data/features/background-attachment.js | 2 +- .../data/features/background-clip-text.js | 2 +- .../data/features/background-img-opts.js | 2 +- .../data/features/background-position-x-y.js | 2 +- .../features/background-repeat-round-space.js | 2 +- .../data/features/background-sync.js | 2 +- .../data/features/battery-status.js | 2 +- .../caniuse-lite/data/features/beacon.js | 2 +- .../data/features/beforeafterprint.js | 2 +- .../caniuse-lite/data/features/bigint.js | 2 +- .../caniuse-lite/data/features/blobbuilder.js | 2 +- .../caniuse-lite/data/features/bloburls.js | 2 +- .../data/features/border-image.js | 2 +- .../data/features/border-radius.js | 2 +- .../data/features/broadcastchannel.js | 2 +- .../caniuse-lite/data/features/brotli.js | 2 +- .../caniuse-lite/data/features/calc.js | 2 +- .../data/features/canvas-blending.js | 2 +- .../caniuse-lite/data/features/canvas-text.js | 2 +- .../caniuse-lite/data/features/canvas.js | 2 +- .../caniuse-lite/data/features/ch-unit.js | 2 +- .../data/features/chacha20-poly1305.js | 2 +- .../data/features/channel-messaging.js | 2 +- .../data/features/childnode-remove.js | 2 +- .../caniuse-lite/data/features/classlist.js | 2 +- .../client-hints-dpr-width-viewport.js | 2 +- .../caniuse-lite/data/features/clipboard.js | 2 +- .../caniuse-lite/data/features/colr-v1.js | 2 +- .../caniuse-lite/data/features/colr.js | 2 +- .../data/features/comparedocumentposition.js | 2 +- .../data/features/console-basic.js | 2 +- .../data/features/console-time.js | 2 +- .../caniuse-lite/data/features/const.js | 2 +- .../data/features/constraint-validation.js | 2 +- .../data/features/contenteditable.js | 2 +- .../data/features/contentsecuritypolicy.js | 2 +- .../data/features/contentsecuritypolicy2.js | 2 +- .../data/features/cookie-store-api.js | 2 +- .../caniuse-lite/data/features/cors.js | 2 +- .../data/features/createimagebitmap.js | 2 +- .../data/features/credential-management.js | 2 +- .../data/features/cryptography.js | 2 +- .../caniuse-lite/data/features/css-all.js | 2 +- .../data/features/css-anchor-positioning.js | 2 +- .../data/features/css-animation.js | 2 +- .../data/features/css-any-link.js | 2 +- .../data/features/css-appearance.js | 2 +- .../data/features/css-at-counter-style.js | 2 +- .../data/features/css-autofill.js | 2 +- .../data/features/css-backdrop-filter.js | 2 +- .../data/features/css-background-offsets.js | 2 +- .../data/features/css-backgroundblendmode.js | 2 +- .../data/features/css-boxdecorationbreak.js | 2 +- .../data/features/css-boxshadow.js | 2 +- .../caniuse-lite/data/features/css-canvas.js | 2 +- .../data/features/css-caret-color.js | 2 +- .../data/features/css-cascade-layers.js | 2 +- .../data/features/css-cascade-scope.js | 2 +- .../data/features/css-case-insensitive.js | 2 +- .../data/features/css-clip-path.js | 2 +- .../data/features/css-color-adjust.js | 2 +- .../data/features/css-color-function.js | 2 +- .../data/features/css-conic-gradients.js | 2 +- .../features/css-container-queries-style.js | 2 +- .../data/features/css-container-queries.js | 2 +- .../features/css-container-query-units.js | 2 +- .../data/features/css-containment.js | 2 +- .../data/features/css-content-visibility.js | 2 +- .../data/features/css-counters.js | 2 +- .../data/features/css-crisp-edges.js | 2 +- .../data/features/css-cross-fade.js | 2 +- .../data/features/css-default-pseudo.js | 2 +- .../data/features/css-descendant-gtgt.js | 2 +- .../data/features/css-deviceadaptation.js | 2 +- .../data/features/css-dir-pseudo.js | 2 +- .../data/features/css-display-contents.js | 2 +- .../data/features/css-element-function.js | 2 +- .../data/features/css-env-function.js | 2 +- .../data/features/css-exclusions.js | 2 +- .../data/features/css-featurequeries.js | 2 +- .../data/features/css-file-selector-button.js | 2 +- .../data/features/css-filter-function.js | 2 +- .../caniuse-lite/data/features/css-filters.js | 2 +- .../data/features/css-first-letter.js | 2 +- .../data/features/css-first-line.js | 2 +- .../caniuse-lite/data/features/css-fixed.js | 2 +- .../data/features/css-focus-visible.js | 2 +- .../data/features/css-focus-within.js | 2 +- .../data/features/css-font-palette.js | 2 +- .../features/css-font-rendering-controls.js | 2 +- .../data/features/css-font-stretch.js | 2 +- .../data/features/css-gencontent.js | 2 +- .../data/features/css-gradients.js | 2 +- .../data/features/css-grid-animation.js | 2 +- .../caniuse-lite/data/features/css-grid.js | 2 +- .../data/features/css-hanging-punctuation.js | 2 +- .../caniuse-lite/data/features/css-has.js | 2 +- .../caniuse-lite/data/features/css-hyphens.js | 2 +- .../data/features/css-image-orientation.js | 2 +- .../data/features/css-image-set.js | 2 +- .../data/features/css-in-out-of-range.js | 2 +- .../data/features/css-indeterminate-pseudo.js | 2 +- .../data/features/css-initial-letter.js | 2 +- .../data/features/css-initial-value.js | 2 +- .../caniuse-lite/data/features/css-lch-lab.js | 2 +- .../data/features/css-letter-spacing.js | 2 +- .../data/features/css-line-clamp.js | 2 +- .../data/features/css-logical-props.js | 2 +- .../data/features/css-marker-pseudo.js | 2 +- .../caniuse-lite/data/features/css-masks.js | 2 +- .../data/features/css-matches-pseudo.js | 2 +- .../data/features/css-math-functions.js | 2 +- .../data/features/css-media-interaction.js | 2 +- .../data/features/css-media-range-syntax.js | 2 +- .../data/features/css-media-resolution.js | 2 +- .../data/features/css-media-scripting.js | 2 +- .../data/features/css-mediaqueries.js | 2 +- .../data/features/css-mixblendmode.js | 2 +- .../data/features/css-module-scripts.js | 2 +- .../data/features/css-motion-paths.js | 2 +- .../data/features/css-namespaces.js | 2 +- .../caniuse-lite/data/features/css-nesting.js | 2 +- .../data/features/css-not-sel-list.js | 2 +- .../data/features/css-nth-child-of.js | 2 +- .../caniuse-lite/data/features/css-opacity.js | 2 +- .../data/features/css-optional-pseudo.js | 2 +- .../data/features/css-overflow-anchor.js | 2 +- .../data/features/css-overflow-overlay.js | 2 +- .../data/features/css-overflow.js | 2 +- .../data/features/css-overscroll-behavior.js | 2 +- .../data/features/css-page-break.js | 2 +- .../data/features/css-paged-media.js | 2 +- .../data/features/css-paint-api.js | 2 +- .../data/features/css-placeholder-shown.js | 2 +- .../data/features/css-placeholder.js | 2 +- .../data/features/css-print-color-adjust.js | 2 +- .../data/features/css-read-only-write.js | 2 +- .../data/features/css-rebeccapurple.js | 2 +- .../data/features/css-reflections.js | 2 +- .../caniuse-lite/data/features/css-regions.js | 2 +- .../data/features/css-relative-colors.js | 2 +- .../data/features/css-repeating-gradients.js | 2 +- .../caniuse-lite/data/features/css-resize.js | 2 +- .../data/features/css-revert-value.js | 2 +- .../data/features/css-rrggbbaa.js | 2 +- .../data/features/css-scroll-behavior.js | 2 +- .../data/features/css-scroll-timeline.js | 2 +- .../data/features/css-scrollbar.js | 2 +- .../caniuse-lite/data/features/css-sel2.js | 2 +- .../caniuse-lite/data/features/css-sel3.js | 2 +- .../data/features/css-selection.js | 2 +- .../caniuse-lite/data/features/css-shapes.js | 2 +- .../data/features/css-snappoints.js | 2 +- .../caniuse-lite/data/features/css-sticky.js | 2 +- .../caniuse-lite/data/features/css-subgrid.js | 2 +- .../data/features/css-supports-api.js | 2 +- .../caniuse-lite/data/features/css-table.js | 2 +- .../data/features/css-text-align-last.js | 2 +- .../data/features/css-text-box-trim.js | 2 +- .../data/features/css-text-indent.js | 2 +- .../data/features/css-text-justify.js | 2 +- .../data/features/css-text-orientation.js | 2 +- .../data/features/css-text-spacing.js | 2 +- .../data/features/css-text-wrap-balance.js | 2 +- .../data/features/css-textshadow.js | 2 +- .../data/features/css-touch-action.js | 2 +- .../data/features/css-transitions.js | 2 +- .../data/features/css-unicode-bidi.js | 2 +- .../data/features/css-unset-value.js | 2 +- .../data/features/css-variables.js | 2 +- .../data/features/css-when-else.js | 2 +- .../data/features/css-widows-orphans.js | 2 +- .../data/features/css-width-stretch.js | 2 +- .../data/features/css-writing-mode.js | 2 +- .../caniuse-lite/data/features/css-zoom.js | 2 +- .../caniuse-lite/data/features/css3-attr.js | 2 +- .../data/features/css3-boxsizing.js | 2 +- .../caniuse-lite/data/features/css3-colors.js | 2 +- .../data/features/css3-cursors-grab.js | 2 +- .../data/features/css3-cursors-newer.js | 2 +- .../data/features/css3-cursors.js | 2 +- .../data/features/css3-tabsize.js | 2 +- .../data/features/currentcolor.js | 2 +- .../data/features/custom-elements.js | 2 +- .../data/features/custom-elementsv1.js | 2 +- .../caniuse-lite/data/features/customevent.js | 2 +- .../caniuse-lite/data/features/datalist.js | 2 +- .../caniuse-lite/data/features/dataset.js | 2 +- .../caniuse-lite/data/features/datauri.js | 2 +- .../data/features/date-tolocaledatestring.js | 2 +- .../data/features/declarative-shadow-dom.js | 2 +- .../caniuse-lite/data/features/decorators.js | 2 +- .../caniuse-lite/data/features/details.js | 2 +- .../data/features/deviceorientation.js | 2 +- .../data/features/devicepixelratio.js | 2 +- .../caniuse-lite/data/features/dialog.js | 2 +- .../data/features/dispatchevent.js | 2 +- .../caniuse-lite/data/features/dnssec.js | 2 +- .../data/features/do-not-track.js | 2 +- .../data/features/document-currentscript.js | 2 +- .../data/features/document-evaluate-xpath.js | 2 +- .../data/features/document-execcommand.js | 2 +- .../data/features/document-policy.js | 2 +- .../features/document-scrollingelement.js | 2 +- .../data/features/documenthead.js | 2 +- .../data/features/dom-manip-convenience.js | 2 +- .../caniuse-lite/data/features/dom-range.js | 2 +- .../data/features/domcontentloaded.js | 2 +- .../caniuse-lite/data/features/dommatrix.js | 2 +- .../caniuse-lite/data/features/download.js | 2 +- .../caniuse-lite/data/features/dragndrop.js | 2 +- .../data/features/element-closest.js | 2 +- .../data/features/element-from-point.js | 2 +- .../data/features/element-scroll-methods.js | 2 +- .../caniuse-lite/data/features/eme.js | 2 +- .../caniuse-lite/data/features/eot.js | 2 +- .../caniuse-lite/data/features/es5.js | 2 +- .../caniuse-lite/data/features/es6-class.js | 2 +- .../data/features/es6-generators.js | 2 +- .../features/es6-module-dynamic-import.js | 2 +- .../caniuse-lite/data/features/es6-module.js | 2 +- .../caniuse-lite/data/features/es6-number.js | 2 +- .../data/features/es6-string-includes.js | 2 +- .../caniuse-lite/data/features/es6.js | 2 +- .../caniuse-lite/data/features/eventsource.js | 2 +- .../data/features/extended-system-fonts.js | 2 +- .../data/features/feature-policy.js | 2 +- .../caniuse-lite/data/features/fetch.js | 2 +- .../data/features/fieldset-disabled.js | 2 +- .../caniuse-lite/data/features/fileapi.js | 2 +- .../caniuse-lite/data/features/filereader.js | 2 +- .../data/features/filereadersync.js | 2 +- .../caniuse-lite/data/features/filesystem.js | 2 +- .../caniuse-lite/data/features/flac.js | 2 +- .../caniuse-lite/data/features/flexbox-gap.js | 2 +- .../caniuse-lite/data/features/flexbox.js | 2 +- .../caniuse-lite/data/features/flow-root.js | 2 +- .../data/features/focusin-focusout-events.js | 2 +- .../data/features/font-family-system-ui.js | 2 +- .../data/features/font-feature.js | 2 +- .../data/features/font-kerning.js | 2 +- .../data/features/font-loading.js | 2 +- .../data/features/font-size-adjust.js | 2 +- .../caniuse-lite/data/features/font-smooth.js | 2 +- .../data/features/font-unicode-range.js | 2 +- .../data/features/font-variant-alternates.js | 2 +- .../data/features/font-variant-numeric.js | 2 +- .../caniuse-lite/data/features/fontface.js | 2 +- .../data/features/form-attribute.js | 2 +- .../data/features/form-submit-attributes.js | 2 +- .../data/features/form-validation.js | 2 +- .../caniuse-lite/data/features/forms.js | 2 +- .../caniuse-lite/data/features/fullscreen.js | 2 +- .../caniuse-lite/data/features/gamepad.js | 2 +- .../caniuse-lite/data/features/geolocation.js | 2 +- .../data/features/getboundingclientrect.js | 2 +- .../data/features/getcomputedstyle.js | 2 +- .../data/features/getelementsbyclassname.js | 2 +- .../data/features/getrandomvalues.js | 2 +- .../caniuse-lite/data/features/gyroscope.js | 2 +- .../data/features/hardwareconcurrency.js | 2 +- .../caniuse-lite/data/features/hashchange.js | 2 +- .../caniuse-lite/data/features/heif.js | 2 +- .../caniuse-lite/data/features/hevc.js | 2 +- .../caniuse-lite/data/features/hidden.js | 2 +- .../data/features/high-resolution-time.js | 2 +- .../caniuse-lite/data/features/history.js | 2 +- .../data/features/html-media-capture.js | 2 +- .../data/features/html5semantic.js | 2 +- .../data/features/http-live-streaming.js | 2 +- .../caniuse-lite/data/features/http2.js | 2 +- .../caniuse-lite/data/features/http3.js | 2 +- .../data/features/iframe-sandbox.js | 2 +- .../data/features/iframe-seamless.js | 2 +- .../data/features/iframe-srcdoc.js | 2 +- .../data/features/imagecapture.js | 2 +- .../caniuse-lite/data/features/ime.js | 2 +- .../img-naturalwidth-naturalheight.js | 2 +- .../caniuse-lite/data/features/import-maps.js | 2 +- .../caniuse-lite/data/features/imports.js | 2 +- .../data/features/indeterminate-checkbox.js | 2 +- .../caniuse-lite/data/features/indexeddb.js | 2 +- .../caniuse-lite/data/features/indexeddb2.js | 2 +- .../data/features/inline-block.js | 2 +- .../caniuse-lite/data/features/innertext.js | 2 +- .../data/features/input-autocomplete-onoff.js | 2 +- .../caniuse-lite/data/features/input-color.js | 2 +- .../data/features/input-datetime.js | 2 +- .../data/features/input-email-tel-url.js | 2 +- .../caniuse-lite/data/features/input-event.js | 2 +- .../data/features/input-file-accept.js | 2 +- .../data/features/input-file-directory.js | 2 +- .../data/features/input-file-multiple.js | 2 +- .../data/features/input-inputmode.js | 2 +- .../data/features/input-minlength.js | 2 +- .../data/features/input-number.js | 2 +- .../data/features/input-pattern.js | 2 +- .../data/features/input-placeholder.js | 2 +- .../caniuse-lite/data/features/input-range.js | 2 +- .../data/features/input-search.js | 2 +- .../data/features/input-selection.js | 2 +- .../data/features/insert-adjacent.js | 2 +- .../data/features/insertadjacenthtml.js | 2 +- .../data/features/internationalization.js | 2 +- .../data/features/intersectionobserver-v2.js | 2 +- .../data/features/intersectionobserver.js | 2 +- .../data/features/intl-pluralrules.js | 2 +- .../data/features/intrinsic-width.js | 2 +- .../caniuse-lite/data/features/jpeg2000.js | 2 +- .../caniuse-lite/data/features/jpegxl.js | 2 +- .../caniuse-lite/data/features/jpegxr.js | 2 +- .../data/features/js-regexp-lookbehind.js | 2 +- .../caniuse-lite/data/features/json.js | 2 +- .../features/justify-content-space-evenly.js | 2 +- .../data/features/kerning-pairs-ligatures.js | 2 +- .../data/features/keyboardevent-charcode.js | 2 +- .../data/features/keyboardevent-code.js | 2 +- .../keyboardevent-getmodifierstate.js | 2 +- .../data/features/keyboardevent-key.js | 2 +- .../data/features/keyboardevent-location.js | 2 +- .../data/features/keyboardevent-which.js | 2 +- .../caniuse-lite/data/features/lazyload.js | 2 +- .../caniuse-lite/data/features/let.js | 2 +- .../data/features/link-icon-png.js | 2 +- .../data/features/link-icon-svg.js | 2 +- .../data/features/link-rel-dns-prefetch.js | 2 +- .../data/features/link-rel-modulepreload.js | 2 +- .../data/features/link-rel-preconnect.js | 2 +- .../data/features/link-rel-prefetch.js | 2 +- .../data/features/link-rel-preload.js | 2 +- .../data/features/link-rel-prerender.js | 2 +- .../data/features/loading-lazy-attr.js | 2 +- .../data/features/localecompare.js | 2 +- .../data/features/magnetometer.js | 2 +- .../data/features/matchesselector.js | 2 +- .../caniuse-lite/data/features/matchmedia.js | 2 +- .../caniuse-lite/data/features/mathml.js | 2 +- .../caniuse-lite/data/features/maxlength.js | 2 +- .../mdn-css-backdrop-pseudo-element.js | 2 +- .../mdn-css-unicode-bidi-isolate-override.js | 2 +- .../features/mdn-css-unicode-bidi-isolate.js | 2 +- .../mdn-css-unicode-bidi-plaintext.js | 2 +- .../features/mdn-text-decoration-color.js | 2 +- .../data/features/mdn-text-decoration-line.js | 2 +- .../features/mdn-text-decoration-shorthand.js | 2 +- .../features/mdn-text-decoration-style.js | 2 +- .../data/features/media-fragments.js | 2 +- .../data/features/mediacapture-fromelement.js | 2 +- .../data/features/mediarecorder.js | 2 +- .../caniuse-lite/data/features/mediasource.js | 2 +- .../caniuse-lite/data/features/menu.js | 2 +- .../data/features/meta-theme-color.js | 2 +- .../caniuse-lite/data/features/meter.js | 2 +- .../caniuse-lite/data/features/midi.js | 2 +- .../caniuse-lite/data/features/minmaxwh.js | 2 +- .../caniuse-lite/data/features/mp3.js | 2 +- .../caniuse-lite/data/features/mpeg-dash.js | 2 +- .../caniuse-lite/data/features/mpeg4.js | 2 +- .../data/features/multibackgrounds.js | 2 +- .../caniuse-lite/data/features/multicolumn.js | 2 +- .../data/features/mutation-events.js | 2 +- .../data/features/mutationobserver.js | 2 +- .../data/features/namevalue-storage.js | 2 +- .../data/features/native-filesystem-api.js | 2 +- .../caniuse-lite/data/features/nav-timing.js | 2 +- .../caniuse-lite/data/features/netinfo.js | 2 +- .../data/features/notifications.js | 2 +- .../data/features/object-entries.js | 2 +- .../caniuse-lite/data/features/object-fit.js | 2 +- .../data/features/object-observe.js | 2 +- .../data/features/object-values.js | 2 +- .../caniuse-lite/data/features/objectrtc.js | 2 +- .../data/features/offline-apps.js | 2 +- .../data/features/offscreencanvas.js | 2 +- .../caniuse-lite/data/features/ogg-vorbis.js | 2 +- .../caniuse-lite/data/features/ogv.js | 2 +- .../caniuse-lite/data/features/ol-reversed.js | 2 +- .../data/features/once-event-listener.js | 2 +- .../data/features/online-status.js | 2 +- .../caniuse-lite/data/features/opus.js | 2 +- .../data/features/orientation-sensor.js | 2 +- .../caniuse-lite/data/features/outline.js | 2 +- .../data/features/pad-start-end.js | 2 +- .../data/features/page-transition-events.js | 2 +- .../data/features/pagevisibility.js | 2 +- .../data/features/passive-event-listener.js | 2 +- .../caniuse-lite/data/features/passkeys.js | 2 +- .../data/features/passwordrules.js | 2 +- .../caniuse-lite/data/features/path2d.js | 2 +- .../data/features/payment-request.js | 2 +- .../caniuse-lite/data/features/pdf-viewer.js | 2 +- .../data/features/permissions-api.js | 2 +- .../data/features/permissions-policy.js | 2 +- .../data/features/picture-in-picture.js | 2 +- .../caniuse-lite/data/features/picture.js | 2 +- .../caniuse-lite/data/features/ping.js | 2 +- .../caniuse-lite/data/features/png-alpha.js | 2 +- .../data/features/pointer-events.js | 2 +- .../caniuse-lite/data/features/pointer.js | 2 +- .../caniuse-lite/data/features/pointerlock.js | 2 +- .../caniuse-lite/data/features/portals.js | 2 +- .../data/features/prefers-color-scheme.js | 2 +- .../data/features/prefers-reduced-motion.js | 2 +- .../caniuse-lite/data/features/progress.js | 2 +- .../data/features/promise-finally.js | 2 +- .../caniuse-lite/data/features/promises.js | 2 +- .../caniuse-lite/data/features/proximity.js | 2 +- .../caniuse-lite/data/features/proxy.js | 2 +- .../data/features/publickeypinning.js | 2 +- .../caniuse-lite/data/features/push-api.js | 2 +- .../data/features/queryselector.js | 2 +- .../data/features/readonly-attr.js | 2 +- .../data/features/referrer-policy.js | 2 +- .../data/features/registerprotocolhandler.js | 2 +- .../data/features/rel-noopener.js | 2 +- .../data/features/rel-noreferrer.js | 2 +- .../caniuse-lite/data/features/rellist.js | 2 +- .../caniuse-lite/data/features/rem.js | 2 +- .../data/features/requestanimationframe.js | 2 +- .../data/features/requestidlecallback.js | 2 +- .../data/features/resizeobserver.js | 2 +- .../data/features/resource-timing.js | 2 +- .../data/features/rest-parameters.js | 2 +- .../data/features/rtcpeerconnection.js | 2 +- .../caniuse-lite/data/features/ruby.js | 2 +- .../caniuse-lite/data/features/run-in.js | 2 +- .../features/same-site-cookie-attribute.js | 2 +- .../data/features/screen-orientation.js | 2 +- .../data/features/script-async.js | 2 +- .../data/features/script-defer.js | 2 +- .../data/features/scrollintoview.js | 2 +- .../data/features/scrollintoviewifneeded.js | 2 +- .../caniuse-lite/data/features/sdch.js | 2 +- .../data/features/selection-api.js | 2 +- .../caniuse-lite/data/features/selectlist.js | 2 +- .../data/features/server-timing.js | 2 +- .../data/features/serviceworkers.js | 2 +- .../data/features/setimmediate.js | 2 +- .../caniuse-lite/data/features/shadowdom.js | 2 +- .../caniuse-lite/data/features/shadowdomv1.js | 2 +- .../data/features/sharedarraybuffer.js | 2 +- .../data/features/sharedworkers.js | 2 +- .../caniuse-lite/data/features/sni.js | 2 +- .../caniuse-lite/data/features/spdy.js | 2 +- .../data/features/speech-recognition.js | 2 +- .../data/features/speech-synthesis.js | 2 +- .../data/features/spellcheck-attribute.js | 2 +- .../caniuse-lite/data/features/sql-storage.js | 2 +- .../caniuse-lite/data/features/srcset.js | 2 +- .../caniuse-lite/data/features/stream.js | 2 +- .../caniuse-lite/data/features/streams.js | 2 +- .../data/features/stricttransportsecurity.js | 2 +- .../data/features/style-scoped.js | 2 +- .../data/features/subresource-bundling.js | 2 +- .../data/features/subresource-integrity.js | 2 +- .../caniuse-lite/data/features/svg-css.js | 2 +- .../caniuse-lite/data/features/svg-filters.js | 2 +- .../caniuse-lite/data/features/svg-fonts.js | 2 +- .../data/features/svg-fragment.js | 2 +- .../caniuse-lite/data/features/svg-html.js | 2 +- .../caniuse-lite/data/features/svg-html5.js | 2 +- .../caniuse-lite/data/features/svg-img.js | 2 +- .../caniuse-lite/data/features/svg-smil.js | 2 +- .../caniuse-lite/data/features/svg.js | 2 +- .../caniuse-lite/data/features/sxg.js | 2 +- .../data/features/tabindex-attr.js | 2 +- .../data/features/template-literals.js | 2 +- .../caniuse-lite/data/features/template.js | 2 +- .../caniuse-lite/data/features/temporal.js | 2 +- .../caniuse-lite/data/features/testfeat.js | 2 +- .../data/features/text-decoration.js | 2 +- .../data/features/text-emphasis.js | 2 +- .../data/features/text-overflow.js | 2 +- .../data/features/text-size-adjust.js | 2 +- .../caniuse-lite/data/features/text-stroke.js | 2 +- .../caniuse-lite/data/features/textcontent.js | 2 +- .../caniuse-lite/data/features/textencoder.js | 2 +- .../caniuse-lite/data/features/tls1-1.js | 2 +- .../caniuse-lite/data/features/tls1-2.js | 2 +- .../caniuse-lite/data/features/tls1-3.js | 2 +- .../caniuse-lite/data/features/touch.js | 2 +- .../data/features/transforms2d.js | 2 +- .../data/features/transforms3d.js | 2 +- .../data/features/trusted-types.js | 2 +- .../caniuse-lite/data/features/ttf.js | 2 +- .../caniuse-lite/data/features/typedarrays.js | 2 +- .../caniuse-lite/data/features/u2f.js | 2 +- .../data/features/unhandledrejection.js | 2 +- .../data/features/upgradeinsecurerequests.js | 2 +- .../features/url-scroll-to-text-fragment.js | 2 +- .../caniuse-lite/data/features/url.js | 2 +- .../data/features/urlsearchparams.js | 2 +- .../caniuse-lite/data/features/use-strict.js | 2 +- .../data/features/user-select-none.js | 2 +- .../caniuse-lite/data/features/user-timing.js | 2 +- .../data/features/variable-fonts.js | 2 +- .../data/features/vector-effect.js | 2 +- .../caniuse-lite/data/features/vibration.js | 2 +- .../caniuse-lite/data/features/video.js | 2 +- .../caniuse-lite/data/features/videotracks.js | 2 +- .../data/features/view-transitions.js | 2 +- .../data/features/viewport-unit-variants.js | 2 +- .../data/features/viewport-units.js | 2 +- .../caniuse-lite/data/features/wai-aria.js | 2 +- .../caniuse-lite/data/features/wake-lock.js | 2 +- .../caniuse-lite/data/features/wasm-bigint.js | 2 +- .../data/features/wasm-bulk-memory.js | 2 +- .../data/features/wasm-extended-const.js | 2 +- .../caniuse-lite/data/features/wasm-gc.js | 2 +- .../data/features/wasm-multi-memory.js | 2 +- .../data/features/wasm-multi-value.js | 2 +- .../data/features/wasm-mutable-globals.js | 2 +- .../data/features/wasm-nontrapping-fptoint.js | 2 +- .../data/features/wasm-reference-types.js | 2 +- .../data/features/wasm-relaxed-simd.js | 2 +- .../data/features/wasm-signext.js | 2 +- .../caniuse-lite/data/features/wasm-simd.js | 2 +- .../data/features/wasm-tail-calls.js | 2 +- .../data/features/wasm-threads.js | 2 +- .../caniuse-lite/data/features/wasm.js | 2 +- .../caniuse-lite/data/features/wav.js | 2 +- .../caniuse-lite/data/features/wbr-element.js | 2 +- .../data/features/web-animation.js | 2 +- .../data/features/web-app-manifest.js | 2 +- .../data/features/web-bluetooth.js | 2 +- .../caniuse-lite/data/features/web-serial.js | 2 +- .../caniuse-lite/data/features/web-share.js | 2 +- .../caniuse-lite/data/features/webauthn.js | 2 +- .../caniuse-lite/data/features/webcodecs.js | 2 +- .../caniuse-lite/data/features/webgl.js | 2 +- .../caniuse-lite/data/features/webgl2.js | 2 +- .../caniuse-lite/data/features/webgpu.js | 2 +- .../caniuse-lite/data/features/webhid.js | 2 +- .../data/features/webkit-user-drag.js | 2 +- .../caniuse-lite/data/features/webm.js | 2 +- .../caniuse-lite/data/features/webnfc.js | 2 +- .../caniuse-lite/data/features/webp.js | 2 +- .../caniuse-lite/data/features/websockets.js | 2 +- .../data/features/webtransport.js | 2 +- .../caniuse-lite/data/features/webusb.js | 2 +- .../caniuse-lite/data/features/webvr.js | 2 +- .../caniuse-lite/data/features/webvtt.js | 2 +- .../caniuse-lite/data/features/webworkers.js | 2 +- .../caniuse-lite/data/features/webxr.js | 2 +- .../caniuse-lite/data/features/will-change.js | 2 +- .../caniuse-lite/data/features/woff.js | 2 +- .../caniuse-lite/data/features/woff2.js | 2 +- .../caniuse-lite/data/features/word-break.js | 2 +- .../caniuse-lite/data/features/wordwrap.js | 2 +- .../data/features/x-doc-messaging.js | 2 +- .../data/features/x-frame-options.js | 2 +- .../caniuse-lite/data/features/xhr2.js | 2 +- .../caniuse-lite/data/features/xhtml.js | 2 +- .../caniuse-lite/data/features/xhtmlsmil.js | 2 +- .../data/features/xml-serializer.js | 2 +- .../caniuse-lite/data/features/zstd.js | 2 +- .../caniuse-lite/data/regions/AD.js | 2 +- .../caniuse-lite/data/regions/AE.js | 2 +- .../caniuse-lite/data/regions/AF.js | 2 +- .../caniuse-lite/data/regions/AG.js | 2 +- .../caniuse-lite/data/regions/AI.js | 2 +- .../caniuse-lite/data/regions/AL.js | 2 +- .../caniuse-lite/data/regions/AM.js | 2 +- .../caniuse-lite/data/regions/AO.js | 2 +- .../caniuse-lite/data/regions/AR.js | 2 +- .../caniuse-lite/data/regions/AS.js | 2 +- .../caniuse-lite/data/regions/AT.js | 2 +- .../caniuse-lite/data/regions/AU.js | 2 +- .../caniuse-lite/data/regions/AW.js | 2 +- .../caniuse-lite/data/regions/AX.js | 2 +- .../caniuse-lite/data/regions/AZ.js | 2 +- .../caniuse-lite/data/regions/BA.js | 2 +- .../caniuse-lite/data/regions/BB.js | 2 +- .../caniuse-lite/data/regions/BD.js | 2 +- .../caniuse-lite/data/regions/BE.js | 2 +- .../caniuse-lite/data/regions/BF.js | 2 +- .../caniuse-lite/data/regions/BG.js | 2 +- .../caniuse-lite/data/regions/BH.js | 2 +- .../caniuse-lite/data/regions/BI.js | 2 +- .../caniuse-lite/data/regions/BJ.js | 2 +- .../caniuse-lite/data/regions/BM.js | 2 +- .../caniuse-lite/data/regions/BN.js | 2 +- .../caniuse-lite/data/regions/BO.js | 2 +- .../caniuse-lite/data/regions/BR.js | 2 +- .../caniuse-lite/data/regions/BS.js | 2 +- .../caniuse-lite/data/regions/BT.js | 2 +- .../caniuse-lite/data/regions/BW.js | 2 +- .../caniuse-lite/data/regions/BY.js | 2 +- .../caniuse-lite/data/regions/BZ.js | 2 +- .../caniuse-lite/data/regions/CA.js | 2 +- .../caniuse-lite/data/regions/CD.js | 2 +- .../caniuse-lite/data/regions/CF.js | 2 +- .../caniuse-lite/data/regions/CG.js | 2 +- .../caniuse-lite/data/regions/CH.js | 2 +- .../caniuse-lite/data/regions/CI.js | 2 +- .../caniuse-lite/data/regions/CK.js | 2 +- .../caniuse-lite/data/regions/CL.js | 2 +- .../caniuse-lite/data/regions/CM.js | 2 +- .../caniuse-lite/data/regions/CN.js | 2 +- .../caniuse-lite/data/regions/CO.js | 2 +- .../caniuse-lite/data/regions/CR.js | 2 +- .../caniuse-lite/data/regions/CU.js | 2 +- .../caniuse-lite/data/regions/CV.js | 2 +- .../caniuse-lite/data/regions/CX.js | 2 +- .../caniuse-lite/data/regions/CY.js | 2 +- .../caniuse-lite/data/regions/CZ.js | 2 +- .../caniuse-lite/data/regions/DE.js | 2 +- .../caniuse-lite/data/regions/DJ.js | 2 +- .../caniuse-lite/data/regions/DK.js | 2 +- .../caniuse-lite/data/regions/DM.js | 2 +- .../caniuse-lite/data/regions/DO.js | 2 +- .../caniuse-lite/data/regions/DZ.js | 2 +- .../caniuse-lite/data/regions/EC.js | 2 +- .../caniuse-lite/data/regions/EE.js | 2 +- .../caniuse-lite/data/regions/EG.js | 2 +- .../caniuse-lite/data/regions/ER.js | 2 +- .../caniuse-lite/data/regions/ES.js | 2 +- .../caniuse-lite/data/regions/ET.js | 2 +- .../caniuse-lite/data/regions/FI.js | 2 +- .../caniuse-lite/data/regions/FJ.js | 2 +- .../caniuse-lite/data/regions/FK.js | 2 +- .../caniuse-lite/data/regions/FM.js | 2 +- .../caniuse-lite/data/regions/FO.js | 2 +- .../caniuse-lite/data/regions/FR.js | 2 +- .../caniuse-lite/data/regions/GA.js | 2 +- .../caniuse-lite/data/regions/GB.js | 2 +- .../caniuse-lite/data/regions/GD.js | 2 +- .../caniuse-lite/data/regions/GE.js | 2 +- .../caniuse-lite/data/regions/GF.js | 2 +- .../caniuse-lite/data/regions/GG.js | 2 +- .../caniuse-lite/data/regions/GH.js | 2 +- .../caniuse-lite/data/regions/GI.js | 2 +- .../caniuse-lite/data/regions/GL.js | 2 +- .../caniuse-lite/data/regions/GM.js | 2 +- .../caniuse-lite/data/regions/GN.js | 2 +- .../caniuse-lite/data/regions/GP.js | 2 +- .../caniuse-lite/data/regions/GQ.js | 2 +- .../caniuse-lite/data/regions/GR.js | 2 +- .../caniuse-lite/data/regions/GT.js | 2 +- .../caniuse-lite/data/regions/GU.js | 2 +- .../caniuse-lite/data/regions/GW.js | 2 +- .../caniuse-lite/data/regions/GY.js | 2 +- .../caniuse-lite/data/regions/HK.js | 2 +- .../caniuse-lite/data/regions/HN.js | 2 +- .../caniuse-lite/data/regions/HR.js | 2 +- .../caniuse-lite/data/regions/HT.js | 2 +- .../caniuse-lite/data/regions/HU.js | 2 +- .../caniuse-lite/data/regions/ID.js | 2 +- .../caniuse-lite/data/regions/IE.js | 2 +- .../caniuse-lite/data/regions/IL.js | 2 +- .../caniuse-lite/data/regions/IM.js | 2 +- .../caniuse-lite/data/regions/IN.js | 2 +- .../caniuse-lite/data/regions/IQ.js | 2 +- .../caniuse-lite/data/regions/IR.js | 2 +- .../caniuse-lite/data/regions/IS.js | 2 +- .../caniuse-lite/data/regions/IT.js | 2 +- .../caniuse-lite/data/regions/JE.js | 2 +- .../caniuse-lite/data/regions/JM.js | 2 +- .../caniuse-lite/data/regions/JO.js | 2 +- .../caniuse-lite/data/regions/JP.js | 2 +- .../caniuse-lite/data/regions/KE.js | 2 +- .../caniuse-lite/data/regions/KG.js | 2 +- .../caniuse-lite/data/regions/KH.js | 2 +- .../caniuse-lite/data/regions/KI.js | 2 +- .../caniuse-lite/data/regions/KM.js | 2 +- .../caniuse-lite/data/regions/KN.js | 2 +- .../caniuse-lite/data/regions/KP.js | 2 +- .../caniuse-lite/data/regions/KR.js | 2 +- .../caniuse-lite/data/regions/KW.js | 2 +- .../caniuse-lite/data/regions/KY.js | 2 +- .../caniuse-lite/data/regions/KZ.js | 2 +- .../caniuse-lite/data/regions/LA.js | 2 +- .../caniuse-lite/data/regions/LB.js | 2 +- .../caniuse-lite/data/regions/LC.js | 2 +- .../caniuse-lite/data/regions/LI.js | 2 +- .../caniuse-lite/data/regions/LK.js | 2 +- .../caniuse-lite/data/regions/LR.js | 2 +- .../caniuse-lite/data/regions/LS.js | 2 +- .../caniuse-lite/data/regions/LT.js | 2 +- .../caniuse-lite/data/regions/LU.js | 2 +- .../caniuse-lite/data/regions/LV.js | 2 +- .../caniuse-lite/data/regions/LY.js | 2 +- .../caniuse-lite/data/regions/MA.js | 2 +- .../caniuse-lite/data/regions/MC.js | 2 +- .../caniuse-lite/data/regions/MD.js | 2 +- .../caniuse-lite/data/regions/ME.js | 2 +- .../caniuse-lite/data/regions/MG.js | 2 +- .../caniuse-lite/data/regions/MH.js | 2 +- .../caniuse-lite/data/regions/MK.js | 2 +- .../caniuse-lite/data/regions/ML.js | 2 +- .../caniuse-lite/data/regions/MM.js | 2 +- .../caniuse-lite/data/regions/MN.js | 2 +- .../caniuse-lite/data/regions/MO.js | 2 +- .../caniuse-lite/data/regions/MP.js | 2 +- .../caniuse-lite/data/regions/MQ.js | 2 +- .../caniuse-lite/data/regions/MR.js | 2 +- .../caniuse-lite/data/regions/MS.js | 2 +- .../caniuse-lite/data/regions/MT.js | 2 +- .../caniuse-lite/data/regions/MU.js | 2 +- .../caniuse-lite/data/regions/MV.js | 2 +- .../caniuse-lite/data/regions/MW.js | 2 +- .../caniuse-lite/data/regions/MX.js | 2 +- .../caniuse-lite/data/regions/MY.js | 2 +- .../caniuse-lite/data/regions/MZ.js | 2 +- .../caniuse-lite/data/regions/NA.js | 2 +- .../caniuse-lite/data/regions/NC.js | 2 +- .../caniuse-lite/data/regions/NE.js | 2 +- .../caniuse-lite/data/regions/NF.js | 2 +- .../caniuse-lite/data/regions/NG.js | 2 +- .../caniuse-lite/data/regions/NI.js | 2 +- .../caniuse-lite/data/regions/NL.js | 2 +- .../caniuse-lite/data/regions/NO.js | 2 +- .../caniuse-lite/data/regions/NP.js | 2 +- .../caniuse-lite/data/regions/NR.js | 2 +- .../caniuse-lite/data/regions/NU.js | 2 +- .../caniuse-lite/data/regions/NZ.js | 2 +- .../caniuse-lite/data/regions/OM.js | 2 +- .../caniuse-lite/data/regions/PA.js | 2 +- .../caniuse-lite/data/regions/PE.js | 2 +- .../caniuse-lite/data/regions/PF.js | 2 +- .../caniuse-lite/data/regions/PG.js | 2 +- .../caniuse-lite/data/regions/PH.js | 2 +- .../caniuse-lite/data/regions/PK.js | 2 +- .../caniuse-lite/data/regions/PL.js | 2 +- .../caniuse-lite/data/regions/PM.js | 2 +- .../caniuse-lite/data/regions/PN.js | 2 +- .../caniuse-lite/data/regions/PR.js | 2 +- .../caniuse-lite/data/regions/PS.js | 2 +- .../caniuse-lite/data/regions/PT.js | 2 +- .../caniuse-lite/data/regions/PW.js | 2 +- .../caniuse-lite/data/regions/PY.js | 2 +- .../caniuse-lite/data/regions/QA.js | 2 +- .../caniuse-lite/data/regions/RE.js | 2 +- .../caniuse-lite/data/regions/RO.js | 2 +- .../caniuse-lite/data/regions/RS.js | 2 +- .../caniuse-lite/data/regions/RU.js | 2 +- .../caniuse-lite/data/regions/RW.js | 2 +- .../caniuse-lite/data/regions/SA.js | 2 +- .../caniuse-lite/data/regions/SB.js | 2 +- .../caniuse-lite/data/regions/SC.js | 2 +- .../caniuse-lite/data/regions/SD.js | 2 +- .../caniuse-lite/data/regions/SE.js | 2 +- .../caniuse-lite/data/regions/SG.js | 2 +- .../caniuse-lite/data/regions/SH.js | 2 +- .../caniuse-lite/data/regions/SI.js | 2 +- .../caniuse-lite/data/regions/SK.js | 2 +- .../caniuse-lite/data/regions/SL.js | 2 +- .../caniuse-lite/data/regions/SM.js | 2 +- .../caniuse-lite/data/regions/SN.js | 2 +- .../caniuse-lite/data/regions/SO.js | 2 +- .../caniuse-lite/data/regions/SR.js | 2 +- .../caniuse-lite/data/regions/ST.js | 2 +- .../caniuse-lite/data/regions/SV.js | 2 +- .../caniuse-lite/data/regions/SY.js | 2 +- .../caniuse-lite/data/regions/SZ.js | 2 +- .../caniuse-lite/data/regions/TC.js | 2 +- .../caniuse-lite/data/regions/TD.js | 2 +- .../caniuse-lite/data/regions/TG.js | 2 +- .../caniuse-lite/data/regions/TH.js | 2 +- .../caniuse-lite/data/regions/TJ.js | 2 +- .../caniuse-lite/data/regions/TL.js | 2 +- .../caniuse-lite/data/regions/TM.js | 2 +- .../caniuse-lite/data/regions/TN.js | 2 +- .../caniuse-lite/data/regions/TO.js | 2 +- .../caniuse-lite/data/regions/TR.js | 2 +- .../caniuse-lite/data/regions/TT.js | 2 +- .../caniuse-lite/data/regions/TV.js | 2 +- .../caniuse-lite/data/regions/TW.js | 2 +- .../caniuse-lite/data/regions/TZ.js | 2 +- .../caniuse-lite/data/regions/UA.js | 2 +- .../caniuse-lite/data/regions/UG.js | 2 +- .../caniuse-lite/data/regions/US.js | 2 +- .../caniuse-lite/data/regions/UY.js | 2 +- .../caniuse-lite/data/regions/UZ.js | 2 +- .../caniuse-lite/data/regions/VA.js | 2 +- .../caniuse-lite/data/regions/VC.js | 2 +- .../caniuse-lite/data/regions/VE.js | 2 +- .../caniuse-lite/data/regions/VG.js | 2 +- .../caniuse-lite/data/regions/VI.js | 2 +- .../caniuse-lite/data/regions/VN.js | 2 +- .../caniuse-lite/data/regions/VU.js | 2 +- .../caniuse-lite/data/regions/WF.js | 2 +- .../caniuse-lite/data/regions/WS.js | 2 +- .../caniuse-lite/data/regions/YE.js | 2 +- .../caniuse-lite/data/regions/YT.js | 2 +- .../caniuse-lite/data/regions/ZA.js | 2 +- .../caniuse-lite/data/regions/ZM.js | 2 +- .../caniuse-lite/data/regions/ZW.js | 2 +- .../caniuse-lite/data/regions/alt-af.js | 2 +- .../caniuse-lite/data/regions/alt-an.js | 2 +- .../caniuse-lite/data/regions/alt-as.js | 2 +- .../caniuse-lite/data/regions/alt-eu.js | 2 +- .../caniuse-lite/data/regions/alt-na.js | 2 +- .../caniuse-lite/data/regions/alt-oc.js | 2 +- .../caniuse-lite/data/regions/alt-sa.js | 2 +- .../caniuse-lite/data/regions/alt-ww.js | 2 +- .../node_modules/caniuse-lite/package.json | 2 +- .../eslint/node_modules/doctrine/LICENSE | 177 - .../node_modules/doctrine/LICENSE.esprima | 19 - .../node_modules/doctrine/lib/doctrine.js | 898 -- .../eslint/node_modules/doctrine/lib/typed.js | 1305 -- .../node_modules/doctrine/lib/utility.js | 35 - .../eslint/node_modules/doctrine/package.json | 58 - .../electron-to-chromium/chromium-versions.js | 4 +- .../chromium-versions.json | 2 +- .../full-chromium-versions.js | 68 +- .../full-chromium-versions.json | 2 +- .../electron-to-chromium/full-versions.js | 48 +- .../electron-to-chromium/full-versions.json | 2 +- .../electron-to-chromium/package.json | 2 +- .../electron-to-chromium/versions.js | 4 +- .../electron-to-chromium/versions.json | 2 +- .../eslint-formatter-tap/index.js} | 69 +- .../license | 6 +- .../eslint-formatter-tap/package.json | 24 + .../eslint-formatter-tap/readme.md | 16 + .../eslint-plugin-jsdoc/dist/generateRule.cjs | 2 +- .../eslint-plugin-jsdoc/dist/iterateJsdoc.cjs | 2 +- .../dist/rules/checkExamples.cjs | 2 +- .../dist/rules/noUndefinedTypes.cjs | 2 +- .../dist/rules/requireReturnsCheck.cjs | 2 +- .../dist/rules/validTypes.cjs | 5 + .../dist/utils/hasReturnValue.cjs | 4 +- .../eslint-plugin-jsdoc/package.json | 50 +- .../eslint-plugin-jsdoc/src/iterateJsdoc.js | 2 +- .../src/rules/requireReturnsCheck.js | 6 +- .../src/rules/validTypes.js | 6 + .../src/utils/hasReturnValue.js | 5 +- .../eslint-plugin-markdown/lib/processor.js | 30 +- .../eslint-plugin-markdown/package.json | 10 +- .../eslint-scope/dist/eslint-scope.cjs | 142 +- .../node_modules/eslint-scope/lib/index.js | 3 - .../eslint-scope/lib/pattern-visitor.js | 7 +- .../eslint-scope/lib/referencer.js | 24 +- .../eslint-scope/lib/scope-manager.js | 10 +- .../node_modules/eslint-scope/lib/scope.js | 107 +- .../node_modules/eslint-scope/lib/version.js | 2 +- .../node_modules/eslint-scope/package.json | 40 +- .../eslint-visitor-keys/package.json | 4 +- .../node_modules/espree/dist/espree.cjs | 2 +- .../eslint/node_modules/espree/lib/version.js | 2 +- .../eslint/node_modules/espree/package.json | 38 +- .../node_modules/file-entry-cache/LICENSE | 2 +- .../file-entry-cache/changelog.md | 163 - .../file-entry-cache/package.json | 62 +- .../node_modules/flat-cache/changelog.md | 360 +- .../node_modules/flat-cache/package.json | 26 +- .../node_modules/flat-cache/src/cache.js | 48 +- .../eslint/node_modules/flat-cache/src/del.js | 39 +- .../node_modules/flat-cache/src/utils.js | 80 +- .../eslint/node_modules/fs.realpath/LICENSE | 43 - .../eslint/node_modules/fs.realpath/index.js | 66 - .../eslint/node_modules/fs.realpath/old.js | 303 - .../node_modules/fs.realpath/package.json | 26 - .../eslint/node_modules/glob/LICENSE | 21 - .../eslint/node_modules/glob/common.js | 238 - .../eslint/node_modules/glob/glob.js | 790 - .../eslint/node_modules/glob/package.json | 55 - .../eslint/node_modules/glob/sync.js | 486 - .../eslint/node_modules/globals/globals.json | 726 +- .../eslint/node_modules/globals/package.json | 62 +- .../node_modules/graphemer/lib/Graphemer.js | 11959 ---------------- .../graphemer/lib/GraphemerHelper.js | 169 - .../graphemer/lib/GraphemerIterator.js | 36 - .../node_modules/graphemer/lib/boundaries.js | 38 - .../node_modules/graphemer/lib/index.js | 7 - .../node_modules/graphemer/package.json | 54 - .../eslint/node_modules/inflight/LICENSE | 15 - .../eslint/node_modules/inflight/inflight.js | 54 - .../eslint/node_modules/inflight/package.json | 29 - .../eslint/node_modules/inherits/LICENSE | 16 - .../eslint/node_modules/inherits/inherits.js | 9 - .../node_modules/inherits/inherits_browser.js | 27 - .../eslint/node_modules/inherits/package.json | 29 - .../eslint/node_modules/once/LICENSE | 15 - .../eslint/node_modules/once/once.js | 42 - .../eslint/node_modules/once/package.json | 33 - .../node_modules/optionator/lib/help.js | 2 +- .../node_modules/optionator/lib/index.js | 2 +- .../node_modules/optionator/package.json | 6 +- .../node_modules/path-is-absolute/index.js | 20 - .../path-is-absolute/package.json | 43 - .../node_modules/path-is-absolute/readme.md | 59 - .../node_modules/picocolors/package.json | 2 +- .../node_modules/picocolors/picocolors.js | 85 +- .../eslint/node_modules/rimraf/LICENSE | 15 - .../eslint/node_modules/rimraf/bin.js | 68 - .../eslint/node_modules/rimraf/package.json | 32 - .../eslint/node_modules/rimraf/rimraf.js | 360 - .../eslint/node_modules/semver/bin/semver.js | 19 +- .../node_modules/semver/classes/range.js | 7 +- .../node_modules/semver/classes/semver.js | 2 +- .../node_modules/semver/internal/lrucache.js | 40 + .../semver/node_modules/lru-cache/LICENSE | 15 - .../semver/node_modules/lru-cache/index.js | 334 - .../node_modules/lru-cache/package.json | 34 - .../semver/node_modules/yallist/LICENSE | 15 - .../semver/node_modules/yallist/iterator.js | 8 - .../semver/node_modules/yallist/package.json | 29 - .../semver/node_modules/yallist/yallist.js | 426 - .../eslint/node_modules/semver/package.json | 15 +- .../node_modules/type-fest/package.json | 58 - .../eslint/node_modules/type-fest/readme.md | 658 - .../update-browserslist-db/.devcontainer.json | 42 + .../check-npm-version.js | 3 +- .../update-browserslist-db/index.js | 53 +- .../update-browserslist-db/package.json | 6 +- .../update-browserslist-db/utils.js | 7 +- .../{@aashutoshrathi => }/word-wrap/LICENSE | 0 .../{@aashutoshrathi => }/word-wrap/index.js | 13 +- .../word-wrap/package.json | 16 +- .../eslint/node_modules/wrappy/LICENSE | 15 - .../eslint/node_modules/wrappy/package.json | 29 - .../eslint/node_modules/wrappy/wrappy.js | 33 - tools/node_modules/eslint/package.json | 58 +- vcbuild.bat | 2 +- 1255 files changed, 16012 insertions(+), 29586 deletions(-) delete mode 100644 .eslintignore delete mode 100644 .eslintrc.js delete mode 100644 benchmark/.eslintrc.yaml create mode 100644 benchmark/eslint.config_partial.mjs delete mode 100644 doc/.eslintrc.yaml create mode 100644 doc/eslint.config_partial.mjs create mode 100644 eslint.config.mjs delete mode 100644 lib/.eslintrc.yaml create mode 100644 lib/eslint.config_partial.mjs delete mode 100644 test/.eslintrc.yaml delete mode 100644 test/common/.eslintrc.yaml create mode 100644 test/eslint.config_partial.mjs delete mode 100644 test/wpt/.eslintrc.yaml delete mode 100644 tools/.eslintrc.yaml create mode 100644 tools/eslint.config_partial.mjs create mode 100644 tools/eslint.config_utils.mjs delete mode 100644 tools/node_modules/eslint/conf/config-schema.js create mode 100644 tools/node_modules/eslint/conf/ecma-version.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/formatters/compact.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/formatters/junit.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/formatters/unix.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js delete mode 100644 tools/node_modules/eslint/lib/cli-engine/xml-escape.js delete mode 100644 tools/node_modules/eslint/lib/eslint/flat-eslint.js create mode 100644 tools/node_modules/eslint/lib/eslint/legacy-eslint.js delete mode 100644 tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js create mode 100644 tools/node_modules/eslint/lib/rules/no-useless-assignment.js delete mode 100644 tools/node_modules/eslint/lib/rules/require-jsdoc.js create mode 100644 tools/node_modules/eslint/lib/rules/utils/char-source.js delete mode 100644 tools/node_modules/eslint/lib/rules/utils/patterns/letters.js delete mode 100644 tools/node_modules/eslint/lib/rules/valid-jsdoc.js delete mode 100644 tools/node_modules/eslint/lib/shared/config-validator.js delete mode 100644 tools/node_modules/eslint/lib/shared/deprecation-warnings.js delete mode 100644 tools/node_modules/eslint/lib/shared/relative-module-resolver.js create mode 100644 tools/node_modules/eslint/lib/shared/serialization.js create mode 100644 tools/node_modules/eslint/lib/shared/stats.js create mode 100644 tools/node_modules/eslint/messages/config-file-missing.js delete mode 120000 tools/node_modules/eslint/node_modules/.bin/rimraf create mode 100644 tools/node_modules/eslint/node_modules/@babel/eslint-parser/tsconfig.tsbuildinfo create mode 100644 tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/tsconfig.tsbuildinfo delete mode 100644 tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.babelrc.json delete mode 100644 tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.ncurc.js delete mode 100644 tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/tsconfig-prod.json create mode 100644 tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE create mode 100644 tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs create mode 100644 tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts create mode 100644 tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js create mode 100644 tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js create mode 100644 tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json create mode 100644 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/globals.json create mode 100644 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/index.js rename tools/node_modules/eslint/node_modules/{type-fest => @eslint/eslintrc/node_modules/globals}/license (92%) create mode 100644 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/package.json create mode 100644 tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/readme.md rename tools/node_modules/eslint/node_modules/{doctrine/LICENSE.closure-compiler => @humanwhocodes/retry/LICENSE} (99%) create mode 100644 tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.cjs create mode 100644 tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.d.cts create mode 100644 tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.js create mode 100644 tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.min.js create mode 100644 tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.mjs create mode 100644 tools/node_modules/eslint/node_modules/@humanwhocodes/retry/package.json create mode 100644 tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/line-comment-position.js create mode 100644 tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/multiline-comment-style.js rename tools/node_modules/eslint/node_modules/{graphemer => @typescript-eslint/types}/LICENSE (51%) create mode 100644 tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js create mode 100644 tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/index.js create mode 100644 tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/lib.js create mode 100644 tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/parser-options.js create mode 100644 tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/ts-estree.js create mode 100644 tools/node_modules/eslint/node_modules/@typescript-eslint/types/package.json delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json delete mode 100644 tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js delete mode 100644 tools/node_modules/eslint/node_modules/doctrine/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/doctrine/LICENSE.esprima delete mode 100644 tools/node_modules/eslint/node_modules/doctrine/lib/doctrine.js delete mode 100644 tools/node_modules/eslint/node_modules/doctrine/lib/typed.js delete mode 100644 tools/node_modules/eslint/node_modules/doctrine/lib/utility.js delete mode 100644 tools/node_modules/eslint/node_modules/doctrine/package.json rename tools/node_modules/eslint/{lib/cli-engine/formatters/tap.js => node_modules/eslint-formatter-tap/index.js} (59%) rename tools/node_modules/eslint/node_modules/{path-is-absolute => eslint-formatter-tap}/license (91%) create mode 100644 tools/node_modules/eslint/node_modules/eslint-formatter-tap/package.json create mode 100644 tools/node_modules/eslint/node_modules/eslint-formatter-tap/readme.md delete mode 100644 tools/node_modules/eslint/node_modules/file-entry-cache/changelog.md delete mode 100644 tools/node_modules/eslint/node_modules/fs.realpath/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/fs.realpath/index.js delete mode 100644 tools/node_modules/eslint/node_modules/fs.realpath/old.js delete mode 100644 tools/node_modules/eslint/node_modules/fs.realpath/package.json delete mode 100644 tools/node_modules/eslint/node_modules/glob/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/glob/common.js delete mode 100644 tools/node_modules/eslint/node_modules/glob/glob.js delete mode 100644 tools/node_modules/eslint/node_modules/glob/package.json delete mode 100644 tools/node_modules/eslint/node_modules/glob/sync.js delete mode 100644 tools/node_modules/eslint/node_modules/graphemer/lib/Graphemer.js delete mode 100644 tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerHelper.js delete mode 100644 tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerIterator.js delete mode 100644 tools/node_modules/eslint/node_modules/graphemer/lib/boundaries.js delete mode 100644 tools/node_modules/eslint/node_modules/graphemer/lib/index.js delete mode 100644 tools/node_modules/eslint/node_modules/graphemer/package.json delete mode 100644 tools/node_modules/eslint/node_modules/inflight/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/inflight/inflight.js delete mode 100644 tools/node_modules/eslint/node_modules/inflight/package.json delete mode 100644 tools/node_modules/eslint/node_modules/inherits/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/inherits/inherits.js delete mode 100644 tools/node_modules/eslint/node_modules/inherits/inherits_browser.js delete mode 100644 tools/node_modules/eslint/node_modules/inherits/package.json delete mode 100644 tools/node_modules/eslint/node_modules/once/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/once/once.js delete mode 100644 tools/node_modules/eslint/node_modules/once/package.json delete mode 100644 tools/node_modules/eslint/node_modules/path-is-absolute/index.js delete mode 100644 tools/node_modules/eslint/node_modules/path-is-absolute/package.json delete mode 100644 tools/node_modules/eslint/node_modules/path-is-absolute/readme.md delete mode 100644 tools/node_modules/eslint/node_modules/rimraf/LICENSE delete mode 100755 tools/node_modules/eslint/node_modules/rimraf/bin.js delete mode 100644 tools/node_modules/eslint/node_modules/rimraf/package.json delete mode 100644 tools/node_modules/eslint/node_modules/rimraf/rimraf.js create mode 100644 tools/node_modules/eslint/node_modules/semver/internal/lrucache.js delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/index.js delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/package.json delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/yallist/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/yallist/iterator.js delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/yallist/package.json delete mode 100644 tools/node_modules/eslint/node_modules/semver/node_modules/yallist/yallist.js delete mode 100644 tools/node_modules/eslint/node_modules/type-fest/package.json delete mode 100644 tools/node_modules/eslint/node_modules/type-fest/readme.md create mode 100644 tools/node_modules/eslint/node_modules/update-browserslist-db/.devcontainer.json rename tools/node_modules/eslint/node_modules/{@aashutoshrathi => }/word-wrap/LICENSE (100%) rename tools/node_modules/eslint/node_modules/{@aashutoshrathi => }/word-wrap/index.js (79%) rename tools/node_modules/eslint/node_modules/{@aashutoshrathi => }/word-wrap/package.json (80%) delete mode 100644 tools/node_modules/eslint/node_modules/wrappy/LICENSE delete mode 100644 tools/node_modules/eslint/node_modules/wrappy/package.json delete mode 100644 tools/node_modules/eslint/node_modules/wrappy/wrappy.js diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 64f34660d87a8f..00000000000000 --- a/.eslintignore +++ /dev/null @@ -1,15 +0,0 @@ -node_modules -lib/punycode.js -test/addons/??_* -test/fixtures -test/message/esm_display_syntax_error.mjs -tools/icu -tools/lint-md/lint-md.mjs -tools/github_reporter -benchmark/tmp -benchmark/fixtures -doc/**/*.js -doc/changelogs/CHANGELOG_v1*.md -!doc/changelogs/CHANGELOG_v18.md -!doc/api_assets/*.js -!.eslintrc.js diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index a68f441fbb21d7..00000000000000 --- a/.eslintrc.js +++ /dev/null @@ -1,375 +0,0 @@ -'use strict'; - -/* eslint-env node */ - -const Module = require('module'); -const path = require('path'); - -const NodePlugin = require('./tools/node_modules/eslint-plugin-node-core'); -NodePlugin.RULES_DIR = path.resolve(__dirname, 'tools', 'eslint-rules'); - -// The Module._findPath() monkeypatching is to make it so that ESLint will work -// if invoked by a globally-installed ESLint or ESLint installed elsewhere -// rather than the one we ship. This makes it possible for IDEs to lint files -// with our rules while people edit them. -const ModuleFindPath = Module._findPath; -const hacks = [ - 'eslint-plugin-node-core', - 'eslint-plugin-jsdoc', - 'eslint-plugin-markdown', - '@babel/eslint-parser', - '@babel/plugin-syntax-import-attributes', - '@stylistic/eslint-plugin-js', -]; -Module._findPath = (request, paths, isMain) => { - const r = ModuleFindPath(request, paths, isMain); - if (!r && hacks.includes(request)) { - try { - return require.resolve(`./tools/node_modules/${request}`); - } catch { - return require.resolve( - `./tools/node_modules/eslint/node_modules/${request}`); - } - } - return r; -}; - -module.exports = { - root: true, - env: { - es2022: true, - }, - extends: ['eslint:recommended', 'plugin:jsdoc/recommended'], - plugins: ['jsdoc', 'markdown', 'node-core', '@stylistic/js'], - parser: '@babel/eslint-parser', - parserOptions: { - babelOptions: { - plugins: [ - Module._findPath('@babel/plugin-syntax-import-attributes'), - ], - }, - requireConfigFile: false, - sourceType: 'script', - }, - overrides: [ - { - files: [ - '*.mjs', - 'test/es-module/test-esm-example-loader.js', - 'test/es-module/test-esm-type-flag.js', - 'test/es-module/test-esm-type-flag-alias.js', - 'test/es-module/test-require-module-detect-entry-point.js', - 'test/es-module/test-require-module-detect-entry-point-aou.js', - ], - parserOptions: { sourceType: 'module' }, - }, - { - files: ['**/*.md'], - processor: 'markdown/markdown', - }, - { - files: ['**/*.md/*.cjs', '**/*.md/*.js'], - parserOptions: { - sourceType: 'script', - ecmaFeatures: { impliedStrict: true }, - }, - rules: { strict: 'off' }, - }, - { - files: [ - '**/*.md/*.mjs', - 'doc/api/esm.md/*.js', - 'doc/api/packages.md/*.js', - ], - parserOptions: { sourceType: 'module' }, - rules: { 'no-restricted-globals': [ - 'error', - { - name: '__filename', - message: 'Use import.meta.url instead', - }, - { - name: '__dirname', - message: 'Not available in ESM', - }, - { - name: 'exports', - message: 'Not available in ESM', - }, - { - name: 'module', - message: 'Not available in ESM', - }, - { - name: 'require', - message: 'Use import instead', - }, - { - name: 'Buffer', - message: 'Import Buffer instead of using the global', - }, - { - name: 'process', - message: 'Import process instead of using the global', - }, - ] }, - }, - { - files: [ - 'lib/internal/modules/**/*.js', - ], - rules: { - 'curly': 'error', - }, - }, - { - files: [ - 'lib/internal/test_runner/**/*.js', - ], - rules: { - 'node-core/set-proto-to-null-in-object': 'error', - }, - }, - ], - rules: { - // ESLint built-in rules - // https://eslint.org/docs/rules/ - 'accessor-pairs': 'error', - 'array-callback-return': 'error', - 'block-scoped-var': 'error', - 'capitalized-comments': ['error', 'always', { - line: { - // Ignore all lines that have less characters than 20 and all lines that - // start with something that looks like a variable name or code. - ignorePattern: '.{0,20}$|[a-z]+ ?[0-9A-Z_.(/=:[#-]|std|http|ssh|ftp', - ignoreInlineComments: true, - ignoreConsecutiveComments: true, - }, - block: { - ignorePattern: '.*', - }, - }], - 'default-case-last': 'error', - 'dot-notation': 'error', - 'eqeqeq': ['error', 'smart'], - 'func-name-matching': 'error', - 'func-style': ['error', 'declaration', { allowArrowFunctions: true }], - 'no-constant-condition': ['error', { checkLoops: false }], - 'no-constructor-return': 'error', - 'no-duplicate-imports': 'error', - 'no-else-return': 'error', - 'no-lonely-if': 'error', - 'no-mixed-requires': 'error', - 'no-new-require': 'error', - 'no-path-concat': 'error', - 'no-proto': 'error', - 'no-redeclare': ['error', { 'builtinGlobals': false }], - 'no-restricted-modules': ['error', 'sys'], - 'no-restricted-properties': [ - 'error', - { - object: 'assert', - property: 'deepEqual', - message: 'Use `assert.deepStrictEqual()`.', - }, - { - object: 'assert', - property: 'notDeepEqual', - message: 'Use `assert.notDeepStrictEqual()`.', - }, - { - object: 'assert', - property: 'equal', - message: 'Use `assert.strictEqual()` rather than `assert.equal()`.', - }, - { - object: 'assert', - property: 'notEqual', - message: 'Use `assert.notStrictEqual()` rather than `assert.notEqual()`.', - }, - { - property: '__defineGetter__', - message: '__defineGetter__ is deprecated.', - }, - { - property: '__defineSetter__', - message: '__defineSetter__ is deprecated.', - }, - ], - // If this list is modified, please copy changes that should apply to ./lib - // as well to lib/.eslintrc.yaml. - 'no-restricted-syntax': [ - 'error', - { - selector: "CallExpression[callee.name='setTimeout'][arguments.length<2]", - message: '`setTimeout()` must be invoked with at least two arguments.', - }, - { - selector: "CallExpression[callee.name='setInterval'][arguments.length<2]", - message: '`setInterval()` must be invoked with at least two arguments.', - }, - { - selector: 'ThrowStatement > CallExpression[callee.name=/Error$/]', - message: 'Use `new` keyword when throwing an `Error`.', - }, - { - selector: "CallExpression[callee.property.name='substr']", - message: 'Use String.prototype.slice() or String.prototype.substring() instead of String.prototype.substr()', - }, - { - selector: "CallExpression[callee.name='isNaN']", - message: 'Use Number.isNaN() instead of the global isNaN() function.', - }, - { - // TODO(@panva): move this to no-restricted-properties - // when https://github.com/eslint/eslint/issues/16412 is fixed - selector: "Identifier[name='webcrypto']", - message: 'Use `globalThis.crypto`.', - }, - ], - 'no-self-compare': 'error', - 'no-template-curly-in-string': 'error', - 'no-throw-literal': 'error', - 'no-undef': ['error', { typeof: true }], - 'no-undef-init': 'error', - 'no-unused-expressions': ['error', { allowShortCircuit: true }], - 'no-unused-vars': ['error', { args: 'none', caughtErrors: 'all' }], - 'no-use-before-define': ['error', { - classes: true, - functions: false, - variables: false, - }], - 'no-useless-call': 'error', - 'no-useless-concat': 'error', - 'no-useless-constructor': 'error', - 'no-useless-return': 'error', - 'no-var': 'error', - 'no-void': 'error', - 'one-var': ['error', { initialized: 'never' }], - 'prefer-const': ['error', { ignoreReadBeforeAssign: true }], - 'prefer-object-has-own': 'error', - 'strict': ['error', 'global'], - 'symbol-description': 'error', - 'unicode-bom': 'error', - 'valid-typeof': ['error', { requireStringLiterals: true }], - - // ESLint recommended rules that we disable - 'no-inner-declarations': 'off', - - // JSDoc recommended rules that we disable - 'jsdoc/require-jsdoc': 'off', - 'jsdoc/require-param-description': 'off', - 'jsdoc/newline-after-description': 'off', - 'jsdoc/require-returns-description': 'off', - 'jsdoc/valid-types': 'off', - 'jsdoc/no-defaults': 'off', - 'jsdoc/no-undefined-types': 'off', - 'jsdoc/require-param': 'off', - 'jsdoc/check-tag-names': 'off', - 'jsdoc/require-returns': 'off', - - // Stylistic rules - '@stylistic/js/arrow-parens': 'error', - '@stylistic/js/arrow-spacing': 'error', - '@stylistic/js/block-spacing': 'error', - '@stylistic/js/brace-style': ['error', '1tbs', { allowSingleLine: true }], - '@stylistic/js/comma-dangle': ['error', 'always-multiline'], - '@stylistic/js/comma-spacing': 'error', - '@stylistic/js/comma-style': 'error', - '@stylistic/js/computed-property-spacing': 'error', - '@stylistic/js/dot-location': ['error', 'property'], - '@stylistic/js/eol-last': 'error', - '@stylistic/js/func-call-spacing': 'error', - '@stylistic/js/indent': ['error', 2, { - ArrayExpression: 'first', - CallExpression: { arguments: 'first' }, - FunctionDeclaration: { parameters: 'first' }, - FunctionExpression: { parameters: 'first' }, - MemberExpression: 'off', - ObjectExpression: 'first', - SwitchCase: 1, - }], - '@stylistic/js/key-spacing': 'error', - '@stylistic/js/keyword-spacing': 'error', - '@stylistic/js/linebreak-style': 'error', - '@stylistic/js/max-len': ['error', { - code: 120, - ignorePattern: '^// Flags:', - ignoreRegExpLiterals: true, - ignoreTemplateLiterals: true, - ignoreUrls: true, - tabWidth: 2, - }], - '@stylistic/js/new-parens': 'error', - '@stylistic/js/no-confusing-arrow': 'error', - '@stylistic/js/no-extra-parens': ['error', 'functions'], - '@stylistic/js/no-multi-spaces': ['error', { ignoreEOLComments: true }], - '@stylistic/js/no-multiple-empty-lines': ['error', { max: 2, maxEOF: 0, maxBOF: 0 }], - '@stylistic/js/no-tabs': 'error', - '@stylistic/js/no-trailing-spaces': 'error', - '@stylistic/js/no-whitespace-before-property': 'error', - '@stylistic/js/object-curly-newline': 'error', - '@stylistic/js/object-curly-spacing': ['error', 'always'], - '@stylistic/js/one-var-declaration-per-line': 'error', - '@stylistic/js/operator-linebreak': ['error', 'after'], - '@stylistic/js/padding-line-between-statements': [ - 'error', - { blankLine: 'always', prev: 'function', next: 'function' }, - ], - '@stylistic/js/quotes': ['error', 'single', { avoidEscape: true }], - '@stylistic/js/quote-props': ['error', 'consistent'], - '@stylistic/js/rest-spread-spacing': 'error', - '@stylistic/js/semi': 'error', - '@stylistic/js/semi-spacing': 'error', - '@stylistic/js/space-before-blocks': ['error', 'always'], - '@stylistic/js/space-before-function-paren': ['error', { - anonymous: 'never', - named: 'never', - asyncArrow: 'always', - }], - '@stylistic/js/space-in-parens': 'error', - '@stylistic/js/space-infix-ops': 'error', - '@stylistic/js/space-unary-ops': 'error', - '@stylistic/js/spaced-comment': ['error', 'always', { - 'block': { 'balanced': true }, - 'exceptions': ['-'], - }], - '@stylistic/js/template-curly-spacing': 'error', - - // Custom rules from eslint-plugin-node-core - 'node-core/no-unescaped-regexp-dot': 'error', - 'node-core/no-duplicate-requires': 'error', - 'node-core/prefer-proto': 'error', - }, - globals: { - ByteLengthQueuingStrategy: 'readable', - CompressionStream: 'readable', - CountQueuingStrategy: 'readable', - CustomEvent: 'readable', - crypto: 'readable', - Crypto: 'readable', - CryptoKey: 'readable', - DecompressionStream: 'readable', - EventSource: 'readable', - fetch: 'readable', - FormData: 'readable', - navigator: 'readable', - ReadableStream: 'readable', - ReadableStreamDefaultReader: 'readable', - ReadableStreamBYOBReader: 'readable', - ReadableStreamBYOBRequest: 'readable', - ReadableByteStreamController: 'readable', - ReadableStreamDefaultController: 'readable', - Response: 'readable', - TextDecoderStream: 'readable', - TextEncoderStream: 'readable', - TransformStream: 'readable', - TransformStreamDefaultController: 'readable', - ShadowRealm: 'readable', - SubtleCrypto: 'readable', - WritableStream: 'readable', - WritableStreamDefaultWriter: 'readable', - WritableStreamDefaultController: 'readable', - WebSocket: 'readable', - }, -}; diff --git a/.github/label-pr-config.yml b/.github/label-pr-config.yml index 701d494ab40bd8..0a24967d4dc078 100644 --- a/.github/label-pr-config.yml +++ b/.github/label-pr-config.yml @@ -66,7 +66,7 @@ subSystemLabels: /^tools\/build-addons.mjs/: needs-ci # All other tool changes should be marked as such /^tools\//: tools - /^\.eslint|\.editorconfig/: tools + /^eslint\.config|\.editorconfig/: tools /^typings\//: typings ## Dependencies diff --git a/.gitignore b/.gitignore index 34c26e3a81e051..fad2496b978066 100644 --- a/.gitignore +++ b/.gitignore @@ -13,9 +13,6 @@ !.clang-format !.cpplint !.editorconfig -!.eslintignore -!.eslintrc.js -!.eslintrc.yaml !.gitattributes !.github !.gitignore diff --git a/Makefile b/Makefile index f2009fff0c2f2b..a18a82a77fe858 100644 --- a/Makefile +++ b/Makefile @@ -1194,7 +1194,7 @@ $(TARBALL): release-only doc-only find $(TARNAME)/deps/v8/test/* -type d ! -regex '.*/test/torque$$' | xargs $(RM) -r find $(TARNAME)/deps/v8/test -type f ! -regex '.*/test/torque/.*' | xargs $(RM) find $(TARNAME)/deps/zlib/contrib/* -type d ! -regex '.*/contrib/optimizations$$' | xargs $(RM) -r - find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM) + find $(TARNAME)/ -name "eslint.config*" -maxdepth 2 | xargs $(RM) find $(TARNAME)/ -type l | xargs $(RM) tar -cf $(TARNAME).tar $(TARNAME) $(RM) -r $(TARNAME) @@ -1372,7 +1372,7 @@ format-md: -LINT_JS_TARGETS = .eslintrc.js benchmark doc lib test tools +LINT_JS_TARGETS = eslint.config.mjs benchmark doc lib test tools run-lint-js = tools/node_modules/eslint/bin/eslint.js --cache \ --max-warnings=0 --report-unused-disable-directives $(LINT_JS_TARGETS) diff --git a/benchmark/.eslintrc.yaml b/benchmark/.eslintrc.yaml deleted file mode 100644 index aa014eec4e3627..00000000000000 --- a/benchmark/.eslintrc.yaml +++ /dev/null @@ -1,8 +0,0 @@ -## Benchmark-specific linter rules - -env: - node: true - es6: true - -rules: - prefer-arrow-callback: error diff --git a/benchmark/eslint.config_partial.mjs b/benchmark/eslint.config_partial.mjs new file mode 100644 index 00000000000000..b980450add2006 --- /dev/null +++ b/benchmark/eslint.config_partial.mjs @@ -0,0 +1,17 @@ +import { requireEslintTool } from '../tools/eslint.config_utils.mjs'; + +const globals = requireEslintTool('globals'); + +export default [ + { + files: ['benchmark/**/*.{js,mjs,cjs}'], + languageOptions: { + globals: { + ...globals.node, + }, + }, + rules: { + 'prefer-arrow-callback': 'error', + }, + }, +]; diff --git a/doc/.eslintrc.yaml b/doc/.eslintrc.yaml deleted file mode 100644 index bdb3b88721edad..00000000000000 --- a/doc/.eslintrc.yaml +++ /dev/null @@ -1,17 +0,0 @@ -## Docs-specific linter rules - -rules: - # Ease some restrictions in doc examples - no-restricted-properties: off - no-undef: off - no-unused-expressions: off - no-unused-vars: off - symbol-description: off - - # Add new ECMAScript features gradually - prefer-const: error - prefer-rest-params: error - prefer-template: error - - # Stylistic rules - '@stylistic/js/no-multiple-empty-lines': [error, {max: 1, maxEOF: 0, maxBOF: 0}] diff --git a/doc/contributing/collaborator-guide.md b/doc/contributing/collaborator-guide.md index cb311f22ea49c7..340ce2af5a6999 100644 --- a/doc/contributing/collaborator-guide.md +++ b/doc/contributing/collaborator-guide.md @@ -855,7 +855,7 @@ might impact an LTS release. | `src/node_api.*` | @nodejs/node-api | | `src/node_crypto.*`, `src/crypto` | @nodejs/crypto | | `test/*` | @nodejs/testing | -| `tools/node_modules/eslint`, `.eslintrc` | @nodejs/linting | +| `tools/node_modules/eslint`, `eslint.config.mjs` | @nodejs/linting | | build | @nodejs/build | | `src/module_wrap.*`, `lib/internal/modules/*`, `lib/internal/vm/module.js` | @nodejs/modules | | GYP | @nodejs/gyp | diff --git a/doc/eslint.config_partial.mjs b/doc/eslint.config_partial.mjs new file mode 100644 index 00000000000000..bb195cbe539579 --- /dev/null +++ b/doc/eslint.config_partial.mjs @@ -0,0 +1,40 @@ +import { requireEslintTool } from '../tools/eslint.config_utils.mjs'; + +const globals = requireEslintTool('globals'); + +export default [ + { + files: ['doc/**/*.md/*.{js,mjs,cjs}'], + rules: { + // Ease some restrictions in doc examples. + 'no-restricted-properties': 'off', + 'no-undef': 'off', + 'no-unused-expressions': 'off', + 'no-unused-vars': 'off', + 'symbol-description': 'off', + + // Add new ECMAScript features gradually. + 'prefer-const': 'error', + 'prefer-rest-params': 'error', + 'prefer-template': 'error', + + // Stylistic rules. + '@stylistic/js/no-multiple-empty-lines': [ + 'error', + { + max: 1, + maxEOF: 0, + maxBOF: 0, + }, + ], + }, + }, + { + files: ['doc/api_assets/*.js'], + languageOptions: { + globals: { + ...globals.browser, + }, + }, + }, +]; diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 00000000000000..8cafaa35a9bfbf --- /dev/null +++ b/eslint.config.mjs @@ -0,0 +1,383 @@ +import Module from 'node:module'; +import { fileURLToPath, URL } from 'node:url'; + +import benchmarkConfig from './benchmark/eslint.config_partial.mjs'; +import docConfig from './doc/eslint.config_partial.mjs'; +import libConfig from './lib/eslint.config_partial.mjs'; +import testConfig from './test/eslint.config_partial.mjs'; +import toolsConfig from './tools/eslint.config_partial.mjs'; +import { + noRestrictedSyntaxCommonAll, + noRestrictedSyntaxCommonLib, + noRestrictedSyntaxCommonTest, + requireEslintTool, + resolveEslintTool, +} from './tools/eslint.config_utils.mjs'; + +const js = requireEslintTool('@eslint/js'); +const babelEslintParser = requireEslintTool('@babel/eslint-parser'); +const babelPluginSyntaxImportAttributes = requireEslintTool('@babel/plugin-syntax-import-attributes'); +const jsdoc = requireEslintTool('eslint-plugin-jsdoc'); +const markdown = requireEslintTool('eslint-plugin-markdown'); +const stylisticJs = requireEslintTool('@stylistic/eslint-plugin-js'); + +const nodeCore = requireEslintTool('eslint-plugin-node-core'); +nodeCore.RULES_DIR = fileURLToPath(new URL('./tools/eslint-rules', import.meta.url)); + +// The Module._resolveFilename() monkeypatching is to make it so that ESLint is able to +// dynamically load extra modules that we install with it. +const ModuleResolveFilename = Module._resolveFilename; +const hacks = [ + 'eslint-formatter-tap', +]; +Module._resolveFilename = (request, parent, isMain, options) => { + if (hacks.includes(request) && parent.id.endsWith('__placeholder__.js')) { + return resolveEslintTool(request); + } + return ModuleResolveFilename(request, parent, isMain, options); +}; + +export default [ + // #region ignores + { + ignores: [ + '**/node_modules/**', + 'benchmark/fixtures/**', + 'benchmark/tmp/**', + 'doc/**/*.js', + 'doc/changelogs/CHANGELOG_V1*.md', + '!doc/api_assets/*.js', + '!doc/changelogs/CHANGELOG_V18.md', + 'lib/punycode.js', + 'test/.tmp.*/**', + 'test/addons/??_*', + 'test/fixtures/**', + 'test/message/esm_display_syntax_error.mjs', + 'tools/github_reporter/**', + 'tools/icu/**', + 'tools/lint-md/lint-md.mjs', + ], + }, + // #endregion + // #region general config + js.configs.recommended, + jsdoc.configs['flat/recommended'], + { + files: ['**/*.{js,cjs}'], + languageOptions: { + // The default is `commonjs` but it's not supported by the Babel parser. + sourceType: 'script', + }, + }, + { + plugins: { + jsdoc, + '@stylistic/js': stylisticJs, + 'node-core': nodeCore, + }, + languageOptions: { + parser: babelEslintParser, + parserOptions: { + babelOptions: { + plugins: [ + babelPluginSyntaxImportAttributes, + ], + }, + requireConfigFile: false, + }, + }, + }, + // #endregion + // #region general globals + { + languageOptions: { + globals: { + ByteLengthQueuingStrategy: 'readonly', + CompressionStream: 'readonly', + CountQueuingStrategy: 'readonly', + CustomEvent: 'readonly', + crypto: 'readonly', + Crypto: 'readonly', + CryptoKey: 'readonly', + DecompressionStream: 'readonly', + EventSource: 'readable', + fetch: 'readonly', + FormData: 'readonly', + navigator: 'readonly', + ReadableStream: 'readonly', + ReadableStreamDefaultReader: 'readonly', + ReadableStreamBYOBReader: 'readonly', + ReadableStreamBYOBRequest: 'readonly', + ReadableByteStreamController: 'readonly', + ReadableStreamDefaultController: 'readonly', + Response: 'readonly', + TextDecoderStream: 'readonly', + TextEncoderStream: 'readonly', + TransformStream: 'readonly', + TransformStreamDefaultController: 'readonly', + ShadowRealm: 'readonly', + SubtleCrypto: 'readonly', + WritableStream: 'readonly', + WritableStreamDefaultWriter: 'readonly', + WritableStreamDefaultController: 'readonly', + WebSocket: 'readonly', + }, + }, + }, + // #endregion + // #region general rules + { + rules: { + // ESLint built-in rules + // https://eslint.org/docs/latest/rules/ + 'accessor-pairs': 'error', + 'array-callback-return': 'error', + 'block-scoped-var': 'error', + 'capitalized-comments': ['error', 'always', { + line: { + // Ignore all lines that have less characters than 20 and all lines + // that start with something that looks like a variable name or code. + ignorePattern: '.{0,20}$|[a-z]+ ?[0-9A-Z_.(/=:[#-]|std|http|ssh|ftp', + ignoreInlineComments: true, + ignoreConsecutiveComments: true, + }, + block: { + ignorePattern: '.*', + }, + }], + 'default-case-last': 'error', + 'dot-notation': 'error', + 'eqeqeq': ['error', 'smart'], + 'func-name-matching': 'error', + 'func-style': ['error', 'declaration', { allowArrowFunctions: true }], + 'no-constant-condition': ['error', { checkLoops: false }], + 'no-constructor-return': 'error', + 'no-duplicate-imports': 'error', + 'no-else-return': 'error', + 'no-lonely-if': 'error', + 'no-mixed-requires': 'error', + 'no-new-require': 'error', + 'no-path-concat': 'error', + 'no-proto': 'error', + 'no-redeclare': ['error', { builtinGlobals: false }], + 'no-restricted-modules': ['error', 'sys'], + 'no-restricted-properties': [ + 'error', + { + object: 'assert', + property: 'deepEqual', + message: 'Use `assert.deepStrictEqual()`.', + }, + { + object: 'assert', + property: 'notDeepEqual', + message: 'Use `assert.notDeepStrictEqual()`.', + }, + { + object: 'assert', + property: 'equal', + message: 'Use `assert.strictEqual()` rather than `assert.equal()`.', + }, + { + object: 'assert', + property: 'notEqual', + message: 'Use `assert.notStrictEqual()` rather than `assert.notEqual()`.', + }, + { + property: '__defineGetter__', + message: '__defineGetter__ is deprecated.', + }, + { + property: '__defineSetter__', + message: '__defineSetter__ is deprecated.', + }, + ], + 'no-restricted-syntax': [ + 'error', + ...noRestrictedSyntaxCommonAll, + ...noRestrictedSyntaxCommonLib, + ...noRestrictedSyntaxCommonTest, + ], + 'no-self-compare': 'error', + 'no-template-curly-in-string': 'error', + 'no-throw-literal': 'error', + 'no-undef': ['error', { typeof: true }], + 'no-undef-init': 'error', + 'no-unused-expressions': ['error', { allowShortCircuit: true }], + 'no-unused-vars': ['error', { args: 'none', caughtErrors: 'all' }], + 'no-use-before-define': ['error', { + classes: true, + functions: false, + variables: false, + }], + 'no-useless-call': 'error', + 'no-useless-concat': 'error', + 'no-useless-constructor': 'error', + 'no-useless-return': 'error', + 'no-var': 'error', + 'no-void': 'error', + 'one-var': ['error', { initialized: 'never' }], + 'prefer-const': ['error', { ignoreReadBeforeAssign: true }], + 'prefer-object-has-own': 'error', + 'strict': ['error', 'global'], + 'symbol-description': 'error', + 'unicode-bom': 'error', + 'valid-typeof': ['error', { requireStringLiterals: true }], + + // ESLint recommended rules that we disable. + 'no-inner-declarations': 'off', + + // JSDoc recommended rules that we disable. + 'jsdoc/require-jsdoc': 'off', + 'jsdoc/require-param-description': 'off', + 'jsdoc/newline-after-description': 'off', + 'jsdoc/require-returns-description': 'off', + 'jsdoc/valid-types': 'off', + 'jsdoc/no-defaults': 'off', + 'jsdoc/no-undefined-types': 'off', + 'jsdoc/require-param': 'off', + 'jsdoc/check-tag-names': 'off', + 'jsdoc/require-returns': 'off', + + // Stylistic rules. + '@stylistic/js/arrow-parens': 'error', + '@stylistic/js/arrow-spacing': 'error', + '@stylistic/js/block-spacing': 'error', + '@stylistic/js/brace-style': ['error', '1tbs', { allowSingleLine: true }], + '@stylistic/js/comma-dangle': ['error', 'always-multiline'], + '@stylistic/js/comma-spacing': 'error', + '@stylistic/js/comma-style': 'error', + '@stylistic/js/computed-property-spacing': 'error', + '@stylistic/js/dot-location': ['error', 'property'], + '@stylistic/js/eol-last': 'error', + '@stylistic/js/func-call-spacing': 'error', + '@stylistic/js/indent': ['error', 2, { + ArrayExpression: 'first', + CallExpression: { arguments: 'first' }, + FunctionDeclaration: { parameters: 'first' }, + FunctionExpression: { parameters: 'first' }, + MemberExpression: 'off', + ObjectExpression: 'first', + SwitchCase: 1, + }], + '@stylistic/js/key-spacing': 'error', + '@stylistic/js/keyword-spacing': 'error', + '@stylistic/js/linebreak-style': 'error', + '@stylistic/js/max-len': ['error', { + code: 120, + ignorePattern: '^// Flags:', + ignoreRegExpLiterals: true, + ignoreTemplateLiterals: true, + ignoreUrls: true, + tabWidth: 2, + }], + '@stylistic/js/new-parens': 'error', + '@stylistic/js/no-confusing-arrow': 'error', + '@stylistic/js/no-extra-parens': ['error', 'functions'], + '@stylistic/js/no-multi-spaces': ['error', { ignoreEOLComments: true }], + '@stylistic/js/no-multiple-empty-lines': ['error', { max: 2, maxEOF: 0, maxBOF: 0 }], + '@stylistic/js/no-tabs': 'error', + '@stylistic/js/no-trailing-spaces': 'error', + '@stylistic/js/no-whitespace-before-property': 'error', + '@stylistic/js/object-curly-newline': 'error', + '@stylistic/js/object-curly-spacing': ['error', 'always'], + '@stylistic/js/one-var-declaration-per-line': 'error', + '@stylistic/js/operator-linebreak': ['error', 'after'], + '@stylistic/js/padding-line-between-statements': [ + 'error', + { blankLine: 'always', prev: 'function', next: 'function' }, + ], + '@stylistic/js/quotes': ['error', 'single', { avoidEscape: true }], + '@stylistic/js/quote-props': ['error', 'consistent'], + '@stylistic/js/rest-spread-spacing': 'error', + '@stylistic/js/semi': 'error', + '@stylistic/js/semi-spacing': 'error', + '@stylistic/js/space-before-blocks': ['error', 'always'], + '@stylistic/js/space-before-function-paren': ['error', { + anonymous: 'never', + named: 'never', + asyncArrow: 'always', + }], + '@stylistic/js/space-in-parens': 'error', + '@stylistic/js/space-infix-ops': 'error', + '@stylistic/js/space-unary-ops': 'error', + '@stylistic/js/spaced-comment': ['error', 'always', { + 'block': { 'balanced': true }, + 'exceptions': ['-'], + }], + '@stylistic/js/template-curly-spacing': 'error', + + // Custom rules in tools/eslint-rules. + 'node-core/no-unescaped-regexp-dot': 'error', + 'node-core/no-duplicate-requires': 'error', + 'node-core/prefer-proto': 'error', + }, + }, + // #endregion + // #region markdown config + { + files: ['**/*.md'], + plugins: { + markdown, + }, + processor: 'markdown/markdown', + }, + { + files: ['**/*.md/*.{js,cjs}'], + languageOptions: { + parserOptions: { + ecmaFeatures: { impliedStrict: true }, + }, + }, + rules: { strict: 'off' }, + }, + { + files: [ + '**/*.md/*.mjs', + 'doc/api/esm.md/*.js', + 'doc/api/packages.md/*.js', + ], + languageOptions: { + sourceType: 'module', + }, + rules: { 'no-restricted-globals': [ + 'error', + { + name: '__filename', + message: 'Use import.meta.url instead', + }, + { + name: '__dirname', + message: 'Not available in ESM', + }, + { + name: 'exports', + message: 'Not available in ESM', + }, + { + name: 'module', + message: 'Not available in ESM', + }, + { + name: 'require', + message: 'Use import instead', + }, + { + name: 'Buffer', + message: 'Import Buffer instead of using the global', + }, + { + name: 'process', + message: 'Import process instead of using the global', + }, + ] }, + }, + // #endregion + // #region partials + ...benchmarkConfig, + ...docConfig, + ...libConfig, + ...testConfig, + ...toolsConfig, + // #endregion +]; diff --git a/lib/.eslintrc.yaml b/lib/.eslintrc.yaml deleted file mode 100644 index ed42b197a95375..00000000000000 --- a/lib/.eslintrc.yaml +++ /dev/null @@ -1,276 +0,0 @@ -env: - es6: true - -rules: - prefer-object-spread: error - no-buffer-constructor: error - no-restricted-syntax: - # Config copied from .eslintrc.js - - error - - selector: CallExpression[callee.object.name='assert']:not([callee.property.name='ok']):not([callee.property.name='fail']):not([callee.property.name='ifError']) - message: Please only use simple assertions in ./lib - - selector: CallExpression[callee.name='setTimeout'][arguments.length<2] - message: setTimeout() must be invoked with at least two arguments. - - selector: CallExpression[callee.name='setInterval'][arguments.length<2] - message: setInterval() must be invoked with at least 2 arguments. - - selector: ThrowStatement > CallExpression[callee.name=/Error$/] - message: Use new keyword when throwing an Error. - # Config specific to lib - - selector: NewExpression[callee.name=/Error$/]:not([callee.name=/^(AssertionError|NghttpError|AbortError|NodeAggregateError)$/]) - message: Use an error exported by the internal/errors module. - - selector: CallExpression[callee.object.name='Error'][callee.property.name='captureStackTrace'] - message: Please use `require('internal/errors').hideStackFrames()` instead. - - selector: AssignmentExpression:matches([left.object.name='Error']):matches([left.name='prepareStackTrace'], [left.property.name='prepareStackTrace']) - message: Use 'overrideStackTrace' from 'lib/internal/errors.js' instead of 'Error.prepareStackTrace'. - - selector: ThrowStatement > NewExpression[callee.name=/^ERR_[A-Z_]+$/] > ObjectExpression:first-child:not(:has([key.name='message']):has([key.name='code']):has([key.name='syscall'])) - message: The context passed into SystemError constructor must have .code, .syscall and .message. - no-restricted-globals: - - error - - name: AbortController - message: Use `const { AbortController } = require('internal/abort_controller');` instead of the global. - - name: AbortSignal - message: Use `const { AbortSignal } = require('internal/abort_controller');` instead of the global. - - name: Blob - message: Use `const { Blob } = require('buffer');` instead of the global. - - name: BroadcastChannel - message: Use `const { BroadcastChannel } = require('internal/worker/io');` instead of the global. - - name: Buffer - message: Use `const { Buffer } = require('buffer');` instead of the global. - - name: ByteLengthQueuingStrategy - message: Use `const { ByteLengthQueuingStrategy } = require('internal/webstreams/queuingstrategies')` instead of the global. - - name: CompressionStream - message: Use `const { CompressionStream } = require('internal/webstreams/compression')` instead of the global. - - name: CountQueuingStrategy - message: Use `const { CountQueuingStrategy } = require('internal/webstreams/queuingstrategies')` instead of the global. - - name: CustomEvent - message: Use `const { CustomEvent } = require('internal/event_target');` instead of the global. - - name: DecompressionStream - message: Use `const { DecompressionStream } = require('internal/webstreams/compression')` instead of the global. - - name: DOMException - message: Use lazy function `const { lazyDOMExceptionClass } = require('internal/util');` instead of the global. - - name: Event - message: Use `const { Event } = require('internal/event_target');` instead of the global. - - name: EventTarget - message: Use `const { EventTarget } = require('internal/event_target');` instead of the global. - - name: File - message: Use `const { File } = require('buffer');` instead of the global. - - name: FormData - message: Use `const { FormData } = require('internal/deps/undici/undici');` instead of the global. - - name: Headers - message: Use `const { Headers } = require('internal/deps/undici/undici');` instead of the global. - # Intl is not available in primordials because it can be - # disabled with --without-intl build flag. - - name: Intl - message: Use `const { Intl } = globalThis;` instead of the global. - - name: Iterator - message: Use `const { Iterator } = globalThis;` instead of the global. - - name: MessageChannel - message: Use `const { MessageChannel } = require('internal/worker/io');` instead of the global. - - name: MessageEvent - message: Use `const { MessageEvent } = require('internal/deps/undici/undici');` instead of the global. - - name: MessagePort - message: Use `const { MessagePort } = require('internal/worker/io');` instead of the global. - - name: Navigator - message: Use `const { Navigator } = require('internal/navigator');` instead of the global. - - name: navigator - message: Use `const { navigator } = require('internal/navigator');` instead of the global. - - name: PerformanceEntry - message: Use `const { PerformanceEntry } = require('perf_hooks');` instead of the global. - - name: PerformanceMark - message: Use `const { PerformanceMark } = require('perf_hooks');` instead of the global. - - name: PerformanceMeasure - message: Use `const { PerformanceMeasure } = require('perf_hooks');` instead of the global. - - name: PerformanceObserverEntryList - message: Use `const { PerformanceObserverEntryList } = require('perf_hooks');` instead of the global. - - name: PerformanceObserver - message: Use `const { PerformanceObserver } = require('perf_hooks');` instead of the global. - - name: PerformanceResourceTiming - message: Use `const { PerformanceResourceTiming } = require('perf_hooks');` instead of the global. - - name: ReadableStream - message: Use `const { ReadableStream } = require('internal/webstreams/readablestream')` instead of the global. - - name: ReadableStreamDefaultReader - message: Use `const { ReadableStreamDefaultReader } = require('internal/webstreams/readablestream')` instead of the global. - - name: ReadableStreamBYOBReader - message: Use `const { ReadableStreamBYOBReader } = require('internal/webstreams/readablestream')` instead of the global. - - name: ReadableStreamBYOBRequest - message: Use `const { ReadableStreamBYOBRequest } = require('internal/webstreams/readablestream')` instead of the global. - - name: ReadableByteStreamController - message: Use `const { ReadableByteStreamController } = require('internal/webstreams/readablestream')` instead of the global. - - name: ReadableStreamDefaultController - message: Use `const { ReadableStreamDefaultController } = require('internal/webstreams/readablestream')` instead of the global. - - name: Request - message: Use `const { Request } = require('internal/deps/undici/undici');` instead of the global. - - name: Response - message: Use `const { Response } = require('internal/deps/undici/undici');` instead of the global. - # ShadowRealm is not available in primordials because it can be - # disabled with --no-harmony-shadow-realm CLI flag. - - name: ShadowRealm - message: Use `const { ShadowRealm } = globalThis;` instead of the global. - # SharedArrayBuffer is not available in primordials because it can be - # disabled with --no-harmony-sharedarraybuffer CLI flag. - - name: SharedArrayBuffer - message: Use `const { SharedArrayBuffer } = globalThis;` instead of the global. - - name: TextDecoder - message: Use `const { TextDecoder } = require('internal/encoding');` instead of the global. - - name: TextDecoderStream - message: Use `const { TextDecoderStream } = require('internal/webstreams/encoding')` instead of the global. - - name: TextEncoder - message: Use `const { TextEncoder } = require('internal/encoding');` instead of the global. - - name: TextEncoderStream - message: Use `const { TextEncoderStream } = require('internal/webstreams/encoding')` instead of the global. - - name: TransformStream - message: Use `const { TransformStream } = require('internal/webstreams/transformstream')` instead of the global. - - name: TransformStreamDefaultController - message: Use `const { TransformStreamDefaultController } = require('internal/webstreams/transformstream')` instead of the global. - - name: URL - message: Use `const { URL } = require('internal/url');` instead of the global. - - name: URLSearchParams - message: Use `const { URLSearchParams } = require('internal/url');` instead of the global. - # WebAssembly is not available in primordials because it can be - # disabled with --jitless CLI flag. - - name: WebAssembly - message: Use `const { WebAssembly } = globalThis;` instead of the global. - - name: WritableStream - message: Use `const { WritableStream } = require('internal/webstreams/writablestream')` instead of the global. - - name: WritableStreamDefaultWriter - message: Use `const { WritableStreamDefaultWriter } = require('internal/webstreams/writablestream')` instead of the global. - - name: WritableStreamDefaultController - message: Use `const { WritableStreamDefaultController } = require('internal/webstreams/writablestream')` instead of the global. - - name: atob - message: Use `const { atob } = require('buffer');` instead of the global. - - name: btoa - message: Use `const { btoa } = require('buffer');` instead of the global. - - name: clearImmediate - message: Use `const { clearImmediate } = require('timers');` instead of the global. - - name: clearInterval - message: Use `const { clearInterval } = require('timers');` instead of the global. - - name: clearTimeout - message: Use `const { clearTimeout } = require('timers');` instead of the global. - - name: console - message: Use `const console = require('internal/console/global');` instead of the global. - - name: crypto - message: Use `const { crypto } = require('internal/crypto/webcrypto');` instead of the global. - - name: Crypto - message: Use `const { Crypto } = require('internal/crypto/webcrypto');` instead of the global. - - name: CryptoKey - message: Use `const { CryptoKey } = require('internal/crypto/webcrypto');` instead of the global. - - name: EventSource - message: Use `const { EventSource } = require('internal/deps/undici/undici');` instead of the global. - - name: fetch - message: Use `const { fetch } = require('internal/deps/undici/undici');` instead of the global. - - name: global - message: Use `const { globalThis } = primordials;` instead of `global`. - - name: globalThis - message: Use `const { globalThis } = primordials;` instead of the global. - - name: performance - message: Use `const { performance } = require('perf_hooks');` instead of the global. - - name: queueMicrotask - message: Use `const { queueMicrotask } = require('internal/process/task_queues');` instead of the global. - - name: setImmediate - message: Use `const { setImmediate } = require('timers');` instead of the global. - - name: setInterval - message: Use `const { setInterval } = require('timers');` instead of the global. - - name: setTimeout - message: Use `const { setTimeout } = require('timers');` instead of the global. - - name: structuredClone - message: Use `const { structuredClone } = internalBinding('messaging');` instead of the global. - - name: SubtleCrypto - message: Use `const { SubtleCrypto } = require('internal/crypto/webcrypto');` instead of the global. - no-restricted-modules: - - error - - name: url - message: Require `internal/url` instead of `url`. - - # Stylistic rules - '@stylistic/js/no-mixed-operators': - - error - - groups: [['&&', '||']] - - # Custom rules in tools/eslint-rules - node-core/alphabetize-errors: error - node-core/alphabetize-primordials: error - node-core/avoid-prototype-pollution: error - node-core/lowercase-name-for-primitive: error - node-core/non-ascii-character: error - node-core/no-array-destructuring: error - node-core/prefer-primordials: - - error - - name: AggregateError - - name: Array - - name: ArrayBuffer - - name: Atomics - - name: BigInt - - name: BigInt64Array - - name: BigUint64Array - - name: Boolean - - name: DataView - - name: Date - - name: decodeURI - - name: decodeURIComponent - - name: encodeURI - - name: encodeURIComponent - - name: escape - - name: eval - - name: Error - ignore: - - prepareStackTrace - - stackTraceLimit - - name: EvalError - - name: FinalizationRegistry - into: Safe - - name: Float32Array - - name: Float64Array - - name: Function - - name: Int16Array - - name: Int32Array - - name: Int8Array - - name: isFinite - into: Number - - name: isNaN - into: Number - - name: JSON - - name: Map - into: Safe - - name: Math - - name: Number - - name: Object - - name: parseFloat - into: Number - - name: parseInt - into: Number - - name: Proxy - - name: Promise - - name: RangeError - - name: ReferenceError - - name: Reflect - - name: RegExp - - name: Set - into: Safe - - name: String - - name: Symbol - - name: SyntaxError - - name: TypeError - - name: Uint16Array - - name: Uint32Array - - name: Uint8Array - - name: Uint8ClampedArray - - name: unescape - - name: URIError - - name: WeakMap - into: Safe - - name: WeakRef - into: Safe - - name: WeakSet - into: Safe -globals: - # Parameters passed to internal modules - require: false - process: false - exports: false - module: false - internalBinding: false - primordials: false -overrides: - - files: [internal/per_context/primordials.js] - rules: - node-core/alphabetize-primordials: [error, {enforceTopPosition: false}] diff --git a/lib/eslint.config_partial.mjs b/lib/eslint.config_partial.mjs new file mode 100644 index 00000000000000..d730b222195a73 --- /dev/null +++ b/lib/eslint.config_partial.mjs @@ -0,0 +1,486 @@ +/* eslint-disable @stylistic/js/max-len */ + +import { + noRestrictedSyntaxCommonAll, + noRestrictedSyntaxCommonLib, +} from '../tools/eslint.config_utils.mjs'; + +export default [ + { + files: ['lib/**/*.js'], + languageOptions: { + globals: { + // Parameters passed to internal modules. + require: 'readonly', + process: 'readonly', + exports: 'readonly', + module: 'readonly', + internalBinding: 'readonly', + primordials: 'readonly', + }, + }, + rules: { + 'prefer-object-spread': 'error', + 'no-buffer-constructor': 'error', + 'no-restricted-syntax': [ + 'error', + ...noRestrictedSyntaxCommonAll, + ...noRestrictedSyntaxCommonLib, + { + selector: "CallExpression[callee.object.name='assert']:not([callee.property.name='ok']):not([callee.property.name='fail']):not([callee.property.name='ifError'])", + message: 'Please only use simple assertions in ./lib', + }, + { + selector: 'NewExpression[callee.name=/Error$/]:not([callee.name=/^(AssertionError|NghttpError|AbortError|NodeAggregateError)$/])', + message: 'Use an error exported by the internal/errors module.', + }, + { + selector: "CallExpression[callee.object.name='Error'][callee.property.name='captureStackTrace']", + message: "Please use `require('internal/errors').hideStackFrames()` instead.", + }, + { + selector: "AssignmentExpression:matches([left.object.name='Error']):matches([left.name='prepareStackTrace'], [left.property.name='prepareStackTrace'])", + message: "Use 'overrideStackTrace' from 'lib/internal/errors.js' instead of 'Error.prepareStackTrace'.", + }, + { + selector: "ThrowStatement > NewExpression[callee.name=/^ERR_[A-Z_]+$/] > ObjectExpression:first-child:not(:has([key.name='message']):has([key.name='code']):has([key.name='syscall']))", + message: 'The context passed into SystemError constructor must have .code, .syscall and .message.', + }, + ], + 'no-restricted-globals': [ + 'error', + { + name: 'AbortController', + message: "Use `const { AbortController } = require('internal/abort_controller');` instead of the global.", + }, + { + name: 'AbortSignal', + message: "Use `const { AbortSignal } = require('internal/abort_controller');` instead of the global.", + }, + { + name: 'Blob', + message: "Use `const { Blob } = require('buffer');` instead of the global.", + }, + { + name: 'BroadcastChannel', + message: "Use `const { BroadcastChannel } = require('internal/worker/io');` instead of the global.", + }, + { + name: 'Buffer', + message: "Use `const { Buffer } = require('buffer');` instead of the global.", + }, + { + name: 'ByteLengthQueuingStrategy', + message: "Use `const { ByteLengthQueuingStrategy } = require('internal/webstreams/queuingstrategies')` instead of the global.", + }, + { + name: 'CompressionStream', + message: "Use `const { CompressionStream } = require('internal/webstreams/compression')` instead of the global.", + }, + { + name: 'CountQueuingStrategy', + message: "Use `const { CountQueuingStrategy } = require('internal/webstreams/queuingstrategies')` instead of the global.", + }, + { + name: 'CustomEvent', + message: "Use `const { CustomEvent } = require('internal/event_target');` instead of the global.", + }, + { + name: 'DecompressionStream', + message: "Use `const { DecompressionStream } = require('internal/webstreams/compression')` instead of the global.", + }, + { + name: 'DOMException', + message: "Use lazy function `const { lazyDOMExceptionClass } = require('internal/util');` instead of the global.", + }, + { + name: 'Event', + message: "Use `const { Event } = require('internal/event_target');` instead of the global.", + }, + { + name: 'EventTarget', + message: "Use `const { EventTarget } = require('internal/event_target');` instead of the global.", + }, + { + name: 'File', + message: "Use `const { File } = require('buffer');` instead of the global.", + }, + { + name: 'FormData', + message: "Use `const { FormData } = require('internal/deps/undici/undici');` instead of the global.", + }, + { + name: 'Headers', + message: "Use `const { Headers } = require('internal/deps/undici/undici');` instead of the global.", + }, + // Intl is not available in primordials because it can be + // disabled with --without-intl build flag. + { + name: 'Intl', + message: 'Use `const { Intl } = globalThis;` instead of the global.', + }, + { + name: 'Iterator', + message: 'Use `const { Iterator } = globalThis;` instead of the global.', + }, + { + name: 'MessageChannel', + message: "Use `const { MessageChannel } = require('internal/worker/io');` instead of the global.", + }, + { + name: 'MessageEvent', + message: "Use `const { MessageEvent } = require('internal/deps/undici/undici');` instead of the global.", + }, + { + name: 'MessagePort', + message: "Use `const { MessagePort } = require('internal/worker/io');` instead of the global.", + }, + { + name: 'Navigator', + message: "Use `const { Navigator } = require('internal/navigator');` instead of the global.", + }, + { + name: 'navigator', + message: "Use `const { navigator } = require('internal/navigator');` instead of the global.", + }, + { + name: 'PerformanceEntry', + message: "Use `const { PerformanceEntry } = require('perf_hooks');` instead of the global.", + }, + { + name: 'PerformanceMark', + message: "Use `const { PerformanceMark } = require('perf_hooks');` instead of the global.", + }, + { + name: 'PerformanceMeasure', + message: "Use `const { PerformanceMeasure } = require('perf_hooks');` instead of the global.", + }, + { + name: 'PerformanceObserverEntryList', + message: "Use `const { PerformanceObserverEntryList } = require('perf_hooks');` instead of the global.", + }, + { + name: 'PerformanceObserver', + message: "Use `const { PerformanceObserver } = require('perf_hooks');` instead of the global.", + }, + { + name: 'PerformanceResourceTiming', + message: "Use `const { PerformanceResourceTiming } = require('perf_hooks');` instead of the global.", + }, + { + name: 'ReadableStream', + message: "Use `const { ReadableStream } = require('internal/webstreams/readablestream')` instead of the global.", + }, + { + name: 'ReadableStreamDefaultReader', + message: "Use `const { ReadableStreamDefaultReader } = require('internal/webstreams/readablestream')` instead of the global.", + }, + { + name: 'ReadableStreamBYOBReader', + message: "Use `const { ReadableStreamBYOBReader } = require('internal/webstreams/readablestream')` instead of the global.", + }, + { + name: 'ReadableStreamBYOBRequest', + message: "Use `const { ReadableStreamBYOBRequest } = require('internal/webstreams/readablestream')` instead of the global.", + }, + { + name: 'ReadableByteStreamController', + message: "Use `const { ReadableByteStreamController } = require('internal/webstreams/readablestream')` instead of the global.", + }, + { + name: 'ReadableStreamDefaultController', + message: "Use `const { ReadableStreamDefaultController } = require('internal/webstreams/readablestream')` instead of the global.", + }, + { + name: 'Request', + message: "Use `const { Request } = require('internal/deps/undici/undici');` instead of the global.", + }, + { + name: 'Response', + message: "Use `const { Response } = require('internal/deps/undici/undici');` instead of the global.", + }, + // ShadowRealm is not available in primordials because it can be + // disabled with --no-harmony-shadow-realm CLI flag. + { + name: 'ShadowRealm', + message: 'Use `const { ShadowRealm } = globalThis;` instead of the global.', + }, + // SharedArrayBuffer is not available in primordials because it can be + // disabled with --no-harmony-sharedarraybuffer CLI flag. + { + name: 'SharedArrayBuffer', + message: 'Use `const { SharedArrayBuffer } = globalThis;` instead of the global.', + }, + { + name: 'TextDecoder', + message: "Use `const { TextDecoder } = require('internal/encoding');` instead of the global.", + }, + { + name: 'TextDecoderStream', + message: "Use `const { TextDecoderStream } = require('internal/webstreams/encoding')` instead of the global.", + }, + { + name: 'TextEncoder', + message: "Use `const { TextEncoder } = require('internal/encoding');` instead of the global.", + }, + { + name: 'TextEncoderStream', + message: "Use `const { TextEncoderStream } = require('internal/webstreams/encoding')` instead of the global.", + }, + { + name: 'TransformStream', + message: "Use `const { TransformStream } = require('internal/webstreams/transformstream')` instead of the global.", + }, + { + name: 'TransformStreamDefaultController', + message: "Use `const { TransformStreamDefaultController } = require('internal/webstreams/transformstream')` instead of the global.", + }, + { + name: 'URL', + message: "Use `const { URL } = require('internal/url');` instead of the global.", + }, + { + name: 'URLSearchParams', + message: "Use `const { URLSearchParams } = require('internal/url');` instead of the global.", + }, + // WebAssembly is not available in primordials because it can be + // disabled with --jitless CLI flag. + { + name: 'WebAssembly', + message: 'Use `const { WebAssembly } = globalThis;` instead of the global.', + }, + { + name: 'WritableStream', + message: "Use `const { WritableStream } = require('internal/webstreams/writablestream')` instead of the global.", + }, + { + name: 'WritableStreamDefaultWriter', + message: "Use `const { WritableStreamDefaultWriter } = require('internal/webstreams/writablestream')` instead of the global.", + }, + { + name: 'WritableStreamDefaultController', + message: "Use `const { WritableStreamDefaultController } = require('internal/webstreams/writablestream')` instead of the global.", + }, + { + name: 'atob', + message: "Use `const { atob } = require('buffer');` instead of the global.", + }, + { + name: 'btoa', + message: "Use `const { btoa } = require('buffer');` instead of the global.", + }, + { + name: 'clearImmediate', + message: "Use `const { clearImmediate } = require('timers');` instead of the global.", + }, + { + name: 'clearInterval', + message: "Use `const { clearInterval } = require('timers');` instead of the global.", + }, + { + name: 'clearTimeout', + message: "Use `const { clearTimeout } = require('timers');` instead of the global.", + }, + { + name: 'console', + message: "Use `const console = require('internal/console/global');` instead of the global.", + }, + { + name: 'crypto', + message: "Use `const { crypto } = require('internal/crypto/webcrypto');` instead of the global.", + }, + { + name: 'Crypto', + message: "Use `const { Crypto } = require('internal/crypto/webcrypto');` instead of the global.", + }, + { + name: 'CryptoKey', + message: "Use `const { CryptoKey } = require('internal/crypto/webcrypto');` instead of the global.", + }, + { + name: 'EventSource', + message: "Use `const { EventSource } = require('internal/deps/undici/undici');` instead of the global.", + }, + { + name: 'fetch', + message: "Use `const { fetch } = require('internal/deps/undici/undici');` instead of the global.", + }, + { + name: 'global', + message: 'Use `const { globalThis } = primordials;` instead of `global`.', + }, + { + name: 'globalThis', + message: 'Use `const { globalThis } = primordials;` instead of the global.', + }, + { + name: 'performance', + message: "Use `const { performance } = require('perf_hooks');` instead of the global.", + }, + { + name: 'queueMicrotask', + message: "Use `const { queueMicrotask } = require('internal/process/task_queues');` instead of the global.", + }, + { + name: 'setImmediate', + message: "Use `const { setImmediate } = require('timers');` instead of the global.", + }, + { + name: 'setInterval', + message: "Use `const { setInterval } = require('timers');` instead of the global.", + }, + { + name: 'setTimeout', + message: "Use `const { setTimeout } = require('timers');` instead of the global.", + }, + { + name: 'structuredClone', + message: "Use `const { structuredClone } = internalBinding('messaging');` instead of the global.", + }, + { + name: 'SubtleCrypto', + message: "Use `const { SubtleCrypto } = require('internal/crypto/webcrypto');` instead of the global.", + }, + ], + 'no-restricted-modules': [ + 'error', + { + name: 'url', + message: 'Require `internal/url` instead of `url`.', + }, + ], + + // Stylistic rules. + '@stylistic/js/no-mixed-operators': [ + 'error', + { + groups: [ + ['&&', '||'], + ], + }, + ], + + // Custom rules in tools/eslint-rules. + 'node-core/alphabetize-errors': 'error', + 'node-core/alphabetize-primordials': 'error', + 'node-core/avoid-prototype-pollution': 'error', + 'node-core/lowercase-name-for-primitive': 'error', + 'node-core/non-ascii-character': 'error', + 'node-core/no-array-destructuring': 'error', + 'node-core/prefer-primordials': [ + 'error', + { name: 'AggregateError' }, + { name: 'Array' }, + { name: 'ArrayBuffer' }, + { name: 'Atomics' }, + { name: 'BigInt' }, + { name: 'BigInt64Array' }, + { name: 'BigUint64Array' }, + { name: 'Boolean' }, + { name: 'DataView' }, + { name: 'Date' }, + { name: 'decodeURI' }, + { name: 'decodeURIComponent' }, + { name: 'encodeURI' }, + { name: 'encodeURIComponent' }, + { name: 'escape' }, + { name: 'eval' }, + { + name: 'Error', + ignore: [ + 'prepareStackTrace', + 'stackTraceLimit', + ], + }, + { name: 'EvalError' }, + { + name: 'FinalizationRegistry', + into: 'Safe', + }, + { name: 'Float32Array' }, + { name: 'Float64Array' }, + { name: 'Function' }, + { name: 'Int16Array' }, + { name: 'Int32Array' }, + { name: 'Int8Array' }, + { + name: 'isFinite', + into: 'Number', + }, + { + name: 'isNaN', + into: 'Number', + }, + { name: 'JSON' }, + { + name: 'Map', + into: 'Safe', + }, + { name: 'Math' }, + { name: 'Number' }, + { name: 'Object' }, + { + name: 'parseFloat', + into: 'Number', + }, + { + name: 'parseInt', + into: 'Number', + }, + { name: 'Proxy' }, + { name: 'Promise' }, + { name: 'RangeError' }, + { name: 'ReferenceError' }, + { name: 'Reflect' }, + { name: 'RegExp' }, + { + name: 'Set', + into: 'Safe', + }, + { name: 'String' }, + { name: 'Symbol' }, + { name: 'SyntaxError' }, + { name: 'TypeError' }, + { name: 'Uint16Array' }, + { name: 'Uint32Array' }, + { name: 'Uint8Array' }, + { name: 'Uint8ClampedArray' }, + { name: 'unescape' }, + { name: 'URIError' }, + { + name: 'WeakMap', + into: 'Safe', + }, + { + name: 'WeakRef', + into: 'Safe', + }, + { + name: 'WeakSet', + into: 'Safe', + }, + ], + }, + }, + { + files: ['lib/internal/modules/**/*.js'], + rules: { + 'curly': 'error', + }, + }, + { + files: ['lib/internal/per_context/primordials.js'], + rules: { + 'node-core/alphabetize-primordials': [ + 'error', + { enforceTopPosition: false }, + ], + }, + }, + { + files: ['lib/internal/test_runner/**/*.js'], + rules: { + 'node-core/set-proto-to-null-in-object': 'error', + }, + }, +]; diff --git a/lib/internal/util.js b/lib/internal/util.js index 25bb82afea8ee5..e9345d56609e0a 100644 --- a/lib/internal/util.js +++ b/lib/internal/util.js @@ -848,6 +848,7 @@ function guessHandleType(fd) { class WeakReference { #weak = null; + // eslint-disable-next-line no-unused-private-class-members #strong = null; #refCount = 0; constructor(object) { diff --git a/test/.eslintrc.yaml b/test/.eslintrc.yaml deleted file mode 100644 index c5f30b45229e04..00000000000000 --- a/test/.eslintrc.yaml +++ /dev/null @@ -1,94 +0,0 @@ -## Test-specific linter rules - -env: - node: true - es6: true - -rules: - multiline-comment-style: [error, separate-lines] - prefer-const: error - symbol-description: off - - no-restricted-syntax: - # Config copied from .eslintrc.js - - error - - selector: CallExpression:matches([callee.name='deepStrictEqual'], [callee.property.name='deepStrictEqual']):matches([arguments.1.type='Literal']:not([arguments.1.regex]), [arguments.1.type='Identifier'][arguments.1.name='undefined']) - message: Use strictEqual instead of deepStrictEqual for literals or undefined. - - selector: CallExpression:matches([callee.name='notDeepStrictEqual'], [callee.property.name='notDeepStrictEqual']):matches([arguments.1.type='Literal']:not([arguments.1.regex]), [arguments.1.type='Identifier'][arguments.1.name='undefined']) - message: Use notStrictEqual instead of notDeepStrictEqual for literals or undefined. - - selector: CallExpression:matches([callee.name='deepStrictEqual'], [callee.property.name='deepStrictEqual'])[arguments.2.type='Literal'] - message: Do not use a literal for the third argument of assert.deepStrictEqual() - - selector: CallExpression:matches([callee.name='doesNotThrow'], [callee.property.name='doesNotThrow']) - message: Do not use `assert.doesNotThrow()`. Write the code without the wrapper and add a comment instead. - - selector: CallExpression:matches([callee.name='doesNotReject'], [callee.property.name='doesNotReject']) - message: Do not use `assert.doesNotReject()`. Write the code without the wrapper and add a comment instead. - - selector: CallExpression:matches([callee.name='rejects'], [callee.property.name='rejects'])[arguments.length<2] - message: '`assert.rejects()` must be invoked with at least two arguments.' - - selector: CallExpression[callee.property.name='strictEqual'][arguments.2.type='Literal'] - message: Do not use a literal for the third argument of assert.strictEqual() - - selector: CallExpression:matches([callee.name='throws'], [callee.property.name='throws'])[arguments.1.type='Literal']:not([arguments.1.regex]) - message: Use an object as second argument of `assert.throws()`. - - selector: CallExpression:matches([callee.name='throws'], [callee.property.name='throws'])[arguments.length<2] - message: '`assert.throws()` must be invoked with at least two arguments.' - - selector: CallExpression[callee.name='setInterval'][arguments.length<2] - message: '`setInterval()` must be invoked with at least two arguments.' - - selector: ThrowStatement > CallExpression[callee.name=/Error$/] - message: Use `new` keyword when throwing an `Error`. - - selector: CallExpression:matches([callee.name='notDeepStrictEqual'], [callee.property.name='notDeepStrictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression']) - message: The first argument should be the `actual`, not the `expected` value. - - selector: CallExpression:matches([callee.name='notStrictEqual'], [callee.property.name='notStrictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression']) - message: The first argument should be the `actual`, not the `expected` value. - - selector: CallExpression:matches([callee.name='deepStrictEqual'], [callee.property.name='deepStrictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression']) - message: The first argument should be the `actual`, not the `expected` value. - - selector: CallExpression:matches([callee.name='strictEqual'], [callee.property.name='strictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression']) - message: The first argument should be the `actual`, not the `expected` value. - - selector: CallExpression[callee.name='isNaN'] - message: Use Number.isNaN() instead of the global isNaN() function. - - selector: VariableDeclarator > CallExpression:matches([callee.name='debuglog'], [callee.property.name='debuglog']):not([arguments.0.value='test']) - message: Use 'test' as debuglog value in tests. - - selector: CallExpression:matches([callee.object.name="common"][callee.property.name=/^must(Not)?Call/],[callee.name="mustCall"],[callee.name="mustCallAtLeast"],[callee.name="mustNotCall"])>:first-child[type=/FunctionExpression$/][body.body.length=0] - message: Do not use an empty function, omit the parameter altogether. - - selector: ExpressionStatement>CallExpression:matches([callee.name='rejects'], [callee.object.name='assert'][callee.property.name='rejects']) - message: Calling `assert.rejects` without `await` or `.then(common.mustCall())` will not detect never-settling promises. - - selector: Identifier[name='webcrypto'] - message: Use `globalThis.crypto`. - - # Stylistic rules - '@stylistic/js/comma-dangle': [error, always-multiline] - - # Custom rules in tools/eslint-rules - node-core/prefer-assert-iferror: error - node-core/prefer-assert-methods: error - node-core/prefer-common-mustnotcall: error - node-core/prefer-common-mustsucceed: error - node-core/crypto-check: error - node-core/eslint-check: error - node-core/async-iife-no-unused-result: error - node-core/inspector-check: error - ## common module is mandatory in tests - node-core/required-modules: - - error - - common: common(/index\.(m)?js)?$ - node-core/require-common-first: error - node-core/no-duplicate-requires: off - -# Global scoped methods and vars -globals: - WebAssembly: false - -overrides: - - files: - - es-module/*.js - - es-module/*.mjs - - parallel/*.js - - parallel/*.mjs - - sequential/*.js - - sequential/*.mjs - rules: - '@stylistic/js/comma-dangle': [error, { - arrays: always-multiline, - exports: always-multiline, - functions: only-multiline, - imports: always-multiline, - objects: only-multiline, - }] diff --git a/test/common/.eslintrc.yaml b/test/common/.eslintrc.yaml deleted file mode 100644 index b3981bdd272eca..00000000000000 --- a/test/common/.eslintrc.yaml +++ /dev/null @@ -1,3 +0,0 @@ -rules: - node-core/required-modules: off - node-core/require-common-first: off diff --git a/test/common/index.js b/test/common/index.js index ebf8d7b371a085..10efeef4f05c23 100644 --- a/test/common/index.js +++ b/test/common/index.js @@ -189,7 +189,7 @@ if (process.env.NODE_TEST_WITH_ASYNC_HOOKS) { } initHandles[id] = { resource, - stack: inspect(new Error()).substr(6), + stack: inspect(new Error()).slice(6), }; }, before() { }, diff --git a/test/eslint.config_partial.mjs b/test/eslint.config_partial.mjs new file mode 100644 index 00000000000000..54646463f76204 --- /dev/null +++ b/test/eslint.config_partial.mjs @@ -0,0 +1,165 @@ +/* eslint-disable @stylistic/js/max-len */ + +import { + noRestrictedSyntaxCommonAll, + noRestrictedSyntaxCommonTest, + requireEslintTool, +} from '../tools/eslint.config_utils.mjs'; + +const globals = requireEslintTool('globals'); + +export default [ + { + files: ['test/**/*.{js,mjs,cjs}'], + languageOptions: { + globals: { + ...globals.node, + }, + }, + rules: { + 'multiline-comment-style': [ + 'error', + 'separate-lines', + ], + 'prefer-const': 'error', + 'symbol-description': 'off', + 'no-restricted-syntax': [ + 'error', + ...noRestrictedSyntaxCommonAll, + ...noRestrictedSyntaxCommonTest, + { + selector: "CallExpression:matches([callee.name='deepStrictEqual'], [callee.property.name='deepStrictEqual']):matches([arguments.1.type='Literal']:not([arguments.1.regex]), [arguments.1.type='Identifier'][arguments.1.name='undefined'])", + message: 'Use strictEqual instead of deepStrictEqual for literals or undefined.', + }, + { + selector: "CallExpression:matches([callee.name='notDeepStrictEqual'], [callee.property.name='notDeepStrictEqual']):matches([arguments.1.type='Literal']:not([arguments.1.regex]), [arguments.1.type='Identifier'][arguments.1.name='undefined'])", + message: 'Use notStrictEqual instead of notDeepStrictEqual for literals or undefined.', + }, + { + selector: "CallExpression:matches([callee.name='deepStrictEqual'], [callee.property.name='deepStrictEqual'])[arguments.2.type='Literal']", + message: 'Do not use a literal for the third argument of assert.deepStrictEqual()', + }, + { + selector: "CallExpression:matches([callee.name='doesNotThrow'], [callee.property.name='doesNotThrow'])", + message: 'Do not use `assert.doesNotThrow()`. Write the code without the wrapper and add a comment instead.', + }, + { + selector: "CallExpression:matches([callee.name='doesNotReject'], [callee.property.name='doesNotReject'])", + message: 'Do not use `assert.doesNotReject()`. Write the code without the wrapper and add a comment instead.', + }, + { + selector: "CallExpression:matches([callee.name='rejects'], [callee.property.name='rejects'])[arguments.length<2]", + message: '`assert.rejects()` must be invoked with at least two arguments.', + }, + { + selector: "CallExpression[callee.property.name='strictEqual'][arguments.2.type='Literal']", + message: 'Do not use a literal for the third argument of assert.strictEqual()', + }, + { + selector: "CallExpression:matches([callee.name='throws'], [callee.property.name='throws'])[arguments.1.type='Literal']:not([arguments.1.regex])", + message: 'Use an object as second argument of `assert.throws()`.', + }, + { + selector: "CallExpression:matches([callee.name='throws'], [callee.property.name='throws'])[arguments.length<2]", + message: '`assert.throws()` must be invoked with at least two arguments.', + }, + { + selector: "CallExpression:matches([callee.name='notDeepStrictEqual'], [callee.property.name='notDeepStrictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression'])", + message: 'The first argument should be the `actual`, not the `expected` value.', + }, + { + selector: "CallExpression:matches([callee.name='notStrictEqual'], [callee.property.name='notStrictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression'])", + message: 'The first argument should be the `actual`, not the `expected` value.', + }, + { + selector: "CallExpression:matches([callee.name='deepStrictEqual'], [callee.property.name='deepStrictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression'])", + message: 'The first argument should be the `actual`, not the `expected` value.', + }, + { + selector: "CallExpression:matches([callee.name='strictEqual'], [callee.property.name='strictEqual'])[arguments.0.type='Literal']:not([arguments.1.type='Literal']):not([arguments.1.type='ObjectExpression']):not([arguments.1.type='ArrayExpression']):not([arguments.1.type='UnaryExpression'])", + message: 'The first argument should be the `actual`, not the `expected` value.', + }, + { + selector: "CallExpression[callee.name='isNaN']", + message: 'Use `Number.isNaN()` instead of the global `isNaN()` function.', + }, + { + selector: "VariableDeclarator > CallExpression:matches([callee.name='debuglog'], [callee.property.name='debuglog']):not([arguments.0.value='test'])", + message: "Use 'test' as debuglog value in tests.", + }, + { + selector: 'CallExpression:matches([callee.object.name="common"][callee.property.name=/^must(Not)?Call/],[callee.name="mustCall"],[callee.name="mustCallAtLeast"],[callee.name="mustNotCall"])>:first-child[type=/FunctionExpression$/][body.body.length=0]', + message: 'Do not use an empty function, omit the parameter altogether.', + }, + { + selector: "ExpressionStatement>CallExpression:matches([callee.name='rejects'], [callee.object.name='assert'][callee.property.name='rejects'])", + message: 'Calling `assert.rejects` without `await` or `.then(common.mustCall())` will not detect never-settling promises.', + }, + ], + + // Stylistic rules. + '@stylistic/js/comma-dangle': [ + 'error', + 'always-multiline', + ], + + // Custom rules in tools/eslint-rules. + 'node-core/prefer-assert-iferror': 'error', + 'node-core/prefer-assert-methods': 'error', + 'node-core/prefer-common-mustnotcall': 'error', + 'node-core/prefer-common-mustsucceed': 'error', + 'node-core/crypto-check': 'error', + 'node-core/eslint-check': 'error', + 'node-core/async-iife-no-unused-result': 'error', + 'node-core/inspector-check': 'error', + // `common` module is mandatory in tests. + 'node-core/required-modules': [ + 'error', + { common: 'common(/index\\.(m)?js)?$' }, + ], + 'node-core/require-common-first': 'error', + 'node-core/no-duplicate-requires': 'off', + }, + }, + { + files: [ + 'test/es-module/**/*.{js,mjs}', + 'test/parallel/**/*.{js,mjs}', + 'test/sequential/**/*.{js,mjs}', + ], + rules: { + '@stylistic/js/comma-dangle': [ + 'error', + { + arrays: 'always-multiline', + exports: 'always-multiline', + functions: 'only-multiline', + imports: 'always-multiline', + objects: 'only-multiline', + }, + ], + }, + }, + { + files: [ + 'test/{common,wpt}/**/*.{js,mjs,cjs}', + 'test/eslint.config_partial.mjs', + ], + rules: { + 'node-core/required-modules': 'off', + 'node-core/require-common-first': 'off', + }, + }, + { + files: [ + 'test/es-module/test-esm-example-loader.js', + 'test/es-module/test-esm-type-flag.js', + 'test/es-module/test-esm-type-flag-alias.js', + 'test/es-module/test-require-module-detect-entry-point.js', + 'test/es-module/test-require-module-detect-entry-point-aou.js', + ], + languageOptions: { + sourceType: 'module', + }, + }, +]; diff --git a/test/parallel/test-assert.js b/test/parallel/test-assert.js index 4c4073699f0548..2964a475c81436 100644 --- a/test/parallel/test-assert.js +++ b/test/parallel/test-assert.js @@ -981,6 +981,7 @@ for (const input of inputs) { { assert.throws(() => { + // eslint-disable-next-line no-constant-binary-expression assert.ok((() => Boolean('' === false))()); }, { message: 'The expression evaluated to a falsy value:\n\n' + diff --git a/test/parallel/test-eslint-alphabetize-errors.js b/test/parallel/test-eslint-alphabetize-errors.js index 08382e6468d92b..31f5da1f7ccdc3 100644 --- a/test/parallel/test-eslint-alphabetize-errors.js +++ b/test/parallel/test-eslint-alphabetize-errors.js @@ -9,10 +9,7 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/alphabetize-errors'); -new RuleTester({ - parserOptions: { ecmaVersion: 6 }, - env: { es6: true } -}).run('alphabetize-errors', rule, { +new RuleTester().run('alphabetize-errors', rule, { valid: [ { code: ` E('AAA', 'foo'); diff --git a/test/parallel/test-eslint-alphabetize-primordials.js b/test/parallel/test-eslint-alphabetize-primordials.js index ee3e8b192693ef..ed1e630d15a596 100644 --- a/test/parallel/test-eslint-alphabetize-primordials.js +++ b/test/parallel/test-eslint-alphabetize-primordials.js @@ -10,10 +10,7 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/alphabetize-primordials'); -new RuleTester({ - parserOptions: { ecmaVersion: 6 }, - env: { es6: true } -}) +new RuleTester() .run('alphabetize-primordials', rule, { valid: [ 'new Array()', diff --git a/test/parallel/test-eslint-async-iife-no-unused-result.js b/test/parallel/test-eslint-async-iife-no-unused-result.js index c462a22ed2b039..2d840d603053d7 100644 --- a/test/parallel/test-eslint-async-iife-no-unused-result.js +++ b/test/parallel/test-eslint-async-iife-no-unused-result.js @@ -11,7 +11,7 @@ const rule = require('../../tools/eslint-rules/async-iife-no-unused-result'); const message = 'The result of an immediately-invoked async function needs ' + 'to be used (e.g. with `.then(common.mustCall())`)'; -const tester = new RuleTester({ parserOptions: { ecmaVersion: 8 } }); +const tester = new RuleTester(); tester.run('async-iife-no-unused-result', rule, { valid: [ '(() => {})()', @@ -27,12 +27,10 @@ tester.run('async-iife-no-unused-result', rule, { { code: '(async () => {})()', errors: [{ message }], - output: '(async () => {})()', }, { code: '(async function() {})()', errors: [{ message }], - output: '(async function() {})()', }, { code: "const common = require('../common');(async () => {})()", diff --git a/test/parallel/test-eslint-avoid-prototype-pollution.js b/test/parallel/test-eslint-avoid-prototype-pollution.js index dcc43650dbdc6a..9a61b2688284ae 100644 --- a/test/parallel/test-eslint-avoid-prototype-pollution.js +++ b/test/parallel/test-eslint-avoid-prototype-pollution.js @@ -10,9 +10,7 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/avoid-prototype-pollution'); -new RuleTester({ - parserOptions: { ecmaVersion: 2022 }, -}) +new RuleTester() .run('property-descriptor-no-prototype-pollution', rule, { valid: [ 'ObjectDefineProperties({}, {})', @@ -125,19 +123,46 @@ new RuleTester({ }, { code: 'ObjectDefineProperty({}, "key", ObjectGetOwnPropertyDescriptor({}, "key"))', - errors: [{ message: /prototype pollution/ }], + errors: [{ + message: /prototype pollution/, + suggestions: [{ + desc: 'Wrap the property descriptor in a null-prototype object', + output: 'ObjectDefineProperty({}, "key", { __proto__: null,...ObjectGetOwnPropertyDescriptor({}, "key") })', + }], + }], }, { code: 'ReflectDefineProperty({}, "key", ObjectGetOwnPropertyDescriptor({}, "key"))', - errors: [{ message: /prototype pollution/ }], + errors: [{ + message: /prototype pollution/, + suggestions: [{ + desc: 'Wrap the property descriptor in a null-prototype object', + output: + 'ReflectDefineProperty({}, "key", { __proto__: null,...ObjectGetOwnPropertyDescriptor({}, "key") })', + }], + }], }, { code: 'ObjectDefineProperty({}, "key", ReflectGetOwnPropertyDescriptor({}, "key"))', - errors: [{ message: /prototype pollution/ }], + errors: [{ + message: /prototype pollution/, + suggestions: [{ + desc: 'Wrap the property descriptor in a null-prototype object', + output: + 'ObjectDefineProperty({}, "key", { __proto__: null,...ReflectGetOwnPropertyDescriptor({}, "key") })', + }], + }], }, { code: 'ReflectDefineProperty({}, "key", ReflectGetOwnPropertyDescriptor({}, "key"))', - errors: [{ message: /prototype pollution/ }], + errors: [{ + message: /prototype pollution/, + suggestions: [{ + desc: 'Wrap the property descriptor in a null-prototype object', + output: + 'ReflectDefineProperty({}, "key", { __proto__: null,...ReflectGetOwnPropertyDescriptor({}, "key") })', + }], + }], }, { code: 'ObjectDefineProperty({}, "key", { __proto__: Object.prototype })', @@ -193,7 +218,13 @@ new RuleTester({ }, { code: 'RegExpPrototypeTest(/some regex/, "some string")', - errors: [{ message: /looks up the "exec" property/ }], + errors: [{ + message: /looks up the "exec" property/, + suggestions: [{ + desc: 'Use RegexpPrototypeExec instead', + output: 'RegExpPrototypeExec(/some regex/, "some string") !== null', + }], + }], }, { code: 'RegExpPrototypeSymbolMatch(/some regex/, "some string")', diff --git a/test/parallel/test-eslint-duplicate-requires.js b/test/parallel/test-eslint-duplicate-requires.js index bbb3be981aec10..66d767ae0be09b 100644 --- a/test/parallel/test-eslint-duplicate-requires.js +++ b/test/parallel/test-eslint-duplicate-requires.js @@ -10,7 +10,11 @@ common.skipIfEslintMissing(); const { RuleTester } = require('../../tools/node_modules/eslint'); const rule = require('../../tools/eslint-rules/no-duplicate-requires'); -new RuleTester().run('no-duplicate-requires', rule, { +new RuleTester({ + languageOptions: { + sourceType: 'script', + }, +}).run('no-duplicate-requires', rule, { valid: [ { code: 'require("a"); require("b"); (function() { require("a"); });', diff --git a/test/parallel/test-eslint-no-array-destructuring.js b/test/parallel/test-eslint-no-array-destructuring.js index d26e32a03e65d9..a1e93c0aee90f8 100644 --- a/test/parallel/test-eslint-no-array-destructuring.js +++ b/test/parallel/test-eslint-no-array-destructuring.js @@ -15,10 +15,7 @@ const USE_OBJ_DESTRUCTURING = const USE_ARRAY_METHODS = 'Use primordials.ArrayPrototypeSlice to avoid unsafe array iteration.'; -new RuleTester({ - parserOptions: { ecmaVersion: 2021 }, - env: { es6: true } -}) +new RuleTester() .run('no-array-destructuring', rule, { valid: [ 'const first = [1, 2, 3][0];', diff --git a/test/parallel/test-eslint-prefer-common-mustsucceed.js b/test/parallel/test-eslint-prefer-common-mustsucceed.js index 9b47a350e92224..21d2a93f141b0a 100644 --- a/test/parallel/test-eslint-prefer-common-mustsucceed.js +++ b/test/parallel/test-eslint-prefer-common-mustsucceed.js @@ -15,9 +15,7 @@ const msg1 = 'Please use common.mustSucceed instead of ' + const msg2 = 'Please use common.mustSucceed instead of ' + 'common.mustCall with assert.ifError.'; -new RuleTester({ - parserOptions: { ecmaVersion: 2015 } -}).run('prefer-common-mustsucceed', rule, { +new RuleTester().run('prefer-common-mustsucceed', rule, { valid: [ 'foo((err) => assert.ifError(err))', 'foo(function(err) { assert.ifError(err) })', diff --git a/test/parallel/test-eslint-prefer-primordials.js b/test/parallel/test-eslint-prefer-primordials.js index ba44e88cf9c4ec..be95198d09893d 100644 --- a/test/parallel/test-eslint-prefer-primordials.js +++ b/test/parallel/test-eslint-prefer-primordials.js @@ -11,8 +11,9 @@ const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/prefer-primordials'); new RuleTester({ - parserOptions: { ecmaVersion: 6 }, - env: { es6: true } + languageOptions: { + sourceType: 'script', + }, }) .run('prefer-primordials', rule, { valid: [ diff --git a/test/parallel/test-eslint-prefer-proto.js b/test/parallel/test-eslint-prefer-proto.js index fbcf08fbd73e43..f259df98dfa7a0 100644 --- a/test/parallel/test-eslint-prefer-proto.js +++ b/test/parallel/test-eslint-prefer-proto.js @@ -10,9 +10,7 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/prefer-proto'); -new RuleTester({ - parserOptions: { ecmaVersion: 2022 } -}).run('prefer-common-mustsucceed', rule, { +new RuleTester().run('prefer-common-mustsucceed', rule, { valid: [ '({ __proto__: null })', 'const x = { __proto__: null };', diff --git a/test/parallel/test-eslint-prefer-util-format-errors.js b/test/parallel/test-eslint-prefer-util-format-errors.js index 8a717f0da1f5f3..6d0334225dca21 100644 --- a/test/parallel/test-eslint-prefer-util-format-errors.js +++ b/test/parallel/test-eslint-prefer-util-format-errors.js @@ -12,7 +12,7 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/prefer-util-format-errors'); -new RuleTester({ parserOptions: { ecmaVersion: 6 } }) +new RuleTester() .run('prefer-util-format-errors', rule, { valid: [ 'E(\'ABC\', \'abc\');', diff --git a/test/parallel/test-eslint-require-common-first.js b/test/parallel/test-eslint-require-common-first.js index 83fbbba72c3c24..ee64a40d4c28f9 100644 --- a/test/parallel/test-eslint-require-common-first.js +++ b/test/parallel/test-eslint-require-common-first.js @@ -10,7 +10,11 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/require-common-first'); -new RuleTester().run('require-common-first', rule, { +new RuleTester({ + languageOptions: { + sourceType: 'script', + }, +}).run('require-common-first', rule, { valid: [ { code: 'require("common")\n' + diff --git a/test/parallel/test-eslint-required-modules.js b/test/parallel/test-eslint-required-modules.js index a27409c0f9ea7a..e884c865c3d4bc 100644 --- a/test/parallel/test-eslint-required-modules.js +++ b/test/parallel/test-eslint-required-modules.js @@ -10,7 +10,11 @@ common.skipIfEslintMissing(); const RuleTester = require('../../tools/node_modules/eslint').RuleTester; const rule = require('../../tools/eslint-rules/required-modules'); -new RuleTester().run('required-modules', rule, { +new RuleTester({ + languageOptions: { + sourceType: 'script', + }, +}).run('required-modules', rule, { valid: [ { code: 'require("common")', diff --git a/test/parallel/test-runner-mocking.js b/test/parallel/test-runner-mocking.js index bf57f964278ebc..b5ef955be6926f 100644 --- a/test/parallel/test-runner-mocking.js +++ b/test/parallel/test-runner-mocking.js @@ -559,6 +559,7 @@ test('mocks a constructor', (t) => { } class MockClazz { + // eslint-disable-next-line no-unused-private-class-members #privateValue; constructor(z) { diff --git a/test/wpt/.eslintrc.yaml b/test/wpt/.eslintrc.yaml deleted file mode 100644 index b3981bdd272eca..00000000000000 --- a/test/wpt/.eslintrc.yaml +++ /dev/null @@ -1,3 +0,0 @@ -rules: - node-core/required-modules: off - node-core/require-common-first: off diff --git a/tools/.eslintrc.yaml b/tools/.eslintrc.yaml deleted file mode 100644 index d9a7929836d91f..00000000000000 --- a/tools/.eslintrc.yaml +++ /dev/null @@ -1,14 +0,0 @@ -env: - node: true - es6: true - -rules: - camelcase: - - error - - properties: never - ignoreDestructuring: true - allow: [child_process] - no-unused-vars: - - error - - args: after-used - prefer-arrow-callback: error diff --git a/tools/dep_updaters/update-eslint.sh b/tools/dep_updaters/update-eslint.sh index dc429cabb647b4..546e3512f99ec0 100755 --- a/tools/dep_updaters/update-eslint.sh +++ b/tools/dep_updaters/update-eslint.sh @@ -43,8 +43,10 @@ rm -rf ../node_modules/eslint "$NODE" "$NPM" uninstall \ --install-links=false \ --ignore-scripts \ + eslint-formatter-tap \ eslint-plugin-jsdoc \ eslint-plugin-markdown \ + globals \ @babel/core \ @babel/eslint-parser \ @babel/plugin-syntax-import-attributes \ @@ -59,8 +61,10 @@ rm -rf ../node_modules/eslint --no-save \ --omit=dev \ --omit=peer \ + eslint-formatter-tap \ eslint-plugin-jsdoc \ eslint-plugin-markdown \ + globals \ @babel/core \ @babel/eslint-parser \ @babel/plugin-syntax-import-attributes \ diff --git a/tools/eslint-rules/avoid-prototype-pollution.js b/tools/eslint-rules/avoid-prototype-pollution.js index d9ea4e936579d4..da13653e3e36e3 100644 --- a/tools/eslint-rules/avoid-prototype-pollution.js +++ b/tools/eslint-rules/avoid-prototype-pollution.js @@ -148,9 +148,9 @@ module.exports = { suggest: [{ desc: 'Use RegexpPrototypeExec instead', fix(fixer) { - const testRange = { ...node.range }; - testRange.start = testRange.start + 'RegexpPrototype'.length; - testRange.end = testRange.start + 'Test'.length; + const testRange = [ ...node.range ]; + testRange[0] = testRange[0] + 'RegexpPrototype'.length; + testRange[1] = testRange[0] + 'Test'.length; return [ fixer.replaceTextRange(testRange, 'Exec'), fixer.insertTextAfter(node, ' !== null'), diff --git a/tools/eslint-rules/no-duplicate-requires.js b/tools/eslint-rules/no-duplicate-requires.js index 0a73ccb44a0678..fb4f36eed8ab7e 100644 --- a/tools/eslint-rules/no-duplicate-requires.js +++ b/tools/eslint-rules/no-duplicate-requires.js @@ -27,7 +27,7 @@ function isTopLevel(node) { module.exports = { create(context) { - if (context.parserOptions.sourceType === 'module') { + if (context.languageOptions.sourceType === 'module') { return {}; } diff --git a/tools/eslint-rules/require-common-first.js b/tools/eslint-rules/require-common-first.js index fa91dd93f2d2d1..2bfe146086e577 100644 --- a/tools/eslint-rules/require-common-first.js +++ b/tools/eslint-rules/require-common-first.js @@ -13,7 +13,7 @@ const { isRequireCall, isString } = require('./rules-utils.js'); module.exports = { create(context) { const requiredModule = 'common'; - const isESM = context.parserOptions.sourceType === 'module'; + const isESM = context.languageOptions.sourceType === 'module'; const foundModules = []; /** diff --git a/tools/eslint-rules/required-modules.js b/tools/eslint-rules/required-modules.js index 893565b356c7b7..2f8129232c6292 100644 --- a/tools/eslint-rules/required-modules.js +++ b/tools/eslint-rules/required-modules.js @@ -23,7 +23,7 @@ module.exports = { const requiredModules = options ? Object.keys(options).map((x) => { return [ x, new RegExp(options[x]) ]; }) : []; - const isESM = context.parserOptions.sourceType === 'module'; + const isESM = context.languageOptions.sourceType === 'module'; const foundModules = []; diff --git a/tools/eslint.config_partial.mjs b/tools/eslint.config_partial.mjs new file mode 100644 index 00000000000000..c1f3087066ad30 --- /dev/null +++ b/tools/eslint.config_partial.mjs @@ -0,0 +1,29 @@ +import { requireEslintTool } from './eslint.config_utils.mjs'; + +const globals = requireEslintTool('globals'); + +export default [ + { + files: ['tools/**/*.{js,mjs,cjs}'], + languageOptions: { + globals: { + ...globals.node, + }, + }, + rules: { + 'camelcase': [ + 'error', + { + properties: 'never', + ignoreDestructuring: true, + allow: ['child_process'], + }, + ], + 'no-unused-vars': [ + 'error', + { args: 'after-used' }, + ], + 'prefer-arrow-callback': 'error', + }, + }, +]; diff --git a/tools/eslint.config_utils.mjs b/tools/eslint.config_utils.mjs new file mode 100644 index 00000000000000..9109acfa3cd949 --- /dev/null +++ b/tools/eslint.config_utils.mjs @@ -0,0 +1,35 @@ +import { createRequire } from 'node:module'; + +export const requireEslintTool = createRequire(new URL('./node_modules/eslint/', import.meta.url)); +export const resolveEslintTool = (request) => requireEslintTool.resolve(request); + +export const noRestrictedSyntaxCommonAll = [ + { + selector: "CallExpression[callee.name='setInterval'][arguments.length<2]", + message: '`setInterval()` must be invoked with at least two arguments.', + }, + { + selector: 'ThrowStatement > CallExpression[callee.name=/Error$/]', + message: 'Use `new` keyword when throwing an `Error`.', + }, + { + selector: "CallExpression[callee.property.name='substr']", + message: 'Use String.prototype.slice() or String.prototype.substring() instead of String.prototype.substr()', + }, +]; + +export const noRestrictedSyntaxCommonLib = [ + { + selector: "CallExpression[callee.name='setTimeout'][arguments.length<2]", + message: '`setTimeout()` must be invoked with at least two arguments.', + }, +]; + +export const noRestrictedSyntaxCommonTest = [ + { + // TODO(@panva): move this to no-restricted-properties + // when https://github.com/eslint/eslint/issues/16412 is fixed. + selector: "Identifier[name='webcrypto']", + message: 'Use `globalThis.crypto`.', + }, +]; diff --git a/tools/js2c.cc b/tools/js2c.cc index e0f3d8844718ab..a536b5dcd85727 100644 --- a/tools/js2c.cc +++ b/tools/js2c.cc @@ -928,6 +928,13 @@ int Main(int argc, char* argv[]) { auto mjs_it = file_map.find(".mjs"); assert(js_it != file_map.end() && mjs_it != file_map.end()); + auto it = std::find(mjs_it->second.begin(), + mjs_it->second.end(), + "lib/eslint.config_partial.mjs"); + if (it != mjs_it->second.end()) { + mjs_it->second.erase(it); + } + std::sort(js_it->second.begin(), js_it->second.end()); std::sort(mjs_it->second.begin(), mjs_it->second.end()); diff --git a/tools/node_modules/eslint/bin/eslint.js b/tools/node_modules/eslint/bin/eslint.js index eeb4647e70b107..fa3960e23b758c 100755 --- a/tools/node_modules/eslint/bin/eslint.js +++ b/tools/node_modules/eslint/bin/eslint.js @@ -64,7 +64,7 @@ function readStdin() { function getErrorMessage(error) { // Lazy loading because this is used only if an error happened. - const util = require("util"); + const util = require("node:util"); // Foolproof -- third-party module might throw non-object. if (typeof error !== "object" || error === null) { @@ -140,16 +140,17 @@ ${getErrorMessage(error)}`; if (process.argv.includes("--init")) { // `eslint --init` has been moved to `@eslint/create-config` - console.warn("You can also run this command directly using 'npm init @eslint/config'."); + console.warn("You can also run this command directly using 'npm init @eslint/config@latest'."); const spawn = require("cross-spawn"); - spawn.sync("npm", ["init", "@eslint/config"], { encoding: "utf8", stdio: "inherit" }); + spawn.sync("npm", ["init", "@eslint/config@latest"], { encoding: "utf8", stdio: "inherit" }); return; } // Otherwise, call the CLI. - const exitCode = await require("../lib/cli").execute( + const cli = require("../lib/cli"); + const exitCode = await cli.execute( process.argv, process.argv.includes("--stdin") ? await readStdin() : null, true diff --git a/tools/node_modules/eslint/conf/config-schema.js b/tools/node_modules/eslint/conf/config-schema.js deleted file mode 100644 index b83f6578832df9..00000000000000 --- a/tools/node_modules/eslint/conf/config-schema.js +++ /dev/null @@ -1,93 +0,0 @@ -/* - * STOP!!! DO NOT MODIFY. - * - * This file is part of the ongoing work to move the eslintrc-style config - * system into the @eslint/eslintrc package. This file needs to remain - * unchanged in order for this work to proceed. - * - * If you think you need to change this file, please contact @nzakas first. - * - * Thanks in advance for your cooperation. - */ - -/** - * @fileoverview Defines a schema for configs. - * @author Sylvan Mably - */ - -"use strict"; - -const baseConfigProperties = { - $schema: { type: "string" }, - env: { type: "object" }, - extends: { $ref: "#/definitions/stringOrStrings" }, - globals: { type: "object" }, - overrides: { - type: "array", - items: { $ref: "#/definitions/overrideConfig" }, - additionalItems: false - }, - parser: { type: ["string", "null"] }, - parserOptions: { type: "object" }, - plugins: { type: "array" }, - processor: { type: "string" }, - rules: { type: "object" }, - settings: { type: "object" }, - noInlineConfig: { type: "boolean" }, - reportUnusedDisableDirectives: { type: "boolean" }, - - ecmaFeatures: { type: "object" } // deprecated; logs a warning when used -}; - -const configSchema = { - definitions: { - stringOrStrings: { - oneOf: [ - { type: "string" }, - { - type: "array", - items: { type: "string" }, - additionalItems: false - } - ] - }, - stringOrStringsRequired: { - oneOf: [ - { type: "string" }, - { - type: "array", - items: { type: "string" }, - additionalItems: false, - minItems: 1 - } - ] - }, - - // Config at top-level. - objectConfig: { - type: "object", - properties: { - root: { type: "boolean" }, - ignorePatterns: { $ref: "#/definitions/stringOrStrings" }, - ...baseConfigProperties - }, - additionalProperties: false - }, - - // Config in `overrides`. - overrideConfig: { - type: "object", - properties: { - excludedFiles: { $ref: "#/definitions/stringOrStrings" }, - files: { $ref: "#/definitions/stringOrStringsRequired" }, - ...baseConfigProperties - }, - required: ["files"], - additionalProperties: false - } - }, - - $ref: "#/definitions/objectConfig" -}; - -module.exports = configSchema; diff --git a/tools/node_modules/eslint/conf/ecma-version.js b/tools/node_modules/eslint/conf/ecma-version.js new file mode 100644 index 00000000000000..48b1e2f7edc261 --- /dev/null +++ b/tools/node_modules/eslint/conf/ecma-version.js @@ -0,0 +1,16 @@ +/** + * @fileoverview Configuration related to ECMAScript versions + * @author Milos Djermanovic + */ + +"use strict"; + +/** + * The latest ECMAScript version supported by ESLint. + * @type {number} year-based ECMAScript version + */ +const LATEST_ECMA_VERSION = 2024; + +module.exports = { + LATEST_ECMA_VERSION +}; diff --git a/tools/node_modules/eslint/conf/globals.js b/tools/node_modules/eslint/conf/globals.js index 58710e05bc6d21..c356adb171414d 100644 --- a/tools/node_modules/eslint/conf/globals.js +++ b/tools/node_modules/eslint/conf/globals.js @@ -70,6 +70,7 @@ const es2015 = { Int16Array: false, Int32Array: false, Int8Array: false, + Intl: false, Map: false, Promise: false, Proxy: false, diff --git a/tools/node_modules/eslint/conf/rule-type-list.json b/tools/node_modules/eslint/conf/rule-type-list.json index 6ca730f34f0297..f48454bb6300db 100644 --- a/tools/node_modules/eslint/conf/rule-type-list.json +++ b/tools/node_modules/eslint/conf/rule-type-list.json @@ -23,6 +23,8 @@ { "removed": "space-in-brackets", "replacedBy": ["object-curly-spacing", "array-bracket-spacing"] }, { "removed": "space-return-throw-case", "replacedBy": ["keyword-spacing"] }, { "removed": "space-unary-word-ops", "replacedBy": ["space-unary-ops"] }, - { "removed": "spaced-line-comment", "replacedBy": ["spaced-comment"] } + { "removed": "spaced-line-comment", "replacedBy": ["spaced-comment"] }, + { "removed": "valid-jsdoc", "replacedBy": [] }, + { "removed": "require-jsdoc", "replacedBy": [] } ] } diff --git a/tools/node_modules/eslint/lib/api.js b/tools/node_modules/eslint/lib/api.js index cbaac8fef1bb19..ab0ec2fcd317f9 100644 --- a/tools/node_modules/eslint/lib/api.js +++ b/tools/node_modules/eslint/lib/api.js @@ -9,8 +9,8 @@ // Requirements //----------------------------------------------------------------------------- -const { ESLint, FlatESLint } = require("./eslint"); -const { shouldUseFlatConfig } = require("./eslint/flat-eslint"); +const { ESLint, shouldUseFlatConfig } = require("./eslint/eslint"); +const { LegacyESLint } = require("./eslint/legacy-eslint"); const { Linter } = require("./linter"); const { RuleTester } = require("./rule-tester"); const { SourceCode } = require("./source-code"); @@ -23,22 +23,18 @@ const { SourceCode } = require("./source-code"); * Loads the correct ESLint constructor given the options. * @param {Object} [options] The options object * @param {boolean} [options.useFlatConfig] Whether or not to use a flat config - * @param {string} [options.cwd] The current working directory * @returns {Promise} The ESLint constructor */ -async function loadESLint({ useFlatConfig, cwd = process.cwd() } = {}) { +async function loadESLint({ useFlatConfig } = {}) { /* - * Note: The v9.x version of this function doesn't have a cwd option - * because it's not used. It's only used in the v8.x version of this - * function. + * Note: The v8.x version of this function also accepted a `cwd` option, but + * it is not used in this implementation so we silently ignore it. */ - const shouldESLintUseFlatConfig = typeof useFlatConfig === "boolean" - ? useFlatConfig - : await shouldUseFlatConfig({ cwd }); + const shouldESLintUseFlatConfig = useFlatConfig ?? (await shouldUseFlatConfig()); - return shouldESLintUseFlatConfig ? FlatESLint : ESLint; + return shouldESLintUseFlatConfig ? ESLint : LegacyESLint; } //----------------------------------------------------------------------------- diff --git a/tools/node_modules/eslint/lib/cli-engine/cli-engine.js b/tools/node_modules/eslint/lib/cli-engine/cli-engine.js index 49c8902c161ce1..43fcc73d029a83 100644 --- a/tools/node_modules/eslint/lib/cli-engine/cli-engine.js +++ b/tools/node_modules/eslint/lib/cli-engine/cli-engine.js @@ -15,8 +15,8 @@ // Requirements //------------------------------------------------------------------------------ -const fs = require("fs"); -const path = require("path"); +const fs = require("node:fs"); +const path = require("node:path"); const defaultOptions = require("../../conf/default-cli-options"); const pkg = require("../../package.json"); @@ -41,6 +41,17 @@ const hash = require("./hash"); const LintResultCache = require("./lint-result-cache"); const debug = require("debug")("eslint:cli-engine"); +const removedFormatters = new Set([ + "checkstyle", + "codeframe", + "compact", + "jslint-xml", + "junit", + "table", + "tap", + "unix", + "visualstudio" +]); const validFixTypes = new Set(["directive", "problem", "suggestion", "layout"]); //------------------------------------------------------------------------------ @@ -639,7 +650,7 @@ class CLIEngine { }); const lintResultCache = options.cache ? new LintResultCache(cacheFilePath, options.cacheStrategy) : null; - const linter = new Linter({ cwd: options.cwd }); + const linter = new Linter({ cwd: options.cwd, configType: "eslintrc" }); /** @type {ConfigArray[]} */ const lastConfigArrays = [configArrayFactory.getConfigArrayForFile()]; @@ -721,7 +732,7 @@ class CLIEngine { * @returns {void} */ static outputFixes(report) { - report.results.filter(result => Object.prototype.hasOwnProperty.call(result, "output")).forEach(result => { + report.results.filter(result => Object.hasOwn(result, "output")).forEach(result => { fs.writeFileSync(result.filePath, result.output); }); } @@ -1047,7 +1058,7 @@ class CLIEngine { try { return require(formatterPath); } catch (ex) { - if (format === "table" || format === "codeframe") { + if (removedFormatters.has(format)) { ex.message = `The ${format} formatter is no longer part of core ESLint. Install it manually with \`npm install -D eslint-formatter-${format}\``; } else { ex.message = `There was a problem loading formatter: ${formatterPath}\nError: ${ex.message}`; diff --git a/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js b/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js index 5dff8d09ccdf77..da5d1039da7f25 100644 --- a/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js +++ b/tools/node_modules/eslint/lib/cli-engine/file-enumerator.js @@ -34,8 +34,8 @@ // Requirements //------------------------------------------------------------------------------ -const fs = require("fs"); -const path = require("path"); +const fs = require("node:fs"); +const path = require("node:path"); const getGlobParent = require("glob-parent"); const isGlob = require("is-glob"); const escapeRegExp = require("escape-string-regexp"); diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js b/tools/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js deleted file mode 100644 index f19b6fc0957e5d..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/checkstyle.js +++ /dev/null @@ -1,60 +0,0 @@ -/** - * @fileoverview CheckStyle XML reporter - * @author Ian Christian Myers - */ -"use strict"; - -const xmlEscape = require("../xml-escape"); - -//------------------------------------------------------------------------------ -// Helper Functions -//------------------------------------------------------------------------------ - -/** - * Returns the severity of warning or error - * @param {Object} message message object to examine - * @returns {string} severity level - * @private - */ -function getMessageType(message) { - if (message.fatal || message.severity === 2) { - return "error"; - } - return "warning"; - -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = function(results) { - - let output = ""; - - output += ""; - output += ""; - - results.forEach(result => { - const messages = result.messages; - - output += ``; - - messages.forEach(message => { - output += [ - `` - ].join(" "); - }); - - output += ""; - - }); - - output += ""; - - return output; -}; diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/compact.js b/tools/node_modules/eslint/lib/cli-engine/formatters/compact.js deleted file mode 100644 index 2b540bde2361c1..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/compact.js +++ /dev/null @@ -1,60 +0,0 @@ -/** - * @fileoverview Compact reporter - * @author Nicholas C. Zakas - */ -"use strict"; - -//------------------------------------------------------------------------------ -// Helper Functions -//------------------------------------------------------------------------------ - -/** - * Returns the severity of warning or error - * @param {Object} message message object to examine - * @returns {string} severity level - * @private - */ -function getMessageType(message) { - if (message.fatal || message.severity === 2) { - return "Error"; - } - return "Warning"; - -} - - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = function(results) { - - let output = "", - total = 0; - - results.forEach(result => { - - const messages = result.messages; - - total += messages.length; - - messages.forEach(message => { - - output += `${result.filePath}: `; - output += `line ${message.line || 0}`; - output += `, col ${message.column || 0}`; - output += `, ${getMessageType(message)}`; - output += ` - ${message.message}`; - output += message.ruleId ? ` (${message.ruleId})` : ""; - output += "\n"; - - }); - - }); - - if (total > 0) { - output += `\n${total} problem${total !== 1 ? "s" : ""}`; - } - - return output; -}; diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json b/tools/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json index bcd35e50428877..4cc61ae3c62d30 100644 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json +++ b/tools/node_modules/eslint/lib/cli-engine/formatters/formatters-meta.json @@ -1,20 +1,8 @@ [ - { - "name": "checkstyle", - "description": "Outputs results to the [Checkstyle](https://checkstyle.sourceforge.io/) format." - }, - { - "name": "compact", - "description": "Human-readable output format. Mimics the default output of JSHint." - }, { "name": "html", "description": "Outputs results to HTML. The `html` formatter is useful for visual presentation in the browser." }, - { - "name": "jslint-xml", - "description": "Outputs results to format compatible with the [JSLint Jenkins plugin](https://plugins.jenkins.io/jslint/)." - }, { "name": "json-with-metadata", "description": "Outputs JSON-serialized results. The `json-with-metadata` provides the same linting results as the [`json`](#json) formatter with additional metadata about the rules applied. The linting results are included in the `results` property and the rules metadata is included in the `metadata` property.\n\nAlternatively, you can use the [ESLint Node.js API](../../integrate/nodejs-api) to programmatically use ESLint." @@ -23,24 +11,8 @@ "name": "json", "description": "Outputs JSON-serialized results. The `json` formatter is useful when you want to programmatically work with the CLI's linting results.\n\nAlternatively, you can use the [ESLint Node.js API](../../integrate/nodejs-api) to programmatically use ESLint." }, - { - "name": "junit", - "description": "Outputs results to format compatible with the [JUnit Jenkins plugin](https://plugins.jenkins.io/junit/)." - }, { "name": "stylish", "description": "Human-readable output format. This is the default formatter." - }, - { - "name": "tap", - "description": "Outputs results to the [Test Anything Protocol (TAP)](https://testanything.org/) specification format." - }, - { - "name": "unix", - "description": "Outputs results to a format similar to many commands in UNIX-like systems. Parsable with tools such as [grep](https://www.gnu.org/software/grep/manual/grep.html), [sed](https://www.gnu.org/software/sed/manual/sed.html), and [awk](https://www.gnu.org/software/gawk/manual/gawk.html)." - }, - { - "name": "visualstudio", - "description": "Outputs results to format compatible with the integrated terminal of the [Visual Studio](https://visualstudio.microsoft.com/) IDE. When using Visual Studio, you can click on the linting results in the integrated terminal to go to the issue in the source code." } -] \ No newline at end of file +] diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js b/tools/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js deleted file mode 100644 index 0ca1cbaed1a3cc..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/jslint-xml.js +++ /dev/null @@ -1,41 +0,0 @@ -/** - * @fileoverview JSLint XML reporter - * @author Ian Christian Myers - */ -"use strict"; - -const xmlEscape = require("../xml-escape"); - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = function(results) { - - let output = ""; - - output += ""; - output += ""; - - results.forEach(result => { - const messages = result.messages; - - output += ``; - - messages.forEach(message => { - output += [ - `` - ].join(" "); - }); - - output += ""; - - }); - - output += ""; - - return output; -}; diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/junit.js b/tools/node_modules/eslint/lib/cli-engine/formatters/junit.js deleted file mode 100644 index a994b4b1980eea..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/junit.js +++ /dev/null @@ -1,82 +0,0 @@ -/** - * @fileoverview jUnit Reporter - * @author Jamund Ferguson - */ -"use strict"; - -const xmlEscape = require("../xml-escape"); -const path = require("path"); - -//------------------------------------------------------------------------------ -// Helper Functions -//------------------------------------------------------------------------------ - -/** - * Returns the severity of warning or error - * @param {Object} message message object to examine - * @returns {string} severity level - * @private - */ -function getMessageType(message) { - if (message.fatal || message.severity === 2) { - return "Error"; - } - return "Warning"; - -} - -/** - * Returns a full file path without extension - * @param {string} filePath input file path - * @returns {string} file path without extension - * @private - */ -function pathWithoutExt(filePath) { - return path.join(path.dirname(filePath), path.basename(filePath, path.extname(filePath))); -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = function(results) { - - let output = ""; - - output += "\n"; - output += "\n"; - - results.forEach(result => { - - const messages = result.messages; - const classname = pathWithoutExt(result.filePath); - - if (messages.length > 0) { - output += `\n`; - messages.forEach(message => { - const type = message.fatal ? "error" : "failure"; - - output += ``; - output += `<${type} message="${xmlEscape(message.message || "")}">`; - output += ""; - output += ``; - output += "\n"; - }); - output += "\n"; - } else { - output += `\n`; - output += `\n`; - output += "\n"; - } - - }); - - output += "\n"; - - return output; -}; diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/unix.js b/tools/node_modules/eslint/lib/cli-engine/formatters/unix.js deleted file mode 100644 index c6c4ebbdb9f4cc..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/unix.js +++ /dev/null @@ -1,58 +0,0 @@ -/** - * @fileoverview unix-style formatter. - * @author oshi-shinobu - */ -"use strict"; - -//------------------------------------------------------------------------------ -// Helper Functions -//------------------------------------------------------------------------------ - -/** - * Returns a canonical error level string based upon the error message passed in. - * @param {Object} message Individual error message provided by eslint - * @returns {string} Error level string - */ -function getMessageType(message) { - if (message.fatal || message.severity === 2) { - return "Error"; - } - return "Warning"; - -} - - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = function(results) { - - let output = "", - total = 0; - - results.forEach(result => { - - const messages = result.messages; - - total += messages.length; - - messages.forEach(message => { - - output += `${result.filePath}:`; - output += `${message.line || 0}:`; - output += `${message.column || 0}:`; - output += ` ${message.message} `; - output += `[${getMessageType(message)}${message.ruleId ? `/${message.ruleId}` : ""}]`; - output += "\n"; - - }); - - }); - - if (total > 0) { - output += `\n${total} problem${total !== 1 ? "s" : ""}`; - } - - return output; -}; diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js b/tools/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js deleted file mode 100644 index 0d49431db87926..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/visualstudio.js +++ /dev/null @@ -1,63 +0,0 @@ -/** - * @fileoverview Visual Studio compatible formatter - * @author Ronald Pijnacker - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Helper Functions -//------------------------------------------------------------------------------ - -/** - * Returns the severity of warning or error - * @param {Object} message message object to examine - * @returns {string} severity level - * @private - */ -function getMessageType(message) { - if (message.fatal || message.severity === 2) { - return "error"; - } - return "warning"; - -} - - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = function(results) { - - let output = "", - total = 0; - - results.forEach(result => { - - const messages = result.messages; - - total += messages.length; - - messages.forEach(message => { - - output += result.filePath; - output += `(${message.line || 0}`; - output += message.column ? `,${message.column}` : ""; - output += `): ${getMessageType(message)}`; - output += message.ruleId ? ` ${message.ruleId}` : ""; - output += ` : ${message.message}`; - output += "\n"; - - }); - - }); - - if (total === 0) { - output += "no problems"; - } else { - output += `\n${total} problem${total !== 1 ? "s" : ""}`; - } - - return output; -}; diff --git a/tools/node_modules/eslint/lib/cli-engine/lint-result-cache.js b/tools/node_modules/eslint/lib/cli-engine/lint-result-cache.js index 97d2ee40b39955..75e770f4b28a49 100644 --- a/tools/node_modules/eslint/lib/cli-engine/lint-result-cache.js +++ b/tools/node_modules/eslint/lib/cli-engine/lint-result-cache.js @@ -8,8 +8,8 @@ // Requirements //----------------------------------------------------------------------------- -const assert = require("assert"); -const fs = require("fs"); +const assert = require("node:assert"); +const fs = require("node:fs"); const fileEntryCache = require("file-entry-cache"); const stringify = require("json-stable-stringify-without-jsonify"); const pkg = require("../../package.json"); @@ -164,7 +164,7 @@ class LintResultCache { * @returns {void} */ setCachedLintResults(filePath, config, result) { - if (result && Object.prototype.hasOwnProperty.call(result, "output")) { + if (result && Object.hasOwn(result, "output")) { return; } @@ -181,7 +181,7 @@ class LintResultCache { * In `getCachedLintResults`, if source is explicitly null, we will * read the file from the filesystem to set the value again. */ - if (Object.prototype.hasOwnProperty.call(resultToSerialize, "source")) { + if (Object.hasOwn(resultToSerialize, "source")) { resultToSerialize.source = null; } diff --git a/tools/node_modules/eslint/lib/cli-engine/load-rules.js b/tools/node_modules/eslint/lib/cli-engine/load-rules.js index 81bab63fab6330..a58f954e8684d8 100644 --- a/tools/node_modules/eslint/lib/cli-engine/load-rules.js +++ b/tools/node_modules/eslint/lib/cli-engine/load-rules.js @@ -9,8 +9,8 @@ // Requirements //------------------------------------------------------------------------------ -const fs = require("fs"), - path = require("path"); +const fs = require("node:fs"), + path = require("node:path"); const rulesDirCache = {}; diff --git a/tools/node_modules/eslint/lib/cli-engine/xml-escape.js b/tools/node_modules/eslint/lib/cli-engine/xml-escape.js deleted file mode 100644 index 2e52dbaac02235..00000000000000 --- a/tools/node_modules/eslint/lib/cli-engine/xml-escape.js +++ /dev/null @@ -1,34 +0,0 @@ -/** - * @fileoverview XML character escaper - * @author George Chung - */ -"use strict"; - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -/** - * Returns the escaped value for a character - * @param {string} s string to examine - * @returns {string} severity level - * @private - */ -module.exports = function(s) { - return (`${s}`).replace(/[<>&"'\x00-\x1F\x7F\u0080-\uFFFF]/gu, c => { // eslint-disable-line no-control-regex -- Converting controls to entities - switch (c) { - case "<": - return "<"; - case ">": - return ">"; - case "&": - return "&"; - case "\"": - return """; - case "'": - return "'"; - default: - return `&#${c.charCodeAt(0)};`; - } - }); -}; diff --git a/tools/node_modules/eslint/lib/cli.js b/tools/node_modules/eslint/lib/cli.js index 1d909ec1cf2009..d07f81b28f2b46 100644 --- a/tools/node_modules/eslint/lib/cli.js +++ b/tools/node_modules/eslint/lib/cli.js @@ -15,11 +15,11 @@ // Requirements //------------------------------------------------------------------------------ -const fs = require("fs"), - path = require("path"), - { promisify } = require("util"), - { ESLint } = require("./eslint"), - { FlatESLint, shouldUseFlatConfig } = require("./eslint/flat-eslint"), +const fs = require("node:fs"), + path = require("node:path"), + { promisify } = require("node:util"), + { LegacyESLint } = require("./eslint"), + { ESLint, shouldUseFlatConfig, locateConfigFileToUse } = require("./eslint/eslint"), createCLIOptions = require("./options"), log = require("./shared/logging"), RuntimeInfo = require("./shared/runtime-info"), @@ -37,6 +37,7 @@ const debug = require("debug")("eslint:cli"); /** @typedef {import("./eslint/eslint").LintMessage} LintMessage */ /** @typedef {import("./eslint/eslint").LintResult} LintResult */ /** @typedef {import("./options").ParsedCLIOptions} ParsedCLIOptions */ +/** @typedef {import("./shared/types").Plugin} Plugin */ /** @typedef {import("./shared/types").ResultsMeta} ResultsMeta */ //------------------------------------------------------------------------------ @@ -47,6 +48,32 @@ const mkdir = promisify(fs.mkdir); const stat = promisify(fs.stat); const writeFile = promisify(fs.writeFile); +/** + * Loads plugins with the specified names. + * @param {{ "import": (name: string) => Promise }} importer An object with an `import` method called once for each plugin. + * @param {string[]} pluginNames The names of the plugins to be loaded, with or without the "eslint-plugin-" prefix. + * @returns {Promise>} A mapping of plugin short names to implementations. + */ +async function loadPlugins(importer, pluginNames) { + const plugins = {}; + + await Promise.all(pluginNames.map(async pluginName => { + + const longName = naming.normalizePackageName(pluginName, "eslint-plugin"); + const module = await importer.import(longName); + + if (!("default" in module)) { + throw new Error(`"${longName}" cannot be used with the \`--plugin\` option because its default module does not provide a \`default\` export`); + } + + const shortName = naming.getShorthandName(pluginName, "eslint-plugin"); + + plugins[shortName] = module.default; + })); + + return plugins; +} + /** * Predicate function for whether or not to apply fixes in quiet mode. * If a message is a warning, do not apply a fix. @@ -58,6 +85,16 @@ function quietFixPredicate(message) { return message.severity === 2; } +/** + * Predicate function for whether or not to run a rule in quiet mode. + * If a rule is set to warning, do not run it. + * @param {{ ruleId: string; severity: number; }} rule The rule id and severity. + * @returns {boolean} True if the lint rule should run, false otherwise. + */ +function quietRuleFilter(rule) { + return rule.severity === 2; +} + /** * Translates the CLI options into the options expected by the ESLint constructor. * @param {ParsedCLIOptions} cliOptions The CLI options to translate. @@ -94,7 +131,10 @@ async function translateOptions({ resolvePluginsRelativeTo, rule, rulesdir, - warnIgnored + stats, + warnIgnored, + passOnNoPatterns, + maxWarnings }, configType) { let overrideConfig, overrideConfigFile; @@ -140,17 +180,7 @@ async function translateOptions({ } if (plugin) { - const plugins = {}; - - for (const pluginName of plugin) { - - const shortName = naming.getShorthandName(pluginName, "eslint-plugin"); - const longName = naming.normalizePackageName(pluginName, "eslint-plugin"); - - plugins[shortName] = await importer.import(longName); - } - - overrideConfig[0].plugins = plugins; + overrideConfig[0].plugins = await loadPlugins(importer, plugin); } } else { @@ -187,12 +217,20 @@ async function translateOptions({ fixTypes: fixType, ignore, overrideConfig, - overrideConfigFile + overrideConfigFile, + passOnNoPatterns }; if (configType === "flat") { options.ignorePatterns = ignorePattern; + options.stats = stats; options.warnIgnored = warnIgnored; + + /* + * For performance reasons rules not marked as 'error' are filtered out in quiet mode. As maxWarnings + * requires rules set to 'warn' to be run, we only filter out 'warn' rules if maxWarnings is not specified. + */ + options.ruleFilter = quiet && maxWarnings === -1 ? quietRuleFilter : () => true; } else { options.resolvePluginsRelativeTo = resolvePluginsRelativeTo; options.rulePaths = rulesdir; @@ -266,25 +304,23 @@ async function printResults(engine, results, format, outputFile, resultsMeta) { const output = await formatter.format(results, resultsMeta); - if (output) { - if (outputFile) { - const filePath = path.resolve(process.cwd(), outputFile); + if (outputFile) { + const filePath = path.resolve(process.cwd(), outputFile); - if (await isDirectory(filePath)) { - log.error("Cannot write to output file path, it is a directory: %s", outputFile); - return false; - } + if (await isDirectory(filePath)) { + log.error("Cannot write to output file path, it is a directory: %s", outputFile); + return false; + } - try { - await mkdir(path.dirname(filePath), { recursive: true }); - await writeFile(filePath, output); - } catch (ex) { - log.error("There was a problem writing the output file:\n%s", ex); - return false; - } - } else { - log.info(output); + try { + await mkdir(path.dirname(filePath), { recursive: true }); + await writeFile(filePath, output); + } catch (ex) { + log.error("There was a problem writing the output file:\n%s", ex); + return false; } + } else if (output) { + log.info(output); } return true; @@ -300,14 +336,35 @@ async function printResults(engine, results, format, outputFile, resultsMeta) { */ const cli = { + /** + * Calculates the command string for the --inspect-config operation. + * @param {string} configFile The path to the config file to inspect. + * @returns {Promise} The command string to execute. + */ + async calculateInspectConfigFlags(configFile) { + + // find the config file + const { + configFilePath, + basePath, + error + } = await locateConfigFileToUse({ cwd: process.cwd(), configFile }); + + if (error) { + throw error; + } + + return ["--config", configFilePath, "--basePath", basePath]; + }, + /** * Executes the CLI based on an array of arguments that is passed in. * @param {string|Array|Object} args The arguments to process. * @param {string} [text] The text to lint (used for TTY). - * @param {boolean} [allowFlatConfig] Whether or not to allow flat config. + * @param {boolean} [allowFlatConfig=true] Whether or not to allow flat config. * @returns {Promise} The exit code for the operation. */ - async execute(args, text, allowFlatConfig) { + async execute(args, text, allowFlatConfig = true) { if (Array.isArray(args)) { debug("CLI args: %o", args.slice(2)); } @@ -323,6 +380,10 @@ const cli = { debug("Using flat config?", usingFlatConfig); + if (allowFlatConfig && !usingFlatConfig) { + process.emitWarning("You are using an eslintrc configuration file, which is deprecated and support will be removed in v10.0.0. Please migrate to an eslint.config.js file. See https://eslint.org/docs/latest/use/configure/migration-guide for details.", "ESLintRCWarning"); + } + const CLIOptions = createCLIOptions(usingFlatConfig); /** @type {ParsedCLIOptions} */ @@ -376,8 +437,8 @@ const cli = { } const engine = usingFlatConfig - ? new FlatESLint(await translateOptions(options, "flat")) - : new ESLint(await translateOptions(options)); + ? new ESLint(await translateOptions(options, "flat")) + : new LegacyESLint(await translateOptions(options)); const fileConfig = await engine.calculateConfigForFile(options.printConfig); @@ -385,6 +446,24 @@ const cli = { return 0; } + if (options.inspectConfig) { + + log.info("You can also run this command directly using 'npx @eslint/config-inspector' in the same directory as your configuration file."); + + try { + const flatOptions = await translateOptions(options, "flat"); + const spawn = require("cross-spawn"); + const flags = await cli.calculateInspectConfigFlags(flatOptions.overrideConfigFile); + + spawn.sync("npx", ["@eslint/config-inspector", ...flags], { encoding: "utf8", stdio: "inherit" }); + } catch (error) { + log.error(error); + return 2; + } + + return 0; + } + debug(`Running on ${useStdin ? "text" : "files"}`); if (options.fix && options.fixDryRun) { @@ -405,7 +484,7 @@ const cli = { return 2; } - const ActiveESLint = usingFlatConfig ? FlatESLint : ESLint; + const ActiveESLint = usingFlatConfig ? ESLint : LegacyESLint; const engine = new ActiveESLint(await translateOptions(options, usingFlatConfig ? "flat" : "eslintrc")); let results; diff --git a/tools/node_modules/eslint/lib/config/default-config.js b/tools/node_modules/eslint/lib/config/default-config.js index 8a6ff820057de8..670096f76dd518 100644 --- a/tools/node_modules/eslint/lib/config/default-config.js +++ b/tools/node_modules/eslint/lib/config/default-config.js @@ -42,6 +42,9 @@ exports.defaultConfig = [ ecmaVersion: "latest", parser: require("espree"), parserOptions: {} + }, + linterOptions: { + reportUnusedDisableDirectives: 1 } }, diff --git a/tools/node_modules/eslint/lib/config/flat-config-array.js b/tools/node_modules/eslint/lib/config/flat-config-array.js index 689dc429f5021f..4312066d18d3dd 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-array.js +++ b/tools/node_modules/eslint/lib/config/flat-config-array.js @@ -13,12 +13,16 @@ const { ConfigArray, ConfigArraySymbol } = require("@humanwhocodes/config-array" const { flatConfigSchema } = require("./flat-config-schema"); const { RuleValidator } = require("./rule-validator"); const { defaultConfig } = require("./default-config"); -const jsPlugin = require("@eslint/js"); //----------------------------------------------------------------------------- // Helpers //----------------------------------------------------------------------------- +/** + * Fields that are considered metadata and not part of the config object. + */ +const META_FIELDS = new Set(["name"]); + const ruleValidator = new RuleValidator(); /** @@ -75,7 +79,53 @@ function getObjectId(object) { return name; } +/** + * Wraps a config error with details about where the error occurred. + * @param {Error} error The original error. + * @param {number} originalLength The original length of the config array. + * @param {number} baseLength The length of the base config. + * @returns {TypeError} The new error with details. + */ +function wrapConfigErrorWithDetails(error, originalLength, baseLength) { + + let location = "user-defined"; + let configIndex = error.index; + + /* + * A config array is set up in this order: + * 1. Base config + * 2. Original configs + * 3. User-defined configs + * 4. CLI-defined configs + * + * So we need to adjust the index to account for the base config. + * + * - If the index is less than the base length, it's in the base config + * (as specified by `baseConfig` argument to `FlatConfigArray` constructor). + * - If the index is greater than the base length but less than the original + * length + base length, it's in the original config. The original config + * is passed to the `FlatConfigArray` constructor as the first argument. + * - Otherwise, it's in the user-defined config, which is loaded from the + * config file and merged with any command-line options. + */ + if (error.index < baseLength) { + location = "base"; + } else if (error.index < originalLength + baseLength) { + location = "original"; + configIndex = error.index - baseLength; + } else { + configIndex = error.index - originalLength - baseLength; + } + + return new TypeError( + `${error.message.slice(0, -1)} at ${location} index ${configIndex}.`, + { cause: error } + ); +} + const originalBaseConfig = Symbol("originalBaseConfig"); +const originalLength = Symbol("originalLength"); +const baseLength = Symbol("baseLength"); //----------------------------------------------------------------------------- // Exports @@ -102,12 +152,24 @@ class FlatConfigArray extends ConfigArray { schema: flatConfigSchema }); + /** + * The original length of the array before any modifications. + * @type {number} + */ + this[originalLength] = this.length; + if (baseConfig[Symbol.iterator]) { this.unshift(...baseConfig); } else { this.unshift(baseConfig); } + /** + * The length of the array after applying the base config. + * @type {number} + */ + this[baseLength] = this.length - this[originalLength]; + /** * The base config used to build the config array. * @type {Array} @@ -125,45 +187,69 @@ class FlatConfigArray extends ConfigArray { Object.defineProperty(this, "shouldIgnore", { writable: false }); } - /* eslint-disable class-methods-use-this -- Desired as instance method */ /** - * Replaces a config with another config to allow us to put strings - * in the config array that will be replaced by objects before - * normalization. - * @param {Object} config The config to preprocess. - * @returns {Object} The preprocessed config. + * Normalizes the array by calling the superclass method and catching/rethrowing + * any ConfigError exceptions with additional details. + * @param {any} [context] The context to use to normalize the array. + * @returns {Promise} A promise that resolves when the array is normalized. */ - [ConfigArraySymbol.preprocessConfig](config) { - if (config === "eslint:recommended") { + normalize(context) { + return super.normalize(context) + .catch(error => { + if (error.name === "ConfigError") { + throw wrapConfigErrorWithDetails(error, this[originalLength], this[baseLength]); + } - // if we are in a Node.js environment warn the user - if (typeof process !== "undefined" && process.emitWarning) { - process.emitWarning("The 'eslint:recommended' string configuration is deprecated and will be replaced by the @eslint/js package's 'recommended' config."); - } + throw error; - return jsPlugin.configs.recommended; - } + }); + } + + /** + * Normalizes the array by calling the superclass method and catching/rethrowing + * any ConfigError exceptions with additional details. + * @param {any} [context] The context to use to normalize the array. + * @returns {FlatConfigArray} The current instance. + * @throws {TypeError} If the config is invalid. + */ + normalizeSync(context) { + + try { - if (config === "eslint:all") { + return super.normalizeSync(context); - // if we are in a Node.js environment warn the user - if (typeof process !== "undefined" && process.emitWarning) { - process.emitWarning("The 'eslint:all' string configuration is deprecated and will be replaced by the @eslint/js package's 'all' config."); + } catch (error) { + + if (error.name === "ConfigError") { + throw wrapConfigErrorWithDetails(error, this[originalLength], this[baseLength]); } - return jsPlugin.configs.all; + throw error; + } + } + + /* eslint-disable class-methods-use-this -- Desired as instance method */ + /** + * Replaces a config with another config to allow us to put strings + * in the config array that will be replaced by objects before + * normalization. + * @param {Object} config The config to preprocess. + * @returns {Object} The preprocessed config. + */ + [ConfigArraySymbol.preprocessConfig](config) { + /* - * If `shouldIgnore` is false, we remove any ignore patterns specified - * in the config so long as it's not a default config and it doesn't - * have a `files` entry. + * If a config object has `ignores` and no other non-meta fields, then it's an object + * for global ignores. If `shouldIgnore` is false, that object shouldn't apply, + * so we'll remove its `ignores`. */ if ( !this.shouldIgnore && !this[originalBaseConfig].includes(config) && config.ignores && - !config.files + Object.keys(config).filter(key => !META_FIELDS.has(key)).length === 1 ) { /* eslint-disable-next-line no-unused-vars -- need to strip off other keys */ const { ignores, ...otherKeys } = config; diff --git a/tools/node_modules/eslint/lib/config/flat-config-helpers.js b/tools/node_modules/eslint/lib/config/flat-config-helpers.js index e00c56434cd5b4..0280255932c1ce 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-helpers.js +++ b/tools/node_modules/eslint/lib/config/flat-config-helpers.js @@ -5,6 +5,23 @@ "use strict"; +//------------------------------------------------------------------------------ +// Typedefs +//------------------------------------------------------------------------------ + +/** @typedef {import("../shared/types").Rule} Rule */ + +//------------------------------------------------------------------------------ +// Private Members +//------------------------------------------------------------------------------ + +// JSON schema that disallows passing any options +const noOptionsSchema = Object.freeze({ + type: "array", + minItems: 0, + maxItems: 0 +}); + //----------------------------------------------------------------------------- // Functions //----------------------------------------------------------------------------- @@ -52,32 +69,39 @@ function getRuleFromConfig(ruleId, config) { const { pluginName, ruleName } = parseRuleId(ruleId); const plugin = config.plugins && config.plugins[pluginName]; - let rule = plugin && plugin.rules && plugin.rules[ruleName]; - - - // normalize function rules into objects - if (rule && typeof rule === "function") { - rule = { - create: rule - }; - } + const rule = plugin && plugin.rules && plugin.rules[ruleName]; return rule; } /** * Gets a complete options schema for a rule. - * @param {{create: Function, schema: (Array|null)}} rule A new-style rule object - * @returns {Object} JSON Schema for the rule's options. + * @param {Rule} rule A rule object + * @throws {TypeError} If `meta.schema` is specified but is not an array, object or `false`. + * @returns {Object|null} JSON Schema for the rule's options. `null` if `meta.schema` is `false`. */ function getRuleOptionsSchema(rule) { - if (!rule) { + if (!rule.meta) { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } + + const schema = rule.meta.schema; + + if (typeof schema === "undefined") { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } + + // `schema:false` is an allowed explicit opt-out of options validation for the rule + if (schema === false) { return null; } - const schema = rule.schema || rule.meta && rule.meta.schema; + if (typeof schema !== "object" || schema === null) { + throw new TypeError("Rule's `meta.schema` must be an array or object"); + } + // ESLint-specific array form needs to be converted into a valid JSON Schema definition if (Array.isArray(schema)) { if (schema.length) { return { @@ -87,16 +111,13 @@ function getRuleOptionsSchema(rule) { maxItems: schema.length }; } - return { - type: "array", - minItems: 0, - maxItems: 0 - }; + // `schema:[]` is an explicit way to specify that the rule does not accept any options + return { ...noOptionsSchema }; } - // Given a full schema, leave it alone - return schema || null; + // `schema:` is assumed to be a valid JSON Schema definition + return schema; } diff --git a/tools/node_modules/eslint/lib/config/flat-config-schema.js b/tools/node_modules/eslint/lib/config/flat-config-schema.js index 6b64319c8fcd85..ce86229c4292ff 100644 --- a/tools/node_modules/eslint/lib/config/flat-config-schema.js +++ b/tools/node_modules/eslint/lib/config/flat-config-schema.js @@ -9,11 +9,6 @@ // Requirements //----------------------------------------------------------------------------- -/* - * Note: This can be removed in ESLint v9 because structuredClone is available globally - * starting in Node.js v17. - */ -const structuredClone = require("@ungap/structured-clone").default; const { normalizeSeverityToNumber } = require("../shared/severity"); //----------------------------------------------------------------------------- @@ -593,6 +588,5 @@ const flatConfigSchema = { module.exports = { flatConfigSchema, - assertIsRuleSeverity, - assertIsRuleOptions + assertIsRuleSeverity }; diff --git a/tools/node_modules/eslint/lib/config/rule-validator.js b/tools/node_modules/eslint/lib/config/rule-validator.js index eee5b40bd07b0d..3b4ea6122cbcaa 100644 --- a/tools/node_modules/eslint/lib/config/rule-validator.js +++ b/tools/node_modules/eslint/lib/config/rule-validator.js @@ -66,6 +66,25 @@ function throwRuleNotFoundError({ pluginName, ruleName }, config) { throw new TypeError(errorMessage); } +/** + * The error type when a rule has an invalid `meta.schema`. + */ +class InvalidRuleOptionsSchemaError extends Error { + + /** + * Creates a new instance. + * @param {string} ruleId Id of the rule that has an invalid `meta.schema`. + * @param {Error} processingError Error caught while processing the `meta.schema`. + */ + constructor(ruleId, processingError) { + super( + `Error while processing options validation schema of rule '${ruleId}': ${processingError.message}`, + { cause: processingError } + ); + this.code = "ESLINT_INVALID_RULE_OPTIONS_SCHEMA"; + } +} + //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- @@ -130,10 +149,14 @@ class RuleValidator { // Precompile and cache validator the first time if (!this.validators.has(rule)) { - const schema = getRuleOptionsSchema(rule); - - if (schema) { - this.validators.set(rule, ajv.compile(schema)); + try { + const schema = getRuleOptionsSchema(rule); + + if (schema) { + this.validators.set(rule, ajv.compile(schema)); + } + } catch (err) { + throw new InvalidRuleOptionsSchemaError(ruleId, err); } } @@ -144,9 +167,22 @@ class RuleValidator { validateRule(ruleOptions.slice(1)); if (validateRule.errors) { - throw new Error(`Key "rules": Key "${ruleId}": ${ + throw new Error(`Key "rules": Key "${ruleId}":\n${ validateRule.errors.map( - error => `\tValue ${JSON.stringify(error.data)} ${error.message}.\n` + error => { + if ( + error.keyword === "additionalProperties" && + error.schema === false && + typeof error.parentSchema?.properties === "object" && + typeof error.params?.additionalProperty === "string" + ) { + const expectedProperties = Object.keys(error.parentSchema.properties).map(property => `"${property}"`); + + return `\tValue ${JSON.stringify(error.data)} ${error.message}.\n\t\tUnexpected property "${error.params.additionalProperty}". Expected properties: ${expectedProperties.join(", ")}.\n`; + } + + return `\tValue ${JSON.stringify(error.data)} ${error.message}.\n`; + } ).join("") }`); } diff --git a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js index 685826ac69cfc9..65dfbfb83f41a7 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint-helpers.js +++ b/tools/node_modules/eslint/lib/eslint/eslint-helpers.js @@ -9,13 +9,12 @@ // Requirements //----------------------------------------------------------------------------- -const path = require("path"); -const fs = require("fs"); +const path = require("node:path"); +const fs = require("node:fs"); const fsp = fs.promises; const isGlob = require("is-glob"); const hash = require("../cli-engine/hash"); const minimatch = require("minimatch"); -const util = require("util"); const fswalk = require("@nodelib/fs.walk"); const globParent = require("glob-parent"); const isPathInside = require("is-path-inside"); @@ -24,7 +23,6 @@ const isPathInside = require("is-path-inside"); // Fixup references //----------------------------------------------------------------------------- -const doFsWalk = util.promisify(fswalk.walk); const Minimatch = minimatch.Minimatch; const MINIMATCH_OPTIONS = { dot: true }; @@ -105,20 +103,30 @@ class AllFilesIgnoredError extends Error { /** * Check if a given value is a non-empty string or not. - * @param {any} x The value to check. - * @returns {boolean} `true` if `x` is a non-empty string. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is a non-empty string. */ -function isNonEmptyString(x) { - return typeof x === "string" && x.trim() !== ""; +function isNonEmptyString(value) { + return typeof value === "string" && value.trim() !== ""; } /** * Check if a given value is an array of non-empty strings or not. - * @param {any} x The value to check. - * @returns {boolean} `true` if `x` is an array of non-empty strings. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is an array of non-empty strings. + */ +function isArrayOfNonEmptyString(value) { + return Array.isArray(value) && value.length && value.every(isNonEmptyString); +} + +/** + * Check if a given value is an empty array or an array of non-empty strings. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is an empty array or an array of non-empty + * strings. */ -function isArrayOfNonEmptyString(x) { - return Array.isArray(x) && x.every(isNonEmptyString); +function isEmptyArrayOrArrayOfNonEmptyString(value) { + return Array.isArray(value) && value.every(isNonEmptyString); } //----------------------------------------------------------------------------- @@ -270,56 +278,92 @@ async function globSearch({ */ const unmatchedPatterns = new Set([...relativeToPatterns.keys()]); - const filePaths = (await doFsWalk(basePath, { - - deepFilter(entry) { - const relativePath = normalizeToPosix(path.relative(basePath, entry.path)); - const matchesPattern = matchers.some(matcher => matcher.match(relativePath, true)); + const filePaths = (await new Promise((resolve, reject) => { - return matchesPattern && !configs.isDirectoryIgnored(entry.path); - }, - entryFilter(entry) { - const relativePath = normalizeToPosix(path.relative(basePath, entry.path)); + let promiseRejected = false; - // entries may be directories or files so filter out directories - if (entry.dirent.isDirectory()) { + /** + * Wraps a boolean-returning filter function. The wrapped function will reject the promise if an error occurs. + * @param {Function} filter A filter function to wrap. + * @returns {Function} A function similar to the wrapped filter that rejects the promise if an error occurs. + */ + function wrapFilter(filter) { + return (...args) => { + + // No need to run the filter if an error has been thrown. + if (!promiseRejected) { + try { + return filter(...args); + } catch (error) { + promiseRejected = true; + reject(error); + } + } return false; - } + }; + } - /* - * Optimization: We need to track when patterns are left unmatched - * and so we use `unmatchedPatterns` to do that. There is a bit of - * complexity here because the same file can be matched by more than - * one pattern. So, when we start, we actually need to test every - * pattern against every file. Once we know there are no remaining - * unmatched patterns, then we can switch to just looking for the - * first matching pattern for improved speed. - */ - const matchesPattern = unmatchedPatterns.size > 0 - ? matchers.reduce((previousValue, matcher) => { - const pathMatches = matcher.match(relativePath); + fswalk.walk( + basePath, + { + deepFilter: wrapFilter(entry => { + const relativePath = normalizeToPosix(path.relative(basePath, entry.path)); + const matchesPattern = matchers.some(matcher => matcher.match(relativePath, true)); + + return matchesPattern && !configs.isDirectoryIgnored(entry.path); + }), + entryFilter: wrapFilter(entry => { + const relativePath = normalizeToPosix(path.relative(basePath, entry.path)); + + // entries may be directories or files so filter out directories + if (entry.dirent.isDirectory()) { + return false; + } /* - * We updated the unmatched patterns set only if the path - * matches and the file isn't ignored. If the file is - * ignored, that means there wasn't a match for the - * pattern so it should not be removed. - * - * Performance note: isFileIgnored() aggressively caches - * results so there is no performance penalty for calling - * it twice with the same argument. + * Optimization: We need to track when patterns are left unmatched + * and so we use `unmatchedPatterns` to do that. There is a bit of + * complexity here because the same file can be matched by more than + * one pattern. So, when we start, we actually need to test every + * pattern against every file. Once we know there are no remaining + * unmatched patterns, then we can switch to just looking for the + * first matching pattern for improved speed. */ - if (pathMatches && !configs.isFileIgnored(entry.path)) { - unmatchedPatterns.delete(matcher.pattern); - } - - return pathMatches || previousValue; - }, false) - : matchers.some(matcher => matcher.match(relativePath)); - - return matchesPattern && !configs.isFileIgnored(entry.path); - } - + const matchesPattern = unmatchedPatterns.size > 0 + ? matchers.reduce((previousValue, matcher) => { + const pathMatches = matcher.match(relativePath); + + /* + * We updated the unmatched patterns set only if the path + * matches and the file isn't ignored. If the file is + * ignored, that means there wasn't a match for the + * pattern so it should not be removed. + * + * Performance note: isFileIgnored() aggressively caches + * results so there is no performance penalty for calling + * it twice with the same argument. + */ + if (pathMatches && !configs.isFileIgnored(entry.path)) { + unmatchedPatterns.delete(matcher.pattern); + } + + return pathMatches || previousValue; + }, false) + : matchers.some(matcher => matcher.match(relativePath)); + + return matchesPattern && !configs.isFileIgnored(entry.path); + }) + }, + (error, entries) => { + + // If the promise is already rejected, calling `resolve` or `reject` will do nothing. + if (error) { + reject(error); + } else { + resolve(entries); + } + } + ); })).map(entry => entry.path); // now check to see if we have any unmatched patterns @@ -655,9 +699,9 @@ class ESLintInvalidOptionsError extends Error { /** * Validates and normalizes options for the wrapped CLIEngine instance. - * @param {FlatESLintOptions} options The options to process. + * @param {ESLintOptions} options The options to process. * @throws {ESLintInvalidOptionsError} If of any of a variety of type errors. - * @returns {FlatESLintOptions} The normalized options. + * @returns {ESLintOptions} The normalized options. */ function processOptions({ allowInlineConfig = true, // ← we cannot use `overrideConfig.noInlineConfig` instead because `allowInlineConfig` has side-effect that suppress warnings that show inline configs are ignored. @@ -675,7 +719,10 @@ function processOptions({ overrideConfig = null, overrideConfigFile = null, plugins = {}, + stats = false, warnIgnored = true, + passOnNoPatterns = false, + ruleFilter = () => true, ...unknownOptions }) { const errors = []; @@ -759,7 +806,7 @@ function processOptions({ if (typeof ignore !== "boolean") { errors.push("'ignore' must be a boolean."); } - if (!isArrayOfNonEmptyString(ignorePatterns) && ignorePatterns !== null) { + if (!isEmptyArrayOrArrayOfNonEmptyString(ignorePatterns) && ignorePatterns !== null) { errors.push("'ignorePatterns' must be an array of non-empty strings or null."); } if (typeof overrideConfig !== "object") { @@ -768,6 +815,9 @@ function processOptions({ if (!isNonEmptyString(overrideConfigFile) && overrideConfigFile !== null && overrideConfigFile !== true) { errors.push("'overrideConfigFile' must be a non-empty string, null, or true."); } + if (typeof passOnNoPatterns !== "boolean") { + errors.push("'passOnNoPatterns' must be a boolean."); + } if (typeof plugins !== "object") { errors.push("'plugins' must be an object or null."); } else if (plugins !== null && Object.keys(plugins).includes("")) { @@ -776,9 +826,15 @@ function processOptions({ if (Array.isArray(plugins)) { errors.push("'plugins' doesn't add plugins to configuration to load. Please use the 'overrideConfig.plugins' option instead."); } + if (typeof stats !== "boolean") { + errors.push("'stats' must be a boolean."); + } if (typeof warnIgnored !== "boolean") { errors.push("'warnIgnored' must be a boolean."); } + if (typeof ruleFilter !== "function") { + errors.push("'ruleFilter' must be a function."); + } if (errors.length > 0) { throw new ESLintInvalidOptionsError(errors); } @@ -800,7 +856,10 @@ function processOptions({ globInputPaths, ignore, ignorePatterns, - warnIgnored + stats, + passOnNoPatterns, + warnIgnored, + ruleFilter }; } @@ -887,7 +946,6 @@ function getCacheFile(cacheFile, cwd) { //----------------------------------------------------------------------------- module.exports = { - isGlobPattern, findFiles, isNonEmptyString, diff --git a/tools/node_modules/eslint/lib/eslint/eslint.js b/tools/node_modules/eslint/lib/eslint/eslint.js index 7085d5a4de2bac..93efd149c64142 100644 --- a/tools/node_modules/eslint/lib/eslint/eslint.js +++ b/tools/node_modules/eslint/lib/eslint/eslint.js @@ -1,7 +1,6 @@ /** - * @fileoverview Main API Class - * @author Kai Cataldo - * @author Toru Nagashima + * @fileoverview Main class using flat config + * @author Nicholas C. Zakas */ "use strict"; @@ -10,39 +9,60 @@ // Requirements //------------------------------------------------------------------------------ -const path = require("path"); -const fs = require("fs"); -const { promisify } = require("util"); -const { CLIEngine, getCLIEngineInternalSlots } = require("../cli-engine/cli-engine"); -const BuiltinRules = require("../rules"); +const fs = require("node:fs/promises"); +const { existsSync } = require("node:fs"); +const path = require("node:path"); +const findUp = require("find-up"); +const { version } = require("../../package.json"); +const { Linter } = require("../linter"); +const { getRuleFromConfig } = require("../config/flat-config-helpers"); const { Legacy: { ConfigOps: { getRuleSeverity - } + }, + ModuleResolver, + naming } } = require("@eslint/eslintrc"); -const { version } = require("../../package.json"); + +const { + findFiles, + getCacheFile, + + isNonEmptyString, + isArrayOfNonEmptyString, + + createIgnoreResult, + isErrorMessage, + + processOptions +} = require("./eslint-helpers"); +const { pathToFileURL } = require("node:url"); +const { FlatConfigArray } = require("../config/flat-config-array"); +const LintResultCache = require("../cli-engine/lint-result-cache"); +const { Retrier } = require("@humanwhocodes/retry"); + +/* + * This is necessary to allow overwriting writeFile for testing purposes. + * We can just use fs/promises once we drop Node.js 12 support. + */ //------------------------------------------------------------------------------ // Typedefs //------------------------------------------------------------------------------ -/** @typedef {import("../cli-engine/cli-engine").LintReport} CLIEngineLintReport */ -/** @typedef {import("../shared/types").DeprecatedRuleInfo} DeprecatedRuleInfo */ +// For VSCode IntelliSense /** @typedef {import("../shared/types").ConfigData} ConfigData */ +/** @typedef {import("../shared/types").DeprecatedRuleInfo} DeprecatedRuleInfo */ /** @typedef {import("../shared/types").LintMessage} LintMessage */ -/** @typedef {import("../shared/types").SuppressedLintMessage} SuppressedLintMessage */ -/** @typedef {import("../shared/types").Plugin} Plugin */ -/** @typedef {import("../shared/types").Rule} Rule */ /** @typedef {import("../shared/types").LintResult} LintResult */ +/** @typedef {import("../shared/types").ParserOptions} ParserOptions */ +/** @typedef {import("../shared/types").Plugin} Plugin */ /** @typedef {import("../shared/types").ResultsMeta} ResultsMeta */ - -/** - * The main formatter object. - * @typedef LoadedFormatter - * @property {(results: LintResult[], resultsMeta: ResultsMeta) => string | Promise} format format function. - */ +/** @typedef {import("../shared/types").RuleConf} RuleConf */ +/** @typedef {import("../shared/types").Rule} Rule */ +/** @typedef {ReturnType} ExtractedConfig */ /** * The options with which to configure the ESLint instance. @@ -54,270 +74,80 @@ const { version } = require("../../package.json"); * @property {"metadata" | "content"} [cacheStrategy] The strategy used to detect changed files. * @property {string} [cwd] The value to use for the current working directory. * @property {boolean} [errorOnUnmatchedPattern] If `false` then `ESLint#lintFiles()` doesn't throw even if no target files found. Defaults to `true`. - * @property {string[]} [extensions] An array of file extensions to check. * @property {boolean|Function} [fix] Execute in autofix mode. If a function, should return a boolean. * @property {string[]} [fixTypes] Array of rule types to apply fixes for. * @property {boolean} [globInputPaths] Set to false to skip glob resolution of input file paths to lint (default: true). If false, each input file paths is assumed to be a non-glob path to an existing file. - * @property {boolean} [ignore] False disables use of .eslintignore. - * @property {string} [ignorePath] The ignore file to use instead of .eslintignore. + * @property {boolean} [ignore] False disables all ignore patterns except for the default ones. + * @property {string[]} [ignorePatterns] Ignore file patterns to use in addition to config ignores. These patterns are relative to `cwd`. * @property {ConfigData} [overrideConfig] Override config object, overrides all configs used with this instance - * @property {string} [overrideConfigFile] The configuration file to use. - * @property {Record|null} [plugins] Preloaded plugins. This is a map-like object, keys are plugin IDs and each value is implementation. - * @property {"error" | "warn" | "off"} [reportUnusedDisableDirectives] the severity to report unused eslint-disable directives. - * @property {string} [resolvePluginsRelativeTo] The folder where plugins should be resolved from, defaulting to the CWD. - * @property {string[]} [rulePaths] An array of directories to load custom rules from. - * @property {boolean} [useEslintrc] False disables looking for .eslintrc.* files. - */ - -/** - * A rules metadata object. - * @typedef {Object} RulesMeta - * @property {string} id The plugin ID. - * @property {Object} definition The plugin definition. - */ - -/** - * Private members for the `ESLint` instance. - * @typedef {Object} ESLintPrivateMembers - * @property {CLIEngine} cliEngine The wrapped CLIEngine instance. - * @property {ESLintOptions} options The options used to instantiate the ESLint instance. + * @property {boolean|string} [overrideConfigFile] Searches for default config file when falsy; + * doesn't do any config file lookup when `true`; considered to be a config filename + * when a string. + * @property {Record} [plugins] An array of plugin implementations. + * @property {boolean} [stats] True enables added statistics on lint results. + * @property {boolean} warnIgnored Show warnings when the file list includes ignored files + * @property {boolean} [passOnNoPatterns=false] When set to true, missing patterns cause + * the linting operation to short circuit and not report any failures. */ //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ -const writeFile = promisify(fs.writeFile); - -/** - * The map with which to store private class members. - * @type {WeakMap} - */ -const privateMembersMap = new WeakMap(); - -/** - * Check if a given value is a non-empty string or not. - * @param {any} x The value to check. - * @returns {boolean} `true` if `x` is a non-empty string. - */ -function isNonEmptyString(x) { - return typeof x === "string" && x.trim() !== ""; -} - -/** - * Check if a given value is an array of non-empty strings or not. - * @param {any} x The value to check. - * @returns {boolean} `true` if `x` is an array of non-empty strings. - */ -function isArrayOfNonEmptyString(x) { - return Array.isArray(x) && x.every(isNonEmptyString); -} - -/** - * Check if a given value is a valid fix type or not. - * @param {any} x The value to check. - * @returns {boolean} `true` if `x` is valid fix type. - */ -function isFixType(x) { - return x === "directive" || x === "problem" || x === "suggestion" || x === "layout"; -} - -/** - * Check if a given value is an array of fix types or not. - * @param {any} x The value to check. - * @returns {boolean} `true` if `x` is an array of fix types. - */ -function isFixTypeArray(x) { - return Array.isArray(x) && x.every(isFixType); -} - -/** - * The error for invalid options. - */ -class ESLintInvalidOptionsError extends Error { - constructor(messages) { - super(`Invalid Options:\n- ${messages.join("\n- ")}`); - this.code = "ESLINT_INVALID_OPTIONS"; - Error.captureStackTrace(this, ESLintInvalidOptionsError); - } -} +const FLAT_CONFIG_FILENAMES = [ + "eslint.config.js", + "eslint.config.mjs", + "eslint.config.cjs" +]; +const debug = require("debug")("eslint:eslint"); +const privateMembers = new WeakMap(); +const importedConfigFileModificationTime = new Map(); +const removedFormatters = new Set([ + "checkstyle", + "codeframe", + "compact", + "jslint-xml", + "junit", + "table", + "tap", + "unix", + "visualstudio" +]); /** - * Validates and normalizes options for the wrapped CLIEngine instance. - * @param {ESLintOptions} options The options to process. - * @throws {ESLintInvalidOptionsError} If of any of a variety of type errors. - * @returns {ESLintOptions} The normalized options. + * It will calculate the error and warning count for collection of messages per file + * @param {LintMessage[]} messages Collection of messages + * @returns {Object} Contains the stats + * @private */ -function processOptions({ - allowInlineConfig = true, // ← we cannot use `overrideConfig.noInlineConfig` instead because `allowInlineConfig` has side-effect that suppress warnings that show inline configs are ignored. - baseConfig = null, - cache = false, - cacheLocation = ".eslintcache", - cacheStrategy = "metadata", - cwd = process.cwd(), - errorOnUnmatchedPattern = true, - extensions = null, // ← should be null by default because if it's an array then it suppresses RFC20 feature. - fix = false, - fixTypes = null, // ← should be null by default because if it's an array then it suppresses rules that don't have the `meta.type` property. - globInputPaths = true, - ignore = true, - ignorePath = null, // ← should be null by default because if it's a string then it may throw ENOENT. - overrideConfig = null, - overrideConfigFile = null, - plugins = {}, - reportUnusedDisableDirectives = null, // ← should be null by default because if it's a string then it overrides the 'reportUnusedDisableDirectives' setting in config files. And we cannot use `overrideConfig.reportUnusedDisableDirectives` instead because we cannot configure the `error` severity with that. - resolvePluginsRelativeTo = null, // ← should be null by default because if it's a string then it suppresses RFC47 feature. - rulePaths = [], - useEslintrc = true, - ...unknownOptions -}) { - const errors = []; - const unknownOptionKeys = Object.keys(unknownOptions); - - if (unknownOptionKeys.length >= 1) { - errors.push(`Unknown options: ${unknownOptionKeys.join(", ")}`); - if (unknownOptionKeys.includes("cacheFile")) { - errors.push("'cacheFile' has been removed. Please use the 'cacheLocation' option instead."); - } - if (unknownOptionKeys.includes("configFile")) { - errors.push("'configFile' has been removed. Please use the 'overrideConfigFile' option instead."); - } - if (unknownOptionKeys.includes("envs")) { - errors.push("'envs' has been removed. Please use the 'overrideConfig.env' option instead."); - } - if (unknownOptionKeys.includes("globals")) { - errors.push("'globals' has been removed. Please use the 'overrideConfig.globals' option instead."); - } - if (unknownOptionKeys.includes("ignorePattern")) { - errors.push("'ignorePattern' has been removed. Please use the 'overrideConfig.ignorePatterns' option instead."); - } - if (unknownOptionKeys.includes("parser")) { - errors.push("'parser' has been removed. Please use the 'overrideConfig.parser' option instead."); - } - if (unknownOptionKeys.includes("parserOptions")) { - errors.push("'parserOptions' has been removed. Please use the 'overrideConfig.parserOptions' option instead."); - } - if (unknownOptionKeys.includes("rules")) { - errors.push("'rules' has been removed. Please use the 'overrideConfig.rules' option instead."); - } - } - if (typeof allowInlineConfig !== "boolean") { - errors.push("'allowInlineConfig' must be a boolean."); - } - if (typeof baseConfig !== "object") { - errors.push("'baseConfig' must be an object or null."); - } - if (typeof cache !== "boolean") { - errors.push("'cache' must be a boolean."); - } - if (!isNonEmptyString(cacheLocation)) { - errors.push("'cacheLocation' must be a non-empty string."); - } - if ( - cacheStrategy !== "metadata" && - cacheStrategy !== "content" - ) { - errors.push("'cacheStrategy' must be any of \"metadata\", \"content\"."); - } - if (!isNonEmptyString(cwd) || !path.isAbsolute(cwd)) { - errors.push("'cwd' must be an absolute path."); - } - if (typeof errorOnUnmatchedPattern !== "boolean") { - errors.push("'errorOnUnmatchedPattern' must be a boolean."); - } - if (!isArrayOfNonEmptyString(extensions) && extensions !== null) { - errors.push("'extensions' must be an array of non-empty strings or null."); - } - if (typeof fix !== "boolean" && typeof fix !== "function") { - errors.push("'fix' must be a boolean or a function."); - } - if (fixTypes !== null && !isFixTypeArray(fixTypes)) { - errors.push("'fixTypes' must be an array of any of \"directive\", \"problem\", \"suggestion\", and \"layout\"."); - } - if (typeof globInputPaths !== "boolean") { - errors.push("'globInputPaths' must be a boolean."); - } - if (typeof ignore !== "boolean") { - errors.push("'ignore' must be a boolean."); - } - if (!isNonEmptyString(ignorePath) && ignorePath !== null) { - errors.push("'ignorePath' must be a non-empty string or null."); - } - if (typeof overrideConfig !== "object") { - errors.push("'overrideConfig' must be an object or null."); - } - if (!isNonEmptyString(overrideConfigFile) && overrideConfigFile !== null) { - errors.push("'overrideConfigFile' must be a non-empty string or null."); - } - if (typeof plugins !== "object") { - errors.push("'plugins' must be an object or null."); - } else if (plugins !== null && Object.keys(plugins).includes("")) { - errors.push("'plugins' must not include an empty string."); - } - if (Array.isArray(plugins)) { - errors.push("'plugins' doesn't add plugins to configuration to load. Please use the 'overrideConfig.plugins' option instead."); - } - if ( - reportUnusedDisableDirectives !== "error" && - reportUnusedDisableDirectives !== "warn" && - reportUnusedDisableDirectives !== "off" && - reportUnusedDisableDirectives !== null - ) { - errors.push("'reportUnusedDisableDirectives' must be any of \"error\", \"warn\", \"off\", and null."); - } - if ( - !isNonEmptyString(resolvePluginsRelativeTo) && - resolvePluginsRelativeTo !== null - ) { - errors.push("'resolvePluginsRelativeTo' must be a non-empty string or null."); - } - if (!isArrayOfNonEmptyString(rulePaths)) { - errors.push("'rulePaths' must be an array of non-empty strings."); - } - if (typeof useEslintrc !== "boolean") { - errors.push("'useEslintrc' must be a boolean."); - } - - if (errors.length > 0) { - throw new ESLintInvalidOptionsError(errors); - } - - return { - allowInlineConfig, - baseConfig, - cache, - cacheLocation, - cacheStrategy, - configFile: overrideConfigFile, - cwd: path.normalize(cwd), - errorOnUnmatchedPattern, - extensions, - fix, - fixTypes, - globInputPaths, - ignore, - ignorePath, - reportUnusedDisableDirectives, - resolvePluginsRelativeTo, - rulePaths, - useEslintrc +function calculateStatsPerFile(messages) { + const stat = { + errorCount: 0, + fatalErrorCount: 0, + warningCount: 0, + fixableErrorCount: 0, + fixableWarningCount: 0 }; -} -/** - * Check if a value has one or more properties and that value is not undefined. - * @param {any} obj The value to check. - * @returns {boolean} `true` if `obj` has one or more properties that that value is not undefined. - */ -function hasDefinedProperty(obj) { - if (typeof obj === "object" && obj !== null) { - for (const key in obj) { - if (typeof obj[key] !== "undefined") { - return true; + for (let i = 0; i < messages.length; i++) { + const message = messages[i]; + + if (message.fatal || message.severity === 2) { + stat.errorCount++; + if (message.fatal) { + stat.fatalErrorCount++; + } + if (message.fix) { + stat.fixableErrorCount++; + } + } else { + stat.warningCount++; + if (message.fix) { + stat.fixableWarningCount++; } } } - return false; + return stat; } /** @@ -332,62 +162,73 @@ function createRulesMeta(rules) { }, {}); } +/** + * Return the absolute path of a file named `"__placeholder__.js"` in a given directory. + * This is used as a replacement for a missing file path. + * @param {string} cwd An absolute directory path. + * @returns {string} The absolute path of a file named `"__placeholder__.js"` in the given directory. + */ +function getPlaceholderPath(cwd) { + return path.join(cwd, "__placeholder__.js"); +} + /** @type {WeakMap} */ const usedDeprecatedRulesCache = new WeakMap(); /** * Create used deprecated rule list. - * @param {CLIEngine} cliEngine The CLIEngine instance. + * @param {CLIEngine} eslint The CLIEngine instance. * @param {string} maybeFilePath The absolute path to a lint target file or `""`. * @returns {DeprecatedRuleInfo[]} The used deprecated rule list. */ -function getOrFindUsedDeprecatedRules(cliEngine, maybeFilePath) { +function getOrFindUsedDeprecatedRules(eslint, maybeFilePath) { const { - configArrayFactory, + configs, options: { cwd } - } = getCLIEngineInternalSlots(cliEngine); + } = privateMembers.get(eslint); const filePath = path.isAbsolute(maybeFilePath) ? maybeFilePath - : path.join(cwd, "__placeholder__.js"); - const configArray = configArrayFactory.getConfigArrayForFile(filePath); - const config = configArray.extractConfig(filePath); + : getPlaceholderPath(cwd); + const config = configs.getConfig(filePath); // Most files use the same config, so cache it. - if (!usedDeprecatedRulesCache.has(config)) { - const pluginRules = configArray.pluginRules; + if (config && !usedDeprecatedRulesCache.has(config)) { const retv = []; - for (const [ruleId, ruleConf] of Object.entries(config.rules)) { - if (getRuleSeverity(ruleConf) === 0) { - continue; - } - const rule = pluginRules.get(ruleId) || BuiltinRules.get(ruleId); - const meta = rule && rule.meta; - - if (meta && meta.deprecated) { - retv.push({ ruleId, replacedBy: meta.replacedBy || [] }); + if (config.rules) { + for (const [ruleId, ruleConf] of Object.entries(config.rules)) { + if (getRuleSeverity(ruleConf) === 0) { + continue; + } + const rule = getRuleFromConfig(ruleId, config); + const meta = rule && rule.meta; + + if (meta && meta.deprecated) { + retv.push({ ruleId, replacedBy: meta.replacedBy || [] }); + } } } + usedDeprecatedRulesCache.set(config, Object.freeze(retv)); } - return usedDeprecatedRulesCache.get(config); + return config ? usedDeprecatedRulesCache.get(config) : Object.freeze([]); } /** * Processes the linting results generated by a CLIEngine linting report to * match the ESLint class's API. - * @param {CLIEngine} cliEngine The CLIEngine instance. + * @param {CLIEngine} eslint The CLIEngine instance. * @param {CLIEngineLintReport} report The CLIEngine linting report to process. * @returns {LintResult[]} The processed linting results. */ -function processCLIEngineLintReport(cliEngine, { results }) { +function processLintReport(eslint, { results }) { const descriptor = { configurable: true, enumerable: true, get() { - return getOrFindUsedDeprecatedRules(cliEngine, this.filePath); + return getOrFindUsedDeprecatedRules(eslint, this.filePath); } }; @@ -417,44 +258,386 @@ function compareResultsByFilePath(a, b) { } /** - * Main API. + * Searches from the current working directory up until finding the + * given flat config filename. + * @param {string} cwd The current working directory to search from. + * @returns {Promise} The filename if found or `undefined` if not. + */ +function findFlatConfigFile(cwd) { + return findUp( + FLAT_CONFIG_FILENAMES, + { cwd } + ); +} + +/** + * Load the config array from the given filename. + * @param {string} filePath The filename to load from. + * @returns {Promise} The config loaded from the config file. + */ +async function loadFlatConfigFile(filePath) { + debug(`Loading config from ${filePath}`); + + const fileURL = pathToFileURL(filePath); + + debug(`Config file URL is ${fileURL}`); + + const mtime = (await fs.stat(filePath)).mtime.getTime(); + + /* + * Append a query with the config file's modification time (`mtime`) in order + * to import the current version of the config file. Without the query, `import()` would + * cache the config file module by the pathname only, and then always return + * the same version (the one that was actual when the module was imported for the first time). + * + * This ensures that the config file module is loaded and executed again + * if it has been changed since the last time it was imported. + * If it hasn't been changed, `import()` will just return the cached version. + * + * Note that we should not overuse queries (e.g., by appending the current time + * to always reload the config file module) as that could cause memory leaks + * because entries are never removed from the import cache. + */ + fileURL.searchParams.append("mtime", mtime); + + /* + * With queries, we can bypass the import cache. However, when import-ing a CJS module, + * Node.js uses the require infrastructure under the hood. That includes the require cache, + * which caches the config file module by its file path (queries have no effect). + * Therefore, we also need to clear the require cache before importing the config file module. + * In order to get the same behavior with ESM and CJS config files, in particular - to reload + * the config file only if it has been changed, we track file modification times and clear + * the require cache only if the file has been changed. + */ + if (importedConfigFileModificationTime.get(filePath) !== mtime) { + delete require.cache[filePath]; + } + + const config = (await import(fileURL)).default; + + importedConfigFileModificationTime.set(filePath, mtime); + + return config; +} + +/** + * Determines which config file to use. This is determined by seeing if an + * override config file was passed, and if so, using it; otherwise, as long + * as override config file is not explicitly set to `false`, it will search + * upwards from the cwd for a file named `eslint.config.js`. + * @param {import("./eslint").ESLintOptions} options The ESLint instance options. + * @returns {{configFilePath:string|undefined,basePath:string,error:Error|null}} Location information for + * the config file. + */ +async function locateConfigFileToUse({ configFile, cwd }) { + + // determine where to load config file from + let configFilePath; + let basePath = cwd; + let error = null; + + if (typeof configFile === "string") { + debug(`Override config file path is ${configFile}`); + configFilePath = path.resolve(cwd, configFile); + } else if (configFile !== false) { + debug("Searching for eslint.config.js"); + configFilePath = await findFlatConfigFile(cwd); + + if (configFilePath) { + basePath = path.resolve(path.dirname(configFilePath)); + } else { + error = new Error("Could not find config file."); + error.messageTemplate = "config-file-missing"; + } + + } + + return { + configFilePath, + basePath, + error + }; + +} + +/** + * Calculates the config array for this run based on inputs. + * @param {ESLint} eslint The instance to create the config array for. + * @param {import("./eslint").ESLintOptions} options The ESLint instance options. + * @returns {FlatConfigArray} The config array for `eslint``. + */ +async function calculateConfigArray(eslint, { + cwd, + baseConfig, + overrideConfig, + configFile, + ignore: shouldIgnore, + ignorePatterns +}) { + + // check for cached instance + const slots = privateMembers.get(eslint); + + if (slots.configs) { + return slots.configs; + } + + const { configFilePath, basePath, error } = await locateConfigFileToUse({ configFile, cwd }); + + // config file is required to calculate config + if (error) { + throw error; + } + + const configs = new FlatConfigArray(baseConfig || [], { basePath, shouldIgnore }); + + // load config file + if (configFilePath) { + const fileConfig = await loadFlatConfigFile(configFilePath); + + if (Array.isArray(fileConfig)) { + configs.push(...fileConfig); + } else { + configs.push(fileConfig); + } + } + + // add in any configured defaults + configs.push(...slots.defaultConfigs); + + // append command line ignore patterns + if (ignorePatterns && ignorePatterns.length > 0) { + + let relativeIgnorePatterns; + + /* + * If the config file basePath is different than the cwd, then + * the ignore patterns won't work correctly. Here, we adjust the + * ignore pattern to include the correct relative path. Patterns + * passed as `ignorePatterns` are relative to the cwd, whereas + * the config file basePath can be an ancestor of the cwd. + */ + if (basePath === cwd) { + relativeIgnorePatterns = ignorePatterns; + } else { + + const relativeIgnorePath = path.relative(basePath, cwd); + + relativeIgnorePatterns = ignorePatterns.map(pattern => { + const negated = pattern.startsWith("!"); + const basePattern = negated ? pattern.slice(1) : pattern; + + return (negated ? "!" : "") + + path.posix.join(relativeIgnorePath, basePattern); + }); + } + + /* + * Ignore patterns are added to the end of the config array + * so they can override default ignores. + */ + configs.push({ + ignores: relativeIgnorePatterns + }); + } + + if (overrideConfig) { + if (Array.isArray(overrideConfig)) { + configs.push(...overrideConfig); + } else { + configs.push(overrideConfig); + } + } + + await configs.normalize(); + + // cache the config array for this instance + slots.configs = configs; + + return configs; +} + +/** + * Processes an source code using ESLint. + * @param {Object} config The config object. + * @param {string} config.text The source code to verify. + * @param {string} config.cwd The path to the current working directory. + * @param {string|undefined} config.filePath The path to the file of `text`. If this is undefined, it uses ``. + * @param {FlatConfigArray} config.configs The config. + * @param {boolean} config.fix If `true` then it does fix. + * @param {boolean} config.allowInlineConfig If `true` then it uses directive comments. + * @param {Function} config.ruleFilter A predicate function to filter which rules should be run. + * @param {boolean} config.stats If `true`, then if reports extra statistics with the lint results. + * @param {Linter} config.linter The linter instance to verify. + * @returns {LintResult} The result of linting. + * @private + */ +function verifyText({ + text, + cwd, + filePath: providedFilePath, + configs, + fix, + allowInlineConfig, + ruleFilter, + stats, + linter +}) { + const filePath = providedFilePath || ""; + + debug(`Lint ${filePath}`); + + /* + * Verify. + * `config.extractConfig(filePath)` requires an absolute path, but `linter` + * doesn't know CWD, so it gives `linter` an absolute path always. + */ + const filePathToVerify = filePath === "" ? getPlaceholderPath(cwd) : filePath; + const { fixed, messages, output } = linter.verifyAndFix( + text, + configs, + { + allowInlineConfig, + filename: filePathToVerify, + fix, + ruleFilter, + stats, + + /** + * Check if the linter should adopt a given code block or not. + * @param {string} blockFilename The virtual filename of a code block. + * @returns {boolean} `true` if the linter should adopt the code block. + */ + filterCodeBlock(blockFilename) { + return configs.isExplicitMatch(blockFilename); + } + } + ); + + // Tweak and return. + const result = { + filePath: filePath === "" ? filePath : path.resolve(filePath), + messages, + suppressedMessages: linter.getSuppressedMessages(), + ...calculateStatsPerFile(messages) + }; + + if (fixed) { + result.output = output; + } + + if ( + result.errorCount + result.warningCount > 0 && + typeof result.output === "undefined" + ) { + result.source = text; + } + + if (stats) { + result.stats = { + times: linter.getTimes(), + fixPasses: linter.getFixPassCount() + }; + } + + return result; +} + +/** + * Checks whether a message's rule type should be fixed. + * @param {LintMessage} message The message to check. + * @param {FlatConfig} config The config for the file that generated the message. + * @param {string[]} fixTypes An array of fix types to check. + * @returns {boolean} Whether the message should be fixed. + */ +function shouldMessageBeFixed(message, config, fixTypes) { + if (!message.ruleId) { + return fixTypes.has("directive"); + } + + const rule = message.ruleId && getRuleFromConfig(message.ruleId, config); + + return Boolean(rule && rule.meta && fixTypes.has(rule.meta.type)); +} + +/** + * Creates an error to be thrown when an array of results passed to `getRulesMetaForResults` was not created by the current engine. + * @returns {TypeError} An error object. + */ +function createExtraneousResultsError() { + return new TypeError("Results object was not created from this ESLint instance."); +} + +//----------------------------------------------------------------------------- +// Main API +//----------------------------------------------------------------------------- + +/** + * Primary Node.js API for ESLint. */ class ESLint { + /** + * The type of configuration used by this class. + * @type {string} + */ + static configType = "flat"; + /** * Creates a new instance of the main ESLint API. * @param {ESLintOptions} options The options for this instance. */ constructor(options = {}) { + + const defaultConfigs = []; const processedOptions = processOptions(options); - const cliEngine = new CLIEngine(processedOptions, { preloadedPlugins: options.plugins }); - const { - configArrayFactory, - lastConfigArrays - } = getCLIEngineInternalSlots(cliEngine); - let updated = false; + const linter = new Linter({ + cwd: processedOptions.cwd, + configType: "flat" + }); - /* - * Address `overrideConfig` to set override config. - * Operate the `configArrayFactory` internal slot directly because this - * functionality doesn't exist as the public API of CLIEngine. + const cacheFilePath = getCacheFile( + processedOptions.cacheLocation, + processedOptions.cwd + ); + + const lintResultCache = processedOptions.cache + ? new LintResultCache(cacheFilePath, processedOptions.cacheStrategy) + : null; + + privateMembers.set(this, { + options: processedOptions, + linter, + cacheFilePath, + lintResultCache, + defaultConfigs, + configs: null + }); + + /** + * If additional plugins are passed in, add that to the default + * configs for this instance. */ - if (hasDefinedProperty(options.overrideConfig)) { - configArrayFactory.setOverrideConfig(options.overrideConfig); - updated = true; - } + if (options.plugins) { + + const plugins = {}; - // Update caches. - if (updated) { - configArrayFactory.clearCache(); - lastConfigArrays[0] = configArrayFactory.getConfigArrayForFile(); + for (const [pluginName, plugin] of Object.entries(options.plugins)) { + plugins[naming.getShorthandName(pluginName, "eslint-plugin")] = plugin; + } + + defaultConfigs.push({ + plugins + }); } - // Initialize private properties. - privateMembersMap.set(this, { - cliEngine, - options: processedOptions - }); + // Check for the .eslintignore file, and warn if it's present. + if (existsSync(path.resolve(processedOptions.cwd, ".eslintignore"))) { + process.emitWarning( + "The \".eslintignore\" file is no longer supported. Switch to using the \"ignores\" property in \"eslint.config.js\": https://eslint.org/docs/latest/use/configure/migration-guide#ignoring-files", + "ESLintIgnoreWarning" + ); + } } /** @@ -486,7 +669,7 @@ class ESLint { path.isAbsolute(result.filePath) ); }) - .map(r => writeFile(r.filePath, r.output)) + .map(r => fs.writeFile(r.filePath, r.output)) ); } @@ -496,60 +679,297 @@ class ESLint { * @returns {LintResult[]} The filtered results. */ static getErrorResults(results) { - return CLIEngine.getErrorResults(results); + const filtered = []; + + results.forEach(result => { + const filteredMessages = result.messages.filter(isErrorMessage); + const filteredSuppressedMessages = result.suppressedMessages.filter(isErrorMessage); + + if (filteredMessages.length > 0) { + filtered.push({ + ...result, + messages: filteredMessages, + suppressedMessages: filteredSuppressedMessages, + errorCount: filteredMessages.length, + warningCount: 0, + fixableErrorCount: result.fixableErrorCount, + fixableWarningCount: 0 + }); + } + }); + + return filtered; } /** * Returns meta objects for each rule represented in the lint results. * @param {LintResult[]} results The results to fetch rules meta for. * @returns {Object} A mapping of ruleIds to rule meta objects. + * @throws {TypeError} When the results object wasn't created from this ESLint instance. + * @throws {TypeError} When a plugin or rule is missing. */ getRulesMetaForResults(results) { - const resultRuleIds = new Set(); + // short-circuit simple case + if (results.length === 0) { + return {}; + } - // first gather all ruleIds from all results + const resultRules = new Map(); + const { + configs, + options: { cwd } + } = privateMembers.get(this); - for (const result of results) { - for (const { ruleId } of result.messages) { - resultRuleIds.add(ruleId); - } - for (const { ruleId } of result.suppressedMessages) { - resultRuleIds.add(ruleId); - } + /* + * We can only accurately return rules meta information for linting results if the + * results were created by this instance. Otherwise, the necessary rules data is + * not available. So if the config array doesn't already exist, just throw an error + * to let the user know we can't do anything here. + */ + if (!configs) { + throw createExtraneousResultsError(); } - // create a map of all rules in the results - - const { cliEngine } = privateMembersMap.get(this); - const rules = cliEngine.getRules(); - const resultRules = new Map(); + for (const result of results) { - for (const [ruleId, rule] of rules) { - if (resultRuleIds.has(ruleId)) { - resultRules.set(ruleId, rule); + /* + * Normalize filename for . + */ + const filePath = result.filePath === "" + ? getPlaceholderPath(cwd) : result.filePath; + const allMessages = result.messages.concat(result.suppressedMessages); + + for (const { ruleId } of allMessages) { + if (!ruleId) { + continue; + } + + /* + * All of the plugin and rule information is contained within the + * calculated config for the given file. + */ + const config = configs.getConfig(filePath); + + if (!config) { + throw createExtraneousResultsError(); + } + const rule = getRuleFromConfig(ruleId, config); + + // ignore unknown rules + if (rule) { + resultRules.set(ruleId, rule); + } } } return createRulesMeta(resultRules); - } /** * Executes the current configuration on an array of file and directory names. - * @param {string[]} patterns An array of file and directory names. + * @param {string|string[]} patterns An array of file and directory names. * @returns {Promise} The results of linting the file patterns given. */ async lintFiles(patterns) { - if (!isNonEmptyString(patterns) && !isArrayOfNonEmptyString(patterns)) { - throw new Error("'patterns' must be a non-empty string or an array of non-empty strings"); + + let normalizedPatterns = patterns; + const { + cacheFilePath, + lintResultCache, + linter, + options: eslintOptions + } = privateMembers.get(this); + + /* + * Special cases: + * 1. `patterns` is an empty string + * 2. `patterns` is an empty array + * + * In both cases, we use the cwd as the directory to lint. + */ + if (patterns === "" || Array.isArray(patterns) && patterns.length === 0) { + + /* + * Special case: If `passOnNoPatterns` is true, then we just exit + * without doing any work. + */ + if (eslintOptions.passOnNoPatterns) { + return []; + } + + normalizedPatterns = ["."]; + } else { + + if (!isNonEmptyString(patterns) && !isArrayOfNonEmptyString(patterns)) { + throw new Error("'patterns' must be a non-empty string or an array of non-empty strings"); + } + + if (typeof patterns === "string") { + normalizedPatterns = [patterns]; + } + } + + debug(`Using file patterns: ${normalizedPatterns}`); + + const configs = await calculateConfigArray(this, eslintOptions); + const { + allowInlineConfig, + cache, + cwd, + fix, + fixTypes, + ruleFilter, + stats, + globInputPaths, + errorOnUnmatchedPattern, + warnIgnored + } = eslintOptions; + const startTime = Date.now(); + const fixTypesSet = fixTypes ? new Set(fixTypes) : null; + + // Delete cache file; should this be done here? + if (!cache && cacheFilePath) { + debug(`Deleting cache file at ${cacheFilePath}`); + + try { + await fs.unlink(cacheFilePath); + } catch (error) { + const errorCode = error && error.code; + + // Ignore errors when no such file exists or file system is read only (and cache file does not exist) + if (errorCode !== "ENOENT" && !(errorCode === "EROFS" && !existsSync(cacheFilePath))) { + throw error; + } + } } - const { cliEngine } = privateMembersMap.get(this); - return processCLIEngineLintReport( - cliEngine, - cliEngine.executeOnFiles(patterns) + const filePaths = await findFiles({ + patterns: normalizedPatterns, + cwd, + globInputPaths, + configs, + errorOnUnmatchedPattern + }); + const controller = new AbortController(); + const retryCodes = new Set(["ENFILE", "EMFILE"]); + const retrier = new Retrier(error => retryCodes.has(error.code)); + + debug(`${filePaths.length} files found in: ${Date.now() - startTime}ms`); + + /* + * Because we need to process multiple files, including reading from disk, + * it is most efficient to start by reading each file via promises so that + * they can be done in parallel. Then, we can lint the returned text. This + * ensures we are waiting the minimum amount of time in between lints. + */ + const results = await Promise.all( + + filePaths.map(({ filePath, ignored }) => { + + /* + * If a filename was entered that matches an ignore + * pattern, then notify the user. + */ + if (ignored) { + if (warnIgnored) { + return createIgnoreResult(filePath, cwd); + } + + return void 0; + } + + const config = configs.getConfig(filePath); + + /* + * Sometimes a file found through a glob pattern will + * be ignored. In this case, `config` will be undefined + * and we just silently ignore the file. + */ + if (!config) { + return void 0; + } + + // Skip if there is cached result. + if (lintResultCache) { + const cachedResult = + lintResultCache.getCachedLintResults(filePath, config); + + if (cachedResult) { + const hadMessages = + cachedResult.messages && + cachedResult.messages.length > 0; + + if (hadMessages && fix) { + debug(`Reprocessing cached file to allow autofix: ${filePath}`); + } else { + debug(`Skipping file since it hasn't changed: ${filePath}`); + return cachedResult; + } + } + } + + + // set up fixer for fixTypes if necessary + let fixer = fix; + + if (fix && fixTypesSet) { + + // save original value of options.fix in case it's a function + const originalFix = (typeof fix === "function") + ? fix : () => true; + + fixer = message => shouldMessageBeFixed(message, config, fixTypesSet) && originalFix(message); + } + + return retrier.retry(() => fs.readFile(filePath, { encoding: "utf8", signal: controller.signal }) + .then(text => { + + // fail immediately if an error occurred in another file + controller.signal.throwIfAborted(); + + // do the linting + const result = verifyText({ + text, + filePath, + configs, + cwd, + fix: fixer, + allowInlineConfig, + ruleFilter, + stats, + linter + }); + + /* + * Store the lint result in the LintResultCache. + * NOTE: The LintResultCache will remove the file source and any + * other properties that are difficult to serialize, and will + * hydrate those properties back in on future lint runs. + */ + if (lintResultCache) { + lintResultCache.setCachedLintResults(filePath, config, result); + } + + return result; + })) + .catch(error => { + controller.abort(error); + throw error; + }); + }) ); + + // Persist the cache to disk. + if (lintResultCache) { + lintResultCache.reconcile(); + } + + const finalResults = results.filter(result => !!result); + + return processLintReport(this, { + results: finalResults + }); } /** @@ -561,15 +981,22 @@ class ESLint { * @returns {Promise} The results of linting the string of code given. */ async lintText(code, options = {}) { + + // Parameter validation + if (typeof code !== "string") { throw new Error("'code' must be a string"); } + if (typeof options !== "object") { throw new Error("'options' must be an object, null, or undefined"); } + + // Options validation + const { filePath, - warnIgnored = false, + warnIgnored, ...unknownOptions } = options || {}; @@ -582,16 +1009,59 @@ class ESLint { if (filePath !== void 0 && !isNonEmptyString(filePath)) { throw new Error("'options.filePath' must be a non-empty string or undefined"); } - if (typeof warnIgnored !== "boolean") { + + if (typeof warnIgnored !== "boolean" && typeof warnIgnored !== "undefined") { throw new Error("'options.warnIgnored' must be a boolean or undefined"); } - const { cliEngine } = privateMembersMap.get(this); + // Now we can get down to linting + + const { + linter, + options: eslintOptions + } = privateMembers.get(this); + const configs = await calculateConfigArray(this, eslintOptions); + const { + allowInlineConfig, + cwd, + fix, + warnIgnored: constructorWarnIgnored, + ruleFilter, + stats + } = eslintOptions; + const results = []; + const startTime = Date.now(); + const resolvedFilename = path.resolve(cwd, filePath || "__placeholder__.js"); + + // Clear the last used config arrays. + if (resolvedFilename && await this.isPathIgnored(resolvedFilename)) { + const shouldWarnIgnored = typeof warnIgnored === "boolean" ? warnIgnored : constructorWarnIgnored; + + if (shouldWarnIgnored) { + results.push(createIgnoreResult(resolvedFilename, cwd)); + } + } else { + + // Do lint. + results.push(verifyText({ + text: code, + filePath: resolvedFilename.endsWith("__placeholder__.js") ? "" : resolvedFilename, + configs, + cwd, + fix, + allowInlineConfig, + ruleFilter, + stats, + linter + })); + } + + debug(`Linting complete in: ${Date.now() - startTime}ms`); + + return processLintReport(this, { + results + }); - return processCLIEngineLintReport( - cliEngine, - cliEngine.executeOnText(code, filePath, warnIgnored) - ); } /** @@ -605,7 +1075,7 @@ class ESLint { * - `@foo` → `@foo/eslint-formatter` * - `@foo/bar` → `@foo/eslint-formatter-bar` * - A file path ... Load the file. - * @returns {Promise} A promise resolving to the formatter object. + * @returns {Promise} A promise resolving to the formatter object. * This promise will be rejected if the given formatter was not found or not * a function. */ @@ -614,20 +1084,60 @@ class ESLint { throw new Error("'name' must be a string"); } - const { cliEngine, options } = privateMembersMap.get(this); - const formatter = cliEngine.getFormatter(name); + // replace \ with / for Windows compatibility + const normalizedFormatName = name.replace(/\\/gu, "/"); + const namespace = naming.getNamespaceFromTerm(normalizedFormatName); + + // grab our options + const { cwd } = privateMembers.get(this).options; + + + let formatterPath; + + // if there's a slash, then it's a file (TODO: this check seems dubious for scoped npm packages) + if (!namespace && normalizedFormatName.includes("/")) { + formatterPath = path.resolve(cwd, normalizedFormatName); + } else { + try { + const npmFormat = naming.normalizePackageName(normalizedFormatName, "eslint-formatter"); + + // TODO: This is pretty dirty...would be nice to clean up at some point. + formatterPath = ModuleResolver.resolve(npmFormat, getPlaceholderPath(cwd)); + } catch { + formatterPath = path.resolve(__dirname, "../", "cli-engine", "formatters", `${normalizedFormatName}.js`); + } + } + + let formatter; + + try { + formatter = (await import(pathToFileURL(formatterPath))).default; + } catch (ex) { + + // check for formatters that have been removed + if (removedFormatters.has(name)) { + ex.message = `The ${name} formatter is no longer part of core ESLint. Install it manually with \`npm install -D eslint-formatter-${name}\``; + } else { + ex.message = `There was a problem loading formatter: ${formatterPath}\nError: ${ex.message}`; + } + + throw ex; + } + if (typeof formatter !== "function") { - throw new Error(`Formatter must be a function, but got a ${typeof formatter}.`); + throw new TypeError(`Formatter must be a function, but got a ${typeof formatter}.`); } + const eslint = this; + return { /** * The main formatter method. - * @param {LintResult[]} results The lint results to format. + * @param {LintResults[]} results The lint results to format. * @param {ResultsMeta} resultsMeta Warning count and max threshold. - * @returns {string | Promise} The formatted lint results. + * @returns {string} The formatted lint results. */ format(results, resultsMeta) { let rulesMeta = null; @@ -636,12 +1146,10 @@ class ESLint { return formatter(results, { ...resultsMeta, - get cwd() { - return options.cwd; - }, + cwd, get rulesMeta() { if (!rulesMeta) { - rulesMeta = createRulesMeta(cliEngine.getRules()); + rulesMeta = eslint.getRulesMetaForResults(results); } return rulesMeta; @@ -656,15 +1164,31 @@ class ESLint { * This is the same logic used by the ESLint CLI executable to determine * configuration for each file it processes. * @param {string} filePath The path of the file to retrieve a config object for. - * @returns {Promise} A configuration object for the file. + * @returns {Promise} A configuration object for the file + * or `undefined` if there is no configuration data for the object. */ async calculateConfigForFile(filePath) { if (!isNonEmptyString(filePath)) { throw new Error("'filePath' must be a non-empty string"); } - const { cliEngine } = privateMembersMap.get(this); + const options = privateMembers.get(this).options; + const absolutePath = path.resolve(options.cwd, filePath); + const configs = await calculateConfigArray(this, options); - return cliEngine.getConfigForFile(filePath); + return configs.getConfig(absolutePath); + } + + /** + * Finds the config file being used by this instance based on the options + * passed to the constructor. + * @returns {string|undefined} The path to the config file being used or + * `undefined` if no config file is being used. + */ + async findConfigFile() { + const options = privateMembers.get(this).options; + const { configFilePath } = await locateConfigFileToUse(options); + + return configFilePath; } /** @@ -673,21 +1197,19 @@ class ESLint { * @returns {Promise} Whether or not the given path is ignored. */ async isPathIgnored(filePath) { - if (!isNonEmptyString(filePath)) { - throw new Error("'filePath' must be a non-empty string"); - } - const { cliEngine } = privateMembersMap.get(this); + const config = await this.calculateConfigForFile(filePath); - return cliEngine.isPathIgnored(filePath); + return config === void 0; } } /** - * The type of configuration used by this class. - * @type {string} - * @static + * Returns whether flat config should be used. + * @returns {Promise} Whether flat config should be used. */ -ESLint.configType = "eslintrc"; +async function shouldUseFlatConfig() { + return (process.env.ESLINT_USE_FLAT_CONFIG !== "false"); +} //------------------------------------------------------------------------------ // Public Interface @@ -695,13 +1217,6 @@ ESLint.configType = "eslintrc"; module.exports = { ESLint, - - /** - * Get the private class members of a given ESLint instance for tests. - * @param {ESLint} instance The ESLint instance to get. - * @returns {ESLintPrivateMembers} The instance's private class members. - */ - getESLintPrivateMembers(instance) { - return privateMembersMap.get(instance); - } + shouldUseFlatConfig, + locateConfigFileToUse }; diff --git a/tools/node_modules/eslint/lib/eslint/flat-eslint.js b/tools/node_modules/eslint/lib/eslint/flat-eslint.js deleted file mode 100644 index ca961aafb64978..00000000000000 --- a/tools/node_modules/eslint/lib/eslint/flat-eslint.js +++ /dev/null @@ -1,1155 +0,0 @@ -/** - * @fileoverview Main class using flat config - * @author Nicholas C. Zakas - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -// Note: Node.js 12 does not support fs/promises. -const fs = require("fs").promises; -const { existsSync } = require("fs"); -const path = require("path"); -const findUp = require("find-up"); -const { version } = require("../../package.json"); -const { Linter } = require("../linter"); -const { getRuleFromConfig } = require("../config/flat-config-helpers"); -const { - Legacy: { - ConfigOps: { - getRuleSeverity - }, - ModuleResolver, - naming - } -} = require("@eslint/eslintrc"); - -const { - findFiles, - getCacheFile, - - isNonEmptyString, - isArrayOfNonEmptyString, - - createIgnoreResult, - isErrorMessage, - - processOptions -} = require("./eslint-helpers"); -const { pathToFileURL } = require("url"); -const { FlatConfigArray } = require("../config/flat-config-array"); -const LintResultCache = require("../cli-engine/lint-result-cache"); - -/* - * This is necessary to allow overwriting writeFile for testing purposes. - * We can just use fs/promises once we drop Node.js 12 support. - */ - -//------------------------------------------------------------------------------ -// Typedefs -//------------------------------------------------------------------------------ - -// For VSCode IntelliSense -/** @typedef {import("../shared/types").ConfigData} ConfigData */ -/** @typedef {import("../shared/types").DeprecatedRuleInfo} DeprecatedRuleInfo */ -/** @typedef {import("../shared/types").LintMessage} LintMessage */ -/** @typedef {import("../shared/types").LintResult} LintResult */ -/** @typedef {import("../shared/types").ParserOptions} ParserOptions */ -/** @typedef {import("../shared/types").Plugin} Plugin */ -/** @typedef {import("../shared/types").ResultsMeta} ResultsMeta */ -/** @typedef {import("../shared/types").RuleConf} RuleConf */ -/** @typedef {import("../shared/types").Rule} Rule */ -/** @typedef {ReturnType} ExtractedConfig */ - -/** - * The options with which to configure the ESLint instance. - * @typedef {Object} FlatESLintOptions - * @property {boolean} [allowInlineConfig] Enable or disable inline configuration comments. - * @property {ConfigData} [baseConfig] Base config object, extended by all configs used with this instance - * @property {boolean} [cache] Enable result caching. - * @property {string} [cacheLocation] The cache file to use instead of .eslintcache. - * @property {"metadata" | "content"} [cacheStrategy] The strategy used to detect changed files. - * @property {string} [cwd] The value to use for the current working directory. - * @property {boolean} [errorOnUnmatchedPattern] If `false` then `ESLint#lintFiles()` doesn't throw even if no target files found. Defaults to `true`. - * @property {boolean|Function} [fix] Execute in autofix mode. If a function, should return a boolean. - * @property {string[]} [fixTypes] Array of rule types to apply fixes for. - * @property {boolean} [globInputPaths] Set to false to skip glob resolution of input file paths to lint (default: true). If false, each input file paths is assumed to be a non-glob path to an existing file. - * @property {boolean} [ignore] False disables all ignore patterns except for the default ones. - * @property {string[]} [ignorePatterns] Ignore file patterns to use in addition to config ignores. These patterns are relative to `cwd`. - * @property {ConfigData} [overrideConfig] Override config object, overrides all configs used with this instance - * @property {boolean|string} [overrideConfigFile] Searches for default config file when falsy; - * doesn't do any config file lookup when `true`; considered to be a config filename - * when a string. - * @property {Record} [plugins] An array of plugin implementations. - * @property {boolean} warnIgnored Show warnings when the file list includes ignored files - */ - -//------------------------------------------------------------------------------ -// Helpers -//------------------------------------------------------------------------------ - -const FLAT_CONFIG_FILENAMES = [ - "eslint.config.js", - "eslint.config.mjs", - "eslint.config.cjs" -]; -const debug = require("debug")("eslint:flat-eslint"); -const removedFormatters = new Set(["table", "codeframe"]); -const privateMembers = new WeakMap(); -const importedConfigFileModificationTime = new Map(); - -/** - * It will calculate the error and warning count for collection of messages per file - * @param {LintMessage[]} messages Collection of messages - * @returns {Object} Contains the stats - * @private - */ -function calculateStatsPerFile(messages) { - const stat = { - errorCount: 0, - fatalErrorCount: 0, - warningCount: 0, - fixableErrorCount: 0, - fixableWarningCount: 0 - }; - - for (let i = 0; i < messages.length; i++) { - const message = messages[i]; - - if (message.fatal || message.severity === 2) { - stat.errorCount++; - if (message.fatal) { - stat.fatalErrorCount++; - } - if (message.fix) { - stat.fixableErrorCount++; - } - } else { - stat.warningCount++; - if (message.fix) { - stat.fixableWarningCount++; - } - } - } - return stat; -} - -/** - * Create rulesMeta object. - * @param {Map} rules a map of rules from which to generate the object. - * @returns {Object} metadata for all enabled rules. - */ -function createRulesMeta(rules) { - return Array.from(rules).reduce((retVal, [id, rule]) => { - retVal[id] = rule.meta; - return retVal; - }, {}); -} - -/** - * Return the absolute path of a file named `"__placeholder__.js"` in a given directory. - * This is used as a replacement for a missing file path. - * @param {string} cwd An absolute directory path. - * @returns {string} The absolute path of a file named `"__placeholder__.js"` in the given directory. - */ -function getPlaceholderPath(cwd) { - return path.join(cwd, "__placeholder__.js"); -} - -/** @type {WeakMap} */ -const usedDeprecatedRulesCache = new WeakMap(); - -/** - * Create used deprecated rule list. - * @param {CLIEngine} eslint The CLIEngine instance. - * @param {string} maybeFilePath The absolute path to a lint target file or `""`. - * @returns {DeprecatedRuleInfo[]} The used deprecated rule list. - */ -function getOrFindUsedDeprecatedRules(eslint, maybeFilePath) { - const { - configs, - options: { cwd } - } = privateMembers.get(eslint); - const filePath = path.isAbsolute(maybeFilePath) - ? maybeFilePath - : getPlaceholderPath(cwd); - const config = configs.getConfig(filePath); - - // Most files use the same config, so cache it. - if (config && !usedDeprecatedRulesCache.has(config)) { - const retv = []; - - if (config.rules) { - for (const [ruleId, ruleConf] of Object.entries(config.rules)) { - if (getRuleSeverity(ruleConf) === 0) { - continue; - } - const rule = getRuleFromConfig(ruleId, config); - const meta = rule && rule.meta; - - if (meta && meta.deprecated) { - retv.push({ ruleId, replacedBy: meta.replacedBy || [] }); - } - } - } - - - usedDeprecatedRulesCache.set(config, Object.freeze(retv)); - } - - return config ? usedDeprecatedRulesCache.get(config) : Object.freeze([]); -} - -/** - * Processes the linting results generated by a CLIEngine linting report to - * match the ESLint class's API. - * @param {CLIEngine} eslint The CLIEngine instance. - * @param {CLIEngineLintReport} report The CLIEngine linting report to process. - * @returns {LintResult[]} The processed linting results. - */ -function processLintReport(eslint, { results }) { - const descriptor = { - configurable: true, - enumerable: true, - get() { - return getOrFindUsedDeprecatedRules(eslint, this.filePath); - } - }; - - for (const result of results) { - Object.defineProperty(result, "usedDeprecatedRules", descriptor); - } - - return results; -} - -/** - * An Array.prototype.sort() compatible compare function to order results by their file path. - * @param {LintResult} a The first lint result. - * @param {LintResult} b The second lint result. - * @returns {number} An integer representing the order in which the two results should occur. - */ -function compareResultsByFilePath(a, b) { - if (a.filePath < b.filePath) { - return -1; - } - - if (a.filePath > b.filePath) { - return 1; - } - - return 0; -} - -/** - * Searches from the current working directory up until finding the - * given flat config filename. - * @param {string} cwd The current working directory to search from. - * @returns {Promise} The filename if found or `undefined` if not. - */ -function findFlatConfigFile(cwd) { - return findUp( - FLAT_CONFIG_FILENAMES, - { cwd } - ); -} - -/** - * Load the config array from the given filename. - * @param {string} filePath The filename to load from. - * @returns {Promise} The config loaded from the config file. - */ -async function loadFlatConfigFile(filePath) { - debug(`Loading config from ${filePath}`); - - const fileURL = pathToFileURL(filePath); - - debug(`Config file URL is ${fileURL}`); - - const mtime = (await fs.stat(filePath)).mtime.getTime(); - - /* - * Append a query with the config file's modification time (`mtime`) in order - * to import the current version of the config file. Without the query, `import()` would - * cache the config file module by the pathname only, and then always return - * the same version (the one that was actual when the module was imported for the first time). - * - * This ensures that the config file module is loaded and executed again - * if it has been changed since the last time it was imported. - * If it hasn't been changed, `import()` will just return the cached version. - * - * Note that we should not overuse queries (e.g., by appending the current time - * to always reload the config file module) as that could cause memory leaks - * because entries are never removed from the import cache. - */ - fileURL.searchParams.append("mtime", mtime); - - /* - * With queries, we can bypass the import cache. However, when import-ing a CJS module, - * Node.js uses the require infrastructure under the hood. That includes the require cache, - * which caches the config file module by its file path (queries have no effect). - * Therefore, we also need to clear the require cache before importing the config file module. - * In order to get the same behavior with ESM and CJS config files, in particular - to reload - * the config file only if it has been changed, we track file modification times and clear - * the require cache only if the file has been changed. - */ - if (importedConfigFileModificationTime.get(filePath) !== mtime) { - delete require.cache[filePath]; - } - - const config = (await import(fileURL)).default; - - importedConfigFileModificationTime.set(filePath, mtime); - - return config; -} - -/** - * Determines which config file to use. This is determined by seeing if an - * override config file was passed, and if so, using it; otherwise, as long - * as override config file is not explicitly set to `false`, it will search - * upwards from the cwd for a file named `eslint.config.js`. - * @param {import("./eslint").ESLintOptions} options The ESLint instance options. - * @returns {{configFilePath:string|undefined,basePath:string,error:Error|null}} Location information for - * the config file. - */ -async function locateConfigFileToUse({ configFile, cwd }) { - - // determine where to load config file from - let configFilePath; - let basePath = cwd; - let error = null; - - if (typeof configFile === "string") { - debug(`Override config file path is ${configFile}`); - configFilePath = path.resolve(cwd, configFile); - } else if (configFile !== false) { - debug("Searching for eslint.config.js"); - configFilePath = await findFlatConfigFile(cwd); - - if (configFilePath) { - basePath = path.resolve(path.dirname(configFilePath)); - } else { - error = new Error("Could not find config file."); - } - - } - - return { - configFilePath, - basePath, - error - }; - -} - -/** - * Calculates the config array for this run based on inputs. - * @param {FlatESLint} eslint The instance to create the config array for. - * @param {import("./eslint").ESLintOptions} options The ESLint instance options. - * @returns {FlatConfigArray} The config array for `eslint``. - */ -async function calculateConfigArray(eslint, { - cwd, - baseConfig, - overrideConfig, - configFile, - ignore: shouldIgnore, - ignorePatterns -}) { - - // check for cached instance - const slots = privateMembers.get(eslint); - - if (slots.configs) { - return slots.configs; - } - - const { configFilePath, basePath, error } = await locateConfigFileToUse({ configFile, cwd }); - - // config file is required to calculate config - if (error) { - throw error; - } - - const configs = new FlatConfigArray(baseConfig || [], { basePath, shouldIgnore }); - - // load config file - if (configFilePath) { - const fileConfig = await loadFlatConfigFile(configFilePath); - - if (Array.isArray(fileConfig)) { - configs.push(...fileConfig); - } else { - configs.push(fileConfig); - } - } - - // add in any configured defaults - configs.push(...slots.defaultConfigs); - - // append command line ignore patterns - if (ignorePatterns && ignorePatterns.length > 0) { - - let relativeIgnorePatterns; - - /* - * If the config file basePath is different than the cwd, then - * the ignore patterns won't work correctly. Here, we adjust the - * ignore pattern to include the correct relative path. Patterns - * passed as `ignorePatterns` are relative to the cwd, whereas - * the config file basePath can be an ancestor of the cwd. - */ - if (basePath === cwd) { - relativeIgnorePatterns = ignorePatterns; - } else { - - const relativeIgnorePath = path.relative(basePath, cwd); - - relativeIgnorePatterns = ignorePatterns.map(pattern => { - const negated = pattern.startsWith("!"); - const basePattern = negated ? pattern.slice(1) : pattern; - - return (negated ? "!" : "") + - path.posix.join(relativeIgnorePath, basePattern); - }); - } - - /* - * Ignore patterns are added to the end of the config array - * so they can override default ignores. - */ - configs.push({ - ignores: relativeIgnorePatterns - }); - } - - if (overrideConfig) { - if (Array.isArray(overrideConfig)) { - configs.push(...overrideConfig); - } else { - configs.push(overrideConfig); - } - } - - await configs.normalize(); - - // cache the config array for this instance - slots.configs = configs; - - return configs; -} - -/** - * Processes an source code using ESLint. - * @param {Object} config The config object. - * @param {string} config.text The source code to verify. - * @param {string} config.cwd The path to the current working directory. - * @param {string|undefined} config.filePath The path to the file of `text`. If this is undefined, it uses ``. - * @param {FlatConfigArray} config.configs The config. - * @param {boolean} config.fix If `true` then it does fix. - * @param {boolean} config.allowInlineConfig If `true` then it uses directive comments. - * @param {Linter} config.linter The linter instance to verify. - * @returns {LintResult} The result of linting. - * @private - */ -function verifyText({ - text, - cwd, - filePath: providedFilePath, - configs, - fix, - allowInlineConfig, - linter -}) { - const filePath = providedFilePath || ""; - - debug(`Lint ${filePath}`); - - /* - * Verify. - * `config.extractConfig(filePath)` requires an absolute path, but `linter` - * doesn't know CWD, so it gives `linter` an absolute path always. - */ - const filePathToVerify = filePath === "" ? getPlaceholderPath(cwd) : filePath; - const { fixed, messages, output } = linter.verifyAndFix( - text, - configs, - { - allowInlineConfig, - filename: filePathToVerify, - fix, - - /** - * Check if the linter should adopt a given code block or not. - * @param {string} blockFilename The virtual filename of a code block. - * @returns {boolean} `true` if the linter should adopt the code block. - */ - filterCodeBlock(blockFilename) { - return configs.isExplicitMatch(blockFilename); - } - } - ); - - // Tweak and return. - const result = { - filePath: filePath === "" ? filePath : path.resolve(filePath), - messages, - suppressedMessages: linter.getSuppressedMessages(), - ...calculateStatsPerFile(messages) - }; - - if (fixed) { - result.output = output; - } - - if ( - result.errorCount + result.warningCount > 0 && - typeof result.output === "undefined" - ) { - result.source = text; - } - - return result; -} - -/** - * Checks whether a message's rule type should be fixed. - * @param {LintMessage} message The message to check. - * @param {FlatConfig} config The config for the file that generated the message. - * @param {string[]} fixTypes An array of fix types to check. - * @returns {boolean} Whether the message should be fixed. - */ -function shouldMessageBeFixed(message, config, fixTypes) { - if (!message.ruleId) { - return fixTypes.has("directive"); - } - - const rule = message.ruleId && getRuleFromConfig(message.ruleId, config); - - return Boolean(rule && rule.meta && fixTypes.has(rule.meta.type)); -} - -/** - * Creates an error to be thrown when an array of results passed to `getRulesMetaForResults` was not created by the current engine. - * @returns {TypeError} An error object. - */ -function createExtraneousResultsError() { - return new TypeError("Results object was not created from this ESLint instance."); -} - -//----------------------------------------------------------------------------- -// Main API -//----------------------------------------------------------------------------- - -/** - * Primary Node.js API for ESLint. - */ -class FlatESLint { - - /** - * Creates a new instance of the main ESLint API. - * @param {FlatESLintOptions} options The options for this instance. - */ - constructor(options = {}) { - - const defaultConfigs = []; - const processedOptions = processOptions(options); - const linter = new Linter({ - cwd: processedOptions.cwd, - configType: "flat" - }); - - const cacheFilePath = getCacheFile( - processedOptions.cacheLocation, - processedOptions.cwd - ); - - const lintResultCache = processedOptions.cache - ? new LintResultCache(cacheFilePath, processedOptions.cacheStrategy) - : null; - - privateMembers.set(this, { - options: processedOptions, - linter, - cacheFilePath, - lintResultCache, - defaultConfigs, - configs: null - }); - - /** - * If additional plugins are passed in, add that to the default - * configs for this instance. - */ - if (options.plugins) { - - const plugins = {}; - - for (const [pluginName, plugin] of Object.entries(options.plugins)) { - plugins[naming.getShorthandName(pluginName, "eslint-plugin")] = plugin; - } - - defaultConfigs.push({ - plugins - }); - } - - } - - /** - * The version text. - * @type {string} - */ - static get version() { - return version; - } - - /** - * Outputs fixes from the given results to files. - * @param {LintResult[]} results The lint results. - * @returns {Promise} Returns a promise that is used to track side effects. - */ - static async outputFixes(results) { - if (!Array.isArray(results)) { - throw new Error("'results' must be an array"); - } - - await Promise.all( - results - .filter(result => { - if (typeof result !== "object" || result === null) { - throw new Error("'results' must include only objects"); - } - return ( - typeof result.output === "string" && - path.isAbsolute(result.filePath) - ); - }) - .map(r => fs.writeFile(r.filePath, r.output)) - ); - } - - /** - * Returns results that only contains errors. - * @param {LintResult[]} results The results to filter. - * @returns {LintResult[]} The filtered results. - */ - static getErrorResults(results) { - const filtered = []; - - results.forEach(result => { - const filteredMessages = result.messages.filter(isErrorMessage); - const filteredSuppressedMessages = result.suppressedMessages.filter(isErrorMessage); - - if (filteredMessages.length > 0) { - filtered.push({ - ...result, - messages: filteredMessages, - suppressedMessages: filteredSuppressedMessages, - errorCount: filteredMessages.length, - warningCount: 0, - fixableErrorCount: result.fixableErrorCount, - fixableWarningCount: 0 - }); - } - }); - - return filtered; - } - - /** - * Returns meta objects for each rule represented in the lint results. - * @param {LintResult[]} results The results to fetch rules meta for. - * @returns {Object} A mapping of ruleIds to rule meta objects. - * @throws {TypeError} When the results object wasn't created from this ESLint instance. - * @throws {TypeError} When a plugin or rule is missing. - */ - getRulesMetaForResults(results) { - - // short-circuit simple case - if (results.length === 0) { - return {}; - } - - const resultRules = new Map(); - const { - configs, - options: { cwd } - } = privateMembers.get(this); - - /* - * We can only accurately return rules meta information for linting results if the - * results were created by this instance. Otherwise, the necessary rules data is - * not available. So if the config array doesn't already exist, just throw an error - * to let the user know we can't do anything here. - */ - if (!configs) { - throw createExtraneousResultsError(); - } - - for (const result of results) { - - /* - * Normalize filename for . - */ - const filePath = result.filePath === "" - ? getPlaceholderPath(cwd) : result.filePath; - const allMessages = result.messages.concat(result.suppressedMessages); - - for (const { ruleId } of allMessages) { - if (!ruleId) { - continue; - } - - /* - * All of the plugin and rule information is contained within the - * calculated config for the given file. - */ - const config = configs.getConfig(filePath); - - if (!config) { - throw createExtraneousResultsError(); - } - const rule = getRuleFromConfig(ruleId, config); - - // ignore unknown rules - if (rule) { - resultRules.set(ruleId, rule); - } - } - } - - return createRulesMeta(resultRules); - } - - /** - * Executes the current configuration on an array of file and directory names. - * @param {string|string[]} patterns An array of file and directory names. - * @returns {Promise} The results of linting the file patterns given. - */ - async lintFiles(patterns) { - if (!isNonEmptyString(patterns) && !isArrayOfNonEmptyString(patterns)) { - throw new Error("'patterns' must be a non-empty string or an array of non-empty strings"); - } - - const { - cacheFilePath, - lintResultCache, - linter, - options: eslintOptions - } = privateMembers.get(this); - const configs = await calculateConfigArray(this, eslintOptions); - const { - allowInlineConfig, - cache, - cwd, - fix, - fixTypes, - globInputPaths, - errorOnUnmatchedPattern, - warnIgnored - } = eslintOptions; - const startTime = Date.now(); - const fixTypesSet = fixTypes ? new Set(fixTypes) : null; - - // Delete cache file; should this be done here? - if (!cache && cacheFilePath) { - debug(`Deleting cache file at ${cacheFilePath}`); - - try { - await fs.unlink(cacheFilePath); - } catch (error) { - const errorCode = error && error.code; - - // Ignore errors when no such file exists or file system is read only (and cache file does not exist) - if (errorCode !== "ENOENT" && !(errorCode === "EROFS" && !existsSync(cacheFilePath))) { - throw error; - } - } - } - - const filePaths = await findFiles({ - patterns: typeof patterns === "string" ? [patterns] : patterns, - cwd, - globInputPaths, - configs, - errorOnUnmatchedPattern - }); - - debug(`${filePaths.length} files found in: ${Date.now() - startTime}ms`); - - /* - * Because we need to process multiple files, including reading from disk, - * it is most efficient to start by reading each file via promises so that - * they can be done in parallel. Then, we can lint the returned text. This - * ensures we are waiting the minimum amount of time in between lints. - */ - const results = await Promise.all( - - filePaths.map(({ filePath, ignored }) => { - - /* - * If a filename was entered that matches an ignore - * pattern, then notify the user. - */ - if (ignored) { - if (warnIgnored) { - return createIgnoreResult(filePath, cwd); - } - - return void 0; - } - - const config = configs.getConfig(filePath); - - /* - * Sometimes a file found through a glob pattern will - * be ignored. In this case, `config` will be undefined - * and we just silently ignore the file. - */ - if (!config) { - return void 0; - } - - // Skip if there is cached result. - if (lintResultCache) { - const cachedResult = - lintResultCache.getCachedLintResults(filePath, config); - - if (cachedResult) { - const hadMessages = - cachedResult.messages && - cachedResult.messages.length > 0; - - if (hadMessages && fix) { - debug(`Reprocessing cached file to allow autofix: ${filePath}`); - } else { - debug(`Skipping file since it hasn't changed: ${filePath}`); - return cachedResult; - } - } - } - - - // set up fixer for fixTypes if necessary - let fixer = fix; - - if (fix && fixTypesSet) { - - // save original value of options.fix in case it's a function - const originalFix = (typeof fix === "function") - ? fix : () => true; - - fixer = message => shouldMessageBeFixed(message, config, fixTypesSet) && originalFix(message); - } - - return fs.readFile(filePath, "utf8") - .then(text => { - - // do the linting - const result = verifyText({ - text, - filePath, - configs, - cwd, - fix: fixer, - allowInlineConfig, - linter - }); - - /* - * Store the lint result in the LintResultCache. - * NOTE: The LintResultCache will remove the file source and any - * other properties that are difficult to serialize, and will - * hydrate those properties back in on future lint runs. - */ - if (lintResultCache) { - lintResultCache.setCachedLintResults(filePath, config, result); - } - - return result; - }); - - }) - ); - - // Persist the cache to disk. - if (lintResultCache) { - lintResultCache.reconcile(); - } - - const finalResults = results.filter(result => !!result); - - return processLintReport(this, { - results: finalResults - }); - } - - /** - * Executes the current configuration on text. - * @param {string} code A string of JavaScript code to lint. - * @param {Object} [options] The options. - * @param {string} [options.filePath] The path to the file of the source code. - * @param {boolean} [options.warnIgnored] When set to true, warn if given filePath is an ignored path. - * @returns {Promise} The results of linting the string of code given. - */ - async lintText(code, options = {}) { - - // Parameter validation - - if (typeof code !== "string") { - throw new Error("'code' must be a string"); - } - - if (typeof options !== "object") { - throw new Error("'options' must be an object, null, or undefined"); - } - - // Options validation - - const { - filePath, - warnIgnored, - ...unknownOptions - } = options || {}; - - const unknownOptionKeys = Object.keys(unknownOptions); - - if (unknownOptionKeys.length > 0) { - throw new Error(`'options' must not include the unknown option(s): ${unknownOptionKeys.join(", ")}`); - } - - if (filePath !== void 0 && !isNonEmptyString(filePath)) { - throw new Error("'options.filePath' must be a non-empty string or undefined"); - } - - if (typeof warnIgnored !== "boolean" && typeof warnIgnored !== "undefined") { - throw new Error("'options.warnIgnored' must be a boolean or undefined"); - } - - // Now we can get down to linting - - const { - linter, - options: eslintOptions - } = privateMembers.get(this); - const configs = await calculateConfigArray(this, eslintOptions); - const { - allowInlineConfig, - cwd, - fix, - warnIgnored: constructorWarnIgnored - } = eslintOptions; - const results = []; - const startTime = Date.now(); - const resolvedFilename = path.resolve(cwd, filePath || "__placeholder__.js"); - - // Clear the last used config arrays. - if (resolvedFilename && await this.isPathIgnored(resolvedFilename)) { - const shouldWarnIgnored = typeof warnIgnored === "boolean" ? warnIgnored : constructorWarnIgnored; - - if (shouldWarnIgnored) { - results.push(createIgnoreResult(resolvedFilename, cwd)); - } - } else { - - // Do lint. - results.push(verifyText({ - text: code, - filePath: resolvedFilename.endsWith("__placeholder__.js") ? "" : resolvedFilename, - configs, - cwd, - fix, - allowInlineConfig, - linter - })); - } - - debug(`Linting complete in: ${Date.now() - startTime}ms`); - - return processLintReport(this, { - results - }); - - } - - /** - * Returns the formatter representing the given formatter name. - * @param {string} [name] The name of the formatter to load. - * The following values are allowed: - * - `undefined` ... Load `stylish` builtin formatter. - * - A builtin formatter name ... Load the builtin formatter. - * - A third-party formatter name: - * - `foo` → `eslint-formatter-foo` - * - `@foo` → `@foo/eslint-formatter` - * - `@foo/bar` → `@foo/eslint-formatter-bar` - * - A file path ... Load the file. - * @returns {Promise} A promise resolving to the formatter object. - * This promise will be rejected if the given formatter was not found or not - * a function. - */ - async loadFormatter(name = "stylish") { - if (typeof name !== "string") { - throw new Error("'name' must be a string"); - } - - // replace \ with / for Windows compatibility - const normalizedFormatName = name.replace(/\\/gu, "/"); - const namespace = naming.getNamespaceFromTerm(normalizedFormatName); - - // grab our options - const { cwd } = privateMembers.get(this).options; - - - let formatterPath; - - // if there's a slash, then it's a file (TODO: this check seems dubious for scoped npm packages) - if (!namespace && normalizedFormatName.includes("/")) { - formatterPath = path.resolve(cwd, normalizedFormatName); - } else { - try { - const npmFormat = naming.normalizePackageName(normalizedFormatName, "eslint-formatter"); - - // TODO: This is pretty dirty...would be nice to clean up at some point. - formatterPath = ModuleResolver.resolve(npmFormat, getPlaceholderPath(cwd)); - } catch { - formatterPath = path.resolve(__dirname, "../", "cli-engine", "formatters", `${normalizedFormatName}.js`); - } - } - - let formatter; - - try { - formatter = (await import(pathToFileURL(formatterPath))).default; - } catch (ex) { - - // check for formatters that have been removed - if (removedFormatters.has(name)) { - ex.message = `The ${name} formatter is no longer part of core ESLint. Install it manually with \`npm install -D eslint-formatter-${name}\``; - } else { - ex.message = `There was a problem loading formatter: ${formatterPath}\nError: ${ex.message}`; - } - - throw ex; - } - - - if (typeof formatter !== "function") { - throw new TypeError(`Formatter must be a function, but got a ${typeof formatter}.`); - } - - const eslint = this; - - return { - - /** - * The main formatter method. - * @param {LintResults[]} results The lint results to format. - * @param {ResultsMeta} resultsMeta Warning count and max threshold. - * @returns {string} The formatted lint results. - */ - format(results, resultsMeta) { - let rulesMeta = null; - - results.sort(compareResultsByFilePath); - - return formatter(results, { - ...resultsMeta, - cwd, - get rulesMeta() { - if (!rulesMeta) { - rulesMeta = eslint.getRulesMetaForResults(results); - } - - return rulesMeta; - } - }); - } - }; - } - - /** - * Returns a configuration object for the given file based on the CLI options. - * This is the same logic used by the ESLint CLI executable to determine - * configuration for each file it processes. - * @param {string} filePath The path of the file to retrieve a config object for. - * @returns {Promise} A configuration object for the file - * or `undefined` if there is no configuration data for the object. - */ - async calculateConfigForFile(filePath) { - if (!isNonEmptyString(filePath)) { - throw new Error("'filePath' must be a non-empty string"); - } - const options = privateMembers.get(this).options; - const absolutePath = path.resolve(options.cwd, filePath); - const configs = await calculateConfigArray(this, options); - - return configs.getConfig(absolutePath); - } - - /** - * Finds the config file being used by this instance based on the options - * passed to the constructor. - * @returns {string|undefined} The path to the config file being used or - * `undefined` if no config file is being used. - */ - async findConfigFile() { - const options = privateMembers.get(this).options; - const { configFilePath } = await locateConfigFileToUse(options); - - return configFilePath; - } - - /** - * Checks if a given path is ignored by ESLint. - * @param {string} filePath The path of the file to check. - * @returns {Promise} Whether or not the given path is ignored. - */ - async isPathIgnored(filePath) { - const config = await this.calculateConfigForFile(filePath); - - return config === void 0; - } -} - -/** - * The type of configuration used by this class. - * @type {string} - * @static - */ -FlatESLint.configType = "flat"; - -/** - * Returns whether flat config should be used. - * @param {Object} [options] The options for this function. - * @param {string} [options.cwd] The current working directory. - * @returns {Promise} Whether flat config should be used. - */ -async function shouldUseFlatConfig({ cwd = process.cwd() } = {}) { - switch (process.env.ESLINT_USE_FLAT_CONFIG) { - case "true": - return true; - case "false": - return false; - default: - - /* - * If neither explicitly enabled nor disabled, then use the presence - * of a flat config file to determine enablement. - */ - return !!(await findFlatConfigFile(cwd)); - } -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - FlatESLint, - shouldUseFlatConfig -}; diff --git a/tools/node_modules/eslint/lib/eslint/index.js b/tools/node_modules/eslint/lib/eslint/index.js index 017b768ecd03ca..b7c52a4ea701b5 100644 --- a/tools/node_modules/eslint/lib/eslint/index.js +++ b/tools/node_modules/eslint/lib/eslint/index.js @@ -1,9 +1,9 @@ "use strict"; const { ESLint } = require("./eslint"); -const { FlatESLint } = require("./flat-eslint"); +const { LegacyESLint } = require("./legacy-eslint"); module.exports = { ESLint, - FlatESLint + LegacyESLint }; diff --git a/tools/node_modules/eslint/lib/eslint/legacy-eslint.js b/tools/node_modules/eslint/lib/eslint/legacy-eslint.js new file mode 100644 index 00000000000000..a781fe9c86c4cf --- /dev/null +++ b/tools/node_modules/eslint/lib/eslint/legacy-eslint.js @@ -0,0 +1,728 @@ +/** + * @fileoverview Main API Class + * @author Kai Cataldo + * @author Toru Nagashima + */ + +"use strict"; + +//------------------------------------------------------------------------------ +// Requirements +//------------------------------------------------------------------------------ + +const path = require("node:path"); +const fs = require("node:fs"); +const { promisify } = require("node:util"); +const { CLIEngine, getCLIEngineInternalSlots } = require("../cli-engine/cli-engine"); +const BuiltinRules = require("../rules"); +const { + Legacy: { + ConfigOps: { + getRuleSeverity + } + } +} = require("@eslint/eslintrc"); +const { version } = require("../../package.json"); + +//------------------------------------------------------------------------------ +// Typedefs +//------------------------------------------------------------------------------ + +/** @typedef {import("../cli-engine/cli-engine").LintReport} CLIEngineLintReport */ +/** @typedef {import("../shared/types").DeprecatedRuleInfo} DeprecatedRuleInfo */ +/** @typedef {import("../shared/types").ConfigData} ConfigData */ +/** @typedef {import("../shared/types").LintMessage} LintMessage */ +/** @typedef {import("../shared/types").SuppressedLintMessage} SuppressedLintMessage */ +/** @typedef {import("../shared/types").Plugin} Plugin */ +/** @typedef {import("../shared/types").Rule} Rule */ +/** @typedef {import("../shared/types").LintResult} LintResult */ +/** @typedef {import("../shared/types").ResultsMeta} ResultsMeta */ + +/** + * The main formatter object. + * @typedef LoadedFormatter + * @property {(results: LintResult[], resultsMeta: ResultsMeta) => string | Promise} format format function. + */ + +/** + * The options with which to configure the LegacyESLint instance. + * @typedef {Object} LegacyESLintOptions + * @property {boolean} [allowInlineConfig] Enable or disable inline configuration comments. + * @property {ConfigData} [baseConfig] Base config object, extended by all configs used with this instance + * @property {boolean} [cache] Enable result caching. + * @property {string} [cacheLocation] The cache file to use instead of .eslintcache. + * @property {"metadata" | "content"} [cacheStrategy] The strategy used to detect changed files. + * @property {string} [cwd] The value to use for the current working directory. + * @property {boolean} [errorOnUnmatchedPattern] If `false` then `ESLint#lintFiles()` doesn't throw even if no target files found. Defaults to `true`. + * @property {string[]} [extensions] An array of file extensions to check. + * @property {boolean|Function} [fix] Execute in autofix mode. If a function, should return a boolean. + * @property {string[]} [fixTypes] Array of rule types to apply fixes for. + * @property {boolean} [globInputPaths] Set to false to skip glob resolution of input file paths to lint (default: true). If false, each input file paths is assumed to be a non-glob path to an existing file. + * @property {boolean} [ignore] False disables use of .eslintignore. + * @property {string} [ignorePath] The ignore file to use instead of .eslintignore. + * @property {ConfigData} [overrideConfig] Override config object, overrides all configs used with this instance + * @property {string} [overrideConfigFile] The configuration file to use. + * @property {Record|null} [plugins] Preloaded plugins. This is a map-like object, keys are plugin IDs and each value is implementation. + * @property {"error" | "warn" | "off"} [reportUnusedDisableDirectives] the severity to report unused eslint-disable directives. + * @property {string} [resolvePluginsRelativeTo] The folder where plugins should be resolved from, defaulting to the CWD. + * @property {string[]} [rulePaths] An array of directories to load custom rules from. + * @property {boolean} [useEslintrc] False disables looking for .eslintrc.* files. + * @property {boolean} [passOnNoPatterns=false] When set to true, missing patterns cause + * the linting operation to short circuit and not report any failures. + */ + +/** + * A rules metadata object. + * @typedef {Object} RulesMeta + * @property {string} id The plugin ID. + * @property {Object} definition The plugin definition. + */ + +/** + * Private members for the `ESLint` instance. + * @typedef {Object} ESLintPrivateMembers + * @property {CLIEngine} cliEngine The wrapped CLIEngine instance. + * @property {LegacyESLintOptions} options The options used to instantiate the ESLint instance. + */ + +//------------------------------------------------------------------------------ +// Helpers +//------------------------------------------------------------------------------ + +const writeFile = promisify(fs.writeFile); + +/** + * The map with which to store private class members. + * @type {WeakMap} + */ +const privateMembersMap = new WeakMap(); + +/** + * Check if a given value is a non-empty string or not. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is a non-empty string. + */ +function isNonEmptyString(value) { + return typeof value === "string" && value.trim() !== ""; +} + +/** + * Check if a given value is an array of non-empty strings or not. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is an array of non-empty strings. + */ +function isArrayOfNonEmptyString(value) { + return Array.isArray(value) && value.length && value.every(isNonEmptyString); +} + +/** + * Check if a given value is an empty array or an array of non-empty strings. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is an empty array or an array of non-empty + * strings. + */ +function isEmptyArrayOrArrayOfNonEmptyString(value) { + return Array.isArray(value) && value.every(isNonEmptyString); +} + +/** + * Check if a given value is a valid fix type or not. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is valid fix type. + */ +function isFixType(value) { + return value === "directive" || value === "problem" || value === "suggestion" || value === "layout"; +} + +/** + * Check if a given value is an array of fix types or not. + * @param {any} value The value to check. + * @returns {boolean} `true` if `value` is an array of fix types. + */ +function isFixTypeArray(value) { + return Array.isArray(value) && value.every(isFixType); +} + +/** + * The error for invalid options. + */ +class ESLintInvalidOptionsError extends Error { + constructor(messages) { + super(`Invalid Options:\n- ${messages.join("\n- ")}`); + this.code = "ESLINT_INVALID_OPTIONS"; + Error.captureStackTrace(this, ESLintInvalidOptionsError); + } +} + +/** + * Validates and normalizes options for the wrapped CLIEngine instance. + * @param {LegacyESLintOptions} options The options to process. + * @throws {ESLintInvalidOptionsError} If of any of a variety of type errors. + * @returns {LegacyESLintOptions} The normalized options. + */ +function processOptions({ + allowInlineConfig = true, // ← we cannot use `overrideConfig.noInlineConfig` instead because `allowInlineConfig` has side-effect that suppress warnings that show inline configs are ignored. + baseConfig = null, + cache = false, + cacheLocation = ".eslintcache", + cacheStrategy = "metadata", + cwd = process.cwd(), + errorOnUnmatchedPattern = true, + extensions = null, // ← should be null by default because if it's an array then it suppresses RFC20 feature. + fix = false, + fixTypes = null, // ← should be null by default because if it's an array then it suppresses rules that don't have the `meta.type` property. + globInputPaths = true, + ignore = true, + ignorePath = null, // ← should be null by default because if it's a string then it may throw ENOENT. + overrideConfig = null, + overrideConfigFile = null, + plugins = {}, + reportUnusedDisableDirectives = null, // ← should be null by default because if it's a string then it overrides the 'reportUnusedDisableDirectives' setting in config files. And we cannot use `overrideConfig.reportUnusedDisableDirectives` instead because we cannot configure the `error` severity with that. + resolvePluginsRelativeTo = null, // ← should be null by default because if it's a string then it suppresses RFC47 feature. + rulePaths = [], + useEslintrc = true, + passOnNoPatterns = false, + ...unknownOptions +}) { + const errors = []; + const unknownOptionKeys = Object.keys(unknownOptions); + + if (unknownOptionKeys.length >= 1) { + errors.push(`Unknown options: ${unknownOptionKeys.join(", ")}`); + if (unknownOptionKeys.includes("cacheFile")) { + errors.push("'cacheFile' has been removed. Please use the 'cacheLocation' option instead."); + } + if (unknownOptionKeys.includes("configFile")) { + errors.push("'configFile' has been removed. Please use the 'overrideConfigFile' option instead."); + } + if (unknownOptionKeys.includes("envs")) { + errors.push("'envs' has been removed. Please use the 'overrideConfig.env' option instead."); + } + if (unknownOptionKeys.includes("globals")) { + errors.push("'globals' has been removed. Please use the 'overrideConfig.globals' option instead."); + } + if (unknownOptionKeys.includes("ignorePattern")) { + errors.push("'ignorePattern' has been removed. Please use the 'overrideConfig.ignorePatterns' option instead."); + } + if (unknownOptionKeys.includes("parser")) { + errors.push("'parser' has been removed. Please use the 'overrideConfig.parser' option instead."); + } + if (unknownOptionKeys.includes("parserOptions")) { + errors.push("'parserOptions' has been removed. Please use the 'overrideConfig.parserOptions' option instead."); + } + if (unknownOptionKeys.includes("rules")) { + errors.push("'rules' has been removed. Please use the 'overrideConfig.rules' option instead."); + } + } + if (typeof allowInlineConfig !== "boolean") { + errors.push("'allowInlineConfig' must be a boolean."); + } + if (typeof baseConfig !== "object") { + errors.push("'baseConfig' must be an object or null."); + } + if (typeof cache !== "boolean") { + errors.push("'cache' must be a boolean."); + } + if (!isNonEmptyString(cacheLocation)) { + errors.push("'cacheLocation' must be a non-empty string."); + } + if ( + cacheStrategy !== "metadata" && + cacheStrategy !== "content" + ) { + errors.push("'cacheStrategy' must be any of \"metadata\", \"content\"."); + } + if (!isNonEmptyString(cwd) || !path.isAbsolute(cwd)) { + errors.push("'cwd' must be an absolute path."); + } + if (typeof errorOnUnmatchedPattern !== "boolean") { + errors.push("'errorOnUnmatchedPattern' must be a boolean."); + } + if (!isEmptyArrayOrArrayOfNonEmptyString(extensions) && extensions !== null) { + errors.push("'extensions' must be an array of non-empty strings or null."); + } + if (typeof fix !== "boolean" && typeof fix !== "function") { + errors.push("'fix' must be a boolean or a function."); + } + if (fixTypes !== null && !isFixTypeArray(fixTypes)) { + errors.push("'fixTypes' must be an array of any of \"directive\", \"problem\", \"suggestion\", and \"layout\"."); + } + if (typeof globInputPaths !== "boolean") { + errors.push("'globInputPaths' must be a boolean."); + } + if (typeof ignore !== "boolean") { + errors.push("'ignore' must be a boolean."); + } + if (!isNonEmptyString(ignorePath) && ignorePath !== null) { + errors.push("'ignorePath' must be a non-empty string or null."); + } + if (typeof overrideConfig !== "object") { + errors.push("'overrideConfig' must be an object or null."); + } + if (!isNonEmptyString(overrideConfigFile) && overrideConfigFile !== null) { + errors.push("'overrideConfigFile' must be a non-empty string or null."); + } + if (typeof plugins !== "object") { + errors.push("'plugins' must be an object or null."); + } else if (plugins !== null && Object.keys(plugins).includes("")) { + errors.push("'plugins' must not include an empty string."); + } + if (Array.isArray(plugins)) { + errors.push("'plugins' doesn't add plugins to configuration to load. Please use the 'overrideConfig.plugins' option instead."); + } + if ( + reportUnusedDisableDirectives !== "error" && + reportUnusedDisableDirectives !== "warn" && + reportUnusedDisableDirectives !== "off" && + reportUnusedDisableDirectives !== null + ) { + errors.push("'reportUnusedDisableDirectives' must be any of \"error\", \"warn\", \"off\", and null."); + } + if ( + !isNonEmptyString(resolvePluginsRelativeTo) && + resolvePluginsRelativeTo !== null + ) { + errors.push("'resolvePluginsRelativeTo' must be a non-empty string or null."); + } + if (!isEmptyArrayOrArrayOfNonEmptyString(rulePaths)) { + errors.push("'rulePaths' must be an array of non-empty strings."); + } + if (typeof useEslintrc !== "boolean") { + errors.push("'useEslintrc' must be a boolean."); + } + if (typeof passOnNoPatterns !== "boolean") { + errors.push("'passOnNoPatterns' must be a boolean."); + } + + if (errors.length > 0) { + throw new ESLintInvalidOptionsError(errors); + } + + return { + allowInlineConfig, + baseConfig, + cache, + cacheLocation, + cacheStrategy, + configFile: overrideConfigFile, + cwd: path.normalize(cwd), + errorOnUnmatchedPattern, + extensions, + fix, + fixTypes, + globInputPaths, + ignore, + ignorePath, + reportUnusedDisableDirectives, + resolvePluginsRelativeTo, + rulePaths, + useEslintrc, + passOnNoPatterns + }; +} + +/** + * Check if a value has one or more properties and that value is not undefined. + * @param {any} obj The value to check. + * @returns {boolean} `true` if `obj` has one or more properties that that value is not undefined. + */ +function hasDefinedProperty(obj) { + if (typeof obj === "object" && obj !== null) { + for (const key in obj) { + if (typeof obj[key] !== "undefined") { + return true; + } + } + } + return false; +} + +/** + * Create rulesMeta object. + * @param {Map} rules a map of rules from which to generate the object. + * @returns {Object} metadata for all enabled rules. + */ +function createRulesMeta(rules) { + return Array.from(rules).reduce((retVal, [id, rule]) => { + retVal[id] = rule.meta; + return retVal; + }, {}); +} + +/** @type {WeakMap} */ +const usedDeprecatedRulesCache = new WeakMap(); + +/** + * Create used deprecated rule list. + * @param {CLIEngine} cliEngine The CLIEngine instance. + * @param {string} maybeFilePath The absolute path to a lint target file or `""`. + * @returns {DeprecatedRuleInfo[]} The used deprecated rule list. + */ +function getOrFindUsedDeprecatedRules(cliEngine, maybeFilePath) { + const { + configArrayFactory, + options: { cwd } + } = getCLIEngineInternalSlots(cliEngine); + const filePath = path.isAbsolute(maybeFilePath) + ? maybeFilePath + : path.join(cwd, "__placeholder__.js"); + const configArray = configArrayFactory.getConfigArrayForFile(filePath); + const config = configArray.extractConfig(filePath); + + // Most files use the same config, so cache it. + if (!usedDeprecatedRulesCache.has(config)) { + const pluginRules = configArray.pluginRules; + const retv = []; + + for (const [ruleId, ruleConf] of Object.entries(config.rules)) { + if (getRuleSeverity(ruleConf) === 0) { + continue; + } + const rule = pluginRules.get(ruleId) || BuiltinRules.get(ruleId); + const meta = rule && rule.meta; + + if (meta && meta.deprecated) { + retv.push({ ruleId, replacedBy: meta.replacedBy || [] }); + } + } + + usedDeprecatedRulesCache.set(config, Object.freeze(retv)); + } + + return usedDeprecatedRulesCache.get(config); +} + +/** + * Processes the linting results generated by a CLIEngine linting report to + * match the ESLint class's API. + * @param {CLIEngine} cliEngine The CLIEngine instance. + * @param {CLIEngineLintReport} report The CLIEngine linting report to process. + * @returns {LintResult[]} The processed linting results. + */ +function processCLIEngineLintReport(cliEngine, { results }) { + const descriptor = { + configurable: true, + enumerable: true, + get() { + return getOrFindUsedDeprecatedRules(cliEngine, this.filePath); + } + }; + + for (const result of results) { + Object.defineProperty(result, "usedDeprecatedRules", descriptor); + } + + return results; +} + +/** + * An Array.prototype.sort() compatible compare function to order results by their file path. + * @param {LintResult} a The first lint result. + * @param {LintResult} b The second lint result. + * @returns {number} An integer representing the order in which the two results should occur. + */ +function compareResultsByFilePath(a, b) { + if (a.filePath < b.filePath) { + return -1; + } + + if (a.filePath > b.filePath) { + return 1; + } + + return 0; +} + +/** + * Main API. + */ +class LegacyESLint { + + /** + * The type of configuration used by this class. + * @type {string} + */ + static configType = "eslintrc"; + + /** + * Creates a new instance of the main ESLint API. + * @param {LegacyESLintOptions} options The options for this instance. + */ + constructor(options = {}) { + const processedOptions = processOptions(options); + const cliEngine = new CLIEngine(processedOptions, { preloadedPlugins: options.plugins }); + const { + configArrayFactory, + lastConfigArrays + } = getCLIEngineInternalSlots(cliEngine); + let updated = false; + + /* + * Address `overrideConfig` to set override config. + * Operate the `configArrayFactory` internal slot directly because this + * functionality doesn't exist as the public API of CLIEngine. + */ + if (hasDefinedProperty(options.overrideConfig)) { + configArrayFactory.setOverrideConfig(options.overrideConfig); + updated = true; + } + + // Update caches. + if (updated) { + configArrayFactory.clearCache(); + lastConfigArrays[0] = configArrayFactory.getConfigArrayForFile(); + } + + // Initialize private properties. + privateMembersMap.set(this, { + cliEngine, + options: processedOptions + }); + } + + /** + * The version text. + * @type {string} + */ + static get version() { + return version; + } + + /** + * Outputs fixes from the given results to files. + * @param {LintResult[]} results The lint results. + * @returns {Promise} Returns a promise that is used to track side effects. + */ + static async outputFixes(results) { + if (!Array.isArray(results)) { + throw new Error("'results' must be an array"); + } + + await Promise.all( + results + .filter(result => { + if (typeof result !== "object" || result === null) { + throw new Error("'results' must include only objects"); + } + return ( + typeof result.output === "string" && + path.isAbsolute(result.filePath) + ); + }) + .map(r => writeFile(r.filePath, r.output)) + ); + } + + /** + * Returns results that only contains errors. + * @param {LintResult[]} results The results to filter. + * @returns {LintResult[]} The filtered results. + */ + static getErrorResults(results) { + return CLIEngine.getErrorResults(results); + } + + /** + * Returns meta objects for each rule represented in the lint results. + * @param {LintResult[]} results The results to fetch rules meta for. + * @returns {Object} A mapping of ruleIds to rule meta objects. + */ + getRulesMetaForResults(results) { + + const resultRuleIds = new Set(); + + // first gather all ruleIds from all results + + for (const result of results) { + for (const { ruleId } of result.messages) { + resultRuleIds.add(ruleId); + } + for (const { ruleId } of result.suppressedMessages) { + resultRuleIds.add(ruleId); + } + } + + // create a map of all rules in the results + + const { cliEngine } = privateMembersMap.get(this); + const rules = cliEngine.getRules(); + const resultRules = new Map(); + + for (const [ruleId, rule] of rules) { + if (resultRuleIds.has(ruleId)) { + resultRules.set(ruleId, rule); + } + } + + return createRulesMeta(resultRules); + + } + + /** + * Executes the current configuration on an array of file and directory names. + * @param {string[]} patterns An array of file and directory names. + * @returns {Promise} The results of linting the file patterns given. + */ + async lintFiles(patterns) { + const { cliEngine, options } = privateMembersMap.get(this); + + if (options.passOnNoPatterns && (patterns === "" || (Array.isArray(patterns) && patterns.length === 0))) { + return []; + } + + if (!isNonEmptyString(patterns) && !isArrayOfNonEmptyString(patterns)) { + throw new Error("'patterns' must be a non-empty string or an array of non-empty strings"); + } + + return processCLIEngineLintReport( + cliEngine, + cliEngine.executeOnFiles(patterns) + ); + } + + /** + * Executes the current configuration on text. + * @param {string} code A string of JavaScript code to lint. + * @param {Object} [options] The options. + * @param {string} [options.filePath] The path to the file of the source code. + * @param {boolean} [options.warnIgnored] When set to true, warn if given filePath is an ignored path. + * @returns {Promise} The results of linting the string of code given. + */ + async lintText(code, options = {}) { + if (typeof code !== "string") { + throw new Error("'code' must be a string"); + } + if (typeof options !== "object") { + throw new Error("'options' must be an object, null, or undefined"); + } + const { + filePath, + warnIgnored = false, + ...unknownOptions + } = options || {}; + + const unknownOptionKeys = Object.keys(unknownOptions); + + if (unknownOptionKeys.length > 0) { + throw new Error(`'options' must not include the unknown option(s): ${unknownOptionKeys.join(", ")}`); + } + + if (filePath !== void 0 && !isNonEmptyString(filePath)) { + throw new Error("'options.filePath' must be a non-empty string or undefined"); + } + if (typeof warnIgnored !== "boolean") { + throw new Error("'options.warnIgnored' must be a boolean or undefined"); + } + + const { cliEngine } = privateMembersMap.get(this); + + return processCLIEngineLintReport( + cliEngine, + cliEngine.executeOnText(code, filePath, warnIgnored) + ); + } + + /** + * Returns the formatter representing the given formatter name. + * @param {string} [name] The name of the formatter to load. + * The following values are allowed: + * - `undefined` ... Load `stylish` builtin formatter. + * - A builtin formatter name ... Load the builtin formatter. + * - A third-party formatter name: + * - `foo` → `eslint-formatter-foo` + * - `@foo` → `@foo/eslint-formatter` + * - `@foo/bar` → `@foo/eslint-formatter-bar` + * - A file path ... Load the file. + * @returns {Promise} A promise resolving to the formatter object. + * This promise will be rejected if the given formatter was not found or not + * a function. + */ + async loadFormatter(name = "stylish") { + if (typeof name !== "string") { + throw new Error("'name' must be a string"); + } + + const { cliEngine, options } = privateMembersMap.get(this); + const formatter = cliEngine.getFormatter(name); + + if (typeof formatter !== "function") { + throw new Error(`Formatter must be a function, but got a ${typeof formatter}.`); + } + + return { + + /** + * The main formatter method. + * @param {LintResult[]} results The lint results to format. + * @param {ResultsMeta} resultsMeta Warning count and max threshold. + * @returns {string | Promise} The formatted lint results. + */ + format(results, resultsMeta) { + let rulesMeta = null; + + results.sort(compareResultsByFilePath); + + return formatter(results, { + ...resultsMeta, + get cwd() { + return options.cwd; + }, + get rulesMeta() { + if (!rulesMeta) { + rulesMeta = createRulesMeta(cliEngine.getRules()); + } + + return rulesMeta; + } + }); + } + }; + } + + /** + * Returns a configuration object for the given file based on the CLI options. + * This is the same logic used by the ESLint CLI executable to determine + * configuration for each file it processes. + * @param {string} filePath The path of the file to retrieve a config object for. + * @returns {Promise} A configuration object for the file. + */ + async calculateConfigForFile(filePath) { + if (!isNonEmptyString(filePath)) { + throw new Error("'filePath' must be a non-empty string"); + } + const { cliEngine } = privateMembersMap.get(this); + + return cliEngine.getConfigForFile(filePath); + } + + /** + * Checks if a given path is ignored by ESLint. + * @param {string} filePath The path of the file to check. + * @returns {Promise} Whether or not the given path is ignored. + */ + async isPathIgnored(filePath) { + if (!isNonEmptyString(filePath)) { + throw new Error("'filePath' must be a non-empty string"); + } + const { cliEngine } = privateMembersMap.get(this); + + return cliEngine.isPathIgnored(filePath); + } +} + +//------------------------------------------------------------------------------ +// Public Interface +//------------------------------------------------------------------------------ + +module.exports = { + LegacyESLint, + + /** + * Get the private class members of a given ESLint instance for tests. + * @param {ESLint} instance The ESLint instance to get. + * @returns {ESLintPrivateMembers} The instance's private class members. + */ + getESLintPrivateMembers(instance) { + return privateMembersMap.get(instance); + } +}; diff --git a/tools/node_modules/eslint/lib/linter/apply-disable-directives.js b/tools/node_modules/eslint/lib/linter/apply-disable-directives.js index c5e3c9ddc1ced5..0ed11bb197f0d0 100644 --- a/tools/node_modules/eslint/lib/linter/apply-disable-directives.js +++ b/tools/node_modules/eslint/lib/linter/apply-disable-directives.js @@ -16,6 +16,11 @@ //------------------------------------------------------------------------------ const escapeRegExp = require("escape-string-regexp"); +const { + Legacy: { + ConfigOps + } +} = require("@eslint/eslintrc/universal"); /** * Compares the locations of two objects in a source file @@ -33,16 +38,16 @@ function compareLocations(itemA, itemB) { * @param {Iterable} directives Unused directives to be removed. * @returns {Directive[][]} Directives grouped by their parent comment. */ -function groupByParentComment(directives) { +function groupByParentDirective(directives) { const groups = new Map(); for (const directive of directives) { - const { unprocessedDirective: { parentComment } } = directive; + const { unprocessedDirective: { parentDirective } } = directive; - if (groups.has(parentComment)) { - groups.get(parentComment).push(directive); + if (groups.has(parentDirective)) { + groups.get(parentDirective).push(directive); } else { - groups.set(parentComment, [directive]); + groups.set(parentDirective, [directive]); } } @@ -52,19 +57,19 @@ function groupByParentComment(directives) { /** * Creates removal details for a set of directives within the same comment. * @param {Directive[]} directives Unused directives to be removed. - * @param {Token} commentToken The backing Comment token. + * @param {Token} node The backing Comment token. * @returns {{ description, fix, unprocessedDirective }[]} Details for later creation of output Problems. */ -function createIndividualDirectivesRemoval(directives, commentToken) { +function createIndividualDirectivesRemoval(directives, node) { /* - * `commentToken.value` starts right after `//` or `/*`. + * `node.value` starts right after `//` or `/*`. * All calculated offsets will be relative to this index. */ - const commentValueStart = commentToken.range[0] + "//".length; + const commentValueStart = node.range[0] + "//".length; // Find where the list of rules starts. `\S+` matches with the directive name (e.g. `eslint-disable-line`) - const listStartOffset = /^\s*\S+\s+/u.exec(commentToken.value)[0].length; + const listStartOffset = /^\s*\S+\s+/u.exec(node.value)[0].length; /* * Get the list text without any surrounding whitespace. In order to preserve the original @@ -73,7 +78,7 @@ function createIndividualDirectivesRemoval(directives, commentToken) { * // eslint-disable-line rule-one , rule-two , rule-three -- comment * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ */ - const listText = commentToken.value + const listText = node.value .slice(listStartOffset) // remove directive name and all whitespace before the list .split(/\s-{2,}\s/u)[0] // remove `-- comment`, if it exists .trimEnd(); // remove all whitespace after the list @@ -154,19 +159,19 @@ function createIndividualDirectivesRemoval(directives, commentToken) { } /** - * Creates a description of deleting an entire unused disable comment. + * Creates a description of deleting an entire unused disable directive. * @param {Directive[]} directives Unused directives to be removed. - * @param {Token} commentToken The backing Comment token. - * @returns {{ description, fix, unprocessedDirective }} Details for later creation of an output Problem. + * @param {Token} node The backing Comment token. + * @returns {{ description, fix, unprocessedDirective }} Details for later creation of an output problem. */ -function createCommentRemoval(directives, commentToken) { - const { range } = commentToken; +function createDirectiveRemoval(directives, node) { + const { range } = node; const ruleIds = directives.filter(directive => directive.ruleId).map(directive => `'${directive.ruleId}'`); return { description: ruleIds.length <= 2 ? ruleIds.join(" or ") - : `${ruleIds.slice(0, ruleIds.length - 1).join(", ")}, or ${ruleIds[ruleIds.length - 1]}`, + : `${ruleIds.slice(0, ruleIds.length - 1).join(", ")}, or ${ruleIds.at(-1)}`, fix: { range, text: " " @@ -181,20 +186,20 @@ function createCommentRemoval(directives, commentToken) { * @returns {{ description, fix, unprocessedDirective }[]} Details for later creation of output Problems. */ function processUnusedDirectives(allDirectives) { - const directiveGroups = groupByParentComment(allDirectives); + const directiveGroups = groupByParentDirective(allDirectives); return directiveGroups.flatMap( directives => { - const { parentComment } = directives[0].unprocessedDirective; - const remainingRuleIds = new Set(parentComment.ruleIds); + const { parentDirective } = directives[0].unprocessedDirective; + const remainingRuleIds = new Set(parentDirective.ruleIds); for (const directive of directives) { remainingRuleIds.delete(directive.ruleId); } return remainingRuleIds.size - ? createIndividualDirectivesRemoval(directives, parentComment.commentToken) - : [createCommentRemoval(directives, parentComment.commentToken)]; + ? createIndividualDirectivesRemoval(directives, parentDirective.node) + : [createDirectiveRemoval(directives, parentDirective.node)]; } ); } @@ -337,7 +342,7 @@ function applyDirectives(options) { problem.suppressions = problem.suppressions.concat(suppressions); } else { problem.suppressions = suppressions; - usedDisableDirectives.add(disableDirectivesForProblem[disableDirectivesForProblem.length - 1]); + usedDisableDirectives.add(disableDirectivesForProblem.at(-1)); } } @@ -345,11 +350,11 @@ function applyDirectives(options) { } const unusedDisableDirectivesToReport = options.directives - .filter(directive => directive.type === "disable" && !usedDisableDirectives.has(directive)); + .filter(directive => directive.type === "disable" && !usedDisableDirectives.has(directive) && !options.rulesToIgnore.has(directive.ruleId)); const unusedEnableDirectivesToReport = new Set( - options.directives.filter(directive => directive.unprocessedDirective.type === "enable") + options.directives.filter(directive => directive.unprocessedDirective.type === "enable" && !options.rulesToIgnore.has(directive.ruleId)) ); /* @@ -367,7 +372,7 @@ function applyDirectives(options) { const unusedDirectives = processed .map(({ description, fix, unprocessedDirective }) => { - const { parentComment, type, line, column } = unprocessedDirective; + const { parentDirective, type, line, column } = unprocessedDirective; let message; @@ -383,8 +388,8 @@ function applyDirectives(options) { return { ruleId: null, message, - line: type === "disable-next-line" ? parentComment.commentToken.loc.start.line : line, - column: type === "disable-next-line" ? parentComment.commentToken.loc.start.column + 1 : column, + line: type === "disable-next-line" ? parentDirective.node.loc.start.line : line, + column: type === "disable-next-line" ? parentDirective.node.loc.start.column + 1 : column, severity: options.reportUnusedDisableDirectives === "warn" ? 1 : 2, nodeType: null, ...options.disableFixes ? {} : { fix } @@ -410,11 +415,13 @@ function applyDirectives(options) { * @param {{ruleId: (string|null), line: number, column: number}[]} options.problems * A list of problems reported by rules, sorted by increasing location in the file, with one-based columns. * @param {"off" | "warn" | "error"} options.reportUnusedDisableDirectives If `"warn"` or `"error"`, adds additional problems for unused directives + * @param {Object} options.configuredRules The rules configuration. + * @param {Function} options.ruleFilter A predicate function to filter which rules should be executed. * @param {boolean} options.disableFixes If true, it doesn't make `fix` properties. * @returns {{ruleId: (string|null), line: number, column: number, suppressions?: {kind: string, justification: string}}[]} * An object with a list of reported problems, the suppressed of which contain the suppression information. */ -module.exports = ({ directives, disableFixes, problems, reportUnusedDisableDirectives = "off" }) => { +module.exports = ({ directives, disableFixes, problems, configuredRules, ruleFilter, reportUnusedDisableDirectives = "off" }) => { const blockDirectives = directives .filter(directive => directive.type === "disable" || directive.type === "enable") .map(directive => Object.assign({}, directive, { unprocessedDirective: directive })) @@ -443,17 +450,38 @@ module.exports = ({ directives, disableFixes, problems, reportUnusedDisableDirec } }).sort(compareLocations); + // This determines a list of rules that are not being run by the given ruleFilter, if present. + const rulesToIgnore = configuredRules && ruleFilter + ? new Set(Object.keys(configuredRules).filter(ruleId => { + const severity = ConfigOps.getRuleSeverity(configuredRules[ruleId]); + + // Ignore for disabled rules. + if (severity === 0) { + return false; + } + + return !ruleFilter({ severity, ruleId }); + })) + : new Set(); + + // If no ruleId is supplied that means this directive is applied to all rules, so we can't determine if it's unused if any rules are filtered out. + if (rulesToIgnore.size > 0) { + rulesToIgnore.add(null); + } + const blockDirectivesResult = applyDirectives({ problems, directives: blockDirectives, disableFixes, - reportUnusedDisableDirectives + reportUnusedDisableDirectives, + rulesToIgnore }); const lineDirectivesResult = applyDirectives({ problems: blockDirectivesResult.problems, directives: lineDirectives, disableFixes, - reportUnusedDisableDirectives + reportUnusedDisableDirectives, + rulesToIgnore }); return reportUnusedDisableDirectives !== "off" diff --git a/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js b/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js index b60e55c16dedcf..16e9d18aa64df1 100644 --- a/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js +++ b/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path-analyzer.js @@ -9,7 +9,7 @@ // Requirements //------------------------------------------------------------------------------ -const assert = require("assert"), +const assert = require("node:assert"), { breakableTypePattern } = require("../../shared/ast-utils"), CodePath = require("./code-path"), CodePathSegment = require("./code-path-segment"), @@ -222,7 +222,6 @@ function forwardCurrentToHead(analyzer, node) { : "onUnreachableCodePathSegmentStart"; debug.dump(`${eventName} ${headSegment.id}`); - CodePathSegment.markUsed(headSegment); analyzer.emitter.emit( eventName, diff --git a/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path.js b/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path.js index 3bf570d754bfa9..8c438e29a31ec8 100644 --- a/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path.js +++ b/tools/node_modules/eslint/lib/linter/code-path-analysis/code-path.js @@ -125,20 +125,6 @@ class CodePath { return this.internal.thrownForkContext; } - /** - * Tracks the traversal of the code path through each segment. This array - * starts empty and segments are added or removed as the code path is - * traversed. This array always ends up empty at the end of a code path - * traversal. The `CodePathState` uses this to track its progress through - * the code path. - * This is a passthrough to the underlying `CodePathState`. - * @type {CodePathSegment[]} - * @deprecated - */ - get currentSegments() { - return this.internal.currentSegments; - } - /** * Traverses all segments in this code path. * @@ -180,9 +166,9 @@ class CodePath { const lastSegment = resolvedOptions.last; // set up initial location information - let record = null; - let index = 0; - let end = 0; + let record; + let index; + let end; let segment = null; // segments that have already been visited during traversal @@ -191,8 +177,8 @@ class CodePath { // tracks the traversal steps const stack = [[startSegment, 0]]; - // tracks the last skipped segment during traversal - let skippedSegment = null; + // segments that have been skipped during traversal + const skipped = new Set(); // indicates if we exited early from the traversal let broken = false; @@ -207,11 +193,7 @@ class CodePath { * @returns {void} */ skip() { - if (stack.length <= 1) { - broken = true; - } else { - skippedSegment = stack[stack.length - 2][0]; - } + skipped.add(segment); }, /** @@ -236,6 +218,18 @@ class CodePath { ); } + /** + * Checks if a given previous segment has been skipped. + * @param {CodePathSegment} prevSegment A previous segment to check. + * @returns {boolean} `true` if the segment has been skipped. + */ + function isSkipped(prevSegment) { + return ( + skipped.has(prevSegment) || + segment.isLoopedPrevSegment(prevSegment) + ); + } + // the traversal while (stack.length > 0) { @@ -251,7 +245,7 @@ class CodePath { * Otherwise, we just read the value and sometimes modify the * record as we traverse. */ - record = stack[stack.length - 1]; + record = stack.at(-1); segment = record[0]; index = record[1]; @@ -272,17 +266,21 @@ class CodePath { continue; } - // Reset the skipping flag if all branches have been skipped. - if (skippedSegment && segment.prevSegments.includes(skippedSegment)) { - skippedSegment = null; - } visited.add(segment); + + // Skips the segment if all previous segments have been skipped. + const shouldSkip = ( + skipped.size > 0 && + segment.prevSegments.length > 0 && + segment.prevSegments.every(isSkipped) + ); + /* * If the most recent segment hasn't been skipped, then we call * the callback, passing in the segment and the controller. */ - if (!skippedSegment) { + if (!shouldSkip) { resolvedCallback.call(this, segment, controller); // exit if we're at the last segment @@ -298,6 +296,10 @@ class CodePath { if (broken) { break; } + } else { + + // If the most recent segment has been skipped, then mark it as skipped. + skipped.add(segment); } } diff --git a/tools/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js b/tools/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js index 33140272f53b42..f5783b0d02ca7c 100644 --- a/tools/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js +++ b/tools/node_modules/eslint/lib/linter/code-path-analysis/fork-context.js @@ -13,7 +13,7 @@ // Requirements //------------------------------------------------------------------------------ -const assert = require("assert"), +const assert = require("node:assert"), CodePathSegment = require("./code-path-segment"); //------------------------------------------------------------------------------ @@ -207,7 +207,7 @@ class ForkContext { get head() { const list = this.segmentsList; - return list.length === 0 ? [] : list[list.length - 1]; + return list.length === 0 ? [] : list.at(-1); } /** diff --git a/tools/node_modules/eslint/lib/linter/config-comment-parser.js b/tools/node_modules/eslint/lib/linter/config-comment-parser.js index 9d33c55273cb25..aaa56e1daa9641 100644 --- a/tools/node_modules/eslint/lib/linter/config-comment-parser.js +++ b/tools/node_modules/eslint/lib/linter/config-comment-parser.js @@ -40,7 +40,7 @@ module.exports = class ConfigCommentParser { /** * Parses a list of "name:string_value" or/and "name" options divided by comma or - * whitespace. Used for "global" and "exported" comments. + * whitespace. Used for "global" comments. * @param {string} string The string to parse. * @param {Comment} comment The comment node which has the string. * @returns {Object} Result map object of names and string values, or null values if no value was provided @@ -75,11 +75,9 @@ module.exports = class ConfigCommentParser { parseJsonConfig(string, location) { debug("Parsing JSON config"); - let items = {}; - // Parses a JSON-like comment by the same way as parsing CLI option. try { - items = levn.parse("Object", string) || {}; + const items = levn.parse("Object", string) || {}; // Some tests say that it should ignore invalid comments such as `/*eslint no-alert:abc*/`. // Also, commaless notations have invalid severity: @@ -102,11 +100,15 @@ module.exports = class ConfigCommentParser { * Optionator cannot parse commaless notations. * But we are supporting that. So this is a fallback for that. */ - items = {}; const normalizedString = string.replace(/([-a-zA-Z0-9/]+):/gu, "\"$1\":").replace(/(\]|[0-9])\s+(?=")/u, "$1,"); try { - items = JSON.parse(`{${normalizedString}}`); + const items = JSON.parse(`{${normalizedString}}`); + + return { + success: true, + config: items + }; } catch (ex) { debug("Manual parsing failed."); @@ -124,11 +126,6 @@ module.exports = class ConfigCommentParser { }; } - - return { - success: true, - config: items - }; } /** diff --git a/tools/node_modules/eslint/lib/linter/index.js b/tools/node_modules/eslint/lib/linter/index.js index 25fd769bde997f..9e5397768bb99f 100644 --- a/tools/node_modules/eslint/lib/linter/index.js +++ b/tools/node_modules/eslint/lib/linter/index.js @@ -1,13 +1,11 @@ "use strict"; const { Linter } = require("./linter"); -const interpolate = require("./interpolate"); const SourceCodeFixer = require("./source-code-fixer"); module.exports = { Linter, // For testers. - SourceCodeFixer, - interpolate + SourceCodeFixer }; diff --git a/tools/node_modules/eslint/lib/linter/interpolate.js b/tools/node_modules/eslint/lib/linter/interpolate.js index 87e06a0236991d..5f4ff92273633c 100644 --- a/tools/node_modules/eslint/lib/linter/interpolate.js +++ b/tools/node_modules/eslint/lib/linter/interpolate.js @@ -9,13 +9,30 @@ // Public Interface //------------------------------------------------------------------------------ -module.exports = (text, data) => { +/** + * Returns a global expression matching placeholders in messages. + * @returns {RegExp} Global regular expression matching placeholders + */ +function getPlaceholderMatcher() { + return /\{\{([^{}]+?)\}\}/gu; +} + +/** + * Replaces {{ placeholders }} in the message with the provided data. + * Does not replace placeholders not available in the data. + * @param {string} text Original message with potential placeholders + * @param {Record} data Map of placeholder name to its value + * @returns {string} Message with replaced placeholders + */ +function interpolate(text, data) { if (!data) { return text; } + const matcher = getPlaceholderMatcher(); + // Substitution content for any {{ }} markers. - return text.replace(/\{\{([^{}]+?)\}\}/gu, (fullMatch, termWithWhitespace) => { + return text.replace(matcher, (fullMatch, termWithWhitespace) => { const term = termWithWhitespace.trim(); if (term in data) { @@ -25,4 +42,9 @@ module.exports = (text, data) => { // Preserve old behavior: If parameter name not provided, don't replace it. return fullMatch; }); +} + +module.exports = { + getPlaceholderMatcher, + interpolate }; diff --git a/tools/node_modules/eslint/lib/linter/linter.js b/tools/node_modules/eslint/lib/linter/linter.js index f74d0ecd13f2e2..a1e5bf91e28295 100644 --- a/tools/node_modules/eslint/lib/linter/linter.js +++ b/tools/node_modules/eslint/lib/linter/linter.js @@ -11,7 +11,7 @@ //------------------------------------------------------------------------------ const - path = require("path"), + path = require("node:path"), eslintScope = require("eslint-scope"), evk = require("eslint-visitor-keys"), espree = require("espree"), @@ -30,7 +30,6 @@ const } = require("@eslint/eslintrc/universal"), Traverser = require("../shared/traverser"), { SourceCode } = require("../source-code"), - CodePathAnalyzer = require("./code-path-analysis/code-path-analyzer"), applyDisableDirectives = require("./apply-disable-directives"), ConfigCommentParser = require("./config-comment-parser"), NodeEventGenerator = require("./node-event-generator"), @@ -42,8 +41,9 @@ const ruleReplacements = require("../../conf/replacements.json"); const { getRuleFromConfig } = require("../config/flat-config-helpers"); const { FlatConfigArray } = require("../config/flat-config-array"); +const { startTime, endTime } = require("../shared/stats"); const { RuleValidator } = require("../config/rule-validator"); -const { assertIsRuleOptions, assertIsRuleSeverity } = require("../config/flat-config-schema"); +const { assertIsRuleSeverity } = require("../config/flat-config-schema"); const { normalizeSeverityToString } = require("../shared/severity"); const debug = require("debug")("eslint:linter"); const MAX_AUTOFIX_PASSES = 10; @@ -52,13 +52,14 @@ const DEFAULT_ECMA_VERSION = 5; const commentParser = new ConfigCommentParser(); const DEFAULT_ERROR_LOC = { start: { line: 1, column: 0 }, end: { line: 1, column: 1 } }; const parserSymbol = Symbol.for("eslint.RuleTester.parser"); +const { LATEST_ECMA_VERSION } = require("../../conf/ecma-version"); +const STEP_KIND_VISIT = 1; +const STEP_KIND_CALL = 2; //------------------------------------------------------------------------------ // Typedefs //------------------------------------------------------------------------------ -/** @typedef {InstanceType} ConfigArray */ -/** @typedef {InstanceType} ExtractedConfig */ /** @typedef {import("../shared/types").ConfigData} ConfigData */ /** @typedef {import("../shared/types").Environment} Environment */ /** @typedef {import("../shared/types").GlobalConf} GlobalConf */ @@ -68,6 +69,7 @@ const parserSymbol = Symbol.for("eslint.RuleTester.parser"); /** @typedef {import("../shared/types").LanguageOptions} LanguageOptions */ /** @typedef {import("../shared/types").Processor} Processor */ /** @typedef {import("../shared/types").Rule} Rule */ +/** @typedef {import("../shared/types").Times} Times */ /* eslint-disable jsdoc/valid-types -- https://github.com/jsdoc-type-pratt-parser/jsdoc-type-pratt-parser/issues/4#issuecomment-778805577 */ /** @@ -92,6 +94,7 @@ const parserSymbol = Symbol.for("eslint.RuleTester.parser"); * @property {SourceCode|null} lastSourceCode The `SourceCode` instance that the last `verify()` call used. * @property {SuppressedLintMessage[]} lastSuppressedMessages The `SuppressedLintMessage[]` instance that the last `verify()` call produced. * @property {Map} parserMap The loaded parsers. + * @property {Times} times The times spent on applying a rule to a file (see `stats` option). * @property {Rules} ruleMap The loaded rules. */ @@ -105,6 +108,7 @@ const parserSymbol = Symbol.for("eslint.RuleTester.parser"); * @property {string} [filename] the filename of the source code. * @property {boolean | "off" | "warn" | "error"} [reportUnusedDisableDirectives] Adds reported errors for * unused `eslint-disable` directives. + * @property {Function} [ruleFilter] A predicate function that determines whether a given rule should run. */ /** @@ -230,7 +234,7 @@ function addDeclaredGlobals(globalScope, configGlobals, { exportedVariables, ena * @private */ function createMissingRuleMessage(ruleId) { - return Object.prototype.hasOwnProperty.call(ruleReplacements.rules, ruleId) + return Object.hasOwn(ruleReplacements.rules, ruleId) ? `Rule '${ruleId}' was removed and replaced by: ${ruleReplacements.rules[ruleId].join(", ")}` : `Definition for rule '${ruleId}' was not found.`; } @@ -269,23 +273,21 @@ function createLintingProblem(options) { * Creates a collection of disable directives from a comment * @param {Object} options to create disable directives * @param {("disable"|"enable"|"disable-line"|"disable-next-line")} options.type The type of directive comment - * @param {token} options.commentToken The Comment token * @param {string} options.value The value after the directive in the comment * comment specified no specific rules, so it applies to all rules (e.g. `eslint-disable`) * @param {string} options.justification The justification of the directive - * @param {function(string): {create: Function}} options.ruleMapper A map from rule IDs to defined rules + * @param {ASTNode|token} options.node The Comment node/token. + * @param {function(string): {create: Function}} ruleMapper A map from rule IDs to defined rules * @returns {Object} Directives and problems from the comment */ -function createDisableDirectives(options) { - const { commentToken, type, value, justification, ruleMapper } = options; +function createDisableDirectives({ type, value, justification, node }, ruleMapper) { const ruleIds = Object.keys(commentParser.parseListConfig(value)); const directiveRules = ruleIds.length ? ruleIds : [null]; const result = { directives: [], // valid disable directives directiveProblems: [] // problems in directives }; - - const parentComment = { commentToken, ruleIds }; + const parentDirective = { node, ruleIds }; for (const ruleId of directiveRules) { @@ -293,25 +295,25 @@ function createDisableDirectives(options) { if (ruleId === null || !!ruleMapper(ruleId)) { if (type === "disable-next-line") { result.directives.push({ - parentComment, + parentDirective, type, - line: commentToken.loc.end.line, - column: commentToken.loc.end.column + 1, + line: node.loc.end.line, + column: node.loc.end.column + 1, ruleId, justification }); } else { result.directives.push({ - parentComment, + parentDirective, type, - line: commentToken.loc.start.line, - column: commentToken.loc.start.column + 1, + line: node.loc.start.line, + column: node.loc.start.column + 1, ruleId, justification }); } } else { - result.directiveProblems.push(createLintingProblem({ ruleId, loc: commentToken.loc })); + result.directiveProblems.push(createLintingProblem({ ruleId, loc: node.loc })); } } return result; @@ -324,10 +326,11 @@ function createDisableDirectives(options) { * @param {SourceCode} sourceCode The SourceCode object to get comments from. * @param {function(string): {create: Function}} ruleMapper A map from rule IDs to defined rules * @param {string|null} warnInlineConfig If a string then it should warn directive comments as disabled. The string value is the config name what the setting came from. + * @param {ConfigData} config Provided config. * @returns {{configuredRules: Object, enabledGlobals: {value:string,comment:Token}[], exportedVariables: Object, problems: LintMessage[], disableDirectives: DisableDirective[]}} * A collection of the directive comments that were found, along with any problems that occurred when parsing */ -function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig) { +function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig, config) { const configuredRules = {}; const enabledGlobals = Object.create(null); const exportedVariables = {}; @@ -383,8 +386,12 @@ function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig) { case "eslint-disable-next-line": case "eslint-disable-line": { const directiveType = directiveText.slice("eslint-".length); - const options = { commentToken: comment, type: directiveType, value: directiveValue, justification: justificationPart, ruleMapper }; - const { directives, directiveProblems } = createDisableDirectives(options); + const { directives, directiveProblems } = createDisableDirectives({ + type: directiveType, + value: directiveValue, + justification: justificationPart, + node: comment + }, ruleMapper); disableDirectives.push(...directives); problems.push(...directiveProblems); @@ -392,7 +399,7 @@ function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig) { } case "exported": - Object.assign(exportedVariables, commentParser.parseStringConfig(directiveValue, comment)); + Object.assign(exportedVariables, commentParser.parseListConfig(directiveValue, comment)); break; case "globals": @@ -436,9 +443,68 @@ function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig) { return; } + if (Object.hasOwn(configuredRules, name)) { + problems.push(createLintingProblem({ + message: `Rule "${name}" is already configured by another configuration comment in the preceding code. This configuration is ignored.`, + loc: comment.loc + })); + return; + } + + let ruleOptions = Array.isArray(ruleValue) ? ruleValue : [ruleValue]; + + /* + * If the rule was already configured, inline rule configuration that + * only has severity should retain options from the config and just override the severity. + * + * Example: + * + * { + * rules: { + * curly: ["error", "multi"] + * } + * } + * + * /* eslint curly: ["warn"] * / + * + * Results in: + * + * curly: ["warn", "multi"] + */ + if ( + + /* + * If inline config for the rule has only severity + */ + ruleOptions.length === 1 && + + /* + * And the rule was already configured + */ + config.rules && Object.hasOwn(config.rules, name) + ) { + + /* + * Then use severity from the inline config and options from the provided config + */ + ruleOptions = [ + ruleOptions[0], // severity from the inline config + ...Array.isArray(config.rules[name]) ? config.rules[name].slice(1) : [] // options from the provided config + ]; + } + try { - validator.validateRuleOptions(rule, name, ruleValue); + validator.validateRuleOptions(rule, name, ruleOptions); } catch (err) { + + /* + * If the rule has invalid `meta.schema`, throw the error because + * this is not an invalid inline configuration but an invalid rule. + */ + if (err.code === "ESLINT_INVALID_RULE_OPTIONS_SCHEMA") { + throw err; + } + problems.push(createLintingProblem({ ruleId: name, message: err.message, @@ -449,7 +515,7 @@ function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig) { return; } - configuredRules[name] = ruleValue; + configuredRules[name] = ruleOptions; }); } else { problems.push(parseResult.error); @@ -479,53 +545,21 @@ function getDirectiveComments(sourceCode, ruleMapper, warnInlineConfig) { * A collection of the directive comments that were found, along with any problems that occurred when parsing */ function getDirectiveCommentsForFlatConfig(sourceCode, ruleMapper) { - const problems = []; const disableDirectives = []; + const problems = []; - sourceCode.getInlineConfigNodes().filter(token => token.type !== "Shebang").forEach(comment => { - const { directivePart, justificationPart } = commentParser.extractDirectiveComment(comment.value); - - const match = directivesPattern.exec(directivePart); - - if (!match) { - return; - } - const directiveText = match[1]; - const lineCommentSupported = /^eslint-disable-(next-)?line$/u.test(directiveText); - - if (comment.type === "Line" && !lineCommentSupported) { - return; - } - - if (directiveText === "eslint-disable-line" && comment.loc.start.line !== comment.loc.end.line) { - const message = `${directiveText} comment should not span multiple lines.`; - - problems.push(createLintingProblem({ - ruleId: null, - message, - loc: comment.loc - })); - return; - } - - const directiveValue = directivePart.slice(match.index + directiveText.length); + const { + directives: directivesSources, + problems: directivesProblems + } = sourceCode.getDisableDirectives(); - switch (directiveText) { - case "eslint-disable": - case "eslint-enable": - case "eslint-disable-next-line": - case "eslint-disable-line": { - const directiveType = directiveText.slice("eslint-".length); - const options = { commentToken: comment, type: directiveType, value: directiveValue, justification: justificationPart, ruleMapper }; - const { directives, directiveProblems } = createDisableDirectives(options); + problems.push(...directivesProblems.map(createLintingProblem)); - disableDirectives.push(...directives); - problems.push(...directiveProblems); - break; - } + directivesSources.forEach(directive => { + const { directives, directiveProblems } = createDisableDirectives(directive, ruleMapper); - // no default - } + disableDirectives.push(...directives); + problems.push(...directiveProblems); }); return { @@ -584,7 +618,7 @@ function normalizeEcmaVersionForLanguageOptions(ecmaVersion) { * that is used for a number of processes inside of ESLint. It's normally * safe to assume people want the latest unless otherwise specified. */ - return espree.latestEcmaVersion + 2009; + return LATEST_ECMA_VERSION; } const eslintEnvPattern = /\/\*\s*eslint-env\s(.+?)(?:\*\/|$)/gsu; @@ -661,6 +695,12 @@ function normalizeVerifyOptions(providedOptions, config) { } } + let ruleFilter = providedOptions.ruleFilter; + + if (typeof ruleFilter !== "function") { + ruleFilter = () => true; + } + return { filename: normalizeFilename(providedOptions.filename || ""), allowInlineConfig: !ignoreInlineConfig, @@ -668,7 +708,9 @@ function normalizeVerifyOptions(providedOptions, config) { ? `your config${configNameOfNoInlineConfig}` : null, reportUnusedDisableDirectives, - disableFixes: Boolean(providedOptions.disableFixes) + disableFixes: Boolean(providedOptions.disableFixes), + stats: providedOptions.stats, + ruleFilter }; } @@ -733,7 +775,7 @@ function createLanguageOptions({ globals: configuredGlobals, parser, parserOptio */ function resolveGlobals(providedGlobals, enabledEnvironments) { return Object.assign( - {}, + Object.create(null), ...enabledEnvironments.filter(env => env.globals).map(env => env.globals), providedGlobals ); @@ -757,6 +799,36 @@ function stripUnicodeBOM(text) { return text; } +/** + * Store time measurements in map + * @param {number} time Time measurement + * @param {Object} timeOpts Options relating which time was measured + * @param {WeakMap} slots Linter internal slots map + * @returns {void} + */ +function storeTime(time, timeOpts, slots) { + const { type, key } = timeOpts; + + if (!slots.times) { + slots.times = { passes: [{}] }; + } + + const passIndex = slots.fixPasses; + + if (passIndex > slots.times.passes.length - 1) { + slots.times.passes.push({}); + } + + if (key) { + slots.times.passes[passIndex][type] ??= {}; + slots.times.passes[passIndex][type][key] ??= { total: 0 }; + slots.times.passes[passIndex][type][key].total += time; + } else { + slots.times.passes[passIndex][type] ??= { total: 0 }; + slots.times.passes[passIndex][type].total += time; + } +} + /** * Get the options for a rule (not including severity), if any * @param {Array|number} ruleConfig rule configuration @@ -885,12 +957,18 @@ function parse(text, languageOptions, filePath) { /** * Runs a rule, and gets its listeners - * @param {Rule} rule A normalized rule with a `create` method + * @param {Rule} rule A rule object * @param {Context} ruleContext The context that should be passed to the rule + * @throws {TypeError} If `rule` is not an object with a `create` method * @throws {any} Any error during the rule's `create` * @returns {Object} A map of selector listeners provided by the rule */ function createRuleListeners(rule, ruleContext) { + + if (!rule || typeof rule !== "object" || typeof rule.create !== "function") { + throw new TypeError(`Error while loading rule '${ruleContext.id}': Rule must be an object with a \`create\` method`); + } + try { return rule.create(ruleContext); } catch (ex) { @@ -899,43 +977,6 @@ function createRuleListeners(rule, ruleContext) { } } -// methods that exist on SourceCode object -const DEPRECATED_SOURCECODE_PASSTHROUGHS = { - getSource: "getText", - getSourceLines: "getLines", - getAllComments: "getAllComments", - getNodeByRangeIndex: "getNodeByRangeIndex", - getComments: "getComments", - getCommentsBefore: "getCommentsBefore", - getCommentsAfter: "getCommentsAfter", - getCommentsInside: "getCommentsInside", - getJSDocComment: "getJSDocComment", - getFirstToken: "getFirstToken", - getFirstTokens: "getFirstTokens", - getLastToken: "getLastToken", - getLastTokens: "getLastTokens", - getTokenAfter: "getTokenAfter", - getTokenBefore: "getTokenBefore", - getTokenByRangeStart: "getTokenByRangeStart", - getTokens: "getTokens", - getTokensAfter: "getTokensAfter", - getTokensBefore: "getTokensBefore", - getTokensBetween: "getTokensBetween" -}; - - -const BASE_TRAVERSAL_CONTEXT = Object.freeze( - Object.keys(DEPRECATED_SOURCECODE_PASSTHROUGHS).reduce( - (contextInfo, methodName) => - Object.assign(contextInfo, { - [methodName](...args) { - return this.sourceCode[DEPRECATED_SOURCECODE_PASSTHROUGHS[methodName]](...args); - } - }), - {} - ) -); - /** * Runs the given rules on the given SourceCode object * @param {SourceCode} sourceCode A SourceCode object for the given text @@ -948,23 +989,18 @@ const BASE_TRAVERSAL_CONTEXT = Object.freeze( * @param {boolean} disableFixes If true, it doesn't make `fix` properties. * @param {string | undefined} cwd cwd of the cli * @param {string} physicalFilename The full path of the file on disk without any code block information + * @param {Function} ruleFilter A predicate function to filter which rules should be executed. + * @param {boolean} stats If true, stats are collected appended to the result + * @param {WeakMap} slots InternalSlotsMap of linter * @returns {LintMessage[]} An array of reported problems + * @throws {Error} If traversal into a node fails. */ -function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageOptions, settings, filename, disableFixes, cwd, physicalFilename) { +function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageOptions, settings, filename, disableFixes, cwd, physicalFilename, ruleFilter, + stats, slots) { const emitter = createEmitter(); - const nodeQueue = []; - let currentNode = sourceCode.ast; - - Traverser.traverse(sourceCode.ast, { - enter(node, parent) { - node.parent = parent; - nodeQueue.push({ isEntering: true, node }); - }, - leave(node) { - nodeQueue.push({ isEntering: false, node }); - }, - visitorKeys: sourceCode.visitorKeys - }); + + // must happen first to assign all node.parent properties + const eventQueue = sourceCode.traverse(); /* * Create a frozen object with the ruleContext properties and methods that are shared by all rules. @@ -972,30 +1008,22 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO * properties once for each rule. */ const sharedTraversalContext = Object.freeze( - Object.assign( - Object.create(BASE_TRAVERSAL_CONTEXT), - { - getAncestors: () => sourceCode.getAncestors(currentNode), - getDeclaredVariables: node => sourceCode.getDeclaredVariables(node), - getCwd: () => cwd, - cwd, - getFilename: () => filename, - filename, - getPhysicalFilename: () => physicalFilename || filename, - physicalFilename: physicalFilename || filename, - getScope: () => sourceCode.getScope(currentNode), - getSourceCode: () => sourceCode, - sourceCode, - markVariableAsUsed: name => sourceCode.markVariableAsUsed(name, currentNode), - parserOptions: { - ...languageOptions.parserOptions - }, - parserPath: parserName, - languageOptions, - parserServices: sourceCode.parserServices, - settings - } - ) + { + getCwd: () => cwd, + cwd, + getFilename: () => filename, + filename, + getPhysicalFilename: () => physicalFilename || filename, + physicalFilename: physicalFilename || filename, + getSourceCode: () => sourceCode, + sourceCode, + parserOptions: { + ...languageOptions.parserOptions + }, + parserPath: parserName, + languageOptions, + settings + } ); const lintingProblems = []; @@ -1008,6 +1036,10 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO return; } + if (ruleFilter && !ruleFilter({ ruleId, severity })) { + return; + } + const rule = ruleMapper(ruleId); if (!rule) { @@ -1063,7 +1095,14 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO ) ); - const ruleListeners = timing.enabled ? timing.time(ruleId, createRuleListeners)(rule, ruleContext) : createRuleListeners(rule, ruleContext); + const ruleListenersReturn = (timing.enabled || stats) + ? timing.time(ruleId, createRuleListeners, stats)(rule, ruleContext) : createRuleListeners(rule, ruleContext); + + const ruleListeners = stats ? ruleListenersReturn.result : ruleListenersReturn; + + if (stats) { + storeTime(ruleListenersReturn.tdiff, { type: "rules", key: ruleId }, slots); + } /** * Include `ruleId` in error logs @@ -1073,7 +1112,15 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO function addRuleErrorHandler(ruleListener) { return function ruleErrorHandler(...listenerArgs) { try { - return ruleListener(...listenerArgs); + const ruleListenerReturn = ruleListener(...listenerArgs); + + const ruleListenerResult = stats ? ruleListenerReturn.result : ruleListenerReturn; + + if (stats) { + storeTime(ruleListenerReturn.tdiff, { type: "rules", key: ruleId }, slots); + } + + return ruleListenerResult; } catch (e) { e.ruleId = ruleId; throw e; @@ -1087,9 +1134,8 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO // add all the selectors from the rule as listeners Object.keys(ruleListeners).forEach(selector => { - const ruleListener = timing.enabled - ? timing.time(ruleId, ruleListeners[selector]) - : ruleListeners[selector]; + const ruleListener = (timing.enabled || stats) + ? timing.time(ruleId, ruleListeners[selector], stats) : ruleListeners[selector]; emitter.on( selector, @@ -1098,25 +1144,34 @@ function runRules(sourceCode, configuredRules, ruleMapper, parserName, languageO }); }); - // only run code path analyzer if the top level node is "Program", skip otherwise - const eventGenerator = nodeQueue[0].node.type === "Program" - ? new CodePathAnalyzer(new NodeEventGenerator(emitter, { visitorKeys: sourceCode.visitorKeys, fallback: Traverser.getKeys })) - : new NodeEventGenerator(emitter, { visitorKeys: sourceCode.visitorKeys, fallback: Traverser.getKeys }); + const eventGenerator = new NodeEventGenerator(emitter, { visitorKeys: sourceCode.visitorKeys, fallback: Traverser.getKeys }); - nodeQueue.forEach(traversalInfo => { - currentNode = traversalInfo.node; + for (const step of eventQueue) { + switch (step.kind) { + case STEP_KIND_VISIT: { + try { + if (step.phase === 1) { + eventGenerator.enterNode(step.target); + } else { + eventGenerator.leaveNode(step.target); + } + } catch (err) { + err.currentNode = step.target; + throw err; + } + break; + } - try { - if (traversalInfo.isEntering) { - eventGenerator.enterNode(currentNode); - } else { - eventGenerator.leaveNode(currentNode); + case STEP_KIND_CALL: { + emitter.emit(step.target, ...step.args); + break; } - } catch (err) { - err.currentNode = currentNode; - throw err; + + default: + throw new Error(`Invalid traversal step found: "${step.type}".`); } - }); + + } return lintingProblems; } @@ -1202,7 +1257,6 @@ function assertEslintrcConfig(linter) { } } - //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ @@ -1217,9 +1271,9 @@ class Linter { * Initialize the Linter. * @param {Object} [config] the config object * @param {string} [config.cwd] path to a directory that should be considered as the current working directory, can be undefined. - * @param {"flat"|"eslintrc"} [config.configType="eslintrc"] the type of config used. + * @param {"flat"|"eslintrc"} [config.configType="flat"] the type of config used. */ - constructor({ cwd, configType } = {}) { + constructor({ cwd, configType = "flat" } = {}) { internalSlotsMap.set(this, { cwd: normalizeCwd(cwd), lastConfigArray: null, @@ -1308,12 +1362,25 @@ class Linter { }); if (!slots.lastSourceCode) { + let t; + + if (options.stats) { + t = startTime(); + } + const parseResult = parse( text, languageOptions, options.filename ); + if (options.stats) { + const time = endTime(t); + const timeOpts = { type: "parse" }; + + storeTime(time, timeOpts, slots); + } + if (!parseResult.success) { return [parseResult.error]; } @@ -1338,7 +1405,7 @@ class Linter { const sourceCode = slots.lastSourceCode; const commentDirectives = options.allowInlineConfig - ? getDirectiveComments(sourceCode, ruleId => getRule(slots, ruleId), options.warnInlineConfig) + ? getDirectiveComments(sourceCode, ruleId => getRule(slots, ruleId), options.warnInlineConfig, config) : { configuredRules: {}, enabledGlobals: {}, exportedVariables: {}, problems: [], disableDirectives: [] }; // augment global scope with declared global variables @@ -1349,6 +1416,7 @@ class Linter { ); const configuredRules = Object.assign({}, config.rules, commentDirectives.configuredRules); + let lintingProblems; try { @@ -1362,7 +1430,10 @@ class Linter { options.filename, options.disableFixes, slots.cwd, - providedOptions.physicalFilename + providedOptions.physicalFilename, + null, + options.stats, + slots ); } catch (err) { err.message += `\nOccurred while linting ${options.filename}`; @@ -1413,29 +1484,29 @@ class Linter { ? { filename: filenameOrOptions } : filenameOrOptions || {}; - if (config) { - if (configType === "flat") { - - /* - * Because of how Webpack packages up the files, we can't - * compare directly to `FlatConfigArray` using `instanceof` - * because it's not the same `FlatConfigArray` as in the tests. - * So, we work around it by assuming an array is, in fact, a - * `FlatConfigArray` if it has a `getConfig()` method. - */ - let configArray = config; - - if (!Array.isArray(config) || typeof config.getConfig !== "function") { - configArray = new FlatConfigArray(config, { basePath: cwd }); - configArray.normalizeSync(); - } + const configToUse = config ?? {}; - return this._distinguishSuppressedMessages(this._verifyWithFlatConfigArray(textOrSourceCode, configArray, options, true)); - } + if (configType !== "eslintrc") { - if (typeof config.extractConfig === "function") { - return this._distinguishSuppressedMessages(this._verifyWithConfigArray(textOrSourceCode, config, options)); + /* + * Because of how Webpack packages up the files, we can't + * compare directly to `FlatConfigArray` using `instanceof` + * because it's not the same `FlatConfigArray` as in the tests. + * So, we work around it by assuming an array is, in fact, a + * `FlatConfigArray` if it has a `getConfig()` method. + */ + let configArray = configToUse; + + if (!Array.isArray(configToUse) || typeof configToUse.getConfig !== "function") { + configArray = new FlatConfigArray(configToUse, { basePath: cwd }); + configArray.normalizeSync(); } + + return this._distinguishSuppressedMessages(this._verifyWithFlatConfigArray(textOrSourceCode, configArray, options, true)); + } + + if (typeof configToUse.extractConfig === "function") { + return this._distinguishSuppressedMessages(this._verifyWithConfigArray(textOrSourceCode, configToUse, options)); } /* @@ -1448,9 +1519,9 @@ class Linter { * So we cannot apply multiple processors. */ if (options.preprocess || options.postprocess) { - return this._distinguishSuppressedMessages(this._verifyWithProcessor(textOrSourceCode, config, options)); + return this._distinguishSuppressedMessages(this._verifyWithProcessor(textOrSourceCode, configToUse, options)); } - return this._distinguishSuppressedMessages(this._verifyWithoutProcessors(textOrSourceCode, config, options)); + return this._distinguishSuppressedMessages(this._verifyWithoutProcessors(textOrSourceCode, configToUse, options)); } /** @@ -1590,12 +1661,24 @@ class Linter { const settings = config.settings || {}; if (!slots.lastSourceCode) { + let t; + + if (options.stats) { + t = startTime(); + } + const parseResult = parse( text, languageOptions, options.filename ); + if (options.stats) { + const time = endTime(t); + + storeTime(time, { type: "parse" }, slots); + } + if (!parseResult.success) { return [parseResult.error]; } @@ -1677,22 +1760,88 @@ class Linter { return; } + if (Object.hasOwn(mergedInlineConfig.rules, ruleId)) { + inlineConfigProblems.push(createLintingProblem({ + message: `Rule "${ruleId}" is already configured by another configuration comment in the preceding code. This configuration is ignored.`, + loc: node.loc + })); + return; + } + try { - const ruleOptions = Array.isArray(ruleValue) ? ruleValue : [ruleValue]; + let ruleOptions = Array.isArray(ruleValue) ? ruleValue : [ruleValue]; - assertIsRuleOptions(ruleId, ruleValue); assertIsRuleSeverity(ruleId, ruleOptions[0]); - ruleValidator.validate({ - plugins: config.plugins, - rules: { - [ruleId]: ruleOptions + /* + * If the rule was already configured, inline rule configuration that + * only has severity should retain options from the config and just override the severity. + * + * Example: + * + * { + * rules: { + * curly: ["error", "multi"] + * } + * } + * + * /* eslint curly: ["warn"] * / + * + * Results in: + * + * curly: ["warn", "multi"] + */ + + let shouldValidateOptions = true; + + if ( + + /* + * If inline config for the rule has only severity + */ + ruleOptions.length === 1 && + + /* + * And the rule was already configured + */ + config.rules && Object.hasOwn(config.rules, ruleId) + ) { + + /* + * Then use severity from the inline config and options from the provided config + */ + ruleOptions = [ + ruleOptions[0], // severity from the inline config + ...config.rules[ruleId].slice(1) // options from the provided config + ]; + + // if the rule was enabled, the options have already been validated + if (config.rules[ruleId][0] > 0) { + shouldValidateOptions = false; } - }); - mergedInlineConfig.rules[ruleId] = ruleValue; + } + + if (shouldValidateOptions) { + ruleValidator.validate({ + plugins: config.plugins, + rules: { + [ruleId]: ruleOptions + } + }); + } + + mergedInlineConfig.rules[ruleId] = ruleOptions; } catch (err) { + /* + * If the rule has invalid `meta.schema`, throw the error because + * this is not an invalid inline configuration but an invalid rule. + */ + if (err.code === "ESLINT_INVALID_RULE_OPTIONS_SCHEMA") { + throw err; + } + let baseMessage = err.message.slice( err.message.startsWith("Key \"rules\":") ? err.message.indexOf(":", 12) + 1 @@ -1722,6 +1871,7 @@ class Linter { : { problems: [], disableDirectives: [] }; const configuredRules = Object.assign({}, config.rules, mergedInlineConfig.rules); + let lintingProblems; sourceCode.finalize(); @@ -1737,7 +1887,10 @@ class Linter { options.filename, options.disableFixes, slots.cwd, - providedOptions.physicalFilename + providedOptions.physicalFilename, + options.ruleFilter, + options.stats, + slots ); } catch (err) { err.message += `\nOccurred while linting ${options.filename}`; @@ -1768,7 +1921,9 @@ class Linter { .concat(commentDirectives.problems) .concat(inlineConfigProblems) .sort((problemA, problemB) => problemA.line - problemB.line || problemA.column - problemB.column), - reportUnusedDisableDirectives: options.reportUnusedDisableDirectives + reportUnusedDisableDirectives: options.reportUnusedDisableDirectives, + ruleFilter: options.ruleFilter, + configuredRules }); } @@ -1975,6 +2130,22 @@ class Linter { return internalSlotsMap.get(this).lastSourceCode; } + /** + * Gets the times spent on (parsing, fixing, linting) a file. + * @returns {LintTimes} The times. + */ + getTimes() { + return internalSlotsMap.get(this).times ?? { passes: [] }; + } + + /** + * Gets the number of autofix passes that were made in the last run. + * @returns {number} The number of autofix passes. + */ + getFixPassCount() { + return internalSlotsMap.get(this).fixPasses ?? 0; + } + /** * Gets the list of SuppressedLintMessage produced in the last running. * @returns {SuppressedLintMessage[]} The list of SuppressedLintMessage @@ -1986,17 +2157,17 @@ class Linter { /** * Defines a new linting rule. * @param {string} ruleId A unique rule identifier - * @param {Function | Rule} ruleModule Function from context to object mapping AST node types to event handlers + * @param {Rule} rule A rule object * @returns {void} */ - defineRule(ruleId, ruleModule) { + defineRule(ruleId, rule) { assertEslintrcConfig(this); - internalSlotsMap.get(this).ruleMap.define(ruleId, ruleModule); + internalSlotsMap.get(this).ruleMap.define(ruleId, rule); } /** * Defines many new linting rules. - * @param {Record} rulesToDefine map from unique rule identifier to rule + * @param {Record} rulesToDefine map from unique rule identifier to rule * @returns {void} */ defineRules(rulesToDefine) { @@ -2044,13 +2215,14 @@ class Linter { * SourceCodeFixer. */ verifyAndFix(text, config, options) { - let messages = [], + let messages, fixedResult, fixed = false, passNumber = 0, currentText = text; const debugTextDescription = options && options.filename || `${text.slice(0, 10)}...`; const shouldFix = options && typeof options.fix !== "undefined" ? options.fix : true; + const stats = options?.stats; /** * This loop continues until one of the following is true: @@ -2061,15 +2233,46 @@ class Linter { * That means anytime a fix is successfully applied, there will be another pass. * Essentially, guaranteeing a minimum of two passes. */ + const slots = internalSlotsMap.get(this); + + // Remove lint times from the last run. + if (stats) { + delete slots.times; + slots.fixPasses = 0; + } + do { passNumber++; + let tTotal; + + if (stats) { + tTotal = startTime(); + } debug(`Linting code for ${debugTextDescription} (pass ${passNumber})`); messages = this.verify(currentText, config, options); debug(`Generating fixed text for ${debugTextDescription} (pass ${passNumber})`); + let t; + + if (stats) { + t = startTime(); + } + fixedResult = SourceCodeFixer.applyFixes(currentText, messages, shouldFix); + if (stats) { + + if (fixedResult.fixed) { + const time = endTime(t); + + storeTime(time, { type: "fix" }, slots); + slots.fixPasses++; + } else { + storeTime(0, { type: "fix" }, slots); + } + } + /* * stop if there are any syntax errors. * 'fixedResult.output' is a empty string. @@ -2084,6 +2287,13 @@ class Linter { // update to use the fixed output instead of the original text currentText = fixedResult.output; + if (stats) { + tTotal = endTime(tTotal); + const passIndex = slots.times.passes.length - 1; + + slots.times.passes[passIndex].total = tTotal; + } + } while ( fixedResult.fixed && passNumber < MAX_AUTOFIX_PASSES @@ -2094,7 +2304,18 @@ class Linter { * the most up-to-date information. */ if (fixedResult.fixed) { + let tTotal; + + if (stats) { + tTotal = startTime(); + } + fixedResult.messages = this.verify(currentText, config, options); + + if (stats) { + storeTime(0, { type: "fix" }, slots); + slots.times.passes.at(-1).total = endTime(tTotal); + } } // ensure the last result properly reflects if fixes were done diff --git a/tools/node_modules/eslint/lib/linter/report-translator.js b/tools/node_modules/eslint/lib/linter/report-translator.js index 41a43eadc3be18..4a44babe1d98ac 100644 --- a/tools/node_modules/eslint/lib/linter/report-translator.js +++ b/tools/node_modules/eslint/lib/linter/report-translator.js @@ -9,9 +9,9 @@ // Requirements //------------------------------------------------------------------------------ -const assert = require("assert"); +const assert = require("node:assert"); const ruleFixer = require("./rule-fixer"); -const interpolate = require("./interpolate"); +const { interpolate } = require("./interpolate"); //------------------------------------------------------------------------------ // Typedefs @@ -160,7 +160,7 @@ function mergeFixes(fixes, sourceCode) { const originalText = sourceCode.text; const start = fixes[0].range[0]; - const end = fixes[fixes.length - 1].range[1]; + const end = fixes.at(-1).range[1]; let text = ""; let lastPos = Number.MIN_SAFE_INTEGER; @@ -343,7 +343,7 @@ module.exports = function createReportTranslator(metadata) { if (descriptor.message) { throw new TypeError("context.report() called with a message and a messageId. Please only pass one."); } - if (!messages || !Object.prototype.hasOwnProperty.call(messages, id)) { + if (!messages || !Object.hasOwn(messages, id)) { throw new TypeError(`context.report() called with a messageId of '${id}' which is not present in the 'messages' config: ${JSON.stringify(messages, null, 2)}`); } computedMessage = messages[id]; diff --git a/tools/node_modules/eslint/lib/linter/rules.js b/tools/node_modules/eslint/lib/linter/rules.js index 647bab68784388..bb8e36823bd188 100644 --- a/tools/node_modules/eslint/lib/linter/rules.js +++ b/tools/node_modules/eslint/lib/linter/rules.js @@ -13,18 +13,10 @@ const builtInRules = require("../rules"); //------------------------------------------------------------------------------ -// Helpers +// Typedefs //------------------------------------------------------------------------------ -/** - * Normalizes a rule module to the new-style API - * @param {(Function|{create: Function})} rule A rule object, which can either be a function - * ("old-style") or an object with a `create` method ("new-style") - * @returns {{create: Function}} A new-style rule. - */ -function normalizeRule(rule) { - return typeof rule === "function" ? Object.assign({ create: rule }, rule) : rule; -} +/** @typedef {import("../shared/types").Rule} Rule */ //------------------------------------------------------------------------------ // Public Interface @@ -41,18 +33,17 @@ class Rules { /** * Registers a rule module for rule id in storage. * @param {string} ruleId Rule id (file name). - * @param {Function} ruleModule Rule handler. + * @param {Rule} rule Rule object. * @returns {void} */ - define(ruleId, ruleModule) { - this._rules[ruleId] = normalizeRule(ruleModule); + define(ruleId, rule) { + this._rules[ruleId] = rule; } /** * Access rule handler by id (file name). * @param {string} ruleId Rule id (file name). - * @returns {{create: Function, schema: JsonSchema[]}} - * A rule. This is normalized to always have the new-style shape with a `create` method. + * @returns {Rule} Rule object. */ get(ruleId) { if (typeof this._rules[ruleId] === "string") { diff --git a/tools/node_modules/eslint/lib/linter/source-code-fixer.js b/tools/node_modules/eslint/lib/linter/source-code-fixer.js index 15386c926c25ab..312e84f61cbc3f 100644 --- a/tools/node_modules/eslint/lib/linter/source-code-fixer.js +++ b/tools/node_modules/eslint/lib/linter/source-code-fixer.js @@ -107,7 +107,7 @@ SourceCodeFixer.applyFixes = function(sourceText, messages, shouldFix) { } messages.forEach(problem => { - if (Object.prototype.hasOwnProperty.call(problem, "fix")) { + if (Object.hasOwn(problem, "fix")) { fixes.push(problem); } else { remainingMessages.push(problem); diff --git a/tools/node_modules/eslint/lib/linter/timing.js b/tools/node_modules/eslint/lib/linter/timing.js index 1076ff25887cbe..232c5f4f2fb479 100644 --- a/tools/node_modules/eslint/lib/linter/timing.js +++ b/tools/node_modules/eslint/lib/linter/timing.js @@ -5,6 +5,8 @@ "use strict"; +const { startTime, endTime } = require("../shared/stats"); + //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ @@ -128,21 +130,27 @@ module.exports = (function() { * Time the run * @param {any} key key from the data object * @param {Function} fn function to be called + * @param {boolean} stats if 'stats' is true, return the result and the time difference * @returns {Function} function to be executed * @private */ - function time(key, fn) { - if (typeof data[key] === "undefined") { - data[key] = 0; - } + function time(key, fn, stats) { return function(...args) { - let t = process.hrtime(); + + const t = startTime(); const result = fn(...args); + const tdiff = endTime(t); + + if (enabled) { + if (typeof data[key] === "undefined") { + data[key] = 0; + } + + data[key] += tdiff; + } - t = process.hrtime(t); - data[key] += t[0] * 1e3 + t[1] / 1e6; - return result; + return stats ? { result, tdiff } : result; }; } diff --git a/tools/node_modules/eslint/lib/options.js b/tools/node_modules/eslint/lib/options.js index 089f347430a46d..5515ec60837e75 100644 --- a/tools/node_modules/eslint/lib/options.js +++ b/tools/node_modules/eslint/lib/options.js @@ -38,7 +38,7 @@ const optionator = require("optionator"); * @property {boolean} [help] Show help * @property {boolean} ignore Disable use of ignore files and patterns * @property {string} [ignorePath] Specify path of ignore file - * @property {string[]} [ignorePattern] Pattern of files to ignore (in addition to those in .eslintignore) + * @property {string[]} [ignorePattern] Patterns of files to ignore. In eslintrc mode, these are in addition to `.eslintignore` * @property {boolean} init Run config initialization wizard * @property {boolean} inlineConfig Prevent comments from changing config or rules * @property {number} maxWarnings Number of warnings to trigger nonzero exit code @@ -57,7 +57,10 @@ const optionator = require("optionator"); * @property {boolean} quiet Report errors only * @property {boolean} [version] Output the version number * @property {boolean} warnIgnored Show warnings when the file list includes ignored files + * @property {boolean} [passOnNoPatterns=false] When set to true, missing patterns cause + * the linting operation to short circuit and not report any failures. * @property {string[]} _ Positional filenames or patterns + * @property {boolean} [stats] Report additional statistics */ //------------------------------------------------------------------------------ @@ -101,6 +104,16 @@ module.exports = function(usingFlatConfig) { }; } + let inspectConfigFlag; + + if (usingFlatConfig) { + inspectConfigFlag = { + option: "inspect-config", + type: "Boolean", + description: "Open the config inspector with the current configuration" + }; + } + let extFlag; if (!usingFlatConfig) { @@ -141,6 +154,17 @@ module.exports = function(usingFlatConfig) { }; } + let statsFlag; + + if (usingFlatConfig) { + statsFlag = { + option: "stats", + type: "Boolean", + default: "false", + description: "Add statistics to the lint report" + }; + } + let warnIgnoredFlag; if (usingFlatConfig) { @@ -171,6 +195,7 @@ module.exports = function(usingFlatConfig) { ? "Use this configuration instead of eslint.config.js, eslint.config.mjs, or eslint.config.cjs" : "Use this configuration, overriding .eslintrc.* config options if present" }, + inspectConfigFlag, envFlag, extFlag, { @@ -236,7 +261,7 @@ module.exports = function(usingFlatConfig) { { option: "ignore-pattern", type: "[String]", - description: "Pattern of files to ignore (in addition to those in .eslintignore)", + description: `Patterns of files to ignore${usingFlatConfig ? "" : " (in addition to those in .eslintignore)"}`, concatRepeatedArrays: [true, { oneValuePerFlag: true }] @@ -370,6 +395,12 @@ module.exports = function(usingFlatConfig) { description: "Exit with exit code 2 in case of fatal error" }, warnIgnoredFlag, + { + option: "pass-on-no-patterns", + type: "Boolean", + default: false, + description: "Exit with exit code 0 in case no file patterns are passed" + }, { option: "debug", type: "Boolean", @@ -392,7 +423,8 @@ module.exports = function(usingFlatConfig) { option: "print-config", type: "path::String", description: "Print the configuration for the given file" - } + }, + statsFlag ].filter(value => !!value) }); }; diff --git a/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js b/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js deleted file mode 100644 index 03a97b072b7e79..00000000000000 --- a/tools/node_modules/eslint/lib/rule-tester/flat-rule-tester.js +++ /dev/null @@ -1,1131 +0,0 @@ -/** - * @fileoverview Mocha/Jest test wrapper - * @author Ilya Volodin - */ -"use strict"; - -/* globals describe, it -- Mocha globals */ - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const - assert = require("assert"), - util = require("util"), - path = require("path"), - equal = require("fast-deep-equal"), - Traverser = require("../shared/traverser"), - { getRuleOptionsSchema } = require("../config/flat-config-helpers"), - { Linter, SourceCodeFixer, interpolate } = require("../linter"), - CodePath = require("../linter/code-path-analysis/code-path"); - -const { FlatConfigArray } = require("../config/flat-config-array"); -const { defaultConfig } = require("../config/default-config"); - -const ajv = require("../shared/ajv")({ strictDefaults: true }); - -const parserSymbol = Symbol.for("eslint.RuleTester.parser"); -const { SourceCode } = require("../source-code"); -const { ConfigArraySymbol } = require("@humanwhocodes/config-array"); - -//------------------------------------------------------------------------------ -// Typedefs -//------------------------------------------------------------------------------ - -/** @typedef {import("../shared/types").Parser} Parser */ -/** @typedef {import("../shared/types").LanguageOptions} LanguageOptions */ -/** @typedef {import("../shared/types").Rule} Rule */ - - -/** - * A test case that is expected to pass lint. - * @typedef {Object} ValidTestCase - * @property {string} [name] Name for the test case. - * @property {string} code Code for the test case. - * @property {any[]} [options] Options for the test case. - * @property {LanguageOptions} [languageOptions] The language options to use in the test case. - * @property {{ [name: string]: any }} [settings] Settings for the test case. - * @property {string} [filename] The fake filename for the test case. Useful for rules that make assertion about filenames. - * @property {boolean} [only] Run only this test case or the subset of test cases with this property. - */ - -/** - * A test case that is expected to fail lint. - * @typedef {Object} InvalidTestCase - * @property {string} [name] Name for the test case. - * @property {string} code Code for the test case. - * @property {number | Array} errors Expected errors. - * @property {string | null} [output] The expected code after autofixes are applied. If set to `null`, the test runner will assert that no autofix is suggested. - * @property {any[]} [options] Options for the test case. - * @property {{ [name: string]: any }} [settings] Settings for the test case. - * @property {string} [filename] The fake filename for the test case. Useful for rules that make assertion about filenames. - * @property {LanguageOptions} [languageOptions] The language options to use in the test case. - * @property {boolean} [only] Run only this test case or the subset of test cases with this property. - */ - -/** - * A description of a reported error used in a rule tester test. - * @typedef {Object} TestCaseError - * @property {string | RegExp} [message] Message. - * @property {string} [messageId] Message ID. - * @property {string} [type] The type of the reported AST node. - * @property {{ [name: string]: string }} [data] The data used to fill the message template. - * @property {number} [line] The 1-based line number of the reported start location. - * @property {number} [column] The 1-based column number of the reported start location. - * @property {number} [endLine] The 1-based line number of the reported end location. - * @property {number} [endColumn] The 1-based column number of the reported end location. - */ - -//------------------------------------------------------------------------------ -// Private Members -//------------------------------------------------------------------------------ - -/* - * testerDefaultConfig must not be modified as it allows to reset the tester to - * the initial default configuration - */ -const testerDefaultConfig = { rules: {} }; - -/* - * RuleTester uses this config as its default. This can be overwritten via - * setDefaultConfig(). - */ -let sharedDefaultConfig = { rules: {} }; - -/* - * List every parameters possible on a test case that are not related to eslint - * configuration - */ -const RuleTesterParameters = [ - "name", - "code", - "filename", - "options", - "errors", - "output", - "only" -]; - -/* - * All allowed property names in error objects. - */ -const errorObjectParameters = new Set([ - "message", - "messageId", - "data", - "type", - "line", - "column", - "endLine", - "endColumn", - "suggestions" -]); -const friendlyErrorObjectParameterList = `[${[...errorObjectParameters].map(key => `'${key}'`).join(", ")}]`; - -/* - * All allowed property names in suggestion objects. - */ -const suggestionObjectParameters = new Set([ - "desc", - "messageId", - "data", - "output" -]); -const friendlySuggestionObjectParameterList = `[${[...suggestionObjectParameters].map(key => `'${key}'`).join(", ")}]`; - -const forbiddenMethods = [ - "applyInlineConfig", - "applyLanguageOptions", - "finalize" -]; - -/** @type {Map} */ -const forbiddenMethodCalls = new Map(forbiddenMethods.map(methodName => ([methodName, new WeakSet()]))); - -const hasOwnProperty = Function.call.bind(Object.hasOwnProperty); - -/** - * Clones a given value deeply. - * Note: This ignores `parent` property. - * @param {any} x A value to clone. - * @returns {any} A cloned value. - */ -function cloneDeeplyExcludesParent(x) { - if (typeof x === "object" && x !== null) { - if (Array.isArray(x)) { - return x.map(cloneDeeplyExcludesParent); - } - - const retv = {}; - - for (const key in x) { - if (key !== "parent" && hasOwnProperty(x, key)) { - retv[key] = cloneDeeplyExcludesParent(x[key]); - } - } - - return retv; - } - - return x; -} - -/** - * Freezes a given value deeply. - * @param {any} x A value to freeze. - * @returns {void} - */ -function freezeDeeply(x) { - if (typeof x === "object" && x !== null) { - if (Array.isArray(x)) { - x.forEach(freezeDeeply); - } else { - for (const key in x) { - if (key !== "parent" && hasOwnProperty(x, key)) { - freezeDeeply(x[key]); - } - } - } - Object.freeze(x); - } -} - -/** - * Replace control characters by `\u00xx` form. - * @param {string} text The text to sanitize. - * @returns {string} The sanitized text. - */ -function sanitize(text) { - if (typeof text !== "string") { - return ""; - } - return text.replace( - /[\u0000-\u0009\u000b-\u001a]/gu, // eslint-disable-line no-control-regex -- Escaping controls - c => `\\u${c.codePointAt(0).toString(16).padStart(4, "0")}` - ); -} - -/** - * Define `start`/`end` properties as throwing error. - * @param {string} objName Object name used for error messages. - * @param {ASTNode} node The node to define. - * @returns {void} - */ -function defineStartEndAsError(objName, node) { - Object.defineProperties(node, { - start: { - get() { - throw new Error(`Use ${objName}.range[0] instead of ${objName}.start`); - }, - configurable: true, - enumerable: false - }, - end: { - get() { - throw new Error(`Use ${objName}.range[1] instead of ${objName}.end`); - }, - configurable: true, - enumerable: false - } - }); -} - - -/** - * Define `start`/`end` properties of all nodes of the given AST as throwing error. - * @param {ASTNode} ast The root node to errorize `start`/`end` properties. - * @param {Object} [visitorKeys] Visitor keys to be used for traversing the given ast. - * @returns {void} - */ -function defineStartEndAsErrorInTree(ast, visitorKeys) { - Traverser.traverse(ast, { visitorKeys, enter: defineStartEndAsError.bind(null, "node") }); - ast.tokens.forEach(defineStartEndAsError.bind(null, "token")); - ast.comments.forEach(defineStartEndAsError.bind(null, "token")); -} - -/** - * Wraps the given parser in order to intercept and modify return values from the `parse` and `parseForESLint` methods, for test purposes. - * In particular, to modify ast nodes, tokens and comments to throw on access to their `start` and `end` properties. - * @param {Parser} parser Parser object. - * @returns {Parser} Wrapped parser object. - */ -function wrapParser(parser) { - - if (typeof parser.parseForESLint === "function") { - return { - [parserSymbol]: parser, - parseForESLint(...args) { - const ret = parser.parseForESLint(...args); - - defineStartEndAsErrorInTree(ret.ast, ret.visitorKeys); - return ret; - } - }; - } - - return { - [parserSymbol]: parser, - parse(...args) { - const ast = parser.parse(...args); - - defineStartEndAsErrorInTree(ast); - return ast; - } - }; -} - -/** - * Function to replace `SourceCode.prototype.getComments`. - * @returns {void} - * @throws {Error} Deprecation message. - */ -function getCommentsDeprecation() { - throw new Error( - "`SourceCode#getComments()` is deprecated and will be removed in a future major version. Use `getCommentsBefore()`, `getCommentsAfter()`, and `getCommentsInside()` instead." - ); -} - -/** - * Emit a deprecation warning if rule uses CodePath#currentSegments. - * @param {string} ruleName Name of the rule. - * @returns {void} - */ -function emitCodePathCurrentSegmentsWarning(ruleName) { - if (!emitCodePathCurrentSegmentsWarning[`warned-${ruleName}`]) { - emitCodePathCurrentSegmentsWarning[`warned-${ruleName}`] = true; - process.emitWarning( - `"${ruleName}" rule uses CodePath#currentSegments and will stop working in ESLint v9. Please read the documentation for how to update your code: https://eslint.org/docs/latest/extend/code-path-analysis#usage-examples`, - "DeprecationWarning" - ); - } -} - -/** - * Function to replace forbidden `SourceCode` methods. Allows just one call per method. - * @param {string} methodName The name of the method to forbid. - * @param {Function} prototype The prototype with the original method to call. - * @returns {Function} The function that throws the error. - */ -function throwForbiddenMethodError(methodName, prototype) { - - const original = prototype[methodName]; - - return function(...args) { - - const called = forbiddenMethodCalls.get(methodName); - - /* eslint-disable no-invalid-this -- needed to operate as a method. */ - if (!called.has(this)) { - called.add(this); - - return original.apply(this, args); - } - /* eslint-enable no-invalid-this -- not needed past this point */ - - throw new Error( - `\`SourceCode#${methodName}()\` cannot be called inside a rule.` - ); - }; -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -// default separators for testing -const DESCRIBE = Symbol("describe"); -const IT = Symbol("it"); -const IT_ONLY = Symbol("itOnly"); - -/** - * This is `it` default handler if `it` don't exist. - * @this {Mocha} - * @param {string} text The description of the test case. - * @param {Function} method The logic of the test case. - * @throws {Error} Any error upon execution of `method`. - * @returns {any} Returned value of `method`. - */ -function itDefaultHandler(text, method) { - try { - return method.call(this); - } catch (err) { - if (err instanceof assert.AssertionError) { - err.message += ` (${util.inspect(err.actual)} ${err.operator} ${util.inspect(err.expected)})`; - } - throw err; - } -} - -/** - * This is `describe` default handler if `describe` don't exist. - * @this {Mocha} - * @param {string} text The description of the test case. - * @param {Function} method The logic of the test case. - * @returns {any} Returned value of `method`. - */ -function describeDefaultHandler(text, method) { - return method.call(this); -} - -/** - * Mocha test wrapper. - */ -class FlatRuleTester { - - /** - * Creates a new instance of RuleTester. - * @param {Object} [testerConfig] Optional, extra configuration for the tester - */ - constructor(testerConfig = {}) { - - /** - * The configuration to use for this tester. Combination of the tester - * configuration and the default configuration. - * @type {Object} - */ - this.testerConfig = [ - sharedDefaultConfig, - testerConfig, - { rules: { "rule-tester/validate-ast": "error" } } - ]; - - this.linter = new Linter({ configType: "flat" }); - } - - /** - * Set the configuration to use for all future tests - * @param {Object} config the configuration to use. - * @throws {TypeError} If non-object config. - * @returns {void} - */ - static setDefaultConfig(config) { - if (typeof config !== "object" || config === null) { - throw new TypeError("FlatRuleTester.setDefaultConfig: config must be an object"); - } - sharedDefaultConfig = config; - - // Make sure the rules object exists since it is assumed to exist later - sharedDefaultConfig.rules = sharedDefaultConfig.rules || {}; - } - - /** - * Get the current configuration used for all tests - * @returns {Object} the current configuration - */ - static getDefaultConfig() { - return sharedDefaultConfig; - } - - /** - * Reset the configuration to the initial configuration of the tester removing - * any changes made until now. - * @returns {void} - */ - static resetDefaultConfig() { - sharedDefaultConfig = { - rules: { - ...testerDefaultConfig.rules - } - }; - } - - - /* - * If people use `mocha test.js --watch` command, `describe` and `it` function - * instances are different for each execution. So `describe` and `it` should get fresh instance - * always. - */ - static get describe() { - return ( - this[DESCRIBE] || - (typeof describe === "function" ? describe : describeDefaultHandler) - ); - } - - static set describe(value) { - this[DESCRIBE] = value; - } - - static get it() { - return ( - this[IT] || - (typeof it === "function" ? it : itDefaultHandler) - ); - } - - static set it(value) { - this[IT] = value; - } - - /** - * Adds the `only` property to a test to run it in isolation. - * @param {string | ValidTestCase | InvalidTestCase} item A single test to run by itself. - * @returns {ValidTestCase | InvalidTestCase} The test with `only` set. - */ - static only(item) { - if (typeof item === "string") { - return { code: item, only: true }; - } - - return { ...item, only: true }; - } - - static get itOnly() { - if (typeof this[IT_ONLY] === "function") { - return this[IT_ONLY]; - } - if (typeof this[IT] === "function" && typeof this[IT].only === "function") { - return Function.bind.call(this[IT].only, this[IT]); - } - if (typeof it === "function" && typeof it.only === "function") { - return Function.bind.call(it.only, it); - } - - if (typeof this[DESCRIBE] === "function" || typeof this[IT] === "function") { - throw new Error( - "Set `RuleTester.itOnly` to use `only` with a custom test framework.\n" + - "See https://eslint.org/docs/latest/integrate/nodejs-api#customizing-ruletester for more." - ); - } - if (typeof it === "function") { - throw new Error("The current test framework does not support exclusive tests with `only`."); - } - throw new Error("To use `only`, use RuleTester with a test framework that provides `it.only()` like Mocha."); - } - - static set itOnly(value) { - this[IT_ONLY] = value; - } - - - /** - * Adds a new rule test to execute. - * @param {string} ruleName The name of the rule to run. - * @param {Function | Rule} rule The rule to test. - * @param {{ - * valid: (ValidTestCase | string)[], - * invalid: InvalidTestCase[] - * }} test The collection of tests to run. - * @throws {TypeError|Error} If non-object `test`, or if a required - * scenario of the given type is missing. - * @returns {void} - */ - run(ruleName, rule, test) { - - const testerConfig = this.testerConfig, - requiredScenarios = ["valid", "invalid"], - scenarioErrors = [], - linter = this.linter, - ruleId = `rule-to-test/${ruleName}`; - - if (!test || typeof test !== "object") { - throw new TypeError(`Test Scenarios for rule ${ruleName} : Could not find test scenario object`); - } - - requiredScenarios.forEach(scenarioType => { - if (!test[scenarioType]) { - scenarioErrors.push(`Could not find any ${scenarioType} test scenarios`); - } - }); - - if (scenarioErrors.length > 0) { - throw new Error([ - `Test Scenarios for rule ${ruleName} is invalid:` - ].concat(scenarioErrors).join("\n")); - } - - const baseConfig = [ - { files: ["**"] }, // Make sure the default config matches for all files - { - plugins: { - - // copy root plugin over - "@": { - - /* - * Parsers are wrapped to detect more errors, so this needs - * to be a new object for each call to run(), otherwise the - * parsers will be wrapped multiple times. - */ - parsers: { - ...defaultConfig[0].plugins["@"].parsers - }, - - /* - * The rules key on the default plugin is a proxy to lazy-load - * just the rules that are needed. So, don't create a new object - * here, just use the default one to keep that performance - * enhancement. - */ - rules: defaultConfig[0].plugins["@"].rules - }, - "rule-to-test": { - rules: { - [ruleName]: Object.assign({}, rule, { - - // Create a wrapper rule that freezes the `context` properties. - create(context) { - freezeDeeply(context.options); - freezeDeeply(context.settings); - freezeDeeply(context.parserOptions); - - // freezeDeeply(context.languageOptions); - - return (typeof rule === "function" ? rule : rule.create)(context); - } - }) - } - } - }, - languageOptions: { - ...defaultConfig[0].languageOptions - } - }, - ...defaultConfig.slice(1) - ]; - - /** - * Run the rule for the given item - * @param {string|Object} item Item to run the rule against - * @throws {Error} If an invalid schema. - * @returns {Object} Eslint run result - * @private - */ - function runRuleForItem(item) { - const flatConfigArrayOptions = { - baseConfig - }; - - if (item.filename) { - flatConfigArrayOptions.basePath = path.parse(item.filename).root; - } - - const configs = new FlatConfigArray(testerConfig, flatConfigArrayOptions); - - /* - * Modify the returned config so that the parser is wrapped to catch - * access of the start/end properties. This method is called just - * once per code snippet being tested, so each test case gets a clean - * parser. - */ - configs[ConfigArraySymbol.finalizeConfig] = function(...args) { - - // can't do super here :( - const proto = Object.getPrototypeOf(this); - const calculatedConfig = proto[ConfigArraySymbol.finalizeConfig].apply(this, args); - - // wrap the parser to catch start/end property access - calculatedConfig.languageOptions.parser = wrapParser(calculatedConfig.languageOptions.parser); - return calculatedConfig; - }; - - let code, filename, output, beforeAST, afterAST; - - if (typeof item === "string") { - code = item; - } else { - code = item.code; - - /* - * Assumes everything on the item is a config except for the - * parameters used by this tester - */ - const itemConfig = { ...item }; - - for (const parameter of RuleTesterParameters) { - delete itemConfig[parameter]; - } - - // wrap any parsers - if (itemConfig.languageOptions && itemConfig.languageOptions.parser) { - - const parser = itemConfig.languageOptions.parser; - - if (parser && typeof parser !== "object") { - throw new Error("Parser must be an object with a parse() or parseForESLint() method."); - } - - } - - /* - * Create the config object from the tester config and this item - * specific configurations. - */ - configs.push(itemConfig); - } - - if (item.filename) { - filename = item.filename; - } - - let ruleConfig = 1; - - if (hasOwnProperty(item, "options")) { - assert(Array.isArray(item.options), "options must be an array"); - ruleConfig = [1, ...item.options]; - } - - configs.push({ - rules: { - [ruleId]: ruleConfig - } - }); - - const schema = getRuleOptionsSchema(rule); - - /* - * Setup AST getters. - * The goal is to check whether or not AST was modified when - * running the rule under test. - */ - configs.push({ - plugins: { - "rule-tester": { - rules: { - "validate-ast": { - create() { - return { - Program(node) { - beforeAST = cloneDeeplyExcludesParent(node); - }, - "Program:exit"(node) { - afterAST = node; - } - }; - } - } - } - } - } - }); - - if (schema) { - ajv.validateSchema(schema); - - if (ajv.errors) { - const errors = ajv.errors.map(error => { - const field = error.dataPath[0] === "." ? error.dataPath.slice(1) : error.dataPath; - - return `\t${field}: ${error.message}`; - }).join("\n"); - - throw new Error([`Schema for rule ${ruleName} is invalid:`, errors]); - } - - /* - * `ajv.validateSchema` checks for errors in the structure of the schema (by comparing the schema against a "meta-schema"), - * and it reports those errors individually. However, there are other types of schema errors that only occur when compiling - * the schema (e.g. using invalid defaults in a schema), and only one of these errors can be reported at a time. As a result, - * the schema is compiled here separately from checking for `validateSchema` errors. - */ - try { - ajv.compile(schema); - } catch (err) { - throw new Error(`Schema for rule ${ruleName} is invalid: ${err.message}`); - } - } - - // check for validation errors - try { - configs.normalizeSync(); - configs.getConfig("test.js"); - } catch (error) { - error.message = `ESLint configuration in rule-tester is invalid: ${error.message}`; - throw error; - } - - // Verify the code. - const { getComments, applyLanguageOptions, applyInlineConfig, finalize } = SourceCode.prototype; - const originalCurrentSegments = Object.getOwnPropertyDescriptor(CodePath.prototype, "currentSegments"); - let messages; - - try { - SourceCode.prototype.getComments = getCommentsDeprecation; - Object.defineProperty(CodePath.prototype, "currentSegments", { - get() { - emitCodePathCurrentSegmentsWarning(ruleName); - return originalCurrentSegments.get.call(this); - } - }); - - forbiddenMethods.forEach(methodName => { - SourceCode.prototype[methodName] = throwForbiddenMethodError(methodName, SourceCode.prototype); - }); - - messages = linter.verify(code, configs, filename); - } finally { - SourceCode.prototype.getComments = getComments; - Object.defineProperty(CodePath.prototype, "currentSegments", originalCurrentSegments); - SourceCode.prototype.applyInlineConfig = applyInlineConfig; - SourceCode.prototype.applyLanguageOptions = applyLanguageOptions; - SourceCode.prototype.finalize = finalize; - } - - - const fatalErrorMessage = messages.find(m => m.fatal); - - assert(!fatalErrorMessage, `A fatal parsing error occurred: ${fatalErrorMessage && fatalErrorMessage.message}`); - - // Verify if autofix makes a syntax error or not. - if (messages.some(m => m.fix)) { - output = SourceCodeFixer.applyFixes(code, messages).output; - const errorMessageInFix = linter.verify(output, configs, filename).find(m => m.fatal); - - assert(!errorMessageInFix, [ - "A fatal parsing error occurred in autofix.", - `Error: ${errorMessageInFix && errorMessageInFix.message}`, - "Autofix output:", - output - ].join("\n")); - } else { - output = code; - } - - return { - messages, - output, - beforeAST, - afterAST: cloneDeeplyExcludesParent(afterAST) - }; - } - - /** - * Check if the AST was changed - * @param {ASTNode} beforeAST AST node before running - * @param {ASTNode} afterAST AST node after running - * @returns {void} - * @private - */ - function assertASTDidntChange(beforeAST, afterAST) { - if (!equal(beforeAST, afterAST)) { - assert.fail("Rule should not modify AST."); - } - } - - /** - * Check if the template is valid or not - * all valid cases go through this - * @param {string|Object} item Item to run the rule against - * @returns {void} - * @private - */ - function testValidTemplate(item) { - const code = typeof item === "object" ? item.code : item; - - assert.ok(typeof code === "string", "Test case must specify a string value for 'code'"); - if (item.name) { - assert.ok(typeof item.name === "string", "Optional test case property 'name' must be a string"); - } - - const result = runRuleForItem(item); - const messages = result.messages; - - assert.strictEqual(messages.length, 0, util.format("Should have no errors but had %d: %s", - messages.length, - util.inspect(messages))); - - assertASTDidntChange(result.beforeAST, result.afterAST); - } - - /** - * Asserts that the message matches its expected value. If the expected - * value is a regular expression, it is checked against the actual - * value. - * @param {string} actual Actual value - * @param {string|RegExp} expected Expected value - * @returns {void} - * @private - */ - function assertMessageMatches(actual, expected) { - if (expected instanceof RegExp) { - - // assert.js doesn't have a built-in RegExp match function - assert.ok( - expected.test(actual), - `Expected '${actual}' to match ${expected}` - ); - } else { - assert.strictEqual(actual, expected); - } - } - - /** - * Check if the template is invalid or not - * all invalid cases go through this. - * @param {string|Object} item Item to run the rule against - * @returns {void} - * @private - */ - function testInvalidTemplate(item) { - assert.ok(typeof item.code === "string", "Test case must specify a string value for 'code'"); - if (item.name) { - assert.ok(typeof item.name === "string", "Optional test case property 'name' must be a string"); - } - assert.ok(item.errors || item.errors === 0, - `Did not specify errors for an invalid test of ${ruleName}`); - - if (Array.isArray(item.errors) && item.errors.length === 0) { - assert.fail("Invalid cases must have at least one error"); - } - - const ruleHasMetaMessages = hasOwnProperty(rule, "meta") && hasOwnProperty(rule.meta, "messages"); - const friendlyIDList = ruleHasMetaMessages ? `[${Object.keys(rule.meta.messages).map(key => `'${key}'`).join(", ")}]` : null; - - const result = runRuleForItem(item); - const messages = result.messages; - - if (typeof item.errors === "number") { - - if (item.errors === 0) { - assert.fail("Invalid cases must have 'error' value greater than 0"); - } - - assert.strictEqual(messages.length, item.errors, util.format("Should have %d error%s but had %d: %s", - item.errors, - item.errors === 1 ? "" : "s", - messages.length, - util.inspect(messages))); - } else { - assert.strictEqual( - messages.length, item.errors.length, util.format( - "Should have %d error%s but had %d: %s", - item.errors.length, - item.errors.length === 1 ? "" : "s", - messages.length, - util.inspect(messages) - ) - ); - - const hasMessageOfThisRule = messages.some(m => m.ruleId === ruleId); - - for (let i = 0, l = item.errors.length; i < l; i++) { - const error = item.errors[i]; - const message = messages[i]; - - assert(hasMessageOfThisRule, "Error rule name should be the same as the name of the rule being tested"); - - if (typeof error === "string" || error instanceof RegExp) { - - // Just an error message. - assertMessageMatches(message.message, error); - } else if (typeof error === "object" && error !== null) { - - /* - * Error object. - * This may have a message, messageId, data, node type, line, and/or - * column. - */ - - Object.keys(error).forEach(propertyName => { - assert.ok( - errorObjectParameters.has(propertyName), - `Invalid error property name '${propertyName}'. Expected one of ${friendlyErrorObjectParameterList}.` - ); - }); - - if (hasOwnProperty(error, "message")) { - assert.ok(!hasOwnProperty(error, "messageId"), "Error should not specify both 'message' and a 'messageId'."); - assert.ok(!hasOwnProperty(error, "data"), "Error should not specify both 'data' and 'message'."); - assertMessageMatches(message.message, error.message); - } else if (hasOwnProperty(error, "messageId")) { - assert.ok( - ruleHasMetaMessages, - "Error can not use 'messageId' if rule under test doesn't define 'meta.messages'." - ); - if (!hasOwnProperty(rule.meta.messages, error.messageId)) { - assert(false, `Invalid messageId '${error.messageId}'. Expected one of ${friendlyIDList}.`); - } - assert.strictEqual( - message.messageId, - error.messageId, - `messageId '${message.messageId}' does not match expected messageId '${error.messageId}'.` - ); - if (hasOwnProperty(error, "data")) { - - /* - * if data was provided, then directly compare the returned message to a synthetic - * interpolated message using the same message ID and data provided in the test. - * See https://github.com/eslint/eslint/issues/9890 for context. - */ - const unformattedOriginalMessage = rule.meta.messages[error.messageId]; - const rehydratedMessage = interpolate(unformattedOriginalMessage, error.data); - - assert.strictEqual( - message.message, - rehydratedMessage, - `Hydrated message "${rehydratedMessage}" does not match "${message.message}"` - ); - } - } - - assert.ok( - hasOwnProperty(error, "data") ? hasOwnProperty(error, "messageId") : true, - "Error must specify 'messageId' if 'data' is used." - ); - - if (error.type) { - assert.strictEqual(message.nodeType, error.type, `Error type should be ${error.type}, found ${message.nodeType}`); - } - - if (hasOwnProperty(error, "line")) { - assert.strictEqual(message.line, error.line, `Error line should be ${error.line}`); - } - - if (hasOwnProperty(error, "column")) { - assert.strictEqual(message.column, error.column, `Error column should be ${error.column}`); - } - - if (hasOwnProperty(error, "endLine")) { - assert.strictEqual(message.endLine, error.endLine, `Error endLine should be ${error.endLine}`); - } - - if (hasOwnProperty(error, "endColumn")) { - assert.strictEqual(message.endColumn, error.endColumn, `Error endColumn should be ${error.endColumn}`); - } - - if (hasOwnProperty(error, "suggestions")) { - - // Support asserting there are no suggestions - if (!error.suggestions || (Array.isArray(error.suggestions) && error.suggestions.length === 0)) { - if (Array.isArray(message.suggestions) && message.suggestions.length > 0) { - assert.fail(`Error should have no suggestions on error with message: "${message.message}"`); - } - } else { - assert.strictEqual(Array.isArray(message.suggestions), true, `Error should have an array of suggestions. Instead received "${message.suggestions}" on error with message: "${message.message}"`); - assert.strictEqual(message.suggestions.length, error.suggestions.length, `Error should have ${error.suggestions.length} suggestions. Instead found ${message.suggestions.length} suggestions`); - - error.suggestions.forEach((expectedSuggestion, index) => { - assert.ok( - typeof expectedSuggestion === "object" && expectedSuggestion !== null, - "Test suggestion in 'suggestions' array must be an object." - ); - Object.keys(expectedSuggestion).forEach(propertyName => { - assert.ok( - suggestionObjectParameters.has(propertyName), - `Invalid suggestion property name '${propertyName}'. Expected one of ${friendlySuggestionObjectParameterList}.` - ); - }); - - const actualSuggestion = message.suggestions[index]; - const suggestionPrefix = `Error Suggestion at index ${index} :`; - - if (hasOwnProperty(expectedSuggestion, "desc")) { - assert.ok( - !hasOwnProperty(expectedSuggestion, "data"), - `${suggestionPrefix} Test should not specify both 'desc' and 'data'.` - ); - assert.strictEqual( - actualSuggestion.desc, - expectedSuggestion.desc, - `${suggestionPrefix} desc should be "${expectedSuggestion.desc}" but got "${actualSuggestion.desc}" instead.` - ); - } - - if (hasOwnProperty(expectedSuggestion, "messageId")) { - assert.ok( - ruleHasMetaMessages, - `${suggestionPrefix} Test can not use 'messageId' if rule under test doesn't define 'meta.messages'.` - ); - assert.ok( - hasOwnProperty(rule.meta.messages, expectedSuggestion.messageId), - `${suggestionPrefix} Test has invalid messageId '${expectedSuggestion.messageId}', the rule under test allows only one of ${friendlyIDList}.` - ); - assert.strictEqual( - actualSuggestion.messageId, - expectedSuggestion.messageId, - `${suggestionPrefix} messageId should be '${expectedSuggestion.messageId}' but got '${actualSuggestion.messageId}' instead.` - ); - if (hasOwnProperty(expectedSuggestion, "data")) { - const unformattedMetaMessage = rule.meta.messages[expectedSuggestion.messageId]; - const rehydratedDesc = interpolate(unformattedMetaMessage, expectedSuggestion.data); - - assert.strictEqual( - actualSuggestion.desc, - rehydratedDesc, - `${suggestionPrefix} Hydrated test desc "${rehydratedDesc}" does not match received desc "${actualSuggestion.desc}".` - ); - } - } else { - assert.ok( - !hasOwnProperty(expectedSuggestion, "data"), - `${suggestionPrefix} Test must specify 'messageId' if 'data' is used.` - ); - } - - if (hasOwnProperty(expectedSuggestion, "output")) { - const codeWithAppliedSuggestion = SourceCodeFixer.applyFixes(item.code, [actualSuggestion]).output; - - assert.strictEqual(codeWithAppliedSuggestion, expectedSuggestion.output, `Expected the applied suggestion fix to match the test suggestion output for suggestion at index: ${index} on error with message: "${message.message}"`); - } - }); - } - } - } else { - - // Message was an unexpected type - assert.fail(`Error should be a string, object, or RegExp, but found (${util.inspect(message)})`); - } - } - } - - if (hasOwnProperty(item, "output")) { - if (item.output === null) { - assert.strictEqual( - result.output, - item.code, - "Expected no autofixes to be suggested" - ); - } else { - assert.strictEqual(result.output, item.output, "Output is incorrect."); - } - } else { - assert.strictEqual( - result.output, - item.code, - "The rule fixed the code. Please add 'output' property." - ); - } - - assertASTDidntChange(result.beforeAST, result.afterAST); - } - - /* - * This creates a mocha test suite and pipes all supplied info through - * one of the templates above. - * The test suites for valid/invalid are created conditionally as - * test runners (eg. vitest) fail for empty test suites. - */ - this.constructor.describe(ruleName, () => { - if (test.valid.length > 0) { - this.constructor.describe("valid", () => { - test.valid.forEach(valid => { - this.constructor[valid.only ? "itOnly" : "it"]( - sanitize(typeof valid === "object" ? valid.name || valid.code : valid), - () => { - testValidTemplate(valid); - } - ); - }); - }); - } - - if (test.invalid.length > 0) { - this.constructor.describe("invalid", () => { - test.invalid.forEach(invalid => { - this.constructor[invalid.only ? "itOnly" : "it"]( - sanitize(invalid.name || invalid.code), - () => { - testInvalidTemplate(invalid); - } - ); - }); - }); - } - }); - } -} - -FlatRuleTester[DESCRIBE] = FlatRuleTester[IT] = FlatRuleTester[IT_ONLY] = null; - -module.exports = FlatRuleTester; diff --git a/tools/node_modules/eslint/lib/rule-tester/index.js b/tools/node_modules/eslint/lib/rule-tester/index.js index f52d14027c58ff..58f67ee49403ba 100644 --- a/tools/node_modules/eslint/lib/rule-tester/index.js +++ b/tools/node_modules/eslint/lib/rule-tester/index.js @@ -1,5 +1,7 @@ "use strict"; +const RuleTester = require("./rule-tester"); + module.exports = { - RuleTester: require("./rule-tester") + RuleTester }; diff --git a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js index 3bc80ab1837a6f..a22888c83d36bd 100644 --- a/tools/node_modules/eslint/lib/rule-tester/rule-tester.js +++ b/tools/node_modules/eslint/lib/rule-tester/rule-tester.js @@ -1,68 +1,42 @@ /** - * @fileoverview Mocha test wrapper + * @fileoverview Mocha/Jest test wrapper * @author Ilya Volodin */ "use strict"; /* globals describe, it -- Mocha globals */ -/* - * This is a wrapper around mocha to allow for DRY unittests for eslint - * Format: - * RuleTester.run("{ruleName}", { - * valid: [ - * "{code}", - * { code: "{code}", options: {options}, globals: {globals}, parser: "{parser}", settings: {settings} } - * ], - * invalid: [ - * { code: "{code}", errors: {numErrors} }, - * { code: "{code}", errors: ["{errorMessage}"] }, - * { code: "{code}", options: {options}, globals: {globals}, parser: "{parser}", settings: {settings}, errors: [{ message: "{errorMessage}", type: "{errorNodeType}"}] } - * ] - * }); - * - * Variables: - * {code} - String that represents the code to be tested - * {options} - Arguments that are passed to the configurable rules. - * {globals} - An object representing a list of variables that are - * registered as globals - * {parser} - String representing the parser to use - * {settings} - An object representing global settings for all rules - * {numErrors} - If failing case doesn't need to check error message, - * this integer will specify how many errors should be - * received - * {errorMessage} - Message that is returned by the rule on failure - * {errorNodeType} - AST node type that is returned by they rule as - * a cause of the failure. - */ - //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ const - assert = require("assert"), - path = require("path"), - util = require("util"), - merge = require("lodash.merge"), + assert = require("node:assert"), + util = require("node:util"), + path = require("node:path"), equal = require("fast-deep-equal"), - Traverser = require("../../lib/shared/traverser"), - { getRuleOptionsSchema, validate } = require("../shared/config-validator"), - { Linter, SourceCodeFixer, interpolate } = require("../linter"), - CodePath = require("../linter/code-path-analysis/code-path"); + Traverser = require("../shared/traverser"), + { getRuleOptionsSchema } = require("../config/flat-config-helpers"), + { Linter, SourceCodeFixer } = require("../linter"), + { interpolate, getPlaceholderMatcher } = require("../linter/interpolate"), + stringify = require("json-stable-stringify-without-jsonify"); + +const { FlatConfigArray } = require("../config/flat-config-array"); +const { defaultConfig } = require("../config/default-config"); const ajv = require("../shared/ajv")({ strictDefaults: true }); -const espreePath = require.resolve("espree"); const parserSymbol = Symbol.for("eslint.RuleTester.parser"); - const { SourceCode } = require("../source-code"); +const { ConfigArraySymbol } = require("@humanwhocodes/config-array"); +const { isSerializable } = require("../shared/serialization"); //------------------------------------------------------------------------------ // Typedefs //------------------------------------------------------------------------------ /** @typedef {import("../shared/types").Parser} Parser */ +/** @typedef {import("../shared/types").LanguageOptions} LanguageOptions */ /** @typedef {import("../shared/types").Rule} Rule */ @@ -72,12 +46,9 @@ const { SourceCode } = require("../source-code"); * @property {string} [name] Name for the test case. * @property {string} code Code for the test case. * @property {any[]} [options] Options for the test case. + * @property {LanguageOptions} [languageOptions] The language options to use in the test case. * @property {{ [name: string]: any }} [settings] Settings for the test case. * @property {string} [filename] The fake filename for the test case. Useful for rules that make assertion about filenames. - * @property {string} [parser] The absolute path for the parser. - * @property {{ [name: string]: any }} [parserOptions] Options for the parser. - * @property {{ [name: string]: "readonly" | "writable" | "off" }} [globals] The additional global variables. - * @property {{ [name: string]: boolean }} [env] Environments for the test case. * @property {boolean} [only] Run only this test case or the subset of test cases with this property. */ @@ -91,10 +62,7 @@ const { SourceCode } = require("../source-code"); * @property {any[]} [options] Options for the test case. * @property {{ [name: string]: any }} [settings] Settings for the test case. * @property {string} [filename] The fake filename for the test case. Useful for rules that make assertion about filenames. - * @property {string} [parser] The absolute path for the parser. - * @property {{ [name: string]: any }} [parserOptions] Options for the parser. - * @property {{ [name: string]: "readonly" | "writable" | "off" }} [globals] The additional global variables. - * @property {{ [name: string]: boolean }} [env] Environments for the test case. + * @property {LanguageOptions} [languageOptions] The language options to use in the test case. * @property {boolean} [only] Run only this test case or the subset of test cases with this property. */ @@ -120,7 +88,12 @@ const { SourceCode } = require("../source-code"); * the initial default configuration */ const testerDefaultConfig = { rules: {} }; -let defaultConfig = { rules: {} }; + +/* + * RuleTester uses this config as its default. This can be overwritten via + * setDefaultConfig(). + */ +let sharedDefaultConfig = { rules: {} }; /* * List every parameters possible on a test case that are not related to eslint @@ -163,42 +136,25 @@ const suggestionObjectParameters = new Set([ ]); const friendlySuggestionObjectParameterList = `[${[...suggestionObjectParameters].map(key => `'${key}'`).join(", ")}]`; +/* + * Ignored test case properties when checking for test case duplicates. + */ +const duplicationIgnoredParameters = new Set([ + "name", + "errors", + "output" +]); + const forbiddenMethods = [ "applyInlineConfig", "applyLanguageOptions", "finalize" ]; -const hasOwnProperty = Function.call.bind(Object.hasOwnProperty); +/** @type {Map} */ +const forbiddenMethodCalls = new Map(forbiddenMethods.map(methodName => ([methodName, new WeakSet()]))); -const DEPRECATED_SOURCECODE_PASSTHROUGHS = { - getSource: "getText", - getSourceLines: "getLines", - getAllComments: "getAllComments", - getNodeByRangeIndex: "getNodeByRangeIndex", - - // getComments: "getComments", -- already handled by a separate error - getCommentsBefore: "getCommentsBefore", - getCommentsAfter: "getCommentsAfter", - getCommentsInside: "getCommentsInside", - getJSDocComment: "getJSDocComment", - getFirstToken: "getFirstToken", - getFirstTokens: "getFirstTokens", - getLastToken: "getLastToken", - getLastTokens: "getLastTokens", - getTokenAfter: "getTokenAfter", - getTokenBefore: "getTokenBefore", - getTokenByRangeStart: "getTokenByRangeStart", - getTokens: "getTokens", - getTokensAfter: "getTokensAfter", - getTokensBefore: "getTokensBefore", - getTokensBetween: "getTokensBetween", - - getScope: "getScope", - getAncestors: "getAncestors", - getDeclaredVariables: "getDeclaredVariables", - markVariableAsUsed: "markVariableAsUsed" -}; +const hasOwnProperty = Function.call.bind(Object.hasOwnProperty); /** * Clones a given value deeply. @@ -331,23 +287,27 @@ function wrapParser(parser) { } /** - * Function to replace `SourceCode.prototype.getComments`. - * @returns {void} - * @throws {Error} Deprecation message. - */ -function getCommentsDeprecation() { - throw new Error( - "`SourceCode#getComments()` is deprecated and will be removed in a future major version. Use `getCommentsBefore()`, `getCommentsAfter()`, and `getCommentsInside()` instead." - ); -} - -/** - * Function to replace forbidden `SourceCode` methods. + * Function to replace forbidden `SourceCode` methods. Allows just one call per method. * @param {string} methodName The name of the method to forbid. + * @param {Function} prototype The prototype with the original method to call. * @returns {Function} The function that throws the error. */ -function throwForbiddenMethodError(methodName) { - return () => { +function throwForbiddenMethodError(methodName, prototype) { + + const original = prototype[methodName]; + + return function(...args) { + + const called = forbiddenMethodCalls.get(methodName); + + /* eslint-disable no-invalid-this -- needed to operate as a method. */ + if (!called.has(this)) { + called.add(this); + + return original.apply(this, args); + } + /* eslint-enable no-invalid-this -- not needed past this point */ + throw new Error( `\`SourceCode#${methodName}()\` cannot be called inside a rule.` ); @@ -355,81 +315,45 @@ function throwForbiddenMethodError(methodName) { } /** - * Emit a deprecation warning if function-style format is being used. - * @param {string} ruleName Name of the rule. - * @returns {void} + * Extracts names of {{ placeholders }} from the reported message. + * @param {string} message Reported message + * @returns {string[]} Array of placeholder names */ -function emitLegacyRuleAPIWarning(ruleName) { - if (!emitLegacyRuleAPIWarning[`warned-${ruleName}`]) { - emitLegacyRuleAPIWarning[`warned-${ruleName}`] = true; - process.emitWarning( - `"${ruleName}" rule is using the deprecated function-style format and will stop working in ESLint v9. Please use object-style format: https://eslint.org/docs/latest/extend/custom-rules`, - "DeprecationWarning" - ); - } -} +function getMessagePlaceholders(message) { + const matcher = getPlaceholderMatcher(); -/** - * Emit a deprecation warning if rule has options but is missing the "meta.schema" property - * @param {string} ruleName Name of the rule. - * @returns {void} - */ -function emitMissingSchemaWarning(ruleName) { - if (!emitMissingSchemaWarning[`warned-${ruleName}`]) { - emitMissingSchemaWarning[`warned-${ruleName}`] = true; - process.emitWarning( - `"${ruleName}" rule has options but is missing the "meta.schema" property and will stop working in ESLint v9. Please add a schema: https://eslint.org/docs/latest/extend/custom-rules#options-schemas`, - "DeprecationWarning" - ); - } + return Array.from(message.matchAll(matcher), ([, name]) => name.trim()); } /** - * Emit a deprecation warning if a rule uses a deprecated `context` method. - * @param {string} ruleName Name of the rule. - * @param {string} methodName The name of the method on `context` that was used. - * @returns {void} + * Returns the placeholders in the reported messages but + * only includes the placeholders available in the raw message and not in the provided data. + * @param {string} message The reported message + * @param {string} raw The raw message specified in the rule meta.messages + * @param {undefined|Record} data The passed + * @returns {string[]} Missing placeholder names */ -function emitDeprecatedContextMethodWarning(ruleName, methodName) { - if (!emitDeprecatedContextMethodWarning[`warned-${ruleName}-${methodName}`]) { - emitDeprecatedContextMethodWarning[`warned-${ruleName}-${methodName}`] = true; - process.emitWarning( - `"${ruleName}" rule is using \`context.${methodName}()\`, which is deprecated and will be removed in ESLint v9. Please use \`sourceCode.${DEPRECATED_SOURCECODE_PASSTHROUGHS[methodName]}()\` instead.`, - "DeprecationWarning" - ); - } -} +function getUnsubstitutedMessagePlaceholders(message, raw, data = {}) { + const unsubstituted = getMessagePlaceholders(message); -/** - * Emit a deprecation warning if rule uses CodePath#currentSegments. - * @param {string} ruleName Name of the rule. - * @returns {void} - */ -function emitCodePathCurrentSegmentsWarning(ruleName) { - if (!emitCodePathCurrentSegmentsWarning[`warned-${ruleName}`]) { - emitCodePathCurrentSegmentsWarning[`warned-${ruleName}`] = true; - process.emitWarning( - `"${ruleName}" rule uses CodePath#currentSegments and will stop working in ESLint v9. Please read the documentation for how to update your code: https://eslint.org/docs/latest/extend/code-path-analysis#usage-examples`, - "DeprecationWarning" - ); + if (unsubstituted.length === 0) { + return []; } -} -/** - * Emit a deprecation warning if `context.parserServices` is used. - * @param {string} ruleName Name of the rule. - * @returns {void} - */ -function emitParserServicesWarning(ruleName) { - if (!emitParserServicesWarning[`warned-${ruleName}`]) { - emitParserServicesWarning[`warned-${ruleName}`] = true; - process.emitWarning( - `"${ruleName}" rule is using \`context.parserServices\`, which is deprecated and will be removed in ESLint v9. Please use \`sourceCode.parserServices\` instead.`, - "DeprecationWarning" - ); - } + // Remove false positives by only counting placeholders in the raw message, which were not provided in the data matcher or added with a data property + const known = getMessagePlaceholders(raw); + const provided = Object.keys(data); + + return unsubstituted.filter(name => known.includes(name) && !provided.includes(name)); } +const metaSchemaDescription = ` +\t- If the rule has options, set \`meta.schema\` to an array or non-empty object to enable options validation. +\t- If the rule doesn't have options, omit \`meta.schema\` to enforce that no options can be passed to the rule. +\t- You can also set \`meta.schema\` to \`false\` to opt-out of options validation (not recommended). + +\thttps://eslint.org/docs/latest/extend/custom-rules#options-schemas +`; //------------------------------------------------------------------------------ // Public Interface @@ -479,26 +403,20 @@ class RuleTester { * Creates a new instance of RuleTester. * @param {Object} [testerConfig] Optional, extra configuration for the tester */ - constructor(testerConfig) { + constructor(testerConfig = {}) { /** * The configuration to use for this tester. Combination of the tester * configuration and the default configuration. * @type {Object} */ - this.testerConfig = merge( - {}, - defaultConfig, + this.testerConfig = [ + sharedDefaultConfig, testerConfig, { rules: { "rule-tester/validate-ast": "error" } } - ); + ]; - /** - * Rule definitions to define before tests. - * @type {Object} - */ - this.rules = {}; - this.linter = new Linter(); + this.linter = new Linter({ configType: "flat" }); } /** @@ -511,10 +429,10 @@ class RuleTester { if (typeof config !== "object" || config === null) { throw new TypeError("RuleTester.setDefaultConfig: config must be an object"); } - defaultConfig = config; + sharedDefaultConfig = config; // Make sure the rules object exists since it is assumed to exist later - defaultConfig.rules = defaultConfig.rules || {}; + sharedDefaultConfig.rules = sharedDefaultConfig.rules || {}; } /** @@ -522,7 +440,7 @@ class RuleTester { * @returns {Object} the current configuration */ static getDefaultConfig() { - return defaultConfig; + return sharedDefaultConfig; } /** @@ -531,7 +449,11 @@ class RuleTester { * @returns {void} */ static resetDefaultConfig() { - defaultConfig = merge({}, testerDefaultConfig); + sharedDefaultConfig = { + rules: { + ...testerDefaultConfig.rules + } + }; } @@ -602,29 +524,17 @@ class RuleTester { this[IT_ONLY] = value; } - /** - * Define a rule for one particular run of tests. - * @param {string} name The name of the rule to define. - * @param {Function | Rule} rule The rule definition. - * @returns {void} - */ - defineRule(name, rule) { - if (typeof rule === "function") { - emitLegacyRuleAPIWarning(name); - } - this.rules[name] = rule; - } /** * Adds a new rule test to execute. * @param {string} ruleName The name of the rule to run. - * @param {Function | Rule} rule The rule to test. + * @param {Rule} rule The rule to test. * @param {{ * valid: (ValidTestCase | string)[], * invalid: InvalidTestCase[] * }} test The collection of tests to run. - * @throws {TypeError|Error} If non-object `test`, or if a required - * scenario of the given type is missing. + * @throws {TypeError|Error} If `rule` is not an object with a `create` method, + * or if non-object `test`, or if a required scenario of the given type is missing. * @returns {void} */ run(ruleName, rule, test) { @@ -632,7 +542,15 @@ class RuleTester { const testerConfig = this.testerConfig, requiredScenarios = ["valid", "invalid"], scenarioErrors = [], - linter = this.linter; + linter = this.linter, + ruleId = `rule-to-test/${ruleName}`; + + const seenValidTestCases = new Set(); + const seenInvalidTestCases = new Set(); + + if (!rule || typeof rule !== "object" || typeof rule.create !== "function") { + throw new TypeError("Rule must be an object with a `create` method"); + } if (!test || typeof test !== "object") { throw new TypeError(`Test Scenarios for rule ${ruleName} : Could not find test scenario object`); @@ -650,54 +568,55 @@ class RuleTester { ].concat(scenarioErrors).join("\n")); } - if (typeof rule === "function") { - emitLegacyRuleAPIWarning(ruleName); - } + const baseConfig = [ + { files: ["**"] }, // Make sure the default config matches for all files + { + plugins: { - linter.defineRule(ruleName, Object.assign({}, rule, { - - // Create a wrapper rule that freezes the `context` properties. - create(context) { - freezeDeeply(context.options); - freezeDeeply(context.settings); - freezeDeeply(context.parserOptions); - - // wrap all deprecated methods - const newContext = Object.create( - context, - Object.fromEntries(Object.keys(DEPRECATED_SOURCECODE_PASSTHROUGHS).map(methodName => [ - methodName, - { - value(...args) { - - // emit deprecation warning - emitDeprecatedContextMethodWarning(ruleName, methodName); - - // call the original method - return context[methodName].call(this, ...args); - }, - enumerable: true - } - ])) - ); + // copy root plugin over + "@": { - // emit warning about context.parserServices - const parserServices = context.parserServices; + /* + * Parsers are wrapped to detect more errors, so this needs + * to be a new object for each call to run(), otherwise the + * parsers will be wrapped multiple times. + */ + parsers: { + ...defaultConfig[0].plugins["@"].parsers + }, - Object.defineProperty(newContext, "parserServices", { - get() { - emitParserServicesWarning(ruleName); - return parserServices; - } - }); + /* + * The rules key on the default plugin is a proxy to lazy-load + * just the rules that are needed. So, don't create a new object + * here, just use the default one to keep that performance + * enhancement. + */ + rules: defaultConfig[0].plugins["@"].rules + }, + "rule-to-test": { + rules: { + [ruleName]: Object.assign({}, rule, { - Object.freeze(newContext); + // Create a wrapper rule that freezes the `context` properties. + create(context) { + freezeDeeply(context.options); + freezeDeeply(context.settings); + freezeDeeply(context.parserOptions); - return (typeof rule === "function" ? rule : rule.create)(newContext); - } - })); + // freezeDeeply(context.languageOptions); - linter.defineRules(this.rules); + return rule.create(context); + } + }) + } + } + }, + languageOptions: { + ...defaultConfig[0].languageOptions + } + }, + ...defaultConfig.slice(1) + ]; /** * Run the rule for the given item @@ -707,8 +626,34 @@ class RuleTester { * @private */ function runRuleForItem(item) { - let config = merge({}, testerConfig), - code, filename, output, beforeAST, afterAST; + const flatConfigArrayOptions = { + baseConfig + }; + + if (item.filename) { + flatConfigArrayOptions.basePath = path.parse(item.filename).root; + } + + const configs = new FlatConfigArray(testerConfig, flatConfigArrayOptions); + + /* + * Modify the returned config so that the parser is wrapped to catch + * access of the start/end properties. This method is called just + * once per code snippet being tested, so each test case gets a clean + * parser. + */ + configs[ConfigArraySymbol.finalizeConfig] = function(...args) { + + // can't do super here :( + const proto = Object.getPrototypeOf(this); + const calculatedConfig = proto[ConfigArraySymbol.finalizeConfig].apply(this, args); + + // wrap the parser to catch start/end property access + calculatedConfig.languageOptions.parser = wrapParser(calculatedConfig.languageOptions.parser); + return calculatedConfig; + }; + + let code, filename, output, beforeAST, afterAST; if (typeof item === "string") { code = item; @@ -725,64 +670,97 @@ class RuleTester { delete itemConfig[parameter]; } + // wrap any parsers + if (itemConfig.languageOptions && itemConfig.languageOptions.parser) { + + const parser = itemConfig.languageOptions.parser; + + if (parser && typeof parser !== "object") { + throw new Error("Parser must be an object with a parse() or parseForESLint() method."); + } + + } + /* * Create the config object from the tester config and this item * specific configurations. */ - config = merge( - config, - itemConfig - ); + configs.push(itemConfig); } - if (item.filename) { + if (hasOwnProperty(item, "only")) { + assert.ok(typeof item.only === "boolean", "Optional test case property 'only' must be a boolean"); + } + if (hasOwnProperty(item, "filename")) { + assert.ok(typeof item.filename === "string", "Optional test case property 'filename' must be a string"); filename = item.filename; } + let ruleConfig = 1; + if (hasOwnProperty(item, "options")) { assert(Array.isArray(item.options), "options must be an array"); - if ( - item.options.length > 0 && - typeof rule === "object" && - ( - !rule.meta || (rule.meta && (typeof rule.meta.schema === "undefined" || rule.meta.schema === null)) - ) - ) { - emitMissingSchemaWarning(ruleName); + ruleConfig = [1, ...item.options]; + } + + configs.push({ + rules: { + [ruleId]: ruleConfig } - config.rules[ruleName] = [1].concat(item.options); - } else { - config.rules[ruleName] = 1; + }); + + let schema; + + try { + schema = getRuleOptionsSchema(rule); + } catch (err) { + err.message += metaSchemaDescription; + throw err; } - const schema = getRuleOptionsSchema(rule); + /* + * Check and throw an error if the schema is an empty object (`schema:{}`), because such schema + * doesn't validate or enforce anything and is therefore considered a possible error. If the intent + * was to skip options validation, `schema:false` should be set instead (explicit opt-out). + * + * For this purpose, a schema object is considered empty if it doesn't have any own enumerable string-keyed + * properties. While `ajv.compile()` does use enumerable properties from the prototype chain as well, + * it caches compiled schemas by serializing only own enumerable properties, so it's generally not a good idea + * to use inherited properties in schemas because schemas that differ only in inherited properties would end up + * having the same cache entry that would be correct for only one of them. + * + * At this point, `schema` can only be an object or `null`. + */ + if (schema && Object.keys(schema).length === 0) { + throw new Error(`\`schema: {}\` is a no-op${metaSchemaDescription}`); + } /* * Setup AST getters. * The goal is to check whether or not AST was modified when * running the rule under test. */ - linter.defineRule("rule-tester/validate-ast", { - create() { - return { - Program(node) { - beforeAST = cloneDeeplyExcludesParent(node); - }, - "Program:exit"(node) { - afterAST = node; + configs.push({ + plugins: { + "rule-tester": { + rules: { + "validate-ast": { + create() { + return { + Program(node) { + beforeAST = cloneDeeplyExcludesParent(node); + }, + "Program:exit"(node) { + afterAST = node; + } + }; + } + } } - }; + } } }); - if (typeof config.parser === "string") { - assert(path.isAbsolute(config.parser), "Parsers provided as strings to RuleTester must be absolute paths"); - } else { - config.parser = espreePath; - } - - linter.defineParser(config.parser, wrapParser(require(config.parser))); - if (schema) { ajv.validateSchema(schema); @@ -809,35 +787,32 @@ class RuleTester { } } - validate(config, "rule-tester", id => (id === ruleName ? rule : null)); + // check for validation errors + try { + configs.normalizeSync(); + configs.getConfig("test.js"); + } catch (error) { + error.message = `ESLint configuration in rule-tester is invalid: ${error.message}`; + throw error; + } // Verify the code. - const { getComments, applyLanguageOptions, applyInlineConfig, finalize } = SourceCode.prototype; - const originalCurrentSegments = Object.getOwnPropertyDescriptor(CodePath.prototype, "currentSegments"); + const { applyLanguageOptions, applyInlineConfig, finalize } = SourceCode.prototype; let messages; try { - SourceCode.prototype.getComments = getCommentsDeprecation; - Object.defineProperty(CodePath.prototype, "currentSegments", { - get() { - emitCodePathCurrentSegmentsWarning(ruleName); - return originalCurrentSegments.get.call(this); - } - }); - forbiddenMethods.forEach(methodName => { - SourceCode.prototype[methodName] = throwForbiddenMethodError(methodName); + SourceCode.prototype[methodName] = throwForbiddenMethodError(methodName, SourceCode.prototype); }); - messages = linter.verify(code, config, filename); + messages = linter.verify(code, configs, filename); } finally { - SourceCode.prototype.getComments = getComments; - Object.defineProperty(CodePath.prototype, "currentSegments", originalCurrentSegments); SourceCode.prototype.applyInlineConfig = applyInlineConfig; SourceCode.prototype.applyLanguageOptions = applyLanguageOptions; SourceCode.prototype.finalize = finalize; } + const fatalErrorMessage = messages.find(m => m.fatal); assert(!fatalErrorMessage, `A fatal parsing error occurred: ${fatalErrorMessage && fatalErrorMessage.message}`); @@ -845,7 +820,7 @@ class RuleTester { // Verify if autofix makes a syntax error or not. if (messages.some(m => m.fix)) { output = SourceCodeFixer.applyFixes(code, messages).output; - const errorMessageInFix = linter.verify(output, config, filename).find(m => m.fatal); + const errorMessageInFix = linter.verify(output, configs, filename).find(m => m.fatal); assert(!errorMessageInFix, [ "A fatal parsing error occurred in autofix.", @@ -861,7 +836,9 @@ class RuleTester { messages, output, beforeAST, - afterAST: cloneDeeplyExcludesParent(afterAST) + afterAST: cloneDeeplyExcludesParent(afterAST), + configs, + filename }; } @@ -878,6 +855,39 @@ class RuleTester { } } + /** + * Check if this test case is a duplicate of one we have seen before. + * @param {string|Object} item test case object + * @param {Set} seenTestCases set of serialized test cases we have seen so far (managed by this function) + * @returns {void} + * @private + */ + function checkDuplicateTestCase(item, seenTestCases) { + if (!isSerializable(item)) { + + /* + * If we can't serialize a test case (because it contains a function, RegExp, etc), skip the check. + * This might happen with properties like: options, plugins, settings, languageOptions.parser, languageOptions.parserOptions. + */ + return; + } + + const normalizedItem = typeof item === "string" ? { code: item } : item; + const serializedTestCase = stringify(normalizedItem, { + replacer(key, value) { + + // "this" is the currently stringified object --> only ignore top-level properties + return (normalizedItem !== this || !duplicationIgnoredParameters.has(key)) ? value : void 0; + } + }); + + assert( + !seenTestCases.has(serializedTestCase), + "detected duplicate test case" + ); + seenTestCases.add(serializedTestCase); + } + /** * Check if the template is valid or not * all valid cases go through this @@ -893,6 +903,8 @@ class RuleTester { assert.ok(typeof item.name === "string", "Optional test case property 'name' must be a string"); } + checkDuplicateTestCase(item, seenValidTestCases); + const result = runRuleForItem(item); const messages = result.messages; @@ -944,12 +956,30 @@ class RuleTester { assert.fail("Invalid cases must have at least one error"); } + checkDuplicateTestCase(item, seenInvalidTestCases); + const ruleHasMetaMessages = hasOwnProperty(rule, "meta") && hasOwnProperty(rule.meta, "messages"); const friendlyIDList = ruleHasMetaMessages ? `[${Object.keys(rule.meta.messages).map(key => `'${key}'`).join(", ")}]` : null; const result = runRuleForItem(item); const messages = result.messages; + for (const message of messages) { + if (hasOwnProperty(message, "suggestions")) { + + /** @type {Map} */ + const seenMessageIndices = new Map(); + + for (let i = 0; i < message.suggestions.length; i += 1) { + const suggestionMessage = message.suggestions[i].desc; + const previous = seenMessageIndices.get(suggestionMessage); + + assert.ok(!seenMessageIndices.has(suggestionMessage), `Suggestion message '${suggestionMessage}' reported from suggestion ${i} was previously reported by suggestion ${previous}. Suggestion messages should be unique within an error.`); + seenMessageIndices.set(suggestionMessage, i); + } + } + } + if (typeof item.errors === "number") { if (item.errors === 0) { @@ -972,7 +1002,7 @@ class RuleTester { ) ); - const hasMessageOfThisRule = messages.some(m => m.ruleId === ruleName); + const hasMessageOfThisRule = messages.some(m => m.ruleId === ruleId); for (let i = 0, l = item.errors.length; i < l; i++) { const error = item.errors[i]; @@ -984,6 +1014,7 @@ class RuleTester { // Just an error message. assertMessageMatches(message.message, error); + assert.ok(message.suggestions === void 0, `Error at index ${i} has suggestions. Please convert the test error into an object and specify 'suggestions' property on it to test suggestions.`); } else if (typeof error === "object" && error !== null) { /* @@ -1016,6 +1047,18 @@ class RuleTester { error.messageId, `messageId '${message.messageId}' does not match expected messageId '${error.messageId}'.` ); + + const unsubstitutedPlaceholders = getUnsubstitutedMessagePlaceholders( + message.message, + rule.meta.messages[message.messageId], + error.data + ); + + assert.ok( + unsubstitutedPlaceholders.length === 0, + `The reported message has ${unsubstitutedPlaceholders.length > 1 ? `unsubstituted placeholders: ${unsubstitutedPlaceholders.map(name => `'${name}'`).join(", ")}` : `an unsubstituted placeholder '${unsubstitutedPlaceholders[0]}'`}. Please provide the missing ${unsubstitutedPlaceholders.length > 1 ? "values" : "value"} via the 'data' property in the context.report() call.` + ); + if (hasOwnProperty(error, "data")) { /* @@ -1032,13 +1075,10 @@ class RuleTester { `Hydrated message "${rehydratedMessage}" does not match "${message.message}"` ); } + } else { + assert.fail("Test error must specify either a 'messageId' or 'message'."); } - assert.ok( - hasOwnProperty(error, "data") ? hasOwnProperty(error, "messageId") : true, - "Error must specify 'messageId' if 'data' is used." - ); - if (error.type) { assert.strictEqual(message.nodeType, error.type, `Error type should be ${error.type}, found ${message.nodeType}`); } @@ -1059,81 +1099,117 @@ class RuleTester { assert.strictEqual(message.endColumn, error.endColumn, `Error endColumn should be ${error.endColumn}`); } + assert.ok(!message.suggestions || hasOwnProperty(error, "suggestions"), `Error at index ${i} has suggestions. Please specify 'suggestions' property on the test error object.`); if (hasOwnProperty(error, "suggestions")) { // Support asserting there are no suggestions - if (!error.suggestions || (Array.isArray(error.suggestions) && error.suggestions.length === 0)) { - if (Array.isArray(message.suggestions) && message.suggestions.length > 0) { - assert.fail(`Error should have no suggestions on error with message: "${message.message}"`); - } - } else { - assert.strictEqual(Array.isArray(message.suggestions), true, `Error should have an array of suggestions. Instead received "${message.suggestions}" on error with message: "${message.message}"`); - assert.strictEqual(message.suggestions.length, error.suggestions.length, `Error should have ${error.suggestions.length} suggestions. Instead found ${message.suggestions.length} suggestions`); - - error.suggestions.forEach((expectedSuggestion, index) => { - assert.ok( - typeof expectedSuggestion === "object" && expectedSuggestion !== null, - "Test suggestion in 'suggestions' array must be an object." - ); - Object.keys(expectedSuggestion).forEach(propertyName => { + const expectsSuggestions = Array.isArray(error.suggestions) ? error.suggestions.length > 0 : Boolean(error.suggestions); + const hasSuggestions = message.suggestions !== void 0; + + if (!hasSuggestions && expectsSuggestions) { + assert.ok(!error.suggestions, `Error should have suggestions on error with message: "${message.message}"`); + } else if (hasSuggestions) { + assert.ok(expectsSuggestions, `Error should have no suggestions on error with message: "${message.message}"`); + if (typeof error.suggestions === "number") { + assert.strictEqual(message.suggestions.length, error.suggestions, `Error should have ${error.suggestions} suggestions. Instead found ${message.suggestions.length} suggestions`); + } else if (Array.isArray(error.suggestions)) { + assert.strictEqual(message.suggestions.length, error.suggestions.length, `Error should have ${error.suggestions.length} suggestions. Instead found ${message.suggestions.length} suggestions`); + + error.suggestions.forEach((expectedSuggestion, index) => { assert.ok( - suggestionObjectParameters.has(propertyName), - `Invalid suggestion property name '${propertyName}'. Expected one of ${friendlySuggestionObjectParameterList}.` + typeof expectedSuggestion === "object" && expectedSuggestion !== null, + "Test suggestion in 'suggestions' array must be an object." ); - }); - - const actualSuggestion = message.suggestions[index]; - const suggestionPrefix = `Error Suggestion at index ${index} :`; + Object.keys(expectedSuggestion).forEach(propertyName => { + assert.ok( + suggestionObjectParameters.has(propertyName), + `Invalid suggestion property name '${propertyName}'. Expected one of ${friendlySuggestionObjectParameterList}.` + ); + }); - if (hasOwnProperty(expectedSuggestion, "desc")) { - assert.ok( - !hasOwnProperty(expectedSuggestion, "data"), - `${suggestionPrefix} Test should not specify both 'desc' and 'data'.` - ); - assert.strictEqual( - actualSuggestion.desc, - expectedSuggestion.desc, - `${suggestionPrefix} desc should be "${expectedSuggestion.desc}" but got "${actualSuggestion.desc}" instead.` - ); - } - - if (hasOwnProperty(expectedSuggestion, "messageId")) { - assert.ok( - ruleHasMetaMessages, - `${suggestionPrefix} Test can not use 'messageId' if rule under test doesn't define 'meta.messages'.` - ); - assert.ok( - hasOwnProperty(rule.meta.messages, expectedSuggestion.messageId), - `${suggestionPrefix} Test has invalid messageId '${expectedSuggestion.messageId}', the rule under test allows only one of ${friendlyIDList}.` - ); - assert.strictEqual( - actualSuggestion.messageId, - expectedSuggestion.messageId, - `${suggestionPrefix} messageId should be '${expectedSuggestion.messageId}' but got '${actualSuggestion.messageId}' instead.` - ); - if (hasOwnProperty(expectedSuggestion, "data")) { - const unformattedMetaMessage = rule.meta.messages[expectedSuggestion.messageId]; - const rehydratedDesc = interpolate(unformattedMetaMessage, expectedSuggestion.data); + const actualSuggestion = message.suggestions[index]; + const suggestionPrefix = `Error Suggestion at index ${index}:`; + if (hasOwnProperty(expectedSuggestion, "desc")) { + assert.ok( + !hasOwnProperty(expectedSuggestion, "data"), + `${suggestionPrefix} Test should not specify both 'desc' and 'data'.` + ); + assert.ok( + !hasOwnProperty(expectedSuggestion, "messageId"), + `${suggestionPrefix} Test should not specify both 'desc' and 'messageId'.` + ); assert.strictEqual( actualSuggestion.desc, - rehydratedDesc, - `${suggestionPrefix} Hydrated test desc "${rehydratedDesc}" does not match received desc "${actualSuggestion.desc}".` + expectedSuggestion.desc, + `${suggestionPrefix} desc should be "${expectedSuggestion.desc}" but got "${actualSuggestion.desc}" instead.` + ); + } else if (hasOwnProperty(expectedSuggestion, "messageId")) { + assert.ok( + ruleHasMetaMessages, + `${suggestionPrefix} Test can not use 'messageId' if rule under test doesn't define 'meta.messages'.` + ); + assert.ok( + hasOwnProperty(rule.meta.messages, expectedSuggestion.messageId), + `${suggestionPrefix} Test has invalid messageId '${expectedSuggestion.messageId}', the rule under test allows only one of ${friendlyIDList}.` + ); + assert.strictEqual( + actualSuggestion.messageId, + expectedSuggestion.messageId, + `${suggestionPrefix} messageId should be '${expectedSuggestion.messageId}' but got '${actualSuggestion.messageId}' instead.` + ); + + const unsubstitutedPlaceholders = getUnsubstitutedMessagePlaceholders( + actualSuggestion.desc, + rule.meta.messages[expectedSuggestion.messageId], + expectedSuggestion.data + ); + + assert.ok( + unsubstitutedPlaceholders.length === 0, + `The message of the suggestion has ${unsubstitutedPlaceholders.length > 1 ? `unsubstituted placeholders: ${unsubstitutedPlaceholders.map(name => `'${name}'`).join(", ")}` : `an unsubstituted placeholder '${unsubstitutedPlaceholders[0]}'`}. Please provide the missing ${unsubstitutedPlaceholders.length > 1 ? "values" : "value"} via the 'data' property for the suggestion in the context.report() call.` + ); + + if (hasOwnProperty(expectedSuggestion, "data")) { + const unformattedMetaMessage = rule.meta.messages[expectedSuggestion.messageId]; + const rehydratedDesc = interpolate(unformattedMetaMessage, expectedSuggestion.data); + + assert.strictEqual( + actualSuggestion.desc, + rehydratedDesc, + `${suggestionPrefix} Hydrated test desc "${rehydratedDesc}" does not match received desc "${actualSuggestion.desc}".` + ); + } + } else if (hasOwnProperty(expectedSuggestion, "data")) { + assert.fail( + `${suggestionPrefix} Test must specify 'messageId' if 'data' is used.` + ); + } else { + assert.fail( + `${suggestionPrefix} Test must specify either 'messageId' or 'desc'.` ); } - } else { - assert.ok( - !hasOwnProperty(expectedSuggestion, "data"), - `${suggestionPrefix} Test must specify 'messageId' if 'data' is used.` - ); - } - if (hasOwnProperty(expectedSuggestion, "output")) { + assert.ok(hasOwnProperty(expectedSuggestion, "output"), `${suggestionPrefix} The "output" property is required.`); const codeWithAppliedSuggestion = SourceCodeFixer.applyFixes(item.code, [actualSuggestion]).output; + // Verify if suggestion fix makes a syntax error or not. + const errorMessageInSuggestion = + linter.verify(codeWithAppliedSuggestion, result.configs, result.filename).find(m => m.fatal); + + assert(!errorMessageInSuggestion, [ + "A fatal parsing error occurred in suggestion fix.", + `Error: ${errorMessageInSuggestion && errorMessageInSuggestion.message}`, + "Suggestion output:", + codeWithAppliedSuggestion + ].join("\n")); + assert.strictEqual(codeWithAppliedSuggestion, expectedSuggestion.output, `Expected the applied suggestion fix to match the test suggestion output for suggestion at index: ${index} on error with message: "${message.message}"`); - } - }); + assert.notStrictEqual(expectedSuggestion.output, item.code, `The output of a suggestion should differ from the original source code for suggestion at index: ${index} on error with message: "${message.message}"`); + }); + } else { + assert.fail("Test error object property 'suggestions' should be an array or a number"); + } } } } else { @@ -1153,6 +1229,7 @@ class RuleTester { ); } else { assert.strictEqual(result.output, item.output, "Output is incorrect."); + assert.notStrictEqual(item.code, item.output, "Test property 'output' matches 'code'. If no autofix is expected, then omit the 'output' property or set it to null."); } } else { assert.strictEqual( diff --git a/tools/node_modules/eslint/lib/rules/array-bracket-newline.js b/tools/node_modules/eslint/lib/rules/array-bracket-newline.js index 12ef5b612d6a2b..9eb725825a9a7d 100644 --- a/tools/node_modules/eslint/lib/rules/array-bracket-newline.js +++ b/tools/node_modules/eslint/lib/rules/array-bracket-newline.js @@ -74,7 +74,7 @@ module.exports = { function normalizeOptionValue(option) { let consistent = false; let multiline = false; - let minItems = 0; + let minItems; if (option) { if (option === "consistent") { diff --git a/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js b/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js index 9dd3ffd902cc6c..31ace985a2058a 100644 --- a/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js +++ b/tools/node_modules/eslint/lib/rules/array-bracket-spacing.js @@ -199,7 +199,7 @@ module.exports = { : sourceCode.getLastToken(node), penultimate = sourceCode.getTokenBefore(last), firstElement = node.elements[0], - lastElement = node.elements[node.elements.length - 1]; + lastElement = node.elements.at(-1); const openingBracketMustBeSpaced = options.objectsInArraysException && isObjectType(firstElement) || diff --git a/tools/node_modules/eslint/lib/rules/block-scoped-var.js b/tools/node_modules/eslint/lib/rules/block-scoped-var.js index ec597d5661e6d9..d65fc074bb172c 100644 --- a/tools/node_modules/eslint/lib/rules/block-scoped-var.js +++ b/tools/node_modules/eslint/lib/rules/block-scoped-var.js @@ -79,7 +79,7 @@ module.exports = { } // Defines a predicate to check whether or not a given reference is outside of valid scope. - const scopeRange = stack[stack.length - 1]; + const scopeRange = stack.at(-1); /** * Check if a reference is out of scope diff --git a/tools/node_modules/eslint/lib/rules/callback-return.js b/tools/node_modules/eslint/lib/rules/callback-return.js index 5d441bdd9fac38..ffc34b163d617b 100644 --- a/tools/node_modules/eslint/lib/rules/callback-return.js +++ b/tools/node_modules/eslint/lib/rules/callback-return.js @@ -147,7 +147,7 @@ module.exports = { if (closestBlock.type === "BlockStatement") { // find the last item in the block - const lastItem = closestBlock.body[closestBlock.body.length - 1]; + const lastItem = closestBlock.body.at(-1); // if the callback is the last thing in a block that might be ok if (isCallbackExpression(node, lastItem)) { @@ -168,7 +168,7 @@ module.exports = { if (lastItem.type === "ReturnStatement") { // but only if the callback is immediately before - if (isCallbackExpression(node, closestBlock.body[closestBlock.body.length - 2])) { + if (isCallbackExpression(node, closestBlock.body.at(-2))) { return; } } diff --git a/tools/node_modules/eslint/lib/rules/camelcase.js b/tools/node_modules/eslint/lib/rules/camelcase.js index 51bb4122df094f..3c5a7b9cec3982 100644 --- a/tools/node_modules/eslint/lib/rules/camelcase.js +++ b/tools/node_modules/eslint/lib/rules/camelcase.js @@ -47,11 +47,9 @@ module.exports = { }, allow: { type: "array", - items: [ - { - type: "string" - } - ], + items: { + type: "string" + }, minItems: 0, uniqueItems: true } diff --git a/tools/node_modules/eslint/lib/rules/capitalized-comments.js b/tools/node_modules/eslint/lib/rules/capitalized-comments.js index 3a17b05662016a..07a27b6ec963cb 100644 --- a/tools/node_modules/eslint/lib/rules/capitalized-comments.js +++ b/tools/node_modules/eslint/lib/rules/capitalized-comments.js @@ -8,7 +8,6 @@ // Requirements //------------------------------------------------------------------------------ -const LETTER_PATTERN = require("./utils/patterns/letters"); const astUtils = require("./utils/ast-utils"); //------------------------------------------------------------------------------ @@ -17,7 +16,8 @@ const astUtils = require("./utils/ast-utils"); const DEFAULT_IGNORE_PATTERN = astUtils.COMMENTS_IGNORE_PATTERN, WHITESPACE = /\s/gu, - MAYBE_URL = /^\s*[^:/?#\s]+:\/\/[^?#]/u; // TODO: Combine w/ max-len pattern? + MAYBE_URL = /^\s*[^:/?#\s]+:\/\/[^?#]/u, // TODO: Combine w/ max-len pattern? + LETTER_PATTERN = /\p{L}/u; /* * Base schema body for defining the basic capitalization rule, ignorePattern, @@ -233,7 +233,8 @@ module.exports = { return true; } - const firstWordChar = commentWordCharsOnly[0]; + // Get the first Unicode character (1 or 2 code units). + const [firstWordChar] = commentWordCharsOnly; if (!LETTER_PATTERN.test(firstWordChar)) { return true; @@ -273,12 +274,14 @@ module.exports = { messageId, fix(fixer) { const match = comment.value.match(LETTER_PATTERN); + const char = match[0]; - return fixer.replaceTextRange( + // Offset match.index by 2 to account for the first 2 characters that start the comment (// or /*) + const charIndex = comment.range[0] + match.index + 2; - // Offset match.index by 2 to account for the first 2 characters that start the comment (// or /*) - [comment.range[0] + match.index + 2, comment.range[0] + match.index + 3], - capitalize === "always" ? match[0].toLocaleUpperCase() : match[0].toLocaleLowerCase() + return fixer.replaceTextRange( + [charIndex, charIndex + char.length], + capitalize === "always" ? char.toLocaleUpperCase() : char.toLocaleLowerCase() ); } }); diff --git a/tools/node_modules/eslint/lib/rules/comma-dangle.js b/tools/node_modules/eslint/lib/rules/comma-dangle.js index 5f4180f12c5357..c24c1475444c61 100644 --- a/tools/node_modules/eslint/lib/rules/comma-dangle.js +++ b/tools/node_modules/eslint/lib/rules/comma-dangle.js @@ -154,7 +154,7 @@ module.exports = { * @returns {any} The last element */ function last(array) { - return array[array.length - 1]; + return array.at(-1); } switch (node.type) { diff --git a/tools/node_modules/eslint/lib/rules/comma-style.js b/tools/node_modules/eslint/lib/rules/comma-style.js index 0b51219531de19..d632a3bae56f52 100644 --- a/tools/node_modules/eslint/lib/rules/comma-style.js +++ b/tools/node_modules/eslint/lib/rules/comma-style.js @@ -66,7 +66,7 @@ module.exports = { NewExpression: true }; - if (context.options.length === 2 && Object.prototype.hasOwnProperty.call(context.options[1], "exceptions")) { + if (context.options.length === 2 && Object.hasOwn(context.options[1], "exceptions")) { const keys = Object.keys(context.options[1].exceptions); for (let i = 0; i < keys.length; i++) { @@ -218,7 +218,7 @@ module.exports = { previousItemToken = tokenAfterItem ? sourceCode.getTokenBefore(tokenAfterItem) - : sourceCode.ast.tokens[sourceCode.ast.tokens.length - 1]; + : sourceCode.ast.tokens.at(-1); } else { previousItemToken = currentItemToken; } diff --git a/tools/node_modules/eslint/lib/rules/complexity.js b/tools/node_modules/eslint/lib/rules/complexity.js index b7925074db4b29..647de7b4d3b89f 100644 --- a/tools/node_modules/eslint/lib/rules/complexity.js +++ b/tools/node_modules/eslint/lib/rules/complexity.js @@ -64,7 +64,7 @@ module.exports = { if ( typeof option === "object" && - (Object.prototype.hasOwnProperty.call(option, "maximum") || Object.prototype.hasOwnProperty.call(option, "max")) + (Object.hasOwn(option, "maximum") || Object.hasOwn(option, "max")) ) { THRESHOLD = option.maximum || option.max; } else if (typeof option === "number") { @@ -109,6 +109,7 @@ module.exports = { IfStatement: increaseComplexity, WhileStatement: increaseComplexity, DoWhileStatement: increaseComplexity, + AssignmentPattern: increaseComplexity, // Avoid `default` "SwitchCase[test]": increaseComplexity, @@ -120,6 +121,18 @@ module.exports = { } }, + MemberExpression(node) { + if (node.optional === true) { + increaseComplexity(); + } + }, + + CallExpression(node) { + if (node.optional === true) { + increaseComplexity(); + } + }, + onCodePathEnd(codePath, node) { const complexity = complexities.pop(); diff --git a/tools/node_modules/eslint/lib/rules/constructor-super.js b/tools/node_modules/eslint/lib/rules/constructor-super.js index 330be80f386539..6f46278f781cb8 100644 --- a/tools/node_modules/eslint/lib/rules/constructor-super.js +++ b/tools/node_modules/eslint/lib/rules/constructor-super.js @@ -9,22 +9,6 @@ // Helpers //------------------------------------------------------------------------------ -/** - * Checks all segments in a set and returns true if any are reachable. - * @param {Set} segments The segments to check. - * @returns {boolean} True if any segment is reachable; false otherwise. - */ -function isAnySegmentReachable(segments) { - - for (const segment of segments) { - if (segment.reachable) { - return true; - } - } - - return false; -} - /** * Checks whether or not a given node is a constructor. * @param {ASTNode} node A node to check. This node type is one of @@ -109,7 +93,7 @@ function isPossibleConstructor(node) { ); case "SequenceExpression": { - const lastExpression = node.expressions[node.expressions.length - 1]; + const lastExpression = node.expressions.at(-1); return isPossibleConstructor(lastExpression); } @@ -119,6 +103,30 @@ function isPossibleConstructor(node) { } } +/** + * A class to store information about a code path segment. + */ +class SegmentInfo { + + /** + * Indicates if super() is called in all code paths. + * @type {boolean} + */ + calledInEveryPaths = false; + + /** + * Indicates if super() is called in any code paths. + * @type {boolean} + */ + calledInSomePaths = false; + + /** + * The nodes which have been validated and don't need to be reconsidered. + * @type {ASTNode[]} + */ + validNodes = []; +} + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -141,8 +149,7 @@ module.exports = { missingAll: "Expected to call 'super()'.", duplicate: "Unexpected duplicate 'super()'.", - badSuper: "Unexpected 'super()' because 'super' is not a constructor.", - unexpected: "Unexpected 'super()'." + badSuper: "Unexpected 'super()' because 'super' is not a constructor." } }, @@ -159,14 +166,10 @@ module.exports = { */ let funcInfo = null; - /* - * {Map} - * Information for each code path segment. - * - calledInSomePaths: A flag of be called `super()` in some code paths. - * - calledInEveryPaths: A flag of be called `super()` in all code paths. - * - validNodes: + /** + * @type {Record} */ - let segInfoMap = Object.create(null); + const segInfoMap = Object.create(null); /** * Gets the flag which shows `super()` is called in some paths. @@ -177,23 +180,21 @@ module.exports = { return segment.reachable && segInfoMap[segment.id].calledInSomePaths; } + /** + * Determines if a segment has been seen in the traversal. + * @param {CodePathSegment} segment A code path segment to check. + * @returns {boolean} `true` if the segment has been seen. + */ + function hasSegmentBeenSeen(segment) { + return !!segInfoMap[segment.id]; + } + /** * Gets the flag which shows `super()` is called in all paths. * @param {CodePathSegment} segment A code path segment to get. * @returns {boolean} The flag which shows `super()` is called in all paths. */ function isCalledInEveryPath(segment) { - - /* - * If specific segment is the looped segment of the current segment, - * skip the segment. - * If not skipped, this never becomes true after a loop. - */ - if (segment.nextSegments.length === 1 && - segment.nextSegments[0].isLoopedPrevSegment(segment) - ) { - return true; - } return segment.reachable && segInfoMap[segment.id].calledInEveryPaths; } @@ -250,9 +251,9 @@ module.exports = { } // Reports if `super()` lacked. - const segments = codePath.returnedSegments; - const calledInEveryPaths = segments.every(isCalledInEveryPath); - const calledInSomePaths = segments.some(isCalledInSomePath); + const returnedSegments = codePath.returnedSegments; + const calledInEveryPaths = returnedSegments.every(isCalledInEveryPath); + const calledInSomePaths = returnedSegments.some(isCalledInSomePath); if (!calledInEveryPaths) { context.report({ @@ -267,29 +268,37 @@ module.exports = { /** * Initialize information of a given code path segment. * @param {CodePathSegment} segment A code path segment to initialize. + * @param {CodePathSegment} node Node that starts the segment. * @returns {void} */ - onCodePathSegmentStart(segment) { + onCodePathSegmentStart(segment, node) { funcInfo.currentSegments.add(segment); - if (!(funcInfo && funcInfo.isConstructor && funcInfo.hasExtends)) { + if (!(funcInfo.isConstructor && funcInfo.hasExtends)) { return; } // Initialize info. - const info = segInfoMap[segment.id] = { - calledInSomePaths: false, - calledInEveryPaths: false, - validNodes: [] - }; + const info = segInfoMap[segment.id] = new SegmentInfo(); + + const seenPrevSegments = segment.prevSegments.filter(hasSegmentBeenSeen); // When there are previous segments, aggregates these. - const prevSegments = segment.prevSegments; + if (seenPrevSegments.length > 0) { + info.calledInSomePaths = seenPrevSegments.some(isCalledInSomePath); + info.calledInEveryPaths = seenPrevSegments.every(isCalledInEveryPath); + } - if (prevSegments.length > 0) { - info.calledInSomePaths = prevSegments.some(isCalledInSomePath); - info.calledInEveryPaths = prevSegments.every(isCalledInEveryPath); + /* + * ForStatement > *.update segments are a special case as they are created in advance, + * without seen previous segments. Since they logically don't affect `calledInEveryPaths` + * calculations, and they can never be a lone previous segment of another one, we'll set + * their `calledInEveryPaths` to `true` to effectively ignore them in those calculations. + * . + */ + if (node.parent && node.parent.type === "ForStatement" && node.parent.update === node) { + info.calledInEveryPaths = true; } }, @@ -316,25 +325,30 @@ module.exports = { * @returns {void} */ onCodePathSegmentLoop(fromSegment, toSegment) { - if (!(funcInfo && funcInfo.isConstructor && funcInfo.hasExtends)) { + if (!(funcInfo.isConstructor && funcInfo.hasExtends)) { return; } - // Update information inside of the loop. - const isRealLoop = toSegment.prevSegments.length >= 2; - funcInfo.codePath.traverseSegments( { first: toSegment, last: fromSegment }, - segment => { + (segment, controller) => { const info = segInfoMap[segment.id]; - const prevSegments = segment.prevSegments; - // Updates flags. - info.calledInSomePaths = prevSegments.some(isCalledInSomePath); - info.calledInEveryPaths = prevSegments.every(isCalledInEveryPath); + // skip segments after the loop + if (!info) { + controller.skip(); + return; + } + + const seenPrevSegments = segment.prevSegments.filter(hasSegmentBeenSeen); + const calledInSomePreviousPaths = seenPrevSegments.some(isCalledInSomePath); + const calledInEveryPreviousPaths = seenPrevSegments.every(isCalledInEveryPath); + + info.calledInSomePaths ||= calledInSomePreviousPaths; + info.calledInEveryPaths ||= calledInEveryPreviousPaths; // If flags become true anew, reports the valid nodes. - if (info.calledInSomePaths || isRealLoop) { + if (calledInSomePreviousPaths) { const nodes = info.validNodes; info.validNodes = []; @@ -358,7 +372,7 @@ module.exports = { * @returns {void} */ "CallExpression:exit"(node) { - if (!(funcInfo && funcInfo.isConstructor)) { + if (!(funcInfo.isConstructor && funcInfo.hasExtends)) { return; } @@ -368,41 +382,34 @@ module.exports = { } // Reports if needed. - if (funcInfo.hasExtends) { - const segments = funcInfo.currentSegments; - let duplicate = false; - let info = null; + const segments = funcInfo.currentSegments; + let duplicate = false; + let info = null; - for (const segment of segments) { + for (const segment of segments) { - if (segment.reachable) { - info = segInfoMap[segment.id]; + if (segment.reachable) { + info = segInfoMap[segment.id]; - duplicate = duplicate || info.calledInSomePaths; - info.calledInSomePaths = info.calledInEveryPaths = true; - } + duplicate = duplicate || info.calledInSomePaths; + info.calledInSomePaths = info.calledInEveryPaths = true; } + } - if (info) { - if (duplicate) { - context.report({ - messageId: "duplicate", - node - }); - } else if (!funcInfo.superIsConstructor) { - context.report({ - messageId: "badSuper", - node - }); - } else { - info.validNodes.push(node); - } + if (info) { + if (duplicate) { + context.report({ + messageId: "duplicate", + node + }); + } else if (!funcInfo.superIsConstructor) { + context.report({ + messageId: "badSuper", + node + }); + } else { + info.validNodes.push(node); } - } else if (isAnySegmentReachable(funcInfo.currentSegments)) { - context.report({ - messageId: "unexpected", - node - }); } }, @@ -412,7 +419,7 @@ module.exports = { * @returns {void} */ ReturnStatement(node) { - if (!(funcInfo && funcInfo.isConstructor && funcInfo.hasExtends)) { + if (!(funcInfo.isConstructor && funcInfo.hasExtends)) { return; } @@ -432,14 +439,6 @@ module.exports = { info.calledInSomePaths = info.calledInEveryPaths = true; } } - }, - - /** - * Resets state. - * @returns {void} - */ - "Program:exit"() { - segInfoMap = Object.create(null); } }; } diff --git a/tools/node_modules/eslint/lib/rules/default-case.js b/tools/node_modules/eslint/lib/rules/default-case.js index 4f2fad0c4f8d19..1f83cef3b11355 100644 --- a/tools/node_modules/eslint/lib/rules/default-case.js +++ b/tools/node_modules/eslint/lib/rules/default-case.js @@ -54,7 +54,7 @@ module.exports = { * @returns {any} Last element */ function last(collection) { - return collection[collection.length - 1]; + return collection.at(-1); } //-------------------------------------------------------------------------- diff --git a/tools/node_modules/eslint/lib/rules/eol-last.js b/tools/node_modules/eslint/lib/rules/eol-last.js index 03487b039f352e..c46ff4eff0937a 100644 --- a/tools/node_modules/eslint/lib/rules/eol-last.js +++ b/tools/node_modules/eslint/lib/rules/eol-last.js @@ -45,7 +45,7 @@ module.exports = { Program: function checkBadEOF(node) { const sourceCode = context.sourceCode, src = sourceCode.getText(), - lastLine = sourceCode.lines[sourceCode.lines.length - 1], + lastLine = sourceCode.lines.at(-1), location = { column: lastLine.length, line: sourceCode.lines.length @@ -89,7 +89,7 @@ module.exports = { }); } else if (mode === "never" && endsWithNewline) { - const secondLastLine = sourceCode.lines[sourceCode.lines.length - 2]; + const secondLastLine = sourceCode.lines.at(-2); // File is newline-terminated, but shouldn't be context.report({ diff --git a/tools/node_modules/eslint/lib/rules/func-style.js b/tools/node_modules/eslint/lib/rules/func-style.js index ab83772ef5fb0c..46af53293ea2dc 100644 --- a/tools/node_modules/eslint/lib/rules/func-style.js +++ b/tools/node_modules/eslint/lib/rules/func-style.js @@ -29,6 +29,15 @@ module.exports = { allowArrowFunctions: { type: "boolean", default: false + }, + overrides: { + type: "object", + properties: { + namedExports: { + enum: ["declaration", "expression", "ignore"] + } + }, + additionalProperties: false } }, additionalProperties: false @@ -46,13 +55,22 @@ module.exports = { const style = context.options[0], allowArrowFunctions = context.options[1] && context.options[1].allowArrowFunctions, enforceDeclarations = (style === "declaration"), + exportFunctionStyle = context.options[1] && context.options[1].overrides && context.options[1].overrides.namedExports, stack = []; const nodesToCheck = { FunctionDeclaration(node) { stack.push(false); - if (!enforceDeclarations && node.parent.type !== "ExportDefaultDeclaration") { + if ( + !enforceDeclarations && + node.parent.type !== "ExportDefaultDeclaration" && + (typeof exportFunctionStyle === "undefined" || node.parent.type !== "ExportNamedDeclaration") + ) { + context.report({ node, messageId: "expression" }); + } + + if (node.parent.type === "ExportNamedDeclaration" && exportFunctionStyle === "expression") { context.report({ node, messageId: "expression" }); } }, @@ -63,7 +81,18 @@ module.exports = { FunctionExpression(node) { stack.push(false); - if (enforceDeclarations && node.parent.type === "VariableDeclarator") { + if ( + enforceDeclarations && + node.parent.type === "VariableDeclarator" && + (typeof exportFunctionStyle === "undefined" || node.parent.parent.parent.type !== "ExportNamedDeclaration") + ) { + context.report({ node: node.parent, messageId: "declaration" }); + } + + if ( + node.parent.type === "VariableDeclarator" && node.parent.parent.parent.type === "ExportNamedDeclaration" && + exportFunctionStyle === "declaration" + ) { context.report({ node: node.parent, messageId: "declaration" }); } }, @@ -86,8 +115,17 @@ module.exports = { nodesToCheck["ArrowFunctionExpression:exit"] = function(node) { const hasThisExpr = stack.pop(); - if (enforceDeclarations && !hasThisExpr && node.parent.type === "VariableDeclarator") { - context.report({ node: node.parent, messageId: "declaration" }); + if (!hasThisExpr && node.parent.type === "VariableDeclarator") { + if ( + enforceDeclarations && + (typeof exportFunctionStyle === "undefined" || node.parent.parent.parent.type !== "ExportNamedDeclaration") + ) { + context.report({ node: node.parent, messageId: "declaration" }); + } + + if (node.parent.parent.parent.type === "ExportNamedDeclaration" && exportFunctionStyle === "declaration") { + context.report({ node: node.parent, messageId: "declaration" }); + } } }; } diff --git a/tools/node_modules/eslint/lib/rules/function-paren-newline.js b/tools/node_modules/eslint/lib/rules/function-paren-newline.js index de315a0204b3f8..86268e52a1d557 100644 --- a/tools/node_modules/eslint/lib/rules/function-paren-newline.js +++ b/tools/node_modules/eslint/lib/rules/function-paren-newline.js @@ -218,7 +218,7 @@ module.exports = { case "FunctionExpression": { const leftParen = sourceCode.getFirstToken(node, astUtils.isOpeningParenToken); const rightParen = node.params.length - ? sourceCode.getTokenAfter(node.params[node.params.length - 1], astUtils.isClosingParenToken) + ? sourceCode.getTokenAfter(node.params.at(-1), astUtils.isClosingParenToken) : sourceCode.getTokenAfter(leftParen); return { leftParen, rightParen }; @@ -234,7 +234,7 @@ module.exports = { } const rightParen = node.params.length - ? sourceCode.getTokenAfter(node.params[node.params.length - 1], astUtils.isClosingParenToken) + ? sourceCode.getTokenAfter(node.params.at(-1), astUtils.isClosingParenToken) : sourceCode.getTokenAfter(firstToken); return { diff --git a/tools/node_modules/eslint/lib/rules/indent-legacy.js b/tools/node_modules/eslint/lib/rules/indent-legacy.js index 78bf965cb3fcf6..4adb4230e8db5e 100644 --- a/tools/node_modules/eslint/lib/rules/indent-legacy.js +++ b/tools/node_modules/eslint/lib/rules/indent-legacy.js @@ -789,7 +789,7 @@ module.exports = { if (elements.length > 0) { // Skip last block line check if last item in same line - if (elements[elements.length - 1].loc.end.line === node.loc.end.line) { + if (elements.at(-1).loc.end.line === node.loc.end.line) { return; } } @@ -830,7 +830,7 @@ module.exports = { } let indent; - let nodesToCheck = []; + let nodesToCheck; /* * For this statements we should check indent from statement beginning, @@ -873,7 +873,7 @@ module.exports = { */ function filterOutSameLineVars(node) { return node.declarations.reduce((finalCollection, elem) => { - const lastElem = finalCollection[finalCollection.length - 1]; + const lastElem = finalCollection.at(-1); if ((elem.loc.start.line !== node.loc.start.line && !lastElem) || (lastElem && lastElem.loc.start.line !== elem.loc.start.line)) { @@ -892,7 +892,7 @@ module.exports = { function checkIndentInVariableDeclarations(node) { const elements = filterOutSameLineVars(node); const nodeIndent = getNodeIndent(node).goodChar; - const lastElement = elements[elements.length - 1]; + const lastElement = elements.at(-1); const elementsIndent = nodeIndent + indentSize * options.VariableDeclarator[node.kind]; @@ -999,7 +999,7 @@ module.exports = { }, VariableDeclaration(node) { - if (node.declarations[node.declarations.length - 1].loc.start.line > node.declarations[0].loc.start.line) { + if (node.declarations.at(-1).loc.start.line > node.declarations[0].loc.start.line) { checkIndentInVariableDeclarations(node); } }, diff --git a/tools/node_modules/eslint/lib/rules/indent.js b/tools/node_modules/eslint/lib/rules/indent.js index 9bcbd640c4deec..bc812b13c3e37c 100644 --- a/tools/node_modules/eslint/lib/rules/indent.js +++ b/tools/node_modules/eslint/lib/rules/indent.js @@ -1077,7 +1077,7 @@ module.exports = { "ObjectExpression, ObjectPattern"(node) { const openingCurly = sourceCode.getFirstToken(node); const closingCurly = sourceCode.getTokenAfter( - node.properties.length ? node.properties[node.properties.length - 1] : openingCurly, + node.properties.length ? node.properties.at(-1) : openingCurly, astUtils.isClosingBraceToken ); @@ -1407,7 +1407,7 @@ module.exports = { PropertyDefinition(node) { const firstToken = sourceCode.getFirstToken(node); const maybeSemicolonToken = sourceCode.getLastToken(node); - let keyLastToken = null; + let keyLastToken; // Indent key. if (node.computed) { @@ -1458,7 +1458,7 @@ module.exports = { if (node.cases.length) { sourceCode.getTokensBetween( - node.cases[node.cases.length - 1], + node.cases.at(-1), closingCurly, { includeComments: true, filter: astUtils.isCommentToken } ).forEach(token => offsets.ignoreToken(token)); @@ -1488,7 +1488,7 @@ module.exports = { }, VariableDeclaration(node) { - let variableIndent = Object.prototype.hasOwnProperty.call(options.VariableDeclarator, node.kind) + let variableIndent = Object.hasOwn(options.VariableDeclarator, node.kind) ? options.VariableDeclarator[node.kind] : DEFAULT_VARIABLE_INDENT; @@ -1509,7 +1509,7 @@ module.exports = { variableIndent = DEFAULT_VARIABLE_INDENT; } - if (node.declarations[node.declarations.length - 1].loc.start.line > node.loc.start.line) { + if (node.declarations.at(-1).loc.start.line > node.loc.start.line) { /* * VariableDeclarator indentation is a bit different from other forms of indentation, in that the diff --git a/tools/node_modules/eslint/lib/rules/index.js b/tools/node_modules/eslint/lib/rules/index.js index 840abe73b0fbfe..5ff7b6f5dde261 100644 --- a/tools/node_modules/eslint/lib/rules/index.js +++ b/tools/node_modules/eslint/lib/rules/index.js @@ -229,6 +229,7 @@ module.exports = new LazyLoadingRuleMap(Object.entries({ "no-unused-private-class-members": () => require("./no-unused-private-class-members"), "no-unused-vars": () => require("./no-unused-vars"), "no-use-before-define": () => require("./no-use-before-define"), + "no-useless-assignment": () => require("./no-useless-assignment"), "no-useless-backreference": () => require("./no-useless-backreference"), "no-useless-call": () => require("./no-useless-call"), "no-useless-catch": () => require("./no-useless-catch"), @@ -273,7 +274,6 @@ module.exports = new LazyLoadingRuleMap(Object.entries({ radix: () => require("./radix"), "require-atomic-updates": () => require("./require-atomic-updates"), "require-await": () => require("./require-await"), - "require-jsdoc": () => require("./require-jsdoc"), "require-unicode-regexp": () => require("./require-unicode-regexp"), "require-yield": () => require("./require-yield"), "rest-spread-spacing": () => require("./rest-spread-spacing"), @@ -296,7 +296,6 @@ module.exports = new LazyLoadingRuleMap(Object.entries({ "template-tag-spacing": () => require("./template-tag-spacing"), "unicode-bom": () => require("./unicode-bom"), "use-isnan": () => require("./use-isnan"), - "valid-jsdoc": () => require("./valid-jsdoc"), "valid-typeof": () => require("./valid-typeof"), "vars-on-top": () => require("./vars-on-top"), "wrap-iife": () => require("./wrap-iife"), diff --git a/tools/node_modules/eslint/lib/rules/key-spacing.js b/tools/node_modules/eslint/lib/rules/key-spacing.js index 19fc0167ae0d1b..aa8fd37b8ad333 100644 --- a/tools/node_modules/eslint/lib/rules/key-spacing.js +++ b/tools/node_modules/eslint/lib/rules/key-spacing.js @@ -28,7 +28,7 @@ function containsLineTerminator(str) { * @returns {any} Last element of arr. */ function last(arr) { - return arr[arr.length - 1]; + return arr.at(-1); } /** @@ -489,7 +489,7 @@ module.exports = { } } - let messageId = ""; + let messageId; if (isExtra) { messageId = side === "key" ? "extraKey" : "extraValue"; diff --git a/tools/node_modules/eslint/lib/rules/line-comment-position.js b/tools/node_modules/eslint/lib/rules/line-comment-position.js index 314fac16731774..e7a7788ca9f0d0 100644 --- a/tools/node_modules/eslint/lib/rules/line-comment-position.js +++ b/tools/node_modules/eslint/lib/rules/line-comment-position.js @@ -1,6 +1,7 @@ /** * @fileoverview Rule to enforce the position of line comments * @author Alberto Rodríguez + * @deprecated in ESLint v9.3.0 */ "use strict"; @@ -13,6 +14,8 @@ const astUtils = require("./utils/ast-utils"); /** @type {import('../shared/types').Rule} */ module.exports = { meta: { + deprecated: true, + replacedBy: [], type: "layout", docs: { @@ -68,7 +71,7 @@ module.exports = { above = !options.position || options.position === "above"; ignorePattern = options.ignorePattern; - if (Object.prototype.hasOwnProperty.call(options, "applyDefaultIgnorePatterns")) { + if (Object.hasOwn(options, "applyDefaultIgnorePatterns")) { applyDefaultIgnorePatterns = options.applyDefaultIgnorePatterns; } else { applyDefaultIgnorePatterns = options.applyDefaultPatterns !== false; diff --git a/tools/node_modules/eslint/lib/rules/lines-around-directive.js b/tools/node_modules/eslint/lib/rules/lines-around-directive.js index 1c82d8f98d62c5..fb6871d3e8af25 100644 --- a/tools/node_modules/eslint/lib/rules/lines-around-directive.js +++ b/tools/node_modules/eslint/lib/rules/lines-around-directive.js @@ -166,7 +166,7 @@ module.exports = { reportError(firstDirective, "before", false); } - const lastDirective = directives[directives.length - 1]; + const lastDirective = directives.at(-1); const statements = node.type === "Program" ? node.body : node.body.body; /* @@ -174,7 +174,7 @@ module.exports = { * contains a directive prologue and isn't followed by a comment to ensure * this rule behaves well with padded-blocks. */ - if (lastDirective === statements[statements.length - 1] && !lastDirective.trailingComments) { + if (lastDirective === statements.at(-1) && !lastDirective.trailingComments) { return; } diff --git a/tools/node_modules/eslint/lib/rules/max-depth.js b/tools/node_modules/eslint/lib/rules/max-depth.js index 7a8e9f94ef1cd0..e92c6b4acdd649 100644 --- a/tools/node_modules/eslint/lib/rules/max-depth.js +++ b/tools/node_modules/eslint/lib/rules/max-depth.js @@ -61,7 +61,7 @@ module.exports = { if ( typeof option === "object" && - (Object.prototype.hasOwnProperty.call(option, "maximum") || Object.prototype.hasOwnProperty.call(option, "max")) + (Object.hasOwn(option, "maximum") || Object.hasOwn(option, "max")) ) { maxDepth = option.maximum || option.max; } diff --git a/tools/node_modules/eslint/lib/rules/max-len.js b/tools/node_modules/eslint/lib/rules/max-len.js index 138a0f239fd341..15910d5d95d118 100644 --- a/tools/node_modules/eslint/lib/rules/max-len.js +++ b/tools/node_modules/eslint/lib/rules/max-len.js @@ -124,7 +124,7 @@ module.exports = { } // The options object must be the last option specified… - const options = Object.assign({}, context.options[context.options.length - 1]); + const options = Object.assign({}, context.options.at(-1)); // …but max code length… if (typeof context.options[0] === "number") { @@ -290,7 +290,7 @@ module.exports = { if (isJSXEmptyExpressionInSingleLineContainer(containingNode)) { // push a unique node only - if (comments[comments.length - 1] !== containingNode.parent) { + if (comments.at(-1) !== containingNode.parent) { comments.push(containingNode.parent); } } else { @@ -344,7 +344,7 @@ module.exports = { * comments to check. */ if (commentsIndex < comments.length) { - let comment = null; + let comment; // iterate over comments until we find one past the current line do { diff --git a/tools/node_modules/eslint/lib/rules/max-lines.js b/tools/node_modules/eslint/lib/rules/max-lines.js index e85d44290814b5..d8215794cb05de 100644 --- a/tools/node_modules/eslint/lib/rules/max-lines.js +++ b/tools/node_modules/eslint/lib/rules/max-lines.js @@ -77,7 +77,7 @@ module.exports = { if ( typeof option === "object" && - Object.prototype.hasOwnProperty.call(option, "max") + Object.hasOwn(option, "max") ) { max = option.max; } else if (typeof option === "number") { @@ -148,7 +148,7 @@ module.exports = { * If file ends with a linebreak, `sourceCode.lines` will have one extra empty line at the end. * That isn't a real line, so we shouldn't count it. */ - if (lines.length > 1 && lines[lines.length - 1].text === "") { + if (lines.length > 1 && lines.at(-1).text === "") { lines.pop(); } @@ -174,7 +174,7 @@ module.exports = { }, end: { line: sourceCode.lines.length, - column: sourceCode.lines[sourceCode.lines.length - 1].length + column: sourceCode.lines.at(-1).length } }; diff --git a/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js b/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js index d8f380b3c589ee..448c0bd44333b2 100644 --- a/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js +++ b/tools/node_modules/eslint/lib/rules/max-nested-callbacks.js @@ -59,7 +59,7 @@ module.exports = { if ( typeof option === "object" && - (Object.prototype.hasOwnProperty.call(option, "maximum") || Object.prototype.hasOwnProperty.call(option, "max")) + (Object.hasOwn(option, "maximum") || Object.hasOwn(option, "max")) ) { THRESHOLD = option.maximum || option.max; } else if (typeof option === "number") { diff --git a/tools/node_modules/eslint/lib/rules/max-params.js b/tools/node_modules/eslint/lib/rules/max-params.js index 213477a15c64ce..eb043ab190b224 100644 --- a/tools/node_modules/eslint/lib/rules/max-params.js +++ b/tools/node_modules/eslint/lib/rules/max-params.js @@ -63,7 +63,7 @@ module.exports = { if ( typeof option === "object" && - (Object.prototype.hasOwnProperty.call(option, "maximum") || Object.prototype.hasOwnProperty.call(option, "max")) + (Object.hasOwn(option, "maximum") || Object.hasOwn(option, "max")) ) { numParams = option.maximum || option.max; } diff --git a/tools/node_modules/eslint/lib/rules/max-statements.js b/tools/node_modules/eslint/lib/rules/max-statements.js index 78053831f27522..96d5ea7b8ccbd8 100644 --- a/tools/node_modules/eslint/lib/rules/max-statements.js +++ b/tools/node_modules/eslint/lib/rules/max-statements.js @@ -79,7 +79,7 @@ module.exports = { if ( typeof option === "object" && - (Object.prototype.hasOwnProperty.call(option, "maximum") || Object.prototype.hasOwnProperty.call(option, "max")) + (Object.hasOwn(option, "maximum") || Object.hasOwn(option, "max")) ) { maxStatements = option.maximum || option.max; } else if (typeof option === "number") { diff --git a/tools/node_modules/eslint/lib/rules/multiline-comment-style.js b/tools/node_modules/eslint/lib/rules/multiline-comment-style.js index 6da9862015c541..098e054b9f3a13 100644 --- a/tools/node_modules/eslint/lib/rules/multiline-comment-style.js +++ b/tools/node_modules/eslint/lib/rules/multiline-comment-style.js @@ -1,6 +1,7 @@ /** * @fileoverview enforce a particular style for multiline comments * @author Teddy Katz + * @deprecated in ESLint v9.3.0 */ "use strict"; @@ -13,8 +14,9 @@ const astUtils = require("./utils/ast-utils"); /** @type {import('../shared/types').Rule} */ module.exports = { meta: { + deprecated: true, + replacedBy: [], type: "suggestion", - docs: { description: "Enforce a particular style for multiline comments", recommended: false, @@ -113,7 +115,7 @@ module.exports = { return /^\*\s*$/u.test(lines[0]) && lines.slice(1, -1).every(line => /^\s* /u.test(line)) && - /^\s*$/u.test(lines[lines.length - 1]); + /^\s*$/u.test(lines.at(-1)); } /** @@ -272,11 +274,11 @@ module.exports = { context.report({ loc: { start: firstComment.loc.start, - end: commentGroup[commentGroup.length - 1].loc.end + end: commentGroup.at(-1).loc.end }, messageId: "expectedBlock", fix(fixer) { - const range = [firstComment.range[0], commentGroup[commentGroup.length - 1].range[1]]; + const range = [firstComment.range[0], commentGroup.at(-1).range[1]]; return commentLines.some(value => value.startsWith("/")) ? null @@ -301,7 +303,7 @@ module.exports = { }); } - if (!/^\s*$/u.test(lines[lines.length - 1])) { + if (!/^\s*$/u.test(lines.at(-1))) { context.report({ loc: { start: { line: firstComment.loc.end.line, column: firstComment.loc.end.column - 2 }, @@ -408,12 +410,12 @@ module.exports = { context.report({ loc: { start: firstComment.loc.start, - end: commentGroup[commentGroup.length - 1].loc.end + end: commentGroup.at(-1).loc.end }, messageId: "expectedBlock", fix(fixer) { return fixer.replaceTextRange( - [firstComment.range[0], commentGroup[commentGroup.length - 1].range[1]], + [firstComment.range[0], commentGroup.at(-1).range[1]], convertToBlock(firstComment, commentLines) ); } @@ -459,7 +461,7 @@ module.exports = { tokenBefore && tokenBefore.loc.end.line === comment.loc.start.line - 1 && tokenBefore === commentList[index - 1] ) { - commentGroups[commentGroups.length - 1].push(comment); + commentGroups.at(-1).push(comment); } else { commentGroups.push([comment]); } diff --git a/tools/node_modules/eslint/lib/rules/new-cap.js b/tools/node_modules/eslint/lib/rules/new-cap.js index f81e42fd0c8406..638e64c0a2283a 100644 --- a/tools/node_modules/eslint/lib/rules/new-cap.js +++ b/tools/node_modules/eslint/lib/rules/new-cap.js @@ -40,7 +40,7 @@ const CAPS_ALLOWED = [ function checkArray(obj, key, fallback) { /* c8 ignore start */ - if (Object.prototype.hasOwnProperty.call(obj, key) && !Array.isArray(obj[key])) { + if (Object.hasOwn(obj, key) && !Array.isArray(obj[key])) { throw new TypeError(`${key}, if provided, must be an Array`); }/* c8 ignore stop */ return obj[key] || fallback; diff --git a/tools/node_modules/eslint/lib/rules/newline-after-var.js b/tools/node_modules/eslint/lib/rules/newline-after-var.js index dc8b24d473820c..6e4476412d9966 100644 --- a/tools/node_modules/eslint/lib/rules/newline-after-var.js +++ b/tools/node_modules/eslint/lib/rules/newline-after-var.js @@ -215,7 +215,7 @@ module.exports = { fix(fixer) { const linesBetween = sourceCode.getText().slice(lastToken.range[1], nextToken.range[0]).split(astUtils.LINEBREAK_MATCHER); - return fixer.replaceTextRange([lastToken.range[1], nextToken.range[0]], `${linesBetween.slice(0, -1).join("")}\n${linesBetween[linesBetween.length - 1]}`); + return fixer.replaceTextRange([lastToken.range[1], nextToken.range[0]], `${linesBetween.slice(0, -1).join("")}\n${linesBetween.at(-1)}`); } }); } diff --git a/tools/node_modules/eslint/lib/rules/newline-before-return.js b/tools/node_modules/eslint/lib/rules/newline-before-return.js index 73d8ef99ff3ebd..21e9faf1492b93 100644 --- a/tools/node_modules/eslint/lib/rules/newline-before-return.js +++ b/tools/node_modules/eslint/lib/rules/newline-before-return.js @@ -166,7 +166,7 @@ module.exports = { */ function canFix(node) { const leadingComments = sourceCode.getCommentsBefore(node); - const lastLeadingComment = leadingComments[leadingComments.length - 1]; + const lastLeadingComment = leadingComments.at(-1); const tokenBefore = sourceCode.getTokenBefore(node); if (leadingComments.length === 0) { diff --git a/tools/node_modules/eslint/lib/rules/no-case-declarations.js b/tools/node_modules/eslint/lib/rules/no-case-declarations.js index 8dc5b021d82921..55f82e241f0462 100644 --- a/tools/node_modules/eslint/lib/rules/no-case-declarations.js +++ b/tools/node_modules/eslint/lib/rules/no-case-declarations.js @@ -19,9 +19,12 @@ module.exports = { url: "https://eslint.org/docs/latest/rules/no-case-declarations" }, + hasSuggestions: true, + schema: [], messages: { + addBrackets: "Add {} brackets around the case block.", unexpected: "Unexpected lexical declaration in case block." } }, @@ -53,7 +56,16 @@ module.exports = { if (isLexicalDeclaration(statement)) { context.report({ node: statement, - messageId: "unexpected" + messageId: "unexpected", + suggest: [ + { + messageId: "addBrackets", + fix: fixer => [ + fixer.insertTextBefore(node.consequent[0], "{ "), + fixer.insertTextAfter(node.consequent.at(-1), " }") + ] + } + ] }); } } diff --git a/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js b/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js index 845255a0cc2caa..bc8f0730aece1d 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-binary-expression.js @@ -5,8 +5,7 @@ "use strict"; -const globals = require("globals"); -const { isNullLiteral, isConstant, isReferenceToGlobalVariable, isLogicalAssignmentOperator } = require("./utils/ast-utils"); +const { isNullLiteral, isConstant, isReferenceToGlobalVariable, isLogicalAssignmentOperator, ECMASCRIPT_GLOBALS } = require("./utils/ast-utils"); const NUMERIC_OR_STRING_BINARY_OPERATORS = new Set(["+", "-", "*", "/", "%", "|", "^", "&", "**", "<<", ">>", ">>>"]); @@ -103,7 +102,7 @@ function hasConstantNullishness(scope, node, nonNullish) { return true; case "SequenceExpression": { - const last = node.expressions[node.expressions.length - 1]; + const last = node.expressions.at(-1); return hasConstantNullishness(scope, last, nonNullish); } @@ -149,7 +148,7 @@ function isStaticBoolean(scope, node) { * truthiness. * https://262.ecma-international.org/5.1/#sec-11.9.3 * - * Javascript `==` operator works by converting the boolean to `1` (true) or + * JavaScript `==` operator works by converting the boolean to `1` (true) or * `+0` (false) and then checks the values `==` equality to that number. * @param {Scope} scope The scope in which node was found. * @param {ASTNode} node The node to test. @@ -248,7 +247,7 @@ function hasConstantLooseBooleanComparison(scope, node) { */ return false; case "SequenceExpression": { - const last = node.expressions[node.expressions.length - 1]; + const last = node.expressions.at(-1); return hasConstantLooseBooleanComparison(scope, last); } @@ -299,7 +298,7 @@ function hasConstantStrictBooleanComparison(scope, node) { return true; } case "SequenceExpression": { - const last = node.expressions[node.expressions.length - 1]; + const last = node.expressions.at(-1); return hasConstantStrictBooleanComparison(scope, last); } @@ -376,7 +375,7 @@ function isAlwaysNew(scope, node) { * Catching these is especially useful for primitive constructors * which return boxed values, a surprising gotcha' in JavaScript. */ - return Object.hasOwnProperty.call(globals.builtin, node.callee.name) && + return Object.hasOwn(ECMASCRIPT_GLOBALS, node.callee.name) && isReferenceToGlobalVariable(scope, node.callee); } case "Literal": @@ -384,7 +383,7 @@ function isAlwaysNew(scope, node) { // Regular expressions are objects, and thus always new return typeof node.regex === "object"; case "SequenceExpression": { - const last = node.expressions[node.expressions.length - 1]; + const last = node.expressions.at(-1); return isAlwaysNew(scope, last); } @@ -440,7 +439,7 @@ module.exports = { type: "problem", docs: { description: "Disallow expressions where the operation doesn't affect the value", - recommended: false, + recommended: true, url: "https://eslint.org/docs/latest/rules/no-constant-binary-expression" }, schema: [], diff --git a/tools/node_modules/eslint/lib/rules/no-constant-condition.js b/tools/node_modules/eslint/lib/rules/no-constant-condition.js index 24abe3632803c3..b7d0c7556547a5 100644 --- a/tools/node_modules/eslint/lib/rules/no-constant-condition.js +++ b/tools/node_modules/eslint/lib/rules/no-constant-condition.js @@ -31,8 +31,7 @@ module.exports = { type: "object", properties: { checkLoops: { - type: "boolean", - default: true + enum: ["all", "allExceptWhileTrue", "none", true, false] } }, additionalProperties: false @@ -45,11 +44,17 @@ module.exports = { }, create(context) { - const options = context.options[0] || {}, - checkLoops = options.checkLoops !== false, - loopSetStack = []; + const options = context.options[0] || {}; + let checkLoops = options.checkLoops ?? "allExceptWhileTrue"; + const loopSetStack = []; const sourceCode = context.sourceCode; + if (options.checkLoops === true) { + checkLoops = "all"; + } else if (options.checkLoops === false) { + checkLoops = "none"; + } + let loopsInCurrentScope = new Set(); //-------------------------------------------------------------------------- @@ -120,7 +125,7 @@ module.exports = { * @private */ function checkLoop(node) { - if (checkLoops) { + if (checkLoops === "all" || checkLoops === "allExceptWhileTrue") { trackConstantConditionLoop(node); } } @@ -132,7 +137,13 @@ module.exports = { return { ConditionalExpression: reportIfConstant, IfStatement: reportIfConstant, - WhileStatement: checkLoop, + WhileStatement(node) { + if (node.test.type === "Literal" && node.test.value === true && checkLoops === "allExceptWhileTrue") { + return; + } + + checkLoop(node); + }, "WhileStatement:exit": checkConstantConditionLoopInSet, DoWhileStatement: checkLoop, "DoWhileStatement:exit": checkConstantConditionLoopInSet, diff --git a/tools/node_modules/eslint/lib/rules/no-constructor-return.js b/tools/node_modules/eslint/lib/rules/no-constructor-return.js index d7d98939b9a55e..ccce10ad636e3b 100644 --- a/tools/node_modules/eslint/lib/rules/no-constructor-return.js +++ b/tools/node_modules/eslint/lib/rules/no-constructor-return.js @@ -20,7 +20,7 @@ module.exports = { url: "https://eslint.org/docs/latest/rules/no-constructor-return" }, - schema: {}, + schema: [], fixable: null, @@ -40,7 +40,7 @@ module.exports = { stack.pop(); }, ReturnStatement(node) { - const last = stack[stack.length - 1]; + const last = stack.at(-1); if (!last.parent) { return; diff --git a/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js b/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js index 2a7a9e810dc449..c33553217590b0 100644 --- a/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js +++ b/tools/node_modules/eslint/lib/rules/no-dupe-class-members.js @@ -42,7 +42,7 @@ module.exports = { * - retv.set {boolean} A flag which shows the name is declared as setter. */ function getState(name, isStatic) { - const stateMap = stack[stack.length - 1]; + const stateMap = stack.at(-1); const key = `$${name}`; // to avoid "__proto__". if (!stateMap[key]) { @@ -82,7 +82,7 @@ module.exports = { } const state = getState(name, node.static); - let isDuplicate = false; + let isDuplicate; if (kind === "get") { isDuplicate = (state.init || state.get); diff --git a/tools/node_modules/eslint/lib/rules/no-else-return.js b/tools/node_modules/eslint/lib/rules/no-else-return.js index 9dbf569651c5ab..6e6bf476dd861c 100644 --- a/tools/node_modules/eslint/lib/rules/no-else-return.js +++ b/tools/node_modules/eslint/lib/rules/no-else-return.js @@ -270,7 +270,7 @@ module.exports = { function naiveHasReturn(node) { if (node.type === "BlockStatement") { const body = node.body, - lastChildNode = body[body.length - 1]; + lastChildNode = body.at(-1); return lastChildNode && checkForReturn(lastChildNode); } diff --git a/tools/node_modules/eslint/lib/rules/no-empty-function.js b/tools/node_modules/eslint/lib/rules/no-empty-function.js index 2fcb75534ac334..b7dee94c4ea587 100644 --- a/tools/node_modules/eslint/lib/rules/no-empty-function.js +++ b/tools/node_modules/eslint/lib/rules/no-empty-function.js @@ -40,7 +40,7 @@ const ALLOW_OPTIONS = Object.freeze([ */ function getKind(node) { const parent = node.parent; - let kind = ""; + let kind; if (node.type === "ArrowFunctionExpression") { return "arrowFunctions"; @@ -73,7 +73,7 @@ function getKind(node) { } // Detects prefix. - let prefix = ""; + let prefix; if (node.generator) { prefix = "generator"; diff --git a/tools/node_modules/eslint/lib/rules/no-empty-static-block.js b/tools/node_modules/eslint/lib/rules/no-empty-static-block.js index 81fc449b8cf45f..558c4fad4552e1 100644 --- a/tools/node_modules/eslint/lib/rules/no-empty-static-block.js +++ b/tools/node_modules/eslint/lib/rules/no-empty-static-block.js @@ -15,7 +15,7 @@ module.exports = { docs: { description: "Disallow empty static blocks", - recommended: false, + recommended: true, url: "https://eslint.org/docs/latest/rules/no-empty-static-block" }, diff --git a/tools/node_modules/eslint/lib/rules/no-extend-native.js b/tools/node_modules/eslint/lib/rules/no-extend-native.js index fcbb3855725a6f..a69dd6900391c7 100644 --- a/tools/node_modules/eslint/lib/rules/no-extend-native.js +++ b/tools/node_modules/eslint/lib/rules/no-extend-native.js @@ -10,7 +10,6 @@ //------------------------------------------------------------------------------ const astUtils = require("./utils/ast-utils"); -const globals = require("globals"); //------------------------------------------------------------------------------ // Rule Definition @@ -54,7 +53,7 @@ module.exports = { const sourceCode = context.sourceCode; const exceptions = new Set(config.exceptions || []); const modifiedBuiltins = new Set( - Object.keys(globals.builtin) + Object.keys(astUtils.ECMASCRIPT_GLOBALS) .filter(builtin => builtin[0].toUpperCase() === builtin[0]) .filter(builtin => !exceptions.has(builtin)) ); diff --git a/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js b/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js index f342533bfc935d..012657b7ec875b 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-boolean-cast.js @@ -30,14 +30,28 @@ module.exports = { }, schema: [{ - type: "object", - properties: { - enforceForLogicalOperands: { - type: "boolean", - default: false + anyOf: [ + { + type: "object", + properties: { + enforceForInnerExpressions: { + type: "boolean" + } + }, + additionalProperties: false + }, + + // deprecated + { + type: "object", + properties: { + enforceForLogicalOperands: { + type: "boolean" + } + }, + additionalProperties: false } - }, - additionalProperties: false + ] }], fixable: "code", @@ -49,6 +63,9 @@ module.exports = { create(context) { const sourceCode = context.sourceCode; + const enforceForLogicalOperands = context.options[0]?.enforceForLogicalOperands === true; + const enforceForInnerExpressions = context.options[0]?.enforceForInnerExpressions === true; + // Node types which have a test which will coerce values to booleans. const BOOLEAN_NODE_TYPES = new Set([ @@ -72,19 +89,6 @@ module.exports = { node.callee.name === "Boolean"; } - /** - * Checks whether the node is a logical expression and that the option is enabled - * @param {ASTNode} node the node - * @returns {boolean} if the node is a logical expression and option is enabled - */ - function isLogicalContext(node) { - return node.type === "LogicalExpression" && - (node.operator === "||" || node.operator === "&&") && - (context.options.length && context.options[0].enforceForLogicalOperands === true); - - } - - /** * Check if a node is in a context where its value would be coerced to a boolean at runtime. * @param {ASTNode} node The node @@ -115,12 +119,51 @@ module.exports = { return isInFlaggedContext(node.parent); } - return isInBooleanContext(node) || - (isLogicalContext(node.parent) && + /* + * legacy behavior - enforceForLogicalOperands will only recurse on + * logical expressions, not on other contexts. + * enforceForInnerExpressions will recurse on logical expressions + * as well as the other recursive syntaxes. + */ + + if (enforceForLogicalOperands || enforceForInnerExpressions) { + if (node.parent.type === "LogicalExpression") { + if (node.parent.operator === "||" || node.parent.operator === "&&") { + return isInFlaggedContext(node.parent); + } - // For nested logical statements - isInFlaggedContext(node.parent) - ); + // Check the right hand side of a `??` operator. + if (enforceForInnerExpressions && + node.parent.operator === "??" && + node.parent.right === node + ) { + return isInFlaggedContext(node.parent); + } + } + } + + if (enforceForInnerExpressions) { + if ( + node.parent.type === "ConditionalExpression" && + (node.parent.consequent === node || node.parent.alternate === node) + ) { + return isInFlaggedContext(node.parent); + } + + /* + * Check last expression only in a sequence, i.e. if ((1, 2, Boolean(3))) {}, since + * the others don't affect the result of the expression. + */ + if ( + node.parent.type === "SequenceExpression" && + node.parent.expressions.at(-1) === node + ) { + return isInFlaggedContext(node.parent); + } + + } + + return isInBooleanContext(node); } @@ -147,7 +190,6 @@ module.exports = { * Determines whether the given node needs to be parenthesized when replacing the previous node. * It assumes that `previousNode` is the node to be reported by this rule, so it has a limited list * of possible parent node types. By the same assumption, the node's role in a particular parent is already known. - * For example, if the parent is `ConditionalExpression`, `previousNode` must be its `test` child. * @param {ASTNode} previousNode Previous node. * @param {ASTNode} node The node to check. * @throws {Error} (Unreachable.) @@ -157,6 +199,7 @@ module.exports = { if (previousNode.parent.type === "ChainExpression") { return needsParens(previousNode.parent, node); } + if (isParenthesized(previousNode)) { // parentheses around the previous node will stay, so there is no need for an additional pair @@ -174,9 +217,18 @@ module.exports = { case "DoWhileStatement": case "WhileStatement": case "ForStatement": + case "SequenceExpression": return false; case "ConditionalExpression": - return precedence(node) <= precedence(parent); + if (previousNode === parent.test) { + return precedence(node) <= precedence(parent); + } + if (previousNode === parent.consequent || previousNode === parent.alternate) { + return precedence(node) < precedence({ type: "AssignmentExpression" }); + } + + /* c8 ignore next */ + throw new Error("Ternary child must be test, consequent, or alternate."); case "UnaryExpression": return precedence(node) < precedence(parent); case "LogicalExpression": diff --git a/tools/node_modules/eslint/lib/rules/no-extra-semi.js b/tools/node_modules/eslint/lib/rules/no-extra-semi.js index af7eb88884560d..1daf2242249c0e 100644 --- a/tools/node_modules/eslint/lib/rules/no-extra-semi.js +++ b/tools/node_modules/eslint/lib/rules/no-extra-semi.js @@ -26,7 +26,7 @@ module.exports = { docs: { description: "Disallow unnecessary semicolons", - recommended: true, + recommended: false, url: "https://eslint.org/docs/latest/rules/no-extra-semi" }, diff --git a/tools/node_modules/eslint/lib/rules/no-fallthrough.js b/tools/node_modules/eslint/lib/rules/no-fallthrough.js index 91da12120222be..4c98ddde52545f 100644 --- a/tools/node_modules/eslint/lib/rules/no-fallthrough.js +++ b/tools/node_modules/eslint/lib/rules/no-fallthrough.js @@ -48,9 +48,9 @@ function isFallThroughComment(comment, fallthroughCommentPattern) { * @param {ASTNode} subsequentCase The case after caseWhichFallsThrough. * @param {RuleContext} context A rule context which stores comments. * @param {RegExp} fallthroughCommentPattern A pattern to match comment to. - * @returns {boolean} `true` if the case has a valid fallthrough comment. + * @returns {null | object} the comment if the case has a valid fallthrough comment, otherwise null */ -function hasFallthroughComment(caseWhichFallsThrough, subsequentCase, context, fallthroughCommentPattern) { +function getFallthroughComment(caseWhichFallsThrough, subsequentCase, context, fallthroughCommentPattern) { const sourceCode = context.sourceCode; if (caseWhichFallsThrough.consequent.length === 1 && caseWhichFallsThrough.consequent[0].type === "BlockStatement") { @@ -58,13 +58,17 @@ function hasFallthroughComment(caseWhichFallsThrough, subsequentCase, context, f const commentInBlock = sourceCode.getCommentsBefore(trailingCloseBrace).pop(); if (commentInBlock && isFallThroughComment(commentInBlock.value, fallthroughCommentPattern)) { - return true; + return commentInBlock; } } const comment = sourceCode.getCommentsBefore(subsequentCase).pop(); - return Boolean(comment && isFallThroughComment(comment.value, fallthroughCommentPattern)); + if (comment && isFallThroughComment(comment.value, fallthroughCommentPattern)) { + return comment; + } + + return null; } /** @@ -103,12 +107,17 @@ module.exports = { allowEmptyCase: { type: "boolean", default: false + }, + reportUnusedFallthroughComment: { + type: "boolean", + default: false } }, additionalProperties: false } ], messages: { + unusedFallthroughComment: "Found a comment that would permit fallthrough, but case cannot fall through.", case: "Expected a 'break' statement before 'case'.", default: "Expected a 'break' statement before 'default'." } @@ -120,12 +129,13 @@ module.exports = { let currentCodePathSegments = new Set(); const sourceCode = context.sourceCode; const allowEmptyCase = options.allowEmptyCase || false; + const reportUnusedFallthroughComment = options.reportUnusedFallthroughComment || false; /* * We need to use leading comments of the next SwitchCase node because * trailing comments is wrong if semicolons are omitted. */ - let fallthroughCase = null; + let previousCase = null; let fallthroughCommentPattern = null; if (options.commentPattern) { @@ -168,13 +178,23 @@ module.exports = { * And reports the previous fallthrough node if that does not exist. */ - if (fallthroughCase && (!hasFallthroughComment(fallthroughCase, node, context, fallthroughCommentPattern))) { - context.report({ - messageId: node.test ? "case" : "default", - node - }); + if (previousCase && previousCase.node.parent === node.parent) { + const previousCaseFallthroughComment = getFallthroughComment(previousCase.node, node, context, fallthroughCommentPattern); + + if (previousCase.isFallthrough && !(previousCaseFallthroughComment)) { + context.report({ + messageId: node.test ? "case" : "default", + node + }); + } else if (reportUnusedFallthroughComment && !previousCase.isSwitchExitReachable && previousCaseFallthroughComment) { + context.report({ + messageId: "unusedFallthroughComment", + node: previousCaseFallthroughComment + }); + } + } - fallthroughCase = null; + previousCase = null; }, "SwitchCase:exit"(node) { @@ -185,11 +205,16 @@ module.exports = { * `break`, `return`, or `throw` are unreachable. * And allows empty cases and the last case. */ - if (isAnySegmentReachable(currentCodePathSegments) && - (node.consequent.length > 0 || (!allowEmptyCase && hasBlankLinesBetween(node, nextToken))) && - node.parent.cases[node.parent.cases.length - 1] !== node) { - fallthroughCase = node; - } + const isSwitchExitReachable = isAnySegmentReachable(currentCodePathSegments); + const isFallthrough = isSwitchExitReachable && (node.consequent.length > 0 || (!allowEmptyCase && hasBlankLinesBetween(node, nextToken))) && + node.parent.cases.at(-1) !== node; + + previousCase = { + node, + isSwitchExitReachable, + isFallthrough + }; + } }; } diff --git a/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js b/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js index 36baad3835e4b8..3f8a7c0f9417f7 100644 --- a/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js +++ b/tools/node_modules/eslint/lib/rules/no-implicit-coercion.js @@ -12,7 +12,7 @@ const astUtils = require("./utils/ast-utils"); //------------------------------------------------------------------------------ const INDEX_OF_PATTERN = /^(?:i|lastI)ndexOf$/u; -const ALLOWABLE_OPERATORS = ["~", "!!", "+", "*"]; +const ALLOWABLE_OPERATORS = ["~", "!!", "+", "- -", "-", "*"]; /** * Parses and normalizes an option object. @@ -188,6 +188,7 @@ function getNonEmptyOperand(node) { /** @type {import('../shared/types').Rule} */ module.exports = { meta: { + hasSuggestions: true, type: "suggestion", docs: { @@ -229,7 +230,8 @@ module.exports = { }], messages: { - useRecommendation: "use `{{recommendation}}` instead." + implicitCoercion: "Unexpected implicit coercion encountered. Use `{{recommendation}}` instead.", + useRecommendation: "Use `{{recommendation}}` instead." } }, @@ -241,32 +243,54 @@ module.exports = { * Reports an error and autofixes the node * @param {ASTNode} node An ast node to report the error on. * @param {string} recommendation The recommended code for the issue + * @param {bool} shouldSuggest Whether this report should offer a suggestion * @param {bool} shouldFix Whether this report should fix the node * @returns {void} */ - function report(node, recommendation, shouldFix) { + function report(node, recommendation, shouldSuggest, shouldFix) { + + /** + * Fix function + * @param {RuleFixer} fixer The fixer to fix. + * @returns {Fix} The fix object. + */ + function fix(fixer) { + const tokenBefore = sourceCode.getTokenBefore(node); + + if ( + tokenBefore?.range[1] === node.range[0] && + !astUtils.canTokensBeAdjacent(tokenBefore, recommendation) + ) { + return fixer.replaceText(node, ` ${recommendation}`); + } + + return fixer.replaceText(node, recommendation); + } + context.report({ node, - messageId: "useRecommendation", - data: { - recommendation - }, + messageId: "implicitCoercion", + data: { recommendation }, fix(fixer) { if (!shouldFix) { return null; } - const tokenBefore = sourceCode.getTokenBefore(node); - - if ( - tokenBefore && - tokenBefore.range[1] === node.range[0] && - !astUtils.canTokensBeAdjacent(tokenBefore, recommendation) - ) { - return fixer.replaceText(node, ` ${recommendation}`); + return fix(fixer); + }, + suggest: [ + { + messageId: "useRecommendation", + data: { recommendation }, + fix(fixer) { + if (shouldFix || !shouldSuggest) { + return null; + } + + return fix(fixer); + } } - return fixer.replaceText(node, recommendation); - } + ] }); } @@ -278,8 +302,10 @@ module.exports = { operatorAllowed = options.allow.includes("!!"); if (!operatorAllowed && options.boolean && isDoubleLogicalNegating(node)) { const recommendation = `Boolean(${sourceCode.getText(node.argument.argument)})`; + const variable = astUtils.getVariableByName(sourceCode.getScope(node), "Boolean"); + const booleanExists = variable?.identifiers.length === 0; - report(node, recommendation, true); + report(node, recommendation, true, booleanExists); } // ~foo.indexOf(bar) @@ -290,7 +316,7 @@ module.exports = { const comparison = node.argument.type === "ChainExpression" ? ">= 0" : "!== -1"; const recommendation = `${sourceCode.getText(node.argument)} ${comparison}`; - report(node, recommendation, false); + report(node, recommendation, false, false); } // +foo @@ -298,7 +324,15 @@ module.exports = { if (!operatorAllowed && options.number && node.operator === "+" && !isNumeric(node.argument)) { const recommendation = `Number(${sourceCode.getText(node.argument)})`; - report(node, recommendation, true); + report(node, recommendation, true, false); + } + + // -(-foo) + operatorAllowed = options.allow.includes("- -"); + if (!operatorAllowed && options.number && node.operator === "-" && node.argument.type === "UnaryExpression" && node.argument.operator === "-" && !isNumeric(node.argument.argument)) { + const recommendation = `Number(${sourceCode.getText(node.argument.argument)})`; + + report(node, recommendation, true, false); } }, @@ -314,7 +348,15 @@ module.exports = { if (nonNumericOperand) { const recommendation = `Number(${sourceCode.getText(nonNumericOperand)})`; - report(node, recommendation, true); + report(node, recommendation, true, false); + } + + // foo - 0 + operatorAllowed = options.allow.includes("-"); + if (!operatorAllowed && options.number && node.operator === "-" && node.right.type === "Literal" && node.right.value === 0 && !isNumeric(node.left)) { + const recommendation = `Number(${sourceCode.getText(node.left)})`; + + report(node, recommendation, true, false); } // "" + foo @@ -322,7 +364,7 @@ module.exports = { if (!operatorAllowed && options.string && isConcatWithEmptyString(node)) { const recommendation = `String(${sourceCode.getText(getNonEmptyOperand(node))})`; - report(node, recommendation, true); + report(node, recommendation, true, false); } }, @@ -335,7 +377,7 @@ module.exports = { const code = sourceCode.getText(getNonEmptyOperand(node)); const recommendation = `${code} = String(${code})`; - report(node, recommendation, true); + report(node, recommendation, true, false); } }, @@ -373,7 +415,7 @@ module.exports = { const code = sourceCode.getText(node.expressions[0]); const recommendation = `String(${code})`; - report(node, recommendation, true); + report(node, recommendation, true, false); } }; } diff --git a/tools/node_modules/eslint/lib/rules/no-inner-declarations.js b/tools/node_modules/eslint/lib/rules/no-inner-declarations.js index f4bae43e58dabf..a690d95bb9c30a 100644 --- a/tools/node_modules/eslint/lib/rules/no-inner-declarations.js +++ b/tools/node_modules/eslint/lib/rules/no-inner-declarations.js @@ -49,13 +49,22 @@ module.exports = { docs: { description: "Disallow variable or `function` declarations in nested blocks", - recommended: true, + recommended: false, url: "https://eslint.org/docs/latest/rules/no-inner-declarations" }, schema: [ { enum: ["functions", "both"] + }, + { + type: "object", + properties: { + blockScopedFunctions: { + enum: ["allow", "disallow"] + } + }, + additionalProperties: false } ], @@ -66,6 +75,10 @@ module.exports = { create(context) { + const sourceCode = context.sourceCode; + const ecmaVersion = context.languageOptions.ecmaVersion; + const blockScopedFunctions = context.options[1]?.blockScopedFunctions ?? "allow"; + /** * Ensure that a given node is at a program or function body's root. * @param {ASTNode} node Declaration node to check. @@ -97,7 +110,15 @@ module.exports = { return { - FunctionDeclaration: check, + FunctionDeclaration(node) { + const isInStrictCode = sourceCode.getScope(node).upper.isStrict; + + if (blockScopedFunctions === "allow" && ecmaVersion >= 2015 && isInStrictCode) { + return; + } + + check(node); + }, VariableDeclaration(node) { if (context.options[0] === "both" && node.kind === "var") { check(node); diff --git a/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js b/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js index 3c42a68e8a3ad0..99fa6295af27f6 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-regexp.js @@ -55,7 +55,7 @@ module.exports = { const temp = options.allowConstructorFlags.join("").replace(validFlags, ""); if (temp) { - allowedFlags = new RegExp(`[${temp}]`, "giu"); + allowedFlags = new RegExp(`[${temp}]`, "gu"); } } diff --git a/tools/node_modules/eslint/lib/rules/no-invalid-this.js b/tools/node_modules/eslint/lib/rules/no-invalid-this.js index 9e214035c33820..4ea228898525bf 100644 --- a/tools/node_modules/eslint/lib/rules/no-invalid-this.js +++ b/tools/node_modules/eslint/lib/rules/no-invalid-this.js @@ -74,7 +74,7 @@ module.exports = { * an object which has a flag that whether or not `this` keyword is valid. */ stack.getCurrent = function() { - const current = this[this.length - 1]; + const current = this.at(-1); if (!current.init) { current.init = true; diff --git a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js index 767eec2becf5fe..2e27089269be24 100644 --- a/tools/node_modules/eslint/lib/rules/no-lone-blocks.js +++ b/tools/node_modules/eslint/lib/rules/no-lone-blocks.js @@ -78,7 +78,7 @@ module.exports = { const block = node.parent; - if (loneBlocks[loneBlocks.length - 1] === block) { + if (loneBlocks.at(-1) === block) { loneBlocks.pop(); } } @@ -101,7 +101,7 @@ module.exports = { } }, "BlockStatement:exit"(node) { - if (loneBlocks.length > 0 && loneBlocks[loneBlocks.length - 1] === node) { + if (loneBlocks.length > 0 && loneBlocks.at(-1) === node) { loneBlocks.pop(); report(node); } else if ( @@ -117,7 +117,7 @@ module.exports = { }; ruleDef.VariableDeclaration = function(node) { - if (node.kind === "let" || node.kind === "const") { + if (node.kind !== "var") { markLoneBlock(node); } }; diff --git a/tools/node_modules/eslint/lib/rules/no-loss-of-precision.js b/tools/node_modules/eslint/lib/rules/no-loss-of-precision.js index b3635e3d509fed..c50d8a890555b3 100644 --- a/tools/node_modules/eslint/lib/rules/no-loss-of-precision.js +++ b/tools/node_modules/eslint/lib/rules/no-loss-of-precision.js @@ -64,7 +64,7 @@ module.exports = { */ function notBaseTenLosesPrecision(node) { const rawString = getRaw(node).toUpperCase(); - let base = 0; + let base; if (rawString.startsWith("0B")) { base = 2; diff --git a/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js b/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js index 20591df2cc9952..d10e0812a83a72 100644 --- a/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js +++ b/tools/node_modules/eslint/lib/rules/no-misleading-character-class.js @@ -3,11 +3,18 @@ */ "use strict"; -const { CALL, CONSTRUCT, ReferenceTracker, getStringIfConstant } = require("@eslint-community/eslint-utils"); +const { + CALL, + CONSTRUCT, + ReferenceTracker, + getStaticValue, + getStringIfConstant +} = require("@eslint-community/eslint-utils"); const { RegExpParser, visitRegExpAST } = require("@eslint-community/regexpp"); const { isCombiningCharacter, isEmojiModifier, isRegionalIndicatorSymbol, isSurrogatePair } = require("./utils/unicode"); const astUtils = require("./utils/ast-utils.js"); const { isValidWithUnicodeFlag } = require("./utils/regular-expressions"); +const { parseStringLiteral, parseTemplateToken } = require("./utils/char-source"); //------------------------------------------------------------------------------ // Helpers @@ -62,7 +69,6 @@ function *iterateCharacterSequence(nodes) { } } - /** * Checks whether the given character node is a Unicode code point escape or not. * @param {Character} char the character node to check. @@ -73,80 +79,184 @@ function isUnicodeCodePointEscape(char) { } /** - * Each function returns `true` if it detects that kind of problem. - * @type {Record boolean>} + * Each function returns matched characters if it detects that kind of problem. + * @type {Record IterableIterator>} */ -const hasCharacterSequence = { - surrogatePairWithoutUFlag(chars) { - return chars.some((c, i) => { - if (i === 0) { - return false; +const findCharacterSequences = { + *surrogatePairWithoutUFlag(chars) { + for (const [index, char] of chars.entries()) { + const previous = chars[index - 1]; + + if ( + previous && char && + isSurrogatePair(previous.value, char.value) && + !isUnicodeCodePointEscape(previous) && + !isUnicodeCodePointEscape(char) + ) { + yield [previous, char]; } - const c1 = chars[i - 1]; - - return ( - isSurrogatePair(c1.value, c.value) && - !isUnicodeCodePointEscape(c1) && - !isUnicodeCodePointEscape(c) - ); - }); + } }, - surrogatePair(chars) { - return chars.some((c, i) => { - if (i === 0) { - return false; - } - const c1 = chars[i - 1]; + *surrogatePair(chars) { + for (const [index, char] of chars.entries()) { + const previous = chars[index - 1]; - return ( - isSurrogatePair(c1.value, c.value) && + if ( + previous && char && + isSurrogatePair(previous.value, char.value) && ( - isUnicodeCodePointEscape(c1) || - isUnicodeCodePointEscape(c) + isUnicodeCodePointEscape(previous) || + isUnicodeCodePointEscape(char) ) - ); - }); + ) { + yield [previous, char]; + } + } }, - combiningClass(chars) { - return chars.some((c, i) => ( - i !== 0 && - isCombiningCharacter(c.value) && - !isCombiningCharacter(chars[i - 1].value) - )); + *combiningClass(chars, unfilteredChars) { + + /* + * When `allowEscape` is `true`, a combined character should only be allowed if the combining mark appears as an escape sequence. + * This means that the base character should be considered even if it's escaped. + */ + for (const [index, char] of chars.entries()) { + const previous = unfilteredChars[index - 1]; + + if ( + previous && char && + isCombiningCharacter(char.value) && + !isCombiningCharacter(previous.value) + ) { + yield [previous, char]; + } + } }, - emojiModifier(chars) { - return chars.some((c, i) => ( - i !== 0 && - isEmojiModifier(c.value) && - !isEmojiModifier(chars[i - 1].value) - )); + *emojiModifier(chars) { + for (const [index, char] of chars.entries()) { + const previous = chars[index - 1]; + + if ( + previous && char && + isEmojiModifier(char.value) && + !isEmojiModifier(previous.value) + ) { + yield [previous, char]; + } + } }, - regionalIndicatorSymbol(chars) { - return chars.some((c, i) => ( - i !== 0 && - isRegionalIndicatorSymbol(c.value) && - isRegionalIndicatorSymbol(chars[i - 1].value) - )); + *regionalIndicatorSymbol(chars) { + for (const [index, char] of chars.entries()) { + const previous = chars[index - 1]; + + if ( + previous && char && + isRegionalIndicatorSymbol(char.value) && + isRegionalIndicatorSymbol(previous.value) + ) { + yield [previous, char]; + } + } }, - zwj(chars) { - const lastIndex = chars.length - 1; + *zwj(chars) { + let sequence = null; + + for (const [index, char] of chars.entries()) { + const previous = chars[index - 1]; + const next = chars[index + 1]; + + if ( + previous && char && next && + char.value === 0x200d && + previous.value !== 0x200d && + next.value !== 0x200d + ) { + if (sequence) { + if (sequence.at(-1) === previous) { + sequence.push(char, next); // append to the sequence + } else { + yield sequence; + sequence = chars.slice(index - 1, index + 2); + } + } else { + sequence = chars.slice(index - 1, index + 2); + } + } + } - return chars.some((c, i) => ( - i !== 0 && - i !== lastIndex && - c.value === 0x200d && - chars[i - 1].value !== 0x200d && - chars[i + 1].value !== 0x200d - )); + if (sequence) { + yield sequence; + } } }; -const kinds = Object.keys(hasCharacterSequence); +const kinds = Object.keys(findCharacterSequences); + +/** + * Gets the value of the given node if it's a static value other than a regular expression object, + * or the node's `regex` property. + * The purpose of this method is to provide a replacement for `getStaticValue` in environments where certain regular expressions cannot be evaluated. + * A known example is Node.js 18 which does not support the `v` flag. + * Calling `getStaticValue` on a regular expression node with the `v` flag on Node.js 18 always returns `null`. + * A limitation of this method is that it can only detect a regular expression if the specified node is itself a regular expression literal node. + * @param {ASTNode | undefined} node The node to be inspected. + * @param {Scope} initialScope Scope to start finding variables. This function tries to resolve identifier references which are in the given scope. + * @returns {{ value: any } | { regex: { pattern: string, flags: string } } | null} The static value of the node, or `null`. + */ +function getStaticValueOrRegex(node, initialScope) { + if (!node) { + return null; + } + if (node.type === "Literal" && node.regex) { + return { regex: node.regex }; + } + + const staticValue = getStaticValue(node, initialScope); + + if (staticValue?.value instanceof RegExp) { + return null; + } + return staticValue; +} + +/** + * Checks whether a specified regexpp character is represented as an acceptable escape sequence. + * This function requires the source text of the character to be known. + * @param {Character} char Character to check. + * @param {string} charSource Source text of the character to check. + * @returns {boolean} Whether the specified regexpp character is represented as an acceptable escape sequence. + */ +function checkForAcceptableEscape(char, charSource) { + if (!charSource.startsWith("\\")) { + return false; + } + const match = /(?<=^\\+).$/su.exec(charSource); + + return match?.[0] !== String.fromCodePoint(char.value); +} + +/** + * Checks whether a specified regexpp character is represented as an acceptable escape sequence. + * This function works with characters that are produced by a string or template literal. + * It requires the source text and the CodeUnit list of the literal to be known. + * @param {Character} char Character to check. + * @param {string} nodeSource Source text of the string or template literal that produces the character. + * @param {CodeUnit[]} codeUnits List of CodeUnit objects of the literal that produces the character. + * @returns {boolean} Whether the specified regexpp character is represented as an acceptable escape sequence. + */ +function checkForAcceptableEscapeInString(char, nodeSource, codeUnits) { + const firstIndex = char.start; + const lastIndex = char.end - 1; + const start = codeUnits[firstIndex].start; + const end = codeUnits[lastIndex].end; + const charSource = nodeSource.slice(start, end); + + return checkForAcceptableEscape(char, charSource); +} //------------------------------------------------------------------------------ // Rule Definition @@ -165,7 +275,18 @@ module.exports = { hasSuggestions: true, - schema: [], + schema: [ + { + type: "object", + properties: { + allowEscape: { + type: "boolean", + default: false + } + }, + additionalProperties: false + } + ], messages: { surrogatePairWithoutUFlag: "Unexpected surrogate pair in character class. Use 'u' flag.", @@ -178,8 +299,10 @@ module.exports = { } }, create(context) { + const allowEscape = context.options[0]?.allowEscape; const sourceCode = context.sourceCode; const parser = new RegExpParser(); + const checkedPatternNodes = new Set(); /** * Verify a given regular expression. @@ -208,21 +331,108 @@ module.exports = { return; } - const foundKinds = new Set(); + let codeUnits = null; + + /** + * Checks whether a specified regexpp character is represented as an acceptable escape sequence. + * For the purposes of this rule, an escape sequence is considered acceptable if it consists of one or more backslashes followed by the character being escaped. + * @param {Character} char Character to check. + * @returns {boolean} Whether the specified regexpp character is represented as an acceptable escape sequence. + */ + function isAcceptableEscapeSequence(char) { + if (node.type === "Literal" && node.regex) { + return checkForAcceptableEscape(char, char.raw); + } + if (node.type === "Literal" && typeof node.value === "string") { + const nodeSource = node.raw; + + codeUnits ??= parseStringLiteral(nodeSource); + + return checkForAcceptableEscapeInString(char, nodeSource, codeUnits); + } + if (astUtils.isStaticTemplateLiteral(node)) { + const nodeSource = sourceCode.getText(node); + + codeUnits ??= parseTemplateToken(nodeSource); + + return checkForAcceptableEscapeInString(char, nodeSource, codeUnits); + } + return false; + } + + const foundKindMatches = new Map(); visitRegExpAST(patternNode, { onCharacterClassEnter(ccNode) { - for (const chars of iterateCharacterSequence(ccNode.elements)) { + for (const unfilteredChars of iterateCharacterSequence(ccNode.elements)) { + let chars; + + if (allowEscape) { + + // Replace escape sequences with null to avoid having them flagged. + chars = unfilteredChars.map(char => (isAcceptableEscapeSequence(char) ? null : char)); + } else { + chars = unfilteredChars; + } for (const kind of kinds) { - if (hasCharacterSequence[kind](chars)) { - foundKinds.add(kind); + const matches = findCharacterSequences[kind](chars, unfilteredChars); + + if (foundKindMatches.has(kind)) { + foundKindMatches.get(kind).push(...matches); + } else { + foundKindMatches.set(kind, [...matches]); } } } } }); - for (const kind of foundKinds) { + /** + * Finds the report loc(s) for a range of matches. + * Only literals and expression-less templates generate granular errors. + * @param {Character[][]} matches Lists of individual characters being reported on. + * @returns {Location[]} locs for context.report. + * @see https://github.com/eslint/eslint/pull/17515 + */ + function getNodeReportLocations(matches) { + if (!astUtils.isStaticTemplateLiteral(node) && node.type !== "Literal") { + return matches.length ? [node.loc] : []; + } + return matches.map(chars => { + const firstIndex = chars[0].start; + const lastIndex = chars.at(-1).end - 1; + let start; + let end; + + if (node.type === "TemplateLiteral") { + const source = sourceCode.getText(node); + const offset = node.range[0]; + + codeUnits ??= parseTemplateToken(source); + start = offset + codeUnits[firstIndex].start; + end = offset + codeUnits[lastIndex].end; + } else if (typeof node.value === "string") { // String Literal + const source = node.raw; + const offset = node.range[0]; + + codeUnits ??= parseStringLiteral(source); + start = offset + codeUnits[firstIndex].start; + end = offset + codeUnits[lastIndex].end; + } else { // RegExp Literal + const offset = node.range[0] + 1; // Add 1 to skip the leading slash. + + start = offset + firstIndex; + end = offset + lastIndex + 1; + } + + return { + start: sourceCode.getLocFromIndex(start), + end: sourceCode.getLocFromIndex(end) + }; + }); + } + + for (const [kind, matches] of foundKindMatches) { let suggest; if (kind === "surrogatePairWithoutUFlag") { @@ -232,16 +442,24 @@ module.exports = { }]; } - context.report({ - node, - messageId: kind, - suggest - }); + const locs = getNodeReportLocations(matches); + + for (const loc of locs) { + context.report({ + node, + loc, + messageId: kind, + suggest + }); + } } } return { "Literal[regex]"(node) { + if (checkedPatternNodes.has(node)) { + return; + } verify(node, node.regex.pattern, node.regex.flags, fixer => { if (!isValidWithUnicodeFlag(context.languageOptions.ecmaVersion, node.regex.pattern)) { return null; @@ -262,12 +480,31 @@ module.exports = { for (const { node: refNode } of tracker.iterateGlobalReferences({ RegExp: { [CALL]: true, [CONSTRUCT]: true } })) { + let pattern, flags; const [patternNode, flagsNode] = refNode.arguments; - const pattern = getStringIfConstant(patternNode, scope); - const flags = getStringIfConstant(flagsNode, scope); + const evaluatedPattern = getStaticValueOrRegex(patternNode, scope); + + if (!evaluatedPattern) { + continue; + } + if (flagsNode) { + if (evaluatedPattern.regex) { + pattern = evaluatedPattern.regex.pattern; + checkedPatternNodes.add(patternNode); + } else { + pattern = String(evaluatedPattern.value); + } + flags = getStringIfConstant(flagsNode, scope); + } else { + if (evaluatedPattern.regex) { + continue; + } + pattern = String(evaluatedPattern.value); + flags = ""; + } - if (typeof pattern === "string") { - verify(refNode, pattern, flags || "", fixer => { + if (typeof flags === "string") { + verify(patternNode, pattern, flags, fixer => { if (!isValidWithUnicodeFlag(context.languageOptions.ecmaVersion, pattern)) { return null; diff --git a/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js b/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js index 7698b5da7fa9ce..18e6114a045a67 100644 --- a/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js +++ b/tools/node_modules/eslint/lib/rules/no-mixed-spaces-and-tabs.js @@ -18,7 +18,7 @@ module.exports = { docs: { description: "Disallow mixed spaces and tabs for indentation", - recommended: true, + recommended: false, url: "https://eslint.org/docs/latest/rules/no-mixed-spaces-and-tabs" }, diff --git a/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js b/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js index 5d038ff05b2e29..b597138e8f4ef2 100644 --- a/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js +++ b/tools/node_modules/eslint/lib/rules/no-multiple-empty-lines.js @@ -70,7 +70,7 @@ module.exports = { const sourceCode = context.sourceCode; // Swallow the final newline, as some editors add it automatically and we don't want it to cause an issue - const allLines = sourceCode.lines[sourceCode.lines.length - 1] === "" ? sourceCode.lines.slice(0, -1) : sourceCode.lines; + const allLines = sourceCode.lines.at(-1) === "" ? sourceCode.lines.slice(0, -1) : sourceCode.lines; const templateLiteralLines = new Set(); //-------------------------------------------------------------------------- diff --git a/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js b/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js index ee70d281d759c5..699390dd5a19d8 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js +++ b/tools/node_modules/eslint/lib/rules/no-new-native-nonconstructor.js @@ -22,7 +22,7 @@ module.exports = { docs: { description: "Disallow `new` operators with global non-constructor functions", - recommended: false, + recommended: true, url: "https://eslint.org/docs/latest/rules/no-new-native-nonconstructor" }, diff --git a/tools/node_modules/eslint/lib/rules/no-new-symbol.js b/tools/node_modules/eslint/lib/rules/no-new-symbol.js index 99830220244e12..85f9e62a6d71ea 100644 --- a/tools/node_modules/eslint/lib/rules/no-new-symbol.js +++ b/tools/node_modules/eslint/lib/rules/no-new-symbol.js @@ -1,6 +1,7 @@ /** * @fileoverview Rule to disallow use of the new operator with the `Symbol` object * @author Alberto Rodríguez + * @deprecated in ESLint v9.0.0 */ "use strict"; @@ -16,10 +17,16 @@ module.exports = { docs: { description: "Disallow `new` operators with the `Symbol` object", - recommended: true, + recommended: false, url: "https://eslint.org/docs/latest/rules/no-new-symbol" }, + deprecated: true, + + replacedBy: [ + "no-new-native-nonconstructor" + ], + schema: [], messages: { diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-exports.js b/tools/node_modules/eslint/lib/rules/no-restricted-exports.js index a1d54b085fdd86..8da2f2dfe01c35 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-exports.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-exports.js @@ -37,7 +37,8 @@ module.exports = { type: "string" }, uniqueItems: true - } + }, + restrictedNamedExportsPattern: { type: "string" } }, additionalProperties: false }, @@ -52,6 +53,7 @@ module.exports = { }, uniqueItems: true }, + restrictedNamedExportsPattern: { type: "string" }, restrictDefaultExports: { type: "object", properties: { @@ -98,6 +100,7 @@ module.exports = { create(context) { const restrictedNames = new Set(context.options[0] && context.options[0].restrictedNamedExports); + const restrictedNamePattern = context.options[0] && context.options[0].restrictedNamedExportsPattern; const restrictDefaultExports = context.options[0] && context.options[0].restrictDefaultExports; const sourceCode = context.sourceCode; @@ -109,7 +112,15 @@ module.exports = { function checkExportedName(node) { const name = astUtils.getModuleExportName(node); - if (restrictedNames.has(name)) { + let matchesRestrictedNamePattern = false; + + if (restrictedNamePattern && name !== "default") { + const patternRegex = new RegExp(restrictedNamePattern, "u"); + + matchesRestrictedNamePattern = patternRegex.test(name); + } + + if (matchesRestrictedNamePattern || restrictedNames.has(name)) { context.report({ node, messageId: "restrictedNamed", diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-globals.js b/tools/node_modules/eslint/lib/rules/no-restricted-globals.js index 919a8ee0ad8e3b..060d50a043717b 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-globals.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-globals.js @@ -97,7 +97,7 @@ module.exports = { * @private */ function isRestricted(name) { - return Object.prototype.hasOwnProperty.call(restrictedGlobalMessages, name); + return Object.hasOwn(restrictedGlobalMessages, name); } return { diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-imports.js b/tools/node_modules/eslint/lib/rules/no-restricted-imports.js index eb59f4c23a9b56..062be909ef0ca9 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-imports.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-imports.js @@ -34,10 +34,17 @@ const arrayOfStringsOrObjects = { items: { type: "string" } + }, + allowImportNames: { + type: "array", + items: { + type: "string" + } } }, additionalProperties: false, - required: ["name"] + required: ["name"], + not: { required: ["importNames", "allowImportNames"] } } ] }, @@ -66,6 +73,14 @@ const arrayOfStringsOrObjectPatterns = { minItems: 1, uniqueItems: true }, + allowImportNames: { + type: "array", + items: { + type: "string" + }, + minItems: 1, + uniqueItems: true + }, group: { type: "array", items: { @@ -77,6 +92,9 @@ const arrayOfStringsOrObjectPatterns = { importNamePattern: { type: "string" }, + allowImportNamePattern: { + type: "string" + }, message: { type: "string", minLength: 1 @@ -86,7 +104,16 @@ const arrayOfStringsOrObjectPatterns = { } }, additionalProperties: false, - required: ["group"] + required: ["group"], + not: { + anyOf: [ + { required: ["importNames", "allowImportNames"] }, + { required: ["importNamePattern", "allowImportNamePattern"] }, + { required: ["importNames", "allowImportNamePattern"] }, + { required: ["importNamePattern", "allowImportNames"] }, + { required: ["allowImportNames", "allowImportNamePattern"] } + ] + } }, uniqueItems: true } @@ -131,7 +158,23 @@ module.exports = { importName: "'{{importName}}' import from '{{importSource}}' is restricted.", // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period - importNameWithCustomMessage: "'{{importName}}' import from '{{importSource}}' is restricted. {{customMessage}}" + importNameWithCustomMessage: "'{{importName}}' import from '{{importSource}}' is restricted. {{customMessage}}", + + allowedImportName: "'{{importName}}' import from '{{importSource}}' is restricted because only '{{allowedImportNames}}' import(s) is/are allowed.", + // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period + allowedImportNameWithCustomMessage: "'{{importName}}' import from '{{importSource}}' is restricted because only '{{allowedImportNames}}' import(s) is/are allowed. {{customMessage}}", + + everythingWithAllowImportNames: "* import is invalid because only '{{allowedImportNames}}' from '{{importSource}}' is/are allowed.", + // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period + everythingWithAllowImportNamesAndCustomMessage: "* import is invalid because only '{{allowedImportNames}}' from '{{importSource}}' is/are allowed. {{customMessage}}", + + allowedImportNamePattern: "'{{importName}}' import from '{{importSource}}' is restricted because only imports that match the pattern '{{allowedImportNamePattern}}' are allowed from '{{importSource}}'.", + // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period + allowedImportNamePatternWithCustomMessage: "'{{importName}}' import from '{{importSource}}' is restricted because only imports that match the pattern '{{allowedImportNamePattern}}' are allowed from '{{importSource}}'. {{customMessage}}", + + everythingWithAllowedImportNamePattern: "* import is invalid because only imports that match the pattern '{{allowedImportNamePattern}}' from '{{importSource}}' are allowed.", + // eslint-disable-next-line eslint-plugin/report-message-format -- Custom message might not end in a period + everythingWithAllowedImportNamePatternWithCustomMessage: "* import is invalid because only imports that match the pattern '{{allowedImportNamePattern}}' from '{{importSource}}' are allowed. {{customMessage}}" }, schema: { @@ -158,20 +201,29 @@ module.exports = { const options = Array.isArray(context.options) ? context.options : []; const isPathAndPatternsObject = typeof options[0] === "object" && - (Object.prototype.hasOwnProperty.call(options[0], "paths") || Object.prototype.hasOwnProperty.call(options[0], "patterns")); + (Object.hasOwn(options[0], "paths") || Object.hasOwn(options[0], "patterns")); const restrictedPaths = (isPathAndPatternsObject ? options[0].paths : context.options) || []; - const restrictedPathMessages = restrictedPaths.reduce((memo, importSource) => { + const groupedRestrictedPaths = restrictedPaths.reduce((memo, importSource) => { + const path = typeof importSource === "string" + ? importSource + : importSource.name; + + if (!memo[path]) { + memo[path] = []; + } + if (typeof importSource === "string") { - memo[importSource] = { message: null }; + memo[path].push({}); } else { - memo[importSource.name] = { + memo[path].push({ message: importSource.message, - importNames: importSource.importNames - }; + importNames: importSource.importNames, + allowImportNames: importSource.allowImportNames + }); } return memo; - }, {}); + }, Object.create(null)); // Handle patterns too, either as strings or groups let restrictedPatterns = (isPathAndPatternsObject ? options[0].patterns : []) || []; @@ -182,12 +234,18 @@ module.exports = { } // relative paths are supported for this rule - const restrictedPatternGroups = restrictedPatterns.map(({ group, message, caseSensitive, importNames, importNamePattern }) => ({ - matcher: ignore({ allowRelativePaths: true, ignorecase: !caseSensitive }).add(group), - customMessage: message, - importNames, - importNamePattern - })); + const restrictedPatternGroups = restrictedPatterns.map( + ({ group, message, caseSensitive, importNames, importNamePattern, allowImportNames, allowImportNamePattern }) => ( + { + matcher: ignore({ allowRelativePaths: true, ignorecase: !caseSensitive }).add(group), + customMessage: message, + importNames, + importNamePattern, + allowImportNames, + allowImportNamePattern + } + ) + ); // if no imports are restricted we don't need to check if (Object.keys(restrictedPaths).length === 0 && restrictedPatternGroups.length === 0) { @@ -203,33 +261,60 @@ module.exports = { * @private */ function checkRestrictedPathAndReport(importSource, importNames, node) { - if (!Object.prototype.hasOwnProperty.call(restrictedPathMessages, importSource)) { + if (!Object.hasOwn(groupedRestrictedPaths, importSource)) { return; } - const customMessage = restrictedPathMessages[importSource].message; - const restrictedImportNames = restrictedPathMessages[importSource].importNames; - - if (restrictedImportNames) { - if (importNames.has("*")) { - const specifierData = importNames.get("*")[0]; + groupedRestrictedPaths[importSource].forEach(restrictedPathEntry => { + const customMessage = restrictedPathEntry.message; + const restrictedImportNames = restrictedPathEntry.importNames; + const allowedImportNames = restrictedPathEntry.allowImportNames; + if (!restrictedImportNames && !allowedImportNames) { context.report({ node, - messageId: customMessage ? "everythingWithCustomMessage" : "everything", - loc: specifierData.loc, + messageId: customMessage ? "pathWithCustomMessage" : "path", data: { importSource, - importNames: restrictedImportNames, customMessage } }); + + return; } - restrictedImportNames.forEach(importName => { - if (importNames.has(importName)) { - const specifiers = importNames.get(importName); + importNames.forEach((specifiers, importName) => { + if (importName === "*") { + const [specifier] = specifiers; + if (restrictedImportNames) { + context.report({ + node, + messageId: customMessage ? "everythingWithCustomMessage" : "everything", + loc: specifier.loc, + data: { + importSource, + importNames: restrictedImportNames, + customMessage + } + }); + } else if (allowedImportNames) { + context.report({ + node, + messageId: customMessage ? "everythingWithAllowImportNamesAndCustomMessage" : "everythingWithAllowImportNames", + loc: specifier.loc, + data: { + importSource, + allowedImportNames, + customMessage + } + }); + } + + return; + } + + if (restrictedImportNames && restrictedImportNames.includes(importName)) { specifiers.forEach(specifier => { context.report({ node, @@ -243,17 +328,24 @@ module.exports = { }); }); } - }); - } else { - context.report({ - node, - messageId: customMessage ? "pathWithCustomMessage" : "path", - data: { - importSource, - customMessage + + if (allowedImportNames && !allowedImportNames.includes(importName)) { + specifiers.forEach(specifier => { + context.report({ + node, + loc: specifier.loc, + messageId: customMessage ? "allowedImportNameWithCustomMessage" : "allowedImportName", + data: { + importSource, + customMessage, + importName, + allowedImportNames + } + }); + }); } }); - } + }); } /** @@ -271,12 +363,14 @@ module.exports = { const customMessage = group.customMessage; const restrictedImportNames = group.importNames; const restrictedImportNamePattern = group.importNamePattern ? new RegExp(group.importNamePattern, "u") : null; + const allowedImportNames = group.allowImportNames; + const allowedImportNamePattern = group.allowImportNamePattern ? new RegExp(group.allowImportNamePattern, "u") : null; - /* + /** * If we are not restricting to any specific import names and just the pattern itself, * report the error and move on */ - if (!restrictedImportNames && !restrictedImportNamePattern) { + if (!restrictedImportNames && !allowedImportNames && !restrictedImportNamePattern && !allowedImportNamePattern) { context.report({ node, messageId: customMessage ? "patternWithCustomMessage" : "patterns", @@ -303,6 +397,28 @@ module.exports = { customMessage } }); + } else if (allowedImportNames) { + context.report({ + node, + messageId: customMessage ? "everythingWithAllowImportNamesAndCustomMessage" : "everythingWithAllowImportNames", + loc: specifier.loc, + data: { + importSource, + allowedImportNames, + customMessage + } + }); + } else if (allowedImportNamePattern) { + context.report({ + node, + messageId: customMessage ? "everythingWithAllowedImportNamePatternWithCustomMessage" : "everythingWithAllowedImportNamePattern", + loc: specifier.loc, + data: { + importSource, + allowedImportNamePattern, + customMessage + } + }); } else { context.report({ node, @@ -336,6 +452,36 @@ module.exports = { }); }); } + + if (allowedImportNames && !allowedImportNames.includes(importName)) { + specifiers.forEach(specifier => { + context.report({ + node, + messageId: customMessage ? "allowedImportNameWithCustomMessage" : "allowedImportName", + loc: specifier.loc, + data: { + importSource, + customMessage, + importName, + allowedImportNames + } + }); + }); + } else if (allowedImportNamePattern && !allowedImportNamePattern.test(importName)) { + specifiers.forEach(specifier => { + context.report({ + node, + messageId: customMessage ? "allowedImportNamePatternWithCustomMessage" : "allowedImportNamePattern", + loc: specifier.loc, + data: { + importSource, + customMessage, + importName, + allowedImportNamePattern + } + }); + }); + } }); } diff --git a/tools/node_modules/eslint/lib/rules/no-restricted-modules.js b/tools/node_modules/eslint/lib/rules/no-restricted-modules.js index 4a9b0a4c0368a9..d36f2d289d6577 100644 --- a/tools/node_modules/eslint/lib/rules/no-restricted-modules.js +++ b/tools/node_modules/eslint/lib/rules/no-restricted-modules.js @@ -90,7 +90,7 @@ module.exports = { const options = Array.isArray(context.options) ? context.options : []; const isPathAndPatternsObject = typeof options[0] === "object" && - (Object.prototype.hasOwnProperty.call(options[0], "paths") || Object.prototype.hasOwnProperty.call(options[0], "patterns")); + (Object.hasOwn(options[0], "paths") || Object.hasOwn(options[0], "patterns")); const restrictedPaths = (isPathAndPatternsObject ? options[0].paths : context.options) || []; const restrictedPatterns = (isPathAndPatternsObject ? options[0].patterns : []) || []; @@ -178,7 +178,7 @@ module.exports = { * @private */ function isRestrictedPath(name) { - return Object.prototype.hasOwnProperty.call(restrictedPathMessages, name); + return Object.hasOwn(restrictedPathMessages, name); } return { diff --git a/tools/node_modules/eslint/lib/rules/no-return-await.js b/tools/node_modules/eslint/lib/rules/no-return-await.js index 77abda0cadfd1b..0c297411621027 100644 --- a/tools/node_modules/eslint/lib/rules/no-return-await.js +++ b/tools/node_modules/eslint/lib/rules/no-return-await.js @@ -118,7 +118,7 @@ module.exports = { if (node.parent.type === "LogicalExpression" && node === node.parent.right) { return isInTailCallPosition(node.parent); } - if (node.parent.type === "SequenceExpression" && node === node.parent.expressions[node.parent.expressions.length - 1]) { + if (node.parent.type === "SequenceExpression" && node === node.parent.expressions.at(-1)) { return isInTailCallPosition(node.parent); } return false; diff --git a/tools/node_modules/eslint/lib/rules/no-sequences.js b/tools/node_modules/eslint/lib/rules/no-sequences.js index cd21fc7842ca3e..5822a24542fa77 100644 --- a/tools/node_modules/eslint/lib/rules/no-sequences.js +++ b/tools/node_modules/eslint/lib/rules/no-sequences.js @@ -35,6 +35,7 @@ module.exports = { }, schema: [{ + type: "object", properties: { allowInParentheses: { type: "boolean", diff --git a/tools/node_modules/eslint/lib/rules/no-this-before-super.js b/tools/node_modules/eslint/lib/rules/no-this-before-super.js index f96d8ace81d27e..01e355acbd14a8 100644 --- a/tools/node_modules/eslint/lib/rules/no-this-before-super.js +++ b/tools/node_modules/eslint/lib/rules/no-this-before-super.js @@ -30,6 +30,29 @@ function isConstructorFunction(node) { ); } +/* + * Information for each code path segment. + * - superCalled: The flag which shows `super()` called in all code paths. + * - invalidNodes: The array of invalid ThisExpression and Super nodes. + */ +/** + * + */ +class SegmentInfo { + + /** + * Indicates whether `super()` is called in all code paths. + * @type {boolean} + */ + superCalled = false; + + /** + * The array of invalid ThisExpression and Super nodes. + * @type {ASTNode[]} + */ + invalidNodes = []; +} + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -64,13 +87,7 @@ module.exports = { */ let funcInfo = null; - /* - * Information for each code path segment. - * Each key is the id of a code path segment. - * Each value is an object: - * - superCalled: The flag which shows `super()` called in all code paths. - * - invalidNodes: The array of invalid ThisExpression and Super nodes. - */ + /** @type {Record} */ let segInfoMap = Object.create(null); /** @@ -79,7 +96,7 @@ module.exports = { * @returns {boolean} `true` if `super()` is called. */ function isCalled(segment) { - return !segment.reachable || segInfoMap[segment.id].superCalled; + return !segment.reachable || segInfoMap[segment.id]?.superCalled; } /** @@ -197,11 +214,26 @@ module.exports = { return; } + /** + * A collection of nodes to avoid duplicate reports. + * @type {Set} + */ + const reported = new Set(); + codePath.traverseSegments((segment, controller) => { const info = segInfoMap[segment.id]; + const invalidNodes = info.invalidNodes + .filter( - for (let i = 0; i < info.invalidNodes.length; ++i) { - const invalidNode = info.invalidNodes[i]; + /* + * Avoid duplicate reports. + * When there is a `finally`, invalidNodes may contain already reported node. + */ + node => !reported.has(node) + ); + + for (const invalidNode of invalidNodes) { + reported.add(invalidNode); context.report({ messageId: "noBeforeSuper", @@ -270,18 +302,18 @@ module.exports = { funcInfo.codePath.traverseSegments( { first: toSegment, last: fromSegment }, (segment, controller) => { - const info = segInfoMap[segment.id]; + const info = segInfoMap[segment.id] ?? new SegmentInfo(); if (info.superCalled) { - info.invalidNodes = []; controller.skip(); } else if ( segment.prevSegments.length > 0 && segment.prevSegments.every(isCalled) ) { info.superCalled = true; - info.invalidNodes = []; } + + segInfoMap[segment.id] = info; } ); }, diff --git a/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js b/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js index eede46c8634633..c188b1fa899cb8 100644 --- a/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js +++ b/tools/node_modules/eslint/lib/rules/no-trailing-spaces.js @@ -129,8 +129,7 @@ module.exports = { comments = sourceCode.getAllComments(), commentLineNumbers = getCommentLineNumbers(comments); - let totalLength = 0, - fixRange = []; + let totalLength = 0; for (let i = 0, ii = lines.length; i < ii; i++) { const lineNumber = i + 1; @@ -177,7 +176,7 @@ module.exports = { continue; } - fixRange = [rangeStart, rangeEnd]; + const fixRange = [rangeStart, rangeEnd]; if (!ignoreComments || !commentLineNumbers.has(lineNumber)) { report(node, location, fixRange); diff --git a/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js b/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js index ab1bdc59cbf884..9bff7fb6da4593 100644 --- a/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js +++ b/tools/node_modules/eslint/lib/rules/no-unneeded-ternary.js @@ -76,7 +76,7 @@ module.exports = { * @returns {string} A string representing an inverted expression */ function invertExpression(node) { - if (node.type === "BinaryExpression" && Object.prototype.hasOwnProperty.call(OPERATOR_INVERSES, node.operator)) { + if (node.type === "BinaryExpression" && Object.hasOwn(OPERATOR_INVERSES, node.operator)) { const operatorToken = sourceCode.getFirstTokenBetween( node.left, node.right, diff --git a/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js b/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js index fe2bead856ed67..fa787939649f4a 100644 --- a/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js +++ b/tools/node_modules/eslint/lib/rules/no-unsafe-optional-chaining.js @@ -94,7 +94,7 @@ module.exports = { break; case "SequenceExpression": checkUndefinedShortCircuit( - node.expressions[node.expressions.length - 1], + node.expressions.at(-1), reportFunc ); break; diff --git a/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js b/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js index 037be7d3eaae0f..bc05cd25180754 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-private-class-members.js @@ -16,7 +16,7 @@ module.exports = { docs: { description: "Disallow unused private class members", - recommended: false, + recommended: true, url: "https://eslint.org/docs/latest/rules/no-unused-private-class-members" }, diff --git a/tools/node_modules/eslint/lib/rules/no-unused-vars.js b/tools/node_modules/eslint/lib/rules/no-unused-vars.js index f29e678d6fdd0a..d17253acf745c2 100644 --- a/tools/node_modules/eslint/lib/rules/no-unused-vars.js +++ b/tools/node_modules/eslint/lib/rules/no-unused-vars.js @@ -15,6 +15,11 @@ const astUtils = require("./utils/ast-utils"); // Typedefs //------------------------------------------------------------------------------ +/** + * A simple name for the types of variables that this rule supports + * @typedef {'array-destructure'|'catch-clause'|'parameter'|'variable'} VariableType + */ + /** * Bag of data used for formatting the `unusedVar` lint message. * @typedef {Object} UnusedVarMessageData @@ -23,6 +28,13 @@ const astUtils = require("./utils/ast-utils"); * @property {string} additional Any additional info to be appended at the end. */ +/** + * Bag of data used for formatting the `usedIgnoredVar` lint message. + * @typedef {Object} UsedIgnoredVarMessageData + * @property {string} varName The name of the unused var. + * @property {string} additional Any additional info to be appended at the end. + */ + //------------------------------------------------------------------------------ // Rule Definition //------------------------------------------------------------------------------ @@ -70,6 +82,12 @@ module.exports = { }, destructuredArrayIgnorePattern: { type: "string" + }, + ignoreClassWithStaticInitBlock: { + type: "boolean" + }, + reportUsedIgnorePattern: { + type: "boolean" } }, additionalProperties: false @@ -79,7 +97,8 @@ module.exports = { ], messages: { - unusedVar: "'{{varName}}' is {{action}} but never used{{additional}}." + unusedVar: "'{{varName}}' is {{action}} but never used{{additional}}.", + usedIgnoredVar: "'{{varName}}' is marked as ignored but is used{{additional}}." } }, @@ -92,7 +111,9 @@ module.exports = { vars: "all", args: "after-used", ignoreRestSiblings: false, - caughtErrors: "none" + caughtErrors: "all", + ignoreClassWithStaticInitBlock: false, + reportUsedIgnorePattern: false }; const firstOption = context.options[0]; @@ -105,6 +126,8 @@ module.exports = { config.args = firstOption.args || config.args; config.ignoreRestSiblings = firstOption.ignoreRestSiblings || config.ignoreRestSiblings; config.caughtErrors = firstOption.caughtErrors || config.caughtErrors; + config.ignoreClassWithStaticInitBlock = firstOption.ignoreClassWithStaticInitBlock || config.ignoreClassWithStaticInitBlock; + config.reportUsedIgnorePattern = firstOption.reportUsedIgnorePattern || config.reportUsedIgnorePattern; if (firstOption.varsIgnorePattern) { config.varsIgnorePattern = new RegExp(firstOption.varsIgnorePattern, "u"); @@ -124,6 +147,50 @@ module.exports = { } } + /** + * Gets a given variable's description and configured ignore pattern + * based on the provided variableType + * @param {VariableType} variableType a simple name for the types of variables that this rule supports + * @throws {Error} (Unreachable) + * @returns {[string | undefined, string | undefined]} the given variable's description and + * ignore pattern + */ + function getVariableDescription(variableType) { + let pattern; + let variableDescription; + + switch (variableType) { + case "array-destructure": + pattern = config.destructuredArrayIgnorePattern; + variableDescription = "elements of array destructuring"; + break; + + case "catch-clause": + pattern = config.caughtErrorsIgnorePattern; + variableDescription = "args"; + break; + + case "parameter": + pattern = config.argsIgnorePattern; + variableDescription = "args"; + break; + + case "variable": + pattern = config.varsIgnorePattern; + variableDescription = "vars"; + break; + + default: + throw new Error(`Unexpected variable type: ${variableType}`); + } + + if (pattern) { + pattern = pattern.toString(); + } + + return [variableDescription, pattern]; + } + /** * Generates the message data about the variable being defined and unused, * including the ignore pattern if configured. @@ -131,27 +198,42 @@ module.exports = { * @returns {UnusedVarMessageData} The message data to be used with this unused variable. */ function getDefinedMessageData(unusedVar) { - const defType = unusedVar.defs && unusedVar.defs[0] && unusedVar.defs[0].type; - let type; - let pattern; + const def = unusedVar.defs && unusedVar.defs[0]; + let additionalMessageData = ""; - if (defType === "CatchClause" && config.caughtErrorsIgnorePattern) { - type = "args"; - pattern = config.caughtErrorsIgnorePattern.toString(); - } else if (defType === "Parameter" && config.argsIgnorePattern) { - type = "args"; - pattern = config.argsIgnorePattern.toString(); - } else if (defType !== "Parameter" && config.varsIgnorePattern) { - type = "vars"; - pattern = config.varsIgnorePattern.toString(); - } + if (def) { + let pattern; + let variableDescription; - const additional = type ? `. Allowed unused ${type} must match ${pattern}` : ""; + switch (def.type) { + case "CatchClause": + if (config.caughtErrorsIgnorePattern) { + [variableDescription, pattern] = getVariableDescription("catch-clause"); + } + break; + + case "Parameter": + if (config.argsIgnorePattern) { + [variableDescription, pattern] = getVariableDescription("parameter"); + } + break; + + default: + if (config.varsIgnorePattern) { + [variableDescription, pattern] = getVariableDescription("variable"); + } + break; + } + + if (pattern && variableDescription) { + additionalMessageData = `. Allowed unused ${variableDescription} must match ${pattern}`; + } + } return { varName: unusedVar.name, action: "defined", - additional + additional: additionalMessageData }; } @@ -162,19 +244,51 @@ module.exports = { * @returns {UnusedVarMessageData} The message data to be used with this unused variable. */ function getAssignedMessageData(unusedVar) { - const def = unusedVar.defs[0]; - let additional = ""; + const def = unusedVar.defs && unusedVar.defs[0]; + let additionalMessageData = ""; + + if (def) { + let pattern; + let variableDescription; - if (config.destructuredArrayIgnorePattern && def && def.name.parent.type === "ArrayPattern") { - additional = `. Allowed unused elements of array destructuring patterns must match ${config.destructuredArrayIgnorePattern.toString()}`; - } else if (config.varsIgnorePattern) { - additional = `. Allowed unused vars must match ${config.varsIgnorePattern.toString()}`; + if (def.name.parent.type === "ArrayPattern" && config.destructuredArrayIgnorePattern) { + [variableDescription, pattern] = getVariableDescription("array-destructure"); + } else if (config.varsIgnorePattern) { + [variableDescription, pattern] = getVariableDescription("variable"); + } + + if (pattern && variableDescription) { + additionalMessageData = `. Allowed unused ${variableDescription} must match ${pattern}`; + } } return { varName: unusedVar.name, action: "assigned a value", - additional + additional: additionalMessageData + }; + } + + /** + * Generate the warning message about a variable being used even though + * it is marked as being ignored. + * @param {Variable} variable eslint-scope variable object + * @param {VariableType} variableType a simple name for the types of variables that this rule supports + * @returns {UsedIgnoredVarMessageData} The message data to be used with + * this used ignored variable. + */ + function getUsedIgnoredMessageData(variable, variableType) { + const [variableDescription, pattern] = getVariableDescription(variableType); + + let additionalMessageData = ""; + + if (pattern && variableDescription) { + additionalMessageData = `. Used ${variableDescription} must not match ${pattern}`; + } + + return { + varName: variable.name, + additional: additionalMessageData }; } @@ -218,7 +332,7 @@ module.exports = { function hasRestSibling(node) { return node.type === "Property" && node.parent.type === "ObjectPattern" && - REST_PROPERTY_TYPE.test(node.parent.properties[node.parent.properties.length - 1].type); + REST_PROPERTY_TYPE.test(node.parent.properties.at(-1).type); } /** @@ -323,7 +437,7 @@ module.exports = { } if (parent.type === "SequenceExpression") { - const isLastExpression = parent.expressions[parent.expressions.length - 1] === node; + const isLastExpression = parent.expressions.at(-1) === node; if (!isLastExpression) { return true; @@ -392,7 +506,7 @@ module.exports = { while (parent && isInside(parent, rhsNode)) { switch (parent.type) { case "SequenceExpression": - if (parent.expressions[parent.expressions.length - 1] !== node) { + if (parent.expressions.at(-1) !== node) { return false; } break; @@ -527,8 +641,13 @@ module.exports = { * @private */ function isUsedVariable(variable) { - const functionNodes = getFunctionDefinitions(variable), - isFunctionDefinition = functionNodes.length > 0; + if (variable.eslintUsed) { + return true; + } + + const functionNodes = getFunctionDefinitions(variable); + const isFunctionDefinition = functionNodes.length > 0; + let rhsNode = null; return variable.references.some(ref => { @@ -584,8 +703,13 @@ module.exports = { continue; } - // skip function expression names and variables marked with markVariableAsUsed() - if (scope.functionExpressionScope || variable.eslintUsed) { + // skip function expression names + if (scope.functionExpressionScope) { + continue; + } + + // skip variables marked with markVariableAsUsed() + if (!config.reportUsedIgnorePattern && variable.eslintUsed) { continue; } @@ -610,9 +734,25 @@ module.exports = { config.destructuredArrayIgnorePattern && config.destructuredArrayIgnorePattern.test(def.name.name) ) { + if (config.reportUsedIgnorePattern && isUsedVariable(variable)) { + context.report({ + node: def.name, + messageId: "usedIgnoredVar", + data: getUsedIgnoredMessageData(variable, "array-destructure") + }); + } + continue; } + if (type === "ClassName") { + const hasStaticBlock = def.node.body.body.some(node => node.type === "StaticBlock"); + + if (config.ignoreClassWithStaticInitBlock && hasStaticBlock) { + continue; + } + } + // skip catch variables if (type === "CatchClause") { if (config.caughtErrors === "none") { @@ -621,11 +761,17 @@ module.exports = { // skip ignored parameters if (config.caughtErrorsIgnorePattern && config.caughtErrorsIgnorePattern.test(def.name.name)) { + if (config.reportUsedIgnorePattern && isUsedVariable(variable)) { + context.report({ + node: def.name, + messageId: "usedIgnoredVar", + data: getUsedIgnoredMessageData(variable, "catch-clause") + }); + } + continue; } - } - - if (type === "Parameter") { + } else if (type === "Parameter") { // skip any setter argument if ((def.node.parent.type === "Property" || def.node.parent.type === "MethodDefinition") && def.node.parent.kind === "set") { @@ -639,6 +785,14 @@ module.exports = { // skip ignored parameters if (config.argsIgnorePattern && config.argsIgnorePattern.test(def.name.name)) { + if (config.reportUsedIgnorePattern && isUsedVariable(variable)) { + context.report({ + node: def.name, + messageId: "usedIgnoredVar", + data: getUsedIgnoredMessageData(variable, "parameter") + }); + } + continue; } @@ -650,6 +804,14 @@ module.exports = { // skip ignored variables if (config.varsIgnorePattern && config.varsIgnorePattern.test(def.name.name)) { + if (config.reportUsedIgnorePattern && isUsedVariable(variable)) { + context.report({ + node: def.name, + messageId: "usedIgnoredVar", + data: getUsedIgnoredMessageData(variable, "variable") + }); + } + continue; } } @@ -688,7 +850,7 @@ module.exports = { let referenceToReport; if (writeReferences.length > 0) { - referenceToReport = writeReferences[writeReferences.length - 1]; + referenceToReport = writeReferences.at(-1); } context.report({ @@ -713,6 +875,5 @@ module.exports = { } } }; - } }; diff --git a/tools/node_modules/eslint/lib/rules/no-useless-assignment.js b/tools/node_modules/eslint/lib/rules/no-useless-assignment.js new file mode 100644 index 00000000000000..cac8ba1fcd1d6c --- /dev/null +++ b/tools/node_modules/eslint/lib/rules/no-useless-assignment.js @@ -0,0 +1,566 @@ +/** + * @fileoverview A rule to disallow unnecessary assignments`. + * @author Yosuke Ota + */ + +"use strict"; + +const { findVariable } = require("@eslint-community/eslint-utils"); + +//------------------------------------------------------------------------------ +// Types +//------------------------------------------------------------------------------ + +/** @typedef {import("estree").Node} ASTNode */ +/** @typedef {import("estree").Pattern} Pattern */ +/** @typedef {import("estree").Identifier} Identifier */ +/** @typedef {import("estree").VariableDeclarator} VariableDeclarator */ +/** @typedef {import("estree").AssignmentExpression} AssignmentExpression */ +/** @typedef {import("estree").UpdateExpression} UpdateExpression */ +/** @typedef {import("estree").Expression} Expression */ +/** @typedef {import("eslint-scope").Scope} Scope */ +/** @typedef {import("eslint-scope").Variable} Variable */ +/** @typedef {import("../linter/code-path-analysis/code-path")} CodePath */ +/** @typedef {import("../linter/code-path-analysis/code-path-segment")} CodePathSegment */ + +//------------------------------------------------------------------------------ +// Helpers +//------------------------------------------------------------------------------ + +/** + * Extract identifier from the given pattern node used on the left-hand side of the assignment. + * @param {Pattern} pattern The pattern node to extract identifier + * @returns {Iterable} The extracted identifier + */ +function *extractIdentifiersFromPattern(pattern) { + switch (pattern.type) { + case "Identifier": + yield pattern; + return; + case "ObjectPattern": + for (const property of pattern.properties) { + yield* extractIdentifiersFromPattern(property.type === "Property" ? property.value : property); + } + return; + case "ArrayPattern": + for (const element of pattern.elements) { + if (!element) { + continue; + } + yield* extractIdentifiersFromPattern(element); + } + return; + case "RestElement": + yield* extractIdentifiersFromPattern(pattern.argument); + return; + case "AssignmentPattern": + yield* extractIdentifiersFromPattern(pattern.left); + + // no default + } +} + + +/** + * Checks whether the given identifier node is evaluated after the assignment identifier. + * @param {AssignmentInfo} assignment The assignment info. + * @param {Identifier} identifier The identifier to check. + * @returns {boolean} `true` if the given identifier node is evaluated after the assignment identifier. + */ +function isIdentifierEvaluatedAfterAssignment(assignment, identifier) { + if (identifier.range[0] < assignment.identifier.range[1]) { + return false; + } + if ( + assignment.expression && + assignment.expression.range[0] <= identifier.range[0] && + identifier.range[1] <= assignment.expression.range[1] + ) { + + /* + * The identifier node is in an expression that is evaluated before the assignment. + * e.g. x = id; + * ^^ identifier to check + * ^ assignment identifier + */ + return false; + } + + /* + * e.g. + * x = 42; id; + * ^^ identifier to check + * ^ assignment identifier + * let { x, y = id } = obj; + * ^^ identifier to check + * ^ assignment identifier + */ + return true; +} + +/** + * Checks whether the given identifier node is used between the assigned identifier and the equal sign. + * + * e.g. let { x, y = x } = obj; + * ^ identifier to check + * ^ assigned identifier + * @param {AssignmentInfo} assignment The assignment info. + * @param {Identifier} identifier The identifier to check. + * @returns {boolean} `true` if the given identifier node is used between the assigned identifier and the equal sign. + */ +function isIdentifierUsedBetweenAssignedAndEqualSign(assignment, identifier) { + if (!assignment.expression) { + return false; + } + return ( + assignment.identifier.range[1] <= identifier.range[0] && + identifier.range[1] <= assignment.expression.range[0] + ); +} + +//------------------------------------------------------------------------------ +// Rule Definition +//------------------------------------------------------------------------------ + +/** @type {import('../shared/types').Rule} */ +module.exports = { + meta: { + type: "problem", + + docs: { + description: "Disallow variable assignments when the value is not used", + recommended: false, + url: "https://eslint.org/docs/latest/rules/no-useless-assignment" + }, + + schema: [], + + messages: { + unnecessaryAssignment: "This assigned value is not used in subsequent statements." + } + }, + + create(context) { + const sourceCode = context.sourceCode; + + /** + * @typedef {Object} ScopeStack + * @property {CodePath} codePath The code path of this scope stack. + * @property {Scope} scope The scope of this scope stack. + * @property {ScopeStack} upper The upper scope stack. + * @property {Record} segments The map of ScopeStackSegmentInfo. + * @property {Set} currentSegments The current CodePathSegments. + * @property {Map} assignments The map of list of AssignmentInfo for each variable. + */ + /** + * @typedef {Object} ScopeStackSegmentInfo + * @property {CodePathSegment} segment The code path segment. + * @property {Identifier|null} first The first identifier that appears within the segment. + * @property {Identifier|null} last The last identifier that appears within the segment. + * `first` and `last` are used to determine whether an identifier exists within the segment position range. + * Since it is used as a range of segments, we should originally hold all nodes, not just identifiers, + * but since the only nodes to be judged are identifiers, it is sufficient to have a range of identifiers. + */ + /** + * @typedef {Object} AssignmentInfo + * @property {Variable} variable The variable that is assigned. + * @property {Identifier} identifier The identifier that is assigned. + * @property {VariableDeclarator|AssignmentExpression|UpdateExpression} node The node where the variable was updated. + * @property {Expression|null} expression The expression that is evaluated before the assignment. + * @property {CodePathSegment[]} segments The code path segments where the assignment was made. + */ + + /** @type {ScopeStack} */ + let scopeStack = null; + + /** @type {Set} */ + const codePathStartScopes = new Set(); + + /** + * Gets the scope of code path start from given scope + * @param {Scope} scope The initial scope + * @returns {Scope} The scope of code path start + * @throws {Error} Unexpected error + */ + function getCodePathStartScope(scope) { + let target = scope; + + while (target) { + if (codePathStartScopes.has(target)) { + return target; + } + target = target.upper; + } + + // Should be unreachable + return null; + } + + /** + * Verify the given scope stack. + * @param {ScopeStack} target The scope stack to verify. + * @returns {void} + */ + function verify(target) { + + /** + * Checks whether the given identifier is used in the segment. + * @param {CodePathSegment} segment The code path segment. + * @param {Identifier} identifier The identifier to check. + * @returns {boolean} `true` if the identifier is used in the segment. + */ + function isIdentifierUsedInSegment(segment, identifier) { + const segmentInfo = target.segments[segment.id]; + + return ( + segmentInfo.first && + segmentInfo.last && + segmentInfo.first.range[0] <= identifier.range[0] && + identifier.range[1] <= segmentInfo.last.range[1] + ); + } + + /** + * Verifies whether the given assignment info is an used assignment. + * Report if it is an unused assignment. + * @param {AssignmentInfo} targetAssignment The assignment info to verify. + * @param {AssignmentInfo[]} allAssignments The list of all assignment info for variables. + * @returns {void} + */ + function verifyAssignmentIsUsed(targetAssignment, allAssignments) { + + /** + * @typedef {Object} SubsequentSegmentData + * @property {CodePathSegment} segment The code path segment + * @property {AssignmentInfo} [assignment] The first occurrence of the assignment within the segment. + * There is no need to check if the variable is used after this assignment, + * as the value it was assigned will be used. + */ + + /** + * Information used in `getSubsequentSegments()`. + * To avoid unnecessary iterations, cache information that has already been iterated over, + * and if additional iterations are needed, start iterating from the retained position. + */ + const subsequentSegmentData = { + + /** + * Cache of subsequent segment information list that have already been iterated. + * @type {SubsequentSegmentData[]} + */ + results: [], + + /** + * Subsequent segments that have already been iterated on. Used to avoid infinite loops. + * @type {Set} + */ + subsequentSegments: new Set(), + + /** + * Unexplored code path segment. + * If additional iterations are needed, consume this information and iterate. + * @type {CodePathSegment[]} + */ + queueSegments: targetAssignment.segments.flatMap(segment => segment.nextSegments) + }; + + + /** + * Gets the subsequent segments from the segment of + * the assignment currently being validated (targetAssignment). + * @returns {Iterable} the subsequent segments + */ + function *getSubsequentSegments() { + yield* subsequentSegmentData.results; + + while (subsequentSegmentData.queueSegments.length > 0) { + const nextSegment = subsequentSegmentData.queueSegments.shift(); + + if (subsequentSegmentData.subsequentSegments.has(nextSegment)) { + continue; + } + subsequentSegmentData.subsequentSegments.add(nextSegment); + + const assignmentInSegment = allAssignments + .find(otherAssignment => ( + otherAssignment.segments.includes(nextSegment) && + !isIdentifierUsedBetweenAssignedAndEqualSign(otherAssignment, targetAssignment.identifier) + )); + + if (!assignmentInSegment) { + + /* + * Stores the next segment to explore. + * If `assignmentInSegment` exists, + * we are guarding it because we don't need to explore the next segment. + */ + subsequentSegmentData.queueSegments.push(...nextSegment.nextSegments); + } + + /** @type {SubsequentSegmentData} */ + const result = { + segment: nextSegment, + assignment: assignmentInSegment + }; + + subsequentSegmentData.results.push(result); + yield result; + } + } + + + const readReferences = targetAssignment.variable.references.filter(reference => reference.isRead()); + + if (!readReferences.length) { + + /* + * It is not just an unnecessary assignment, but an unnecessary (unused) variable + * and thus should not be reported by this rule because it is reported by `no-unused-vars`. + */ + return; + } + + /** + * Other assignment on the current segment and after current assignment. + */ + const otherAssignmentAfterTargetAssignment = allAssignments + .find(assignment => { + if ( + assignment === targetAssignment || + assignment.segments.length && assignment.segments.every(segment => !targetAssignment.segments.includes(segment)) + ) { + return false; + } + if (isIdentifierEvaluatedAfterAssignment(targetAssignment, assignment.identifier)) { + return true; + } + if ( + assignment.expression && + assignment.expression.range[0] <= targetAssignment.identifier.range[0] && + targetAssignment.identifier.range[1] <= assignment.expression.range[1] + ) { + + /* + * The target assignment is in an expression that is evaluated before the assignment. + * e.g. x=(x=1); + * ^^^ targetAssignment + * ^^^^^^^ assignment + */ + return true; + } + + return false; + }); + + for (const reference of readReferences) { + + /* + * If the scope of the reference is outside the current code path scope, + * we cannot track whether this assignment is not used. + * For example, it can also be called asynchronously. + */ + if (target.scope !== getCodePathStartScope(reference.from)) { + return; + } + + // Checks if it is used in the same segment as the target assignment. + if ( + isIdentifierEvaluatedAfterAssignment(targetAssignment, reference.identifier) && + ( + isIdentifierUsedBetweenAssignedAndEqualSign(targetAssignment, reference.identifier) || + targetAssignment.segments.some(segment => isIdentifierUsedInSegment(segment, reference.identifier)) + ) + ) { + + if ( + otherAssignmentAfterTargetAssignment && + isIdentifierEvaluatedAfterAssignment(otherAssignmentAfterTargetAssignment, reference.identifier) + ) { + + // There was another assignment before the reference. Therefore, it has not been used yet. + continue; + } + + // Uses in statements after the written identifier. + return; + } + + if (otherAssignmentAfterTargetAssignment) { + + /* + * The assignment was followed by another assignment in the same segment. + * Therefore, there is no need to check the next segment. + */ + continue; + } + + // Check subsequent segments. + for (const subsequentSegment of getSubsequentSegments()) { + if (isIdentifierUsedInSegment(subsequentSegment.segment, reference.identifier)) { + if ( + subsequentSegment.assignment && + isIdentifierEvaluatedAfterAssignment(subsequentSegment.assignment, reference.identifier) + ) { + + // There was another assignment before the reference. Therefore, it has not been used yet. + continue; + } + + // It is used + return; + } + } + } + context.report({ + node: targetAssignment.identifier, + messageId: "unnecessaryAssignment" + }); + } + + // Verify that each assignment in the code path is used. + for (const assignments of target.assignments.values()) { + assignments.sort((a, b) => a.identifier.range[0] - b.identifier.range[0]); + for (const assignment of assignments) { + verifyAssignmentIsUsed(assignment, assignments); + } + } + } + + return { + onCodePathStart(codePath, node) { + const scope = sourceCode.getScope(node); + + scopeStack = { + upper: scopeStack, + codePath, + scope, + segments: Object.create(null), + currentSegments: new Set(), + assignments: new Map() + }; + codePathStartScopes.add(scopeStack.scope); + }, + onCodePathEnd() { + verify(scopeStack); + + scopeStack = scopeStack.upper; + }, + onCodePathSegmentStart(segment) { + const segmentInfo = { segment, first: null, last: null }; + + scopeStack.segments[segment.id] = segmentInfo; + scopeStack.currentSegments.add(segment); + }, + onCodePathSegmentEnd(segment) { + scopeStack.currentSegments.delete(segment); + }, + Identifier(node) { + for (const segment of scopeStack.currentSegments) { + const segmentInfo = scopeStack.segments[segment.id]; + + if (!segmentInfo.first) { + segmentInfo.first = node; + } + segmentInfo.last = node; + } + }, + ":matches(VariableDeclarator[init!=null], AssignmentExpression, UpdateExpression):exit"(node) { + if (scopeStack.currentSegments.size === 0) { + + // Ignore unreachable segments + return; + } + + const assignments = scopeStack.assignments; + + let pattern; + let expression = null; + + if (node.type === "VariableDeclarator") { + pattern = node.id; + expression = node.init; + } else if (node.type === "AssignmentExpression") { + pattern = node.left; + expression = node.right; + } else { // UpdateExpression + pattern = node.argument; + } + + for (const identifier of extractIdentifiersFromPattern(pattern)) { + const scope = sourceCode.getScope(identifier); + + /** @type {Variable} */ + const variable = findVariable(scope, identifier); + + if (!variable) { + continue; + } + + // We don't know where global variables are used. + if (variable.scope.type === "global" && variable.defs.length === 0) { + continue; + } + + /* + * If the scope of the variable is outside the current code path scope, + * we cannot track whether this assignment is not used. + */ + if (scopeStack.scope !== getCodePathStartScope(variable.scope)) { + continue; + } + + // Variables marked by `markVariableAsUsed()` or + // exported by "exported" block comment. + if (variable.eslintUsed) { + continue; + } + + // Variables exported by ESM export syntax + if (variable.scope.type === "module") { + if ( + variable.defs + .some(def => ( + (def.type === "Variable" && def.parent.parent.type === "ExportNamedDeclaration") || + ( + def.type === "FunctionName" && + ( + def.node.parent.type === "ExportNamedDeclaration" || + def.node.parent.type === "ExportDefaultDeclaration" + ) + ) || + ( + def.type === "ClassName" && + ( + def.node.parent.type === "ExportNamedDeclaration" || + def.node.parent.type === "ExportDefaultDeclaration" + ) + ) + )) + ) { + continue; + } + if (variable.references.some(reference => reference.identifier.parent.type === "ExportSpecifier")) { + + // It have `export { ... }` reference. + continue; + } + } + + let list = assignments.get(variable); + + if (!list) { + list = []; + assignments.set(variable, list); + } + list.push({ + variable, + identifier, + node, + expression, + segments: [...scopeStack.currentSegments] + }); + } + } + }; + } +}; diff --git a/tools/node_modules/eslint/lib/rules/no-useless-backreference.js b/tools/node_modules/eslint/lib/rules/no-useless-backreference.js index 7ca43c8b260777..2a54de2e3b8a07 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-backreference.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-backreference.js @@ -138,7 +138,7 @@ module.exports = { // the opposite of the previous when the regex is matching backward in a lookbehind context. messageId = "backward"; - } else if (groupCut[groupCut.length - 1].type === "Alternative") { + } else if (groupCut.at(-1).type === "Alternative") { // group's and bref's ancestor nodes below the lowest common ancestor are sibling alternatives => they're disjunctive. messageId = "disjunctive"; diff --git a/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js b/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js index f2d9f3341f507b..5cc652bea265e8 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-computed-key.js @@ -101,7 +101,7 @@ module.exports = { properties: { enforceForClassMembers: { type: "boolean", - default: false + default: true } }, additionalProperties: false @@ -114,7 +114,7 @@ module.exports = { }, create(context) { const sourceCode = context.sourceCode; - const enforceForClassMembers = context.options[0] && context.options[0].enforceForClassMembers; + const enforceForClassMembers = context.options[0]?.enforceForClassMembers ?? true; /** * Reports a given node if it violated this rule. diff --git a/tools/node_modules/eslint/lib/rules/no-useless-return.js b/tools/node_modules/eslint/lib/rules/no-useless-return.js index 81d61051053e87..1f85cdb9aafc4d 100644 --- a/tools/node_modules/eslint/lib/rules/no-useless-return.js +++ b/tools/node_modules/eslint/lib/rules/no-useless-return.js @@ -146,7 +146,9 @@ module.exports = { continue; } - uselessReturns.push(...segmentInfoMap.get(segment).uselessReturns); + if (segmentInfoMap.has(segment)) { + uselessReturns.push(...segmentInfoMap.get(segment).uselessReturns); + } } return uselessReturns; @@ -182,6 +184,10 @@ module.exports = { const info = segmentInfoMap.get(segment); + if (!info) { + return; + } + info.uselessReturns = info.uselessReturns.filter(node => { if (scopeInfo.traversedTryBlockStatements && scopeInfo.traversedTryBlockStatements.length > 0) { const returnInitialRange = node.range[0]; @@ -275,7 +281,6 @@ module.exports = { * NOTE: This event is notified for only reachable segments. */ onCodePathSegmentStart(segment) { - scopeInfo.currentSegments.add(segment); const info = { diff --git a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js index 4463bcd5af175c..6cb0b0f931359c 100644 --- a/tools/node_modules/eslint/lib/rules/object-curly-spacing.js +++ b/tools/node_modules/eslint/lib/rules/object-curly-spacing.js @@ -217,7 +217,7 @@ module.exports = { * @returns {Token} '}' token. */ function getClosingBraceOfObject(node) { - const lastProperty = node.properties[node.properties.length - 1]; + const lastProperty = node.properties.at(-1); return sourceCode.getTokenAfter(lastProperty, astUtils.isClosingBraceToken); } @@ -251,7 +251,7 @@ module.exports = { } let firstSpecifier = node.specifiers[0]; - const lastSpecifier = node.specifiers[node.specifiers.length - 1]; + const lastSpecifier = node.specifiers.at(-1); if (lastSpecifier.type !== "ImportSpecifier") { return; @@ -279,7 +279,7 @@ module.exports = { } const firstSpecifier = node.specifiers[0], - lastSpecifier = node.specifiers[node.specifiers.length - 1], + lastSpecifier = node.specifiers.at(-1), first = sourceCode.getTokenBefore(firstSpecifier), last = sourceCode.getTokenAfter(lastSpecifier, astUtils.isNotCommaToken), second = sourceCode.getTokenAfter(first, { includeComments: true }), diff --git a/tools/node_modules/eslint/lib/rules/object-property-newline.js b/tools/node_modules/eslint/lib/rules/object-property-newline.js index 6ffa06421f022e..8a08676cfa1480 100644 --- a/tools/node_modules/eslint/lib/rules/object-property-newline.js +++ b/tools/node_modules/eslint/lib/rules/object-property-newline.js @@ -63,7 +63,7 @@ module.exports = { if (allowSameLine) { if (node.properties.length > 1) { const firstTokenOfFirstProperty = sourceCode.getFirstToken(node.properties[0]); - const lastTokenOfLastProperty = sourceCode.getLastToken(node.properties[node.properties.length - 1]); + const lastTokenOfLastProperty = sourceCode.getLastToken(node.properties.at(-1)); if (firstTokenOfFirstProperty.loc.end.line === lastTokenOfLastProperty.loc.start.line) { diff --git a/tools/node_modules/eslint/lib/rules/object-shorthand.js b/tools/node_modules/eslint/lib/rules/object-shorthand.js index e4cb3a445735fa..f035bbe581fe1a 100644 --- a/tools/node_modules/eslint/lib/rules/object-shorthand.js +++ b/tools/node_modules/eslint/lib/rules/object-shorthand.js @@ -284,35 +284,22 @@ module.exports = { const arrowToken = sourceCode.getTokenBefore(node.value.body, astUtils.isArrowToken); const fnBody = sourceCode.text.slice(arrowToken.range[1], node.value.range[1]); - let shouldAddParensAroundParameters = false; - let tokenBeforeParams; - - if (node.value.params.length === 0) { - tokenBeforeParams = sourceCode.getFirstToken(node.value, astUtils.isOpeningParenToken); - } else { - tokenBeforeParams = sourceCode.getTokenBefore(node.value.params[0]); - } - - if (node.value.params.length === 1) { - const hasParen = astUtils.isOpeningParenToken(tokenBeforeParams); - const isTokenOutsideNode = tokenBeforeParams.range[0] < node.range[0]; - - shouldAddParensAroundParameters = !hasParen || isTokenOutsideNode; - } + // First token should not be `async` + const firstValueToken = sourceCode.getFirstToken(node.value, { + skip: node.value.async ? 1 : 0 + }); - const sliceStart = shouldAddParensAroundParameters - ? node.value.params[0].range[0] - : tokenBeforeParams.range[0]; + const sliceStart = firstValueToken.range[0]; const sliceEnd = sourceCode.getTokenBefore(arrowToken).range[1]; + const shouldAddParens = node.value.params.length === 1 && node.value.params[0].range[0] === sliceStart; const oldParamText = sourceCode.text.slice(sliceStart, sliceEnd); - const newParamText = shouldAddParensAroundParameters ? `(${oldParamText})` : oldParamText; + const newParamText = shouldAddParens ? `(${oldParamText})` : oldParamText; return fixer.replaceTextRange( fixRange, methodPrefix + newParamText + fnBody ); - } /** @@ -497,6 +484,13 @@ module.exports = { node, messageId: "expectedPropertyShorthand", fix(fixer) { + + // x: /* */ x + // x: (/* */ x) + if (sourceCode.getCommentsInside(node).length > 0) { + return null; + } + return fixer.replaceText(node, node.value.name); } }); @@ -510,6 +504,13 @@ module.exports = { node, messageId: "expectedPropertyShorthand", fix(fixer) { + + // "x": /* */ x + // "x": (/* */ x) + if (sourceCode.getCommentsInside(node).length > 0) { + return null; + } + return fixer.replaceText(node, node.value.name); } }); diff --git a/tools/node_modules/eslint/lib/rules/one-var.js b/tools/node_modules/eslint/lib/rules/one-var.js index abb1525b1a5c9a..ba461a407cac03 100644 --- a/tools/node_modules/eslint/lib/rules/one-var.js +++ b/tools/node_modules/eslint/lib/rules/one-var.js @@ -109,12 +109,12 @@ module.exports = { options.var = { uninitialized: mode.var, initialized: mode.var }; options.let = { uninitialized: mode.let, initialized: mode.let }; options.const = { uninitialized: mode.const, initialized: mode.const }; - if (Object.prototype.hasOwnProperty.call(mode, "uninitialized")) { + if (Object.hasOwn(mode, "uninitialized")) { options.var.uninitialized = mode.uninitialized; options.let.uninitialized = mode.uninitialized; options.const.uninitialized = mode.uninitialized; } - if (Object.prototype.hasOwnProperty.call(mode, "initialized")) { + if (Object.hasOwn(mode, "initialized")) { options.var.initialized = mode.initialized; options.let.initialized = mode.initialized; options.const.initialized = mode.initialized; @@ -216,11 +216,11 @@ module.exports = { let currentScope; if (statementType === "var") { - currentScope = functionStack[functionStack.length - 1]; + currentScope = functionStack.at(-1); } else if (statementType === "let") { - currentScope = blockStack[blockStack.length - 1].let; + currentScope = blockStack.at(-1).let; } else if (statementType === "const") { - currentScope = blockStack[blockStack.length - 1].const; + currentScope = blockStack.at(-1).const; } return currentScope; } diff --git a/tools/node_modules/eslint/lib/rules/padded-blocks.js b/tools/node_modules/eslint/lib/rules/padded-blocks.js index ec4756ba739a08..d0c045430e4891 100644 --- a/tools/node_modules/eslint/lib/rules/padded-blocks.js +++ b/tools/node_modules/eslint/lib/rules/padded-blocks.js @@ -84,18 +84,18 @@ module.exports = { options.switches = shouldHavePadding; options.classes = shouldHavePadding; } else { - if (Object.prototype.hasOwnProperty.call(typeOptions, "blocks")) { + if (Object.hasOwn(typeOptions, "blocks")) { options.blocks = typeOptions.blocks === "always"; } - if (Object.prototype.hasOwnProperty.call(typeOptions, "switches")) { + if (Object.hasOwn(typeOptions, "switches")) { options.switches = typeOptions.switches === "always"; } - if (Object.prototype.hasOwnProperty.call(typeOptions, "classes")) { + if (Object.hasOwn(typeOptions, "classes")) { options.classes = typeOptions.classes === "always"; } } - if (Object.prototype.hasOwnProperty.call(exceptOptions, "allowSingleLineBlocks")) { + if (Object.hasOwn(exceptOptions, "allowSingleLineBlocks")) { options.allowSingleLineBlocks = exceptOptions.allowSingleLineBlocks === true; } @@ -277,7 +277,7 @@ module.exports = { const rule = {}; - if (Object.prototype.hasOwnProperty.call(options, "switches")) { + if (Object.hasOwn(options, "switches")) { rule.SwitchStatement = function(node) { if (node.cases.length === 0) { return; @@ -286,7 +286,7 @@ module.exports = { }; } - if (Object.prototype.hasOwnProperty.call(options, "blocks")) { + if (Object.hasOwn(options, "blocks")) { rule.BlockStatement = function(node) { if (node.body.length === 0) { return; @@ -296,7 +296,7 @@ module.exports = { rule.StaticBlock = rule.BlockStatement; } - if (Object.prototype.hasOwnProperty.call(options, "classes")) { + if (Object.hasOwn(options, "classes")) { rule.ClassBody = function(node) { if (node.body.length === 0) { return; diff --git a/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js b/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js index d22e508beb0500..b23696dd64cd9b 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js +++ b/tools/node_modules/eslint/lib/rules/prefer-arrow-callback.js @@ -220,7 +220,7 @@ module.exports = { // If there are below, it cannot replace with arrow functions merely. ThisExpression() { - const info = stack[stack.length - 1]; + const info = stack.at(-1); if (info) { info.this = true; @@ -228,7 +228,7 @@ module.exports = { }, Super() { - const info = stack[stack.length - 1]; + const info = stack.at(-1); if (info) { info.super = true; @@ -236,7 +236,7 @@ module.exports = { }, MetaProperty(node) { - const info = stack[stack.length - 1]; + const info = stack.at(-1); if (info && checkMetaProperty(node, "new", "target")) { info.meta = true; diff --git a/tools/node_modules/eslint/lib/rules/prefer-reflect.js b/tools/node_modules/eslint/lib/rules/prefer-reflect.js index d579b486b78c33..7da45237c89762 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-reflect.js +++ b/tools/node_modules/eslint/lib/rules/prefer-reflect.js @@ -105,7 +105,7 @@ module.exports = { CallExpression(node) { const methodName = (node.callee.property || {}).name; const isReflectCall = (node.callee.object || {}).name === "Reflect"; - const hasReflectSubstitute = Object.prototype.hasOwnProperty.call(reflectSubstitutes, methodName); + const hasReflectSubstitute = Object.hasOwn(reflectSubstitutes, methodName); const userConfiguredException = exceptions.includes(methodName); if (hasReflectSubstitute && !isReflectCall && !userConfiguredException) { diff --git a/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js b/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js index ffaaeac3f2792a..dd18f7ec2e3a91 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js +++ b/tools/node_modules/eslint/lib/rules/prefer-regex-literals.js @@ -34,7 +34,7 @@ function isStringLiteral(node) { * @returns {boolean} True if the node is a regex literal. */ function isRegexLiteral(node) { - return node.type === "Literal" && Object.prototype.hasOwnProperty.call(node, "regex"); + return node.type === "Literal" && Object.hasOwn(node, "regex"); } const validPrecedingTokens = new Set([ diff --git a/tools/node_modules/eslint/lib/rules/prefer-template.js b/tools/node_modules/eslint/lib/rules/prefer-template.js index a2c8c72413549b..d7d70c50640d64 100644 --- a/tools/node_modules/eslint/lib/rules/prefer-template.js +++ b/tools/node_modules/eslint/lib/rules/prefer-template.js @@ -113,7 +113,7 @@ function endsWithTemplateCurly(node) { return startsWithTemplateCurly(node.right); } if (node.type === "TemplateLiteral") { - return node.expressions.length && node.quasis.length && node.quasis[node.quasis.length - 1].range[0] === node.quasis[node.quasis.length - 1].range[1]; + return node.expressions.length && node.quasis.length && node.quasis.at(-1).range[0] === node.quasis.at(-1).range[1]; } return node.type !== "Literal" || typeof node.value !== "string"; } diff --git a/tools/node_modules/eslint/lib/rules/radix.js b/tools/node_modules/eslint/lib/rules/radix.js index 7df97d98602529..efae749690a73e 100644 --- a/tools/node_modules/eslint/lib/rules/radix.js +++ b/tools/node_modules/eslint/lib/rules/radix.js @@ -133,8 +133,8 @@ module.exports = { messageId: "addRadixParameter10", fix(fixer) { const tokens = sourceCode.getTokens(node); - const lastToken = tokens[tokens.length - 1]; // Parenthesis. - const secondToLastToken = tokens[tokens.length - 2]; // May or may not be a comma. + const lastToken = tokens.at(-1); // Parenthesis. + const secondToLastToken = tokens.at(-2); // May or may not be a comma. const hasTrailingComma = secondToLastToken.type === "Punctuator" && secondToLastToken.value === ","; return fixer.insertTextBefore(lastToken, hasTrailingComma ? " 10," : ", 10"); diff --git a/tools/node_modules/eslint/lib/rules/require-jsdoc.js b/tools/node_modules/eslint/lib/rules/require-jsdoc.js deleted file mode 100644 index b6fedf2289f5e2..00000000000000 --- a/tools/node_modules/eslint/lib/rules/require-jsdoc.js +++ /dev/null @@ -1,122 +0,0 @@ -/** - * @fileoverview Rule to check for jsdoc presence. - * @author Gyandeep Singh - * @deprecated in ESLint v5.10.0 - */ -"use strict"; - -/** @type {import('../shared/types').Rule} */ -module.exports = { - meta: { - type: "suggestion", - - docs: { - description: "Require JSDoc comments", - recommended: false, - url: "https://eslint.org/docs/latest/rules/require-jsdoc" - }, - - schema: [ - { - type: "object", - properties: { - require: { - type: "object", - properties: { - ClassDeclaration: { - type: "boolean", - default: false - }, - MethodDefinition: { - type: "boolean", - default: false - }, - FunctionDeclaration: { - type: "boolean", - default: true - }, - ArrowFunctionExpression: { - type: "boolean", - default: false - }, - FunctionExpression: { - type: "boolean", - default: false - } - }, - additionalProperties: false, - default: {} - } - }, - additionalProperties: false - } - ], - - deprecated: true, - replacedBy: [], - - messages: { - missingJSDocComment: "Missing JSDoc comment." - } - }, - - create(context) { - const source = context.sourceCode; - const DEFAULT_OPTIONS = { - FunctionDeclaration: true, - MethodDefinition: false, - ClassDeclaration: false, - ArrowFunctionExpression: false, - FunctionExpression: false - }; - const options = Object.assign(DEFAULT_OPTIONS, context.options[0] && context.options[0].require); - - /** - * Report the error message - * @param {ASTNode} node node to report - * @returns {void} - */ - function report(node) { - context.report({ node, messageId: "missingJSDocComment" }); - } - - /** - * Check if the jsdoc comment is present or not. - * @param {ASTNode} node node to examine - * @returns {void} - */ - function checkJsDoc(node) { - const jsdocComment = source.getJSDocComment(node); - - if (!jsdocComment) { - report(node); - } - } - - return { - FunctionDeclaration(node) { - if (options.FunctionDeclaration) { - checkJsDoc(node); - } - }, - FunctionExpression(node) { - if ( - (options.MethodDefinition && node.parent.type === "MethodDefinition") || - (options.FunctionExpression && (node.parent.type === "VariableDeclarator" || (node.parent.type === "Property" && node === node.parent.value))) - ) { - checkJsDoc(node); - } - }, - ClassDeclaration(node) { - if (options.ClassDeclaration) { - checkJsDoc(node); - } - }, - ArrowFunctionExpression(node) { - if (options.ArrowFunctionExpression && node.parent.type === "VariableDeclarator") { - checkJsDoc(node); - } - } - }; - } -}; diff --git a/tools/node_modules/eslint/lib/rules/semi-style.js b/tools/node_modules/eslint/lib/rules/semi-style.js index caf2224df3d451..11caaf0b94527e 100644 --- a/tools/node_modules/eslint/lib/rules/semi-style.js +++ b/tools/node_modules/eslint/lib/rules/semi-style.js @@ -65,7 +65,7 @@ function isLastChild(node) { } const nodeList = getChildren(node.parent); - return nodeList !== null && nodeList[nodeList.length - 1] === node; // before `}` or etc. + return nodeList !== null && nodeList.at(-1) === node; // before `}` or etc. } /** @type {import('../shared/types').Rule} */ diff --git a/tools/node_modules/eslint/lib/rules/sort-imports.js b/tools/node_modules/eslint/lib/rules/sort-imports.js index 04814ed6fedcb6..9deaf1d4c97437 100644 --- a/tools/node_modules/eslint/lib/rules/sort-imports.js +++ b/tools/node_modules/eslint/lib/rules/sort-imports.js @@ -208,7 +208,7 @@ module.exports = { } return fixer.replaceTextRange( - [importSpecifiers[0].range[0], importSpecifiers[importSpecifiers.length - 1].range[1]], + [importSpecifiers[0].range[0], importSpecifiers.at(-1).range[1]], importSpecifiers // Clone the importSpecifiers array to avoid mutating it diff --git a/tools/node_modules/eslint/lib/rules/sort-keys.js b/tools/node_modules/eslint/lib/rules/sort-keys.js index 088b5890f30c09..e355e8afdc8d71 100644 --- a/tools/node_modules/eslint/lib/rules/sort-keys.js +++ b/tools/node_modules/eslint/lib/rules/sort-keys.js @@ -185,7 +185,7 @@ module.exports = { }); // check blank line between the current node and the last token - if (!isBlankLineBetweenNodes && (node.loc.start.line - tokens[tokens.length - 1].loc.end.line > 1)) { + if (!isBlankLineBetweenNodes && (node.loc.start.line - tokens.at(-1).loc.end.line > 1)) { isBlankLineBetweenNodes = true; } diff --git a/tools/node_modules/eslint/lib/rules/sort-vars.js b/tools/node_modules/eslint/lib/rules/sort-vars.js index 8fd723fd4e5b06..21bfb88e8dd1cc 100644 --- a/tools/node_modules/eslint/lib/rules/sort-vars.js +++ b/tools/node_modules/eslint/lib/rules/sort-vars.js @@ -66,7 +66,7 @@ module.exports = { return null; } return fixer.replaceTextRange( - [idDeclarations[0].range[0], idDeclarations[idDeclarations.length - 1].range[1]], + [idDeclarations[0].range[0], idDeclarations.at(-1).range[1]], idDeclarations // Clone the idDeclarations array to avoid mutating it diff --git a/tools/node_modules/eslint/lib/rules/space-unary-ops.js b/tools/node_modules/eslint/lib/rules/space-unary-ops.js index aed43e7249eb9b..ab6c3cb6cd9235 100644 --- a/tools/node_modules/eslint/lib/rules/space-unary-ops.js +++ b/tools/node_modules/eslint/lib/rules/space-unary-ops.js @@ -87,7 +87,7 @@ module.exports = { * @returns {boolean} Whether or not an override has been provided for the operator */ function overrideExistsForOperator(operator) { - return options.overrides && Object.prototype.hasOwnProperty.call(options.overrides, operator); + return options.overrides && Object.hasOwn(options.overrides, operator); } /** diff --git a/tools/node_modules/eslint/lib/rules/strict.js b/tools/node_modules/eslint/lib/rules/strict.js index f9dd7500be3ffc..fd970f279e18ca 100644 --- a/tools/node_modules/eslint/lib/rules/strict.js +++ b/tools/node_modules/eslint/lib/rules/strict.js @@ -173,7 +173,7 @@ module.exports = { function enterFunctionInFunctionMode(node, useStrictDirectives) { const isInClass = classScopes.length > 0, isParentGlobal = scopes.length === 0 && classScopes.length === 0, - isParentStrict = scopes.length > 0 && scopes[scopes.length - 1], + isParentStrict = scopes.length > 0 && scopes.at(-1), isStrict = useStrictDirectives.length > 0; if (isStrict) { diff --git a/tools/node_modules/eslint/lib/rules/use-isnan.js b/tools/node_modules/eslint/lib/rules/use-isnan.js index 21dc395290273d..5c0b65feefbad8 100644 --- a/tools/node_modules/eslint/lib/rules/use-isnan.js +++ b/tools/node_modules/eslint/lib/rules/use-isnan.js @@ -21,9 +21,17 @@ const astUtils = require("./utils/ast-utils"); * @returns {boolean} `true` if the node is 'NaN' identifier. */ function isNaNIdentifier(node) { - return Boolean(node) && ( - astUtils.isSpecificId(node, "NaN") || - astUtils.isSpecificMemberAccess(node, "Number", "NaN") + if (!node) { + return false; + } + + const nodeToCheck = node.type === "SequenceExpression" + ? node.expressions.at(-1) + : node; + + return ( + astUtils.isSpecificId(nodeToCheck, "NaN") || + astUtils.isSpecificMemberAccess(nodeToCheck, "Number", "NaN") ); } @@ -34,6 +42,7 @@ function isNaNIdentifier(node) { /** @type {import('../shared/types').Rule} */ module.exports = { meta: { + hasSuggestions: true, type: "problem", docs: { @@ -63,7 +72,10 @@ module.exports = { comparisonWithNaN: "Use the isNaN function to compare with NaN.", switchNaN: "'switch(NaN)' can never match a case clause. Use Number.isNaN instead of the switch.", caseNaN: "'case NaN' can never match. Use Number.isNaN before the switch.", - indexOfNaN: "Array prototype method '{{ methodName }}' cannot find NaN." + indexOfNaN: "Array prototype method '{{ methodName }}' cannot find NaN.", + replaceWithIsNaN: "Replace with Number.isNaN.", + replaceWithCastingAndIsNaN: "Replace with Number.isNaN and cast to a Number.", + replaceWithFindIndex: "Replace with Array.prototype.{{ methodName }}." } }, @@ -71,6 +83,35 @@ module.exports = { const enforceForSwitchCase = !context.options[0] || context.options[0].enforceForSwitchCase; const enforceForIndexOf = context.options[0] && context.options[0].enforceForIndexOf; + const sourceCode = context.sourceCode; + + const fixableOperators = new Set(["==", "===", "!=", "!=="]); + const castableOperators = new Set(["==", "!="]); + + /** + * Get a fixer for a binary expression that compares to NaN. + * @param {ASTNode} node The node to fix. + * @param {function(string): string} wrapValue A function that wraps the compared value with a fix. + * @returns {function(Fixer): Fix} The fixer function. + */ + function getBinaryExpressionFixer(node, wrapValue) { + return fixer => { + const comparedValue = isNaNIdentifier(node.left) ? node.right : node.left; + const shouldWrap = comparedValue.type === "SequenceExpression"; + const shouldNegate = node.operator[0] === "!"; + + const negation = shouldNegate ? "!" : ""; + let comparedValueText = sourceCode.getText(comparedValue); + + if (shouldWrap) { + comparedValueText = `(${comparedValueText})`; + } + + const fixedValue = wrapValue(comparedValueText); + + return fixer.replaceText(node, `${negation}${fixedValue}`); + }; + } /** * Checks the given `BinaryExpression` node for `foo === NaN` and other comparisons. @@ -82,7 +123,32 @@ module.exports = { /^(?:[<>]|[!=]=)=?$/u.test(node.operator) && (isNaNIdentifier(node.left) || isNaNIdentifier(node.right)) ) { - context.report({ node, messageId: "comparisonWithNaN" }); + const suggestedFixes = []; + const NaNNode = isNaNIdentifier(node.left) ? node.left : node.right; + + const isSequenceExpression = NaNNode.type === "SequenceExpression"; + const isSuggestable = fixableOperators.has(node.operator) && !isSequenceExpression; + const isCastable = castableOperators.has(node.operator); + + if (isSuggestable) { + suggestedFixes.push({ + messageId: "replaceWithIsNaN", + fix: getBinaryExpressionFixer(node, value => `Number.isNaN(${value})`) + }); + + if (isCastable) { + suggestedFixes.push({ + messageId: "replaceWithCastingAndIsNaN", + fix: getBinaryExpressionFixer(node, value => `Number.isNaN(Number(${value}))`) + }); + } + } + + context.report({ + node, + messageId: "comparisonWithNaN", + suggest: suggestedFixes + }); } } @@ -116,10 +182,38 @@ module.exports = { if ( (methodName === "indexOf" || methodName === "lastIndexOf") && - node.arguments.length === 1 && + node.arguments.length <= 2 && isNaNIdentifier(node.arguments[0]) ) { - context.report({ node, messageId: "indexOfNaN", data: { methodName } }); + + /* + * To retain side effects, it's essential to address `NaN` beforehand, which + * is not possible with fixes like `arr.findIndex(Number.isNaN)`. + */ + const isSuggestable = node.arguments[0].type !== "SequenceExpression" && !node.arguments[1]; + const suggestedFixes = []; + + if (isSuggestable) { + const shouldWrap = callee.computed; + const findIndexMethod = methodName === "indexOf" ? "findIndex" : "findLastIndex"; + const propertyName = shouldWrap ? `"${findIndexMethod}"` : findIndexMethod; + + suggestedFixes.push({ + messageId: "replaceWithFindIndex", + data: { methodName: findIndexMethod }, + fix: fixer => [ + fixer.replaceText(callee.property, propertyName), + fixer.replaceText(node.arguments[0], "Number.isNaN") + ] + }); + } + + context.report({ + node, + messageId: "indexOfNaN", + data: { methodName }, + suggest: suggestedFixes + }); } } } diff --git a/tools/node_modules/eslint/lib/rules/utils/ast-utils.js b/tools/node_modules/eslint/lib/rules/utils/ast-utils.js index 962bdde0af1b44..ed9a31af34cfe8 100644 --- a/tools/node_modules/eslint/lib/rules/utils/ast-utils.js +++ b/tools/node_modules/eslint/lib/rules/utils/ast-utils.js @@ -19,6 +19,8 @@ const { lineBreakPattern, shebangPattern } = require("../../shared/ast-utils"); +const globals = require("../../../conf/globals"); +const { LATEST_ECMA_VERSION } = require("../../../conf/ecma-version"); //------------------------------------------------------------------------------ // Helpers @@ -46,6 +48,12 @@ const OCTAL_OR_NON_OCTAL_DECIMAL_ESCAPE_PATTERN = /^(?:[^\\]|\\.)*\\(?:[1-9]|0[0 const LOGICAL_ASSIGNMENT_OPERATORS = new Set(["&&=", "||=", "??="]); +/** + * All builtin global variables defined in the latest ECMAScript specification. + * @type {Record} Key is the name of the variable. Value is `true` if the variable is considered writable, `false` otherwise. + */ +const ECMASCRIPT_GLOBALS = globals[`es${LATEST_ECMA_VERSION}`]; + /** * Checks reference if is non initializer and writable. * @param {Reference} reference A reference to check. @@ -969,7 +977,7 @@ function isConstant(scope, node, inBooleanPosition) { return false; case "SequenceExpression": - return isConstant(scope, node.expressions[node.expressions.length - 1], inBooleanPosition); + return isConstant(scope, node.expressions.at(-1), inBooleanPosition); case "SpreadElement": return isConstant(scope, node.argument, inBooleanPosition); case "CallExpression": @@ -1133,6 +1141,7 @@ module.exports = { LINEBREAK_MATCHER: lineBreakPattern, SHEBANG_MATCHER: shebangPattern, STATEMENT_LIST_PARENTS, + ECMASCRIPT_GLOBALS, /** * Determines whether two adjacent tokens are on the same line. @@ -1231,7 +1240,7 @@ module.exports = { * @private */ isSurroundedBy(val, character) { - return val[0] === character && val[val.length - 1] === character; + return val[0] === character && val.at(-1) === character; }, /** @@ -1909,8 +1918,8 @@ module.exports = { */ getFunctionHeadLoc(node, sourceCode) { const parent = node.parent; - let start = null; - let end = null; + let start; + let end; if (parent.type === "Property" || parent.type === "MethodDefinition" || parent.type === "PropertyDefinition") { start = parent.loc.start; @@ -2055,7 +2064,7 @@ module.exports = { case "SequenceExpression": { const exprs = node.expressions; - return exprs.length !== 0 && module.exports.couldBeError(exprs[exprs.length - 1]); + return exprs.length !== 0 && module.exports.couldBeError(exprs.at(-1)); } case "LogicalExpression": @@ -2119,9 +2128,9 @@ module.exports = { const comments = tokens.comments; - leftToken = tokens[tokens.length - 1]; + leftToken = tokens.at(-1); if (comments.length) { - const lastComment = comments[comments.length - 1]; + const lastComment = comments.at(-1); if (!leftToken || lastComment.range[0] > leftToken.range[0]) { leftToken = lastComment; diff --git a/tools/node_modules/eslint/lib/rules/utils/char-source.js b/tools/node_modules/eslint/lib/rules/utils/char-source.js new file mode 100644 index 00000000000000..70738625b94548 --- /dev/null +++ b/tools/node_modules/eslint/lib/rules/utils/char-source.js @@ -0,0 +1,240 @@ +/** + * @fileoverview Utility functions to locate the source text of each code unit in the value of a string literal or template token. + * @author Francesco Trotta + */ + +"use strict"; + +/** + * Represents a code unit produced by the evaluation of a JavaScript common token like a string + * literal or template token. + */ +class CodeUnit { + constructor(start, source) { + this.start = start; + this.source = source; + } + + get end() { + return this.start + this.length; + } + + get length() { + return this.source.length; + } +} + +/** + * An object used to keep track of the position in a source text where the next characters will be read. + */ +class TextReader { + constructor(source) { + this.source = source; + this.pos = 0; + } + + /** + * Advances the reading position of the specified number of characters. + * @param {number} length Number of characters to advance. + * @returns {void} + */ + advance(length) { + this.pos += length; + } + + /** + * Reads characters from the source. + * @param {number} [offset=0] The offset where reading starts, relative to the current position. + * @param {number} [length=1] Number of characters to read. + * @returns {string} A substring of source characters. + */ + read(offset = 0, length = 1) { + const start = offset + this.pos; + + return this.source.slice(start, start + length); + } +} + +const SIMPLE_ESCAPE_SEQUENCES = +{ __proto__: null, b: "\b", f: "\f", n: "\n", r: "\r", t: "\t", v: "\v" }; + +/** + * Reads a hex escape sequence. + * @param {TextReader} reader The reader should be positioned on the first hexadecimal digit. + * @param {number} length The number of hexadecimal digits. + * @returns {string} A code unit. + */ +function readHexSequence(reader, length) { + const str = reader.read(0, length); + const charCode = parseInt(str, 16); + + reader.advance(length); + return String.fromCharCode(charCode); +} + +/** + * Reads a Unicode escape sequence. + * @param {TextReader} reader The reader should be positioned after the "u". + * @returns {string} A code unit. + */ +function readUnicodeSequence(reader) { + const regExp = /\{(?[\dA-Fa-f]+)\}/uy; + + regExp.lastIndex = reader.pos; + const match = regExp.exec(reader.source); + + if (match) { + const codePoint = parseInt(match.groups.hexDigits, 16); + + reader.pos = regExp.lastIndex; + return String.fromCodePoint(codePoint); + } + return readHexSequence(reader, 4); +} + +/** + * Reads an octal escape sequence. + * @param {TextReader} reader The reader should be positioned after the first octal digit. + * @param {number} maxLength The maximum number of octal digits. + * @returns {string} A code unit. + */ +function readOctalSequence(reader, maxLength) { + const [octalStr] = reader.read(-1, maxLength).match(/^[0-7]+/u); + + reader.advance(octalStr.length - 1); + const octal = parseInt(octalStr, 8); + + return String.fromCharCode(octal); +} + +/** + * Reads an escape sequence or line continuation. + * @param {TextReader} reader The reader should be positioned on the backslash. + * @returns {string} A string of zero, one or two code units. + */ +function readEscapeSequenceOrLineContinuation(reader) { + const char = reader.read(1); + + reader.advance(2); + const unitChar = SIMPLE_ESCAPE_SEQUENCES[char]; + + if (unitChar) { + return unitChar; + } + switch (char) { + case "x": + return readHexSequence(reader, 2); + case "u": + return readUnicodeSequence(reader); + case "\r": + if (reader.read() === "\n") { + reader.advance(1); + } + + // fallthrough + case "\n": + case "\u2028": + case "\u2029": + return ""; + case "0": + case "1": + case "2": + case "3": + return readOctalSequence(reader, 3); + case "4": + case "5": + case "6": + case "7": + return readOctalSequence(reader, 2); + default: + return char; + } +} + +/** + * Reads an escape sequence or line continuation and generates the respective `CodeUnit` elements. + * @param {TextReader} reader The reader should be positioned on the backslash. + * @returns {Generator} Zero, one or two `CodeUnit` elements. + */ +function *mapEscapeSequenceOrLineContinuation(reader) { + const start = reader.pos; + const str = readEscapeSequenceOrLineContinuation(reader); + const end = reader.pos; + const source = reader.source.slice(start, end); + + switch (str.length) { + case 0: + break; + case 1: + yield new CodeUnit(start, source); + break; + default: + yield new CodeUnit(start, source); + yield new CodeUnit(start, source); + break; + } +} + +/** + * Parses a string literal. + * @param {string} source The string literal to parse, including the delimiting quotes. + * @returns {CodeUnit[]} A list of code units produced by the string literal. + */ +function parseStringLiteral(source) { + const reader = new TextReader(source); + const quote = reader.read(); + + reader.advance(1); + const codeUnits = []; + + for (;;) { + const char = reader.read(); + + if (char === quote) { + break; + } + if (char === "\\") { + codeUnits.push(...mapEscapeSequenceOrLineContinuation(reader)); + } else { + codeUnits.push(new CodeUnit(reader.pos, char)); + reader.advance(1); + } + } + return codeUnits; +} + +/** + * Parses a template token. + * @param {string} source The template token to parse, including the delimiting sequences `` ` ``, `${` and `}`. + * @returns {CodeUnit[]} A list of code units produced by the template token. + */ +function parseTemplateToken(source) { + const reader = new TextReader(source); + + reader.advance(1); + const codeUnits = []; + + for (;;) { + const char = reader.read(); + + if (char === "`" || char === "$" && reader.read(1) === "{") { + break; + } + if (char === "\\") { + codeUnits.push(...mapEscapeSequenceOrLineContinuation(reader)); + } else { + let unitSource; + + if (char === "\r" && reader.read(1) === "\n") { + unitSource = "\r\n"; + } else { + unitSource = char; + } + codeUnits.push(new CodeUnit(reader.pos, unitSource)); + reader.advance(unitSource.length); + } + } + return codeUnits; +} + +module.exports = { parseStringLiteral, parseTemplateToken }; diff --git a/tools/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js b/tools/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js index 7f116a2684fef7..3fa5d83b0e8309 100644 --- a/tools/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js +++ b/tools/node_modules/eslint/lib/rules/utils/lazy-loading-rule-map.js @@ -6,7 +6,7 @@ const debug = require("debug")("eslint:rules"); -/** @typedef {import("./types").Rule} Rule */ +/** @typedef {import("../../shared/types").Rule} Rule */ /** * The `Map` object that loads each rule when it's accessed. diff --git a/tools/node_modules/eslint/lib/rules/utils/patterns/letters.js b/tools/node_modules/eslint/lib/rules/utils/patterns/letters.js deleted file mode 100644 index 9bb2de31010db5..00000000000000 --- a/tools/node_modules/eslint/lib/rules/utils/patterns/letters.js +++ /dev/null @@ -1,36 +0,0 @@ -/** - * @fileoverview Pattern for detecting any letter (even letters outside of ASCII). - * NOTE: This file was generated using this script in JSCS based on the Unicode 7.0.0 standard: https://github.com/jscs-dev/node-jscs/blob/f5ed14427deb7e7aac84f3056a5aab2d9f3e563e/publish/helpers/generate-patterns.js - * Do not edit this file by hand-- please use https://github.com/mathiasbynens/regenerate to regenerate the regular expression exported from this file. - * @author Kevin Partington - * @license MIT License (from JSCS). See below. - */ - -/* - * The MIT License (MIT) - * - * Copyright 2013-2016 Dulin Marat and other contributors - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - */ - -"use strict"; - -module.exports = /[A-Za-z\xAA\xB5\xBA\xC0-\xD6\xD8-\xF6\xF8-\u02C1\u02C6-\u02D1\u02E0-\u02E4\u02EC\u02EE\u0370-\u0374\u0376\u0377\u037A-\u037D\u037F\u0386\u0388-\u038A\u038C\u038E-\u03A1\u03A3-\u03F5\u03F7-\u0481\u048A-\u052F\u0531-\u0556\u0559\u0561-\u0587\u05D0-\u05EA\u05F0-\u05F2\u0620-\u064A\u066E\u066F\u0671-\u06D3\u06D5\u06E5\u06E6\u06EE\u06EF\u06FA-\u06FC\u06FF\u0710\u0712-\u072F\u074D-\u07A5\u07B1\u07CA-\u07EA\u07F4\u07F5\u07FA\u0800-\u0815\u081A\u0824\u0828\u0840-\u0858\u08A0-\u08B2\u0904-\u0939\u093D\u0950\u0958-\u0961\u0971-\u0980\u0985-\u098C\u098F\u0990\u0993-\u09A8\u09AA-\u09B0\u09B2\u09B6-\u09B9\u09BD\u09CE\u09DC\u09DD\u09DF-\u09E1\u09F0\u09F1\u0A05-\u0A0A\u0A0F\u0A10\u0A13-\u0A28\u0A2A-\u0A30\u0A32\u0A33\u0A35\u0A36\u0A38\u0A39\u0A59-\u0A5C\u0A5E\u0A72-\u0A74\u0A85-\u0A8D\u0A8F-\u0A91\u0A93-\u0AA8\u0AAA-\u0AB0\u0AB2\u0AB3\u0AB5-\u0AB9\u0ABD\u0AD0\u0AE0\u0AE1\u0B05-\u0B0C\u0B0F\u0B10\u0B13-\u0B28\u0B2A-\u0B30\u0B32\u0B33\u0B35-\u0B39\u0B3D\u0B5C\u0B5D\u0B5F-\u0B61\u0B71\u0B83\u0B85-\u0B8A\u0B8E-\u0B90\u0B92-\u0B95\u0B99\u0B9A\u0B9C\u0B9E\u0B9F\u0BA3\u0BA4\u0BA8-\u0BAA\u0BAE-\u0BB9\u0BD0\u0C05-\u0C0C\u0C0E-\u0C10\u0C12-\u0C28\u0C2A-\u0C39\u0C3D\u0C58\u0C59\u0C60\u0C61\u0C85-\u0C8C\u0C8E-\u0C90\u0C92-\u0CA8\u0CAA-\u0CB3\u0CB5-\u0CB9\u0CBD\u0CDE\u0CE0\u0CE1\u0CF1\u0CF2\u0D05-\u0D0C\u0D0E-\u0D10\u0D12-\u0D3A\u0D3D\u0D4E\u0D60\u0D61\u0D7A-\u0D7F\u0D85-\u0D96\u0D9A-\u0DB1\u0DB3-\u0DBB\u0DBD\u0DC0-\u0DC6\u0E01-\u0E30\u0E32\u0E33\u0E40-\u0E46\u0E81\u0E82\u0E84\u0E87\u0E88\u0E8A\u0E8D\u0E94-\u0E97\u0E99-\u0E9F\u0EA1-\u0EA3\u0EA5\u0EA7\u0EAA\u0EAB\u0EAD-\u0EB0\u0EB2\u0EB3\u0EBD\u0EC0-\u0EC4\u0EC6\u0EDC-\u0EDF\u0F00\u0F40-\u0F47\u0F49-\u0F6C\u0F88-\u0F8C\u1000-\u102A\u103F\u1050-\u1055\u105A-\u105D\u1061\u1065\u1066\u106E-\u1070\u1075-\u1081\u108E\u10A0-\u10C5\u10C7\u10CD\u10D0-\u10FA\u10FC-\u1248\u124A-\u124D\u1250-\u1256\u1258\u125A-\u125D\u1260-\u1288\u128A-\u128D\u1290-\u12B0\u12B2-\u12B5\u12B8-\u12BE\u12C0\u12C2-\u12C5\u12C8-\u12D6\u12D8-\u1310\u1312-\u1315\u1318-\u135A\u1380-\u138F\u13A0-\u13F4\u1401-\u166C\u166F-\u167F\u1681-\u169A\u16A0-\u16EA\u16F1-\u16F8\u1700-\u170C\u170E-\u1711\u1720-\u1731\u1740-\u1751\u1760-\u176C\u176E-\u1770\u1780-\u17B3\u17D7\u17DC\u1820-\u1877\u1880-\u18A8\u18AA\u18B0-\u18F5\u1900-\u191E\u1950-\u196D\u1970-\u1974\u1980-\u19AB\u19C1-\u19C7\u1A00-\u1A16\u1A20-\u1A54\u1AA7\u1B05-\u1B33\u1B45-\u1B4B\u1B83-\u1BA0\u1BAE\u1BAF\u1BBA-\u1BE5\u1C00-\u1C23\u1C4D-\u1C4F\u1C5A-\u1C7D\u1CE9-\u1CEC\u1CEE-\u1CF1\u1CF5\u1CF6\u1D00-\u1DBF\u1E00-\u1F15\u1F18-\u1F1D\u1F20-\u1F45\u1F48-\u1F4D\u1F50-\u1F57\u1F59\u1F5B\u1F5D\u1F5F-\u1F7D\u1F80-\u1FB4\u1FB6-\u1FBC\u1FBE\u1FC2-\u1FC4\u1FC6-\u1FCC\u1FD0-\u1FD3\u1FD6-\u1FDB\u1FE0-\u1FEC\u1FF2-\u1FF4\u1FF6-\u1FFC\u2071\u207F\u2090-\u209C\u2102\u2107\u210A-\u2113\u2115\u2119-\u211D\u2124\u2126\u2128\u212A-\u212D\u212F-\u2139\u213C-\u213F\u2145-\u2149\u214E\u2183\u2184\u2C00-\u2C2E\u2C30-\u2C5E\u2C60-\u2CE4\u2CEB-\u2CEE\u2CF2\u2CF3\u2D00-\u2D25\u2D27\u2D2D\u2D30-\u2D67\u2D6F\u2D80-\u2D96\u2DA0-\u2DA6\u2DA8-\u2DAE\u2DB0-\u2DB6\u2DB8-\u2DBE\u2DC0-\u2DC6\u2DC8-\u2DCE\u2DD0-\u2DD6\u2DD8-\u2DDE\u2E2F\u3005\u3006\u3031-\u3035\u303B\u303C\u3041-\u3096\u309D-\u309F\u30A1-\u30FA\u30FC-\u30FF\u3105-\u312D\u3131-\u318E\u31A0-\u31BA\u31F0-\u31FF\u3400-\u4DB5\u4E00-\u9FCC\uA000-\uA48C\uA4D0-\uA4FD\uA500-\uA60C\uA610-\uA61F\uA62A\uA62B\uA640-\uA66E\uA67F-\uA69D\uA6A0-\uA6E5\uA717-\uA71F\uA722-\uA788\uA78B-\uA78E\uA790-\uA7AD\uA7B0\uA7B1\uA7F7-\uA801\uA803-\uA805\uA807-\uA80A\uA80C-\uA822\uA840-\uA873\uA882-\uA8B3\uA8F2-\uA8F7\uA8FB\uA90A-\uA925\uA930-\uA946\uA960-\uA97C\uA984-\uA9B2\uA9CF\uA9E0-\uA9E4\uA9E6-\uA9EF\uA9FA-\uA9FE\uAA00-\uAA28\uAA40-\uAA42\uAA44-\uAA4B\uAA60-\uAA76\uAA7A\uAA7E-\uAAAF\uAAB1\uAAB5\uAAB6\uAAB9-\uAABD\uAAC0\uAAC2\uAADB-\uAADD\uAAE0-\uAAEA\uAAF2-\uAAF4\uAB01-\uAB06\uAB09-\uAB0E\uAB11-\uAB16\uAB20-\uAB26\uAB28-\uAB2E\uAB30-\uAB5A\uAB5C-\uAB5F\uAB64\uAB65\uABC0-\uABE2\uAC00-\uD7A3\uD7B0-\uD7C6\uD7CB-\uD7FB\uF900-\uFA6D\uFA70-\uFAD9\uFB00-\uFB06\uFB13-\uFB17\uFB1D\uFB1F-\uFB28\uFB2A-\uFB36\uFB38-\uFB3C\uFB3E\uFB40\uFB41\uFB43\uFB44\uFB46-\uFBB1\uFBD3-\uFD3D\uFD50-\uFD8F\uFD92-\uFDC7\uFDF0-\uFDFB\uFE70-\uFE74\uFE76-\uFEFC\uFF21-\uFF3A\uFF41-\uFF5A\uFF66-\uFFBE\uFFC2-\uFFC7\uFFCA-\uFFCF\uFFD2-\uFFD7\uFFDA-\uFFDC]|\uD800[\uDC00-\uDC0B\uDC0D-\uDC26\uDC28-\uDC3A\uDC3C\uDC3D\uDC3F-\uDC4D\uDC50-\uDC5D\uDC80-\uDCFA\uDE80-\uDE9C\uDEA0-\uDED0\uDF00-\uDF1F\uDF30-\uDF40\uDF42-\uDF49\uDF50-\uDF75\uDF80-\uDF9D\uDFA0-\uDFC3\uDFC8-\uDFCF]|\uD801[\uDC00-\uDC9D\uDD00-\uDD27\uDD30-\uDD63\uDE00-\uDF36\uDF40-\uDF55\uDF60-\uDF67]|\uD802[\uDC00-\uDC05\uDC08\uDC0A-\uDC35\uDC37\uDC38\uDC3C\uDC3F-\uDC55\uDC60-\uDC76\uDC80-\uDC9E\uDD00-\uDD15\uDD20-\uDD39\uDD80-\uDDB7\uDDBE\uDDBF\uDE00\uDE10-\uDE13\uDE15-\uDE17\uDE19-\uDE33\uDE60-\uDE7C\uDE80-\uDE9C\uDEC0-\uDEC7\uDEC9-\uDEE4\uDF00-\uDF35\uDF40-\uDF55\uDF60-\uDF72\uDF80-\uDF91]|\uD803[\uDC00-\uDC48]|\uD804[\uDC03-\uDC37\uDC83-\uDCAF\uDCD0-\uDCE8\uDD03-\uDD26\uDD50-\uDD72\uDD76\uDD83-\uDDB2\uDDC1-\uDDC4\uDDDA\uDE00-\uDE11\uDE13-\uDE2B\uDEB0-\uDEDE\uDF05-\uDF0C\uDF0F\uDF10\uDF13-\uDF28\uDF2A-\uDF30\uDF32\uDF33\uDF35-\uDF39\uDF3D\uDF5D-\uDF61]|\uD805[\uDC80-\uDCAF\uDCC4\uDCC5\uDCC7\uDD80-\uDDAE\uDE00-\uDE2F\uDE44\uDE80-\uDEAA]|\uD806[\uDCA0-\uDCDF\uDCFF\uDEC0-\uDEF8]|\uD808[\uDC00-\uDF98]|[\uD80C\uD840-\uD868\uD86A-\uD86C][\uDC00-\uDFFF]|\uD80D[\uDC00-\uDC2E]|\uD81A[\uDC00-\uDE38\uDE40-\uDE5E\uDED0-\uDEED\uDF00-\uDF2F\uDF40-\uDF43\uDF63-\uDF77\uDF7D-\uDF8F]|\uD81B[\uDF00-\uDF44\uDF50\uDF93-\uDF9F]|\uD82C[\uDC00\uDC01]|\uD82F[\uDC00-\uDC6A\uDC70-\uDC7C\uDC80-\uDC88\uDC90-\uDC99]|\uD835[\uDC00-\uDC54\uDC56-\uDC9C\uDC9E\uDC9F\uDCA2\uDCA5\uDCA6\uDCA9-\uDCAC\uDCAE-\uDCB9\uDCBB\uDCBD-\uDCC3\uDCC5-\uDD05\uDD07-\uDD0A\uDD0D-\uDD14\uDD16-\uDD1C\uDD1E-\uDD39\uDD3B-\uDD3E\uDD40-\uDD44\uDD46\uDD4A-\uDD50\uDD52-\uDEA5\uDEA8-\uDEC0\uDEC2-\uDEDA\uDEDC-\uDEFA\uDEFC-\uDF14\uDF16-\uDF34\uDF36-\uDF4E\uDF50-\uDF6E\uDF70-\uDF88\uDF8A-\uDFA8\uDFAA-\uDFC2\uDFC4-\uDFCB]|\uD83A[\uDC00-\uDCC4]|\uD83B[\uDE00-\uDE03\uDE05-\uDE1F\uDE21\uDE22\uDE24\uDE27\uDE29-\uDE32\uDE34-\uDE37\uDE39\uDE3B\uDE42\uDE47\uDE49\uDE4B\uDE4D-\uDE4F\uDE51\uDE52\uDE54\uDE57\uDE59\uDE5B\uDE5D\uDE5F\uDE61\uDE62\uDE64\uDE67-\uDE6A\uDE6C-\uDE72\uDE74-\uDE77\uDE79-\uDE7C\uDE7E\uDE80-\uDE89\uDE8B-\uDE9B\uDEA1-\uDEA3\uDEA5-\uDEA9\uDEAB-\uDEBB]|\uD869[\uDC00-\uDED6\uDF00-\uDFFF]|\uD86D[\uDC00-\uDF34\uDF40-\uDFFF]|\uD86E[\uDC00-\uDC1D]|\uD87E[\uDC00-\uDE1D]/u; diff --git a/tools/node_modules/eslint/lib/rules/utils/unicode/index.js b/tools/node_modules/eslint/lib/rules/utils/unicode/index.js index 02eea502dfe669..d35d812e1e97f0 100644 --- a/tools/node_modules/eslint/lib/rules/utils/unicode/index.js +++ b/tools/node_modules/eslint/lib/rules/utils/unicode/index.js @@ -3,9 +3,14 @@ */ "use strict"; +const isCombiningCharacter = require("./is-combining-character"); +const isEmojiModifier = require("./is-emoji-modifier"); +const isRegionalIndicatorSymbol = require("./is-regional-indicator-symbol"); +const isSurrogatePair = require("./is-surrogate-pair"); + module.exports = { - isCombiningCharacter: require("./is-combining-character"), - isEmojiModifier: require("./is-emoji-modifier"), - isRegionalIndicatorSymbol: require("./is-regional-indicator-symbol"), - isSurrogatePair: require("./is-surrogate-pair") + isCombiningCharacter, + isEmojiModifier, + isRegionalIndicatorSymbol, + isSurrogatePair }; diff --git a/tools/node_modules/eslint/lib/rules/valid-jsdoc.js b/tools/node_modules/eslint/lib/rules/valid-jsdoc.js deleted file mode 100644 index 919975fe101f73..00000000000000 --- a/tools/node_modules/eslint/lib/rules/valid-jsdoc.js +++ /dev/null @@ -1,516 +0,0 @@ -/** - * @fileoverview Validates JSDoc comments are syntactically correct - * @author Nicholas C. Zakas - * @deprecated in ESLint v5.10.0 - */ -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const doctrine = require("doctrine"); - -//------------------------------------------------------------------------------ -// Rule Definition -//------------------------------------------------------------------------------ - -/** @type {import('../shared/types').Rule} */ -module.exports = { - meta: { - type: "suggestion", - - docs: { - description: "Enforce valid JSDoc comments", - recommended: false, - url: "https://eslint.org/docs/latest/rules/valid-jsdoc" - }, - - schema: [ - { - type: "object", - properties: { - prefer: { - type: "object", - additionalProperties: { - type: "string" - } - }, - preferType: { - type: "object", - additionalProperties: { - type: "string" - } - }, - requireReturn: { - type: "boolean", - default: true - }, - requireParamDescription: { - type: "boolean", - default: true - }, - requireReturnDescription: { - type: "boolean", - default: true - }, - matchDescription: { - type: "string" - }, - requireReturnType: { - type: "boolean", - default: true - }, - requireParamType: { - type: "boolean", - default: true - } - }, - additionalProperties: false - } - ], - - fixable: "code", - messages: { - unexpectedTag: "Unexpected @{{title}} tag; function has no return statement.", - expected: "Expected JSDoc for '{{name}}' but found '{{jsdocName}}'.", - use: "Use @{{name}} instead.", - useType: "Use '{{expectedTypeName}}' instead of '{{currentTypeName}}'.", - syntaxError: "JSDoc syntax error.", - missingBrace: "JSDoc type missing brace.", - missingParamDesc: "Missing JSDoc parameter description for '{{name}}'.", - missingParamType: "Missing JSDoc parameter type for '{{name}}'.", - missingReturnType: "Missing JSDoc return type.", - missingReturnDesc: "Missing JSDoc return description.", - missingReturn: "Missing JSDoc @{{returns}} for function.", - missingParam: "Missing JSDoc for parameter '{{name}}'.", - duplicateParam: "Duplicate JSDoc parameter '{{name}}'.", - unsatisfiedDesc: "JSDoc description does not satisfy the regex pattern." - }, - - deprecated: true, - replacedBy: [] - }, - - create(context) { - - const options = context.options[0] || {}, - prefer = options.prefer || {}, - sourceCode = context.sourceCode, - - // these both default to true, so you have to explicitly make them false - requireReturn = options.requireReturn !== false, - requireParamDescription = options.requireParamDescription !== false, - requireReturnDescription = options.requireReturnDescription !== false, - requireReturnType = options.requireReturnType !== false, - requireParamType = options.requireParamType !== false, - preferType = options.preferType || {}, - checkPreferType = Object.keys(preferType).length !== 0; - - //-------------------------------------------------------------------------- - // Helpers - //-------------------------------------------------------------------------- - - // Using a stack to store if a function returns or not (handling nested functions) - const fns = []; - - /** - * Check if node type is a Class - * @param {ASTNode} node node to check. - * @returns {boolean} True is its a class - * @private - */ - function isTypeClass(node) { - return node.type === "ClassExpression" || node.type === "ClassDeclaration"; - } - - /** - * When parsing a new function, store it in our function stack. - * @param {ASTNode} node A function node to check. - * @returns {void} - * @private - */ - function startFunction(node) { - fns.push({ - returnPresent: (node.type === "ArrowFunctionExpression" && node.body.type !== "BlockStatement") || - isTypeClass(node) || node.async - }); - } - - /** - * Indicate that return has been found in the current function. - * @param {ASTNode} node The return node. - * @returns {void} - * @private - */ - function addReturn(node) { - const functionState = fns[fns.length - 1]; - - if (functionState && node.argument !== null) { - functionState.returnPresent = true; - } - } - - /** - * Check if return tag type is void or undefined - * @param {Object} tag JSDoc tag - * @returns {boolean} True if its of type void or undefined - * @private - */ - function isValidReturnType(tag) { - return tag.type === null || tag.type.name === "void" || tag.type.type === "UndefinedLiteral"; - } - - /** - * Check if type should be validated based on some exceptions - * @param {Object} type JSDoc tag - * @returns {boolean} True if it can be validated - * @private - */ - function canTypeBeValidated(type) { - return type !== "UndefinedLiteral" && // {undefined} as there is no name property available. - type !== "NullLiteral" && // {null} - type !== "NullableLiteral" && // {?} - type !== "FunctionType" && // {function(a)} - type !== "AllLiteral"; // {*} - } - - /** - * Extract the current and expected type based on the input type object - * @param {Object} type JSDoc tag - * @returns {{currentType: Doctrine.Type, expectedTypeName: string}} The current type annotation and - * the expected name of the annotation - * @private - */ - function getCurrentExpectedTypes(type) { - let currentType; - - if (type.name) { - currentType = type; - } else if (type.expression) { - currentType = type.expression; - } - - return { - currentType, - expectedTypeName: currentType && preferType[currentType.name] - }; - } - - /** - * Gets the location of a JSDoc node in a file - * @param {Token} jsdocComment The comment that this node is parsed from - * @param {{range: number[]}} parsedJsdocNode A tag or other node which was parsed from this comment - * @returns {{start: SourceLocation, end: SourceLocation}} The 0-based source location for the tag - */ - function getAbsoluteRange(jsdocComment, parsedJsdocNode) { - return { - start: sourceCode.getLocFromIndex(jsdocComment.range[0] + 2 + parsedJsdocNode.range[0]), - end: sourceCode.getLocFromIndex(jsdocComment.range[0] + 2 + parsedJsdocNode.range[1]) - }; - } - - /** - * Validate type for a given JSDoc node - * @param {Object} jsdocNode JSDoc node - * @param {Object} type JSDoc tag - * @returns {void} - * @private - */ - function validateType(jsdocNode, type) { - if (!type || !canTypeBeValidated(type.type)) { - return; - } - - const typesToCheck = []; - let elements = []; - - switch (type.type) { - case "TypeApplication": // {Array.} - elements = type.applications[0].type === "UnionType" ? type.applications[0].elements : type.applications; - typesToCheck.push(getCurrentExpectedTypes(type)); - break; - case "RecordType": // {{20:String}} - elements = type.fields; - break; - case "UnionType": // {String|number|Test} - case "ArrayType": // {[String, number, Test]} - elements = type.elements; - break; - case "FieldType": // Array.<{count: number, votes: number}> - if (type.value) { - typesToCheck.push(getCurrentExpectedTypes(type.value)); - } - break; - default: - typesToCheck.push(getCurrentExpectedTypes(type)); - } - - elements.forEach(validateType.bind(null, jsdocNode)); - - typesToCheck.forEach(typeToCheck => { - if (typeToCheck.expectedTypeName && - typeToCheck.expectedTypeName !== typeToCheck.currentType.name) { - context.report({ - node: jsdocNode, - messageId: "useType", - loc: getAbsoluteRange(jsdocNode, typeToCheck.currentType), - data: { - currentTypeName: typeToCheck.currentType.name, - expectedTypeName: typeToCheck.expectedTypeName - }, - fix(fixer) { - return fixer.replaceTextRange( - typeToCheck.currentType.range.map(indexInComment => jsdocNode.range[0] + 2 + indexInComment), - typeToCheck.expectedTypeName - ); - } - }); - } - }); - } - - /** - * Validate the JSDoc node and output warnings if anything is wrong. - * @param {ASTNode} node The AST node to check. - * @returns {void} - * @private - */ - function checkJSDoc(node) { - const jsdocNode = sourceCode.getJSDocComment(node), - functionData = fns.pop(), - paramTagsByName = Object.create(null), - paramTags = []; - let hasReturns = false, - returnsTag, - hasConstructor = false, - isInterface = false, - isOverride = false, - isAbstract = false; - - // make sure only to validate JSDoc comments - if (jsdocNode) { - let jsdoc; - - try { - jsdoc = doctrine.parse(jsdocNode.value, { - strict: true, - unwrap: true, - sloppy: true, - range: true - }); - } catch (ex) { - - if (/braces/iu.test(ex.message)) { - context.report({ node: jsdocNode, messageId: "missingBrace" }); - } else { - context.report({ node: jsdocNode, messageId: "syntaxError" }); - } - - return; - } - - jsdoc.tags.forEach(tag => { - - switch (tag.title.toLowerCase()) { - - case "param": - case "arg": - case "argument": - paramTags.push(tag); - break; - - case "return": - case "returns": - hasReturns = true; - returnsTag = tag; - break; - - case "constructor": - case "class": - hasConstructor = true; - break; - - case "override": - case "inheritdoc": - isOverride = true; - break; - - case "abstract": - case "virtual": - isAbstract = true; - break; - - case "interface": - isInterface = true; - break; - - // no default - } - - // check tag preferences - if (Object.prototype.hasOwnProperty.call(prefer, tag.title) && tag.title !== prefer[tag.title]) { - const entireTagRange = getAbsoluteRange(jsdocNode, tag); - - context.report({ - node: jsdocNode, - messageId: "use", - loc: { - start: entireTagRange.start, - end: { - line: entireTagRange.start.line, - column: entireTagRange.start.column + `@${tag.title}`.length - } - }, - data: { name: prefer[tag.title] }, - fix(fixer) { - return fixer.replaceTextRange( - [ - jsdocNode.range[0] + tag.range[0] + 3, - jsdocNode.range[0] + tag.range[0] + tag.title.length + 3 - ], - prefer[tag.title] - ); - } - }); - } - - // validate the types - if (checkPreferType && tag.type) { - validateType(jsdocNode, tag.type); - } - }); - - paramTags.forEach(param => { - if (requireParamType && !param.type) { - context.report({ - node: jsdocNode, - messageId: "missingParamType", - loc: getAbsoluteRange(jsdocNode, param), - data: { name: param.name } - }); - } - if (!param.description && requireParamDescription) { - context.report({ - node: jsdocNode, - messageId: "missingParamDesc", - loc: getAbsoluteRange(jsdocNode, param), - data: { name: param.name } - }); - } - if (paramTagsByName[param.name]) { - context.report({ - node: jsdocNode, - messageId: "duplicateParam", - loc: getAbsoluteRange(jsdocNode, param), - data: { name: param.name } - }); - } else if (!param.name.includes(".")) { - paramTagsByName[param.name] = param; - } - }); - - if (hasReturns) { - if (!requireReturn && !functionData.returnPresent && (returnsTag.type === null || !isValidReturnType(returnsTag)) && !isAbstract) { - context.report({ - node: jsdocNode, - messageId: "unexpectedTag", - loc: getAbsoluteRange(jsdocNode, returnsTag), - data: { - title: returnsTag.title - } - }); - } else { - if (requireReturnType && !returnsTag.type) { - context.report({ node: jsdocNode, messageId: "missingReturnType" }); - } - - if (!isValidReturnType(returnsTag) && !returnsTag.description && requireReturnDescription) { - context.report({ node: jsdocNode, messageId: "missingReturnDesc" }); - } - } - } - - // check for functions missing @returns - if (!isOverride && !hasReturns && !hasConstructor && !isInterface && - node.parent.kind !== "get" && node.parent.kind !== "constructor" && - node.parent.kind !== "set" && !isTypeClass(node)) { - if (requireReturn || (functionData.returnPresent && !node.async)) { - context.report({ - node: jsdocNode, - messageId: "missingReturn", - data: { - returns: prefer.returns || "returns" - } - }); - } - } - - // check the parameters - const jsdocParamNames = Object.keys(paramTagsByName); - - if (node.params) { - node.params.forEach((param, paramsIndex) => { - const bindingParam = param.type === "AssignmentPattern" - ? param.left - : param; - - // TODO(nzakas): Figure out logical things to do with destructured, default, rest params - if (bindingParam.type === "Identifier") { - const name = bindingParam.name; - - if (jsdocParamNames[paramsIndex] && (name !== jsdocParamNames[paramsIndex])) { - context.report({ - node: jsdocNode, - messageId: "expected", - loc: getAbsoluteRange(jsdocNode, paramTagsByName[jsdocParamNames[paramsIndex]]), - data: { - name, - jsdocName: jsdocParamNames[paramsIndex] - } - }); - } else if (!paramTagsByName[name] && !isOverride) { - context.report({ - node: jsdocNode, - messageId: "missingParam", - data: { - name - } - }); - } - } - }); - } - - if (options.matchDescription) { - const regex = new RegExp(options.matchDescription, "u"); - - if (!regex.test(jsdoc.description)) { - context.report({ node: jsdocNode, messageId: "unsatisfiedDesc" }); - } - } - - } - - } - - //-------------------------------------------------------------------------- - // Public - //-------------------------------------------------------------------------- - - return { - ArrowFunctionExpression: startFunction, - FunctionExpression: startFunction, - FunctionDeclaration: startFunction, - ClassExpression: startFunction, - ClassDeclaration: startFunction, - "ArrowFunctionExpression:exit": checkJSDoc, - "FunctionExpression:exit": checkJSDoc, - "FunctionDeclaration:exit": checkJSDoc, - "ClassExpression:exit": checkJSDoc, - "ClassDeclaration:exit": checkJSDoc, - ReturnStatement: addReturn - }; - - } -}; diff --git a/tools/node_modules/eslint/lib/rules/yield-star-spacing.js b/tools/node_modules/eslint/lib/rules/yield-star-spacing.js index 9a67b78d25f034..5cf3804abb835e 100644 --- a/tools/node_modules/eslint/lib/rules/yield-star-spacing.js +++ b/tools/node_modules/eslint/lib/rules/yield-star-spacing.js @@ -79,7 +79,7 @@ module.exports = { const after = leftToken.value === "*"; const spaceRequired = mode[side]; const node = after ? leftToken : rightToken; - let messageId = ""; + let messageId; if (spaceRequired) { messageId = side === "before" ? "missingBefore" : "missingAfter"; diff --git a/tools/node_modules/eslint/lib/shared/config-validator.js b/tools/node_modules/eslint/lib/shared/config-validator.js deleted file mode 100644 index 47353ac4814b72..00000000000000 --- a/tools/node_modules/eslint/lib/shared/config-validator.js +++ /dev/null @@ -1,347 +0,0 @@ -/* - * STOP!!! DO NOT MODIFY. - * - * This file is part of the ongoing work to move the eslintrc-style config - * system into the @eslint/eslintrc package. This file needs to remain - * unchanged in order for this work to proceed. - * - * If you think you need to change this file, please contact @nzakas first. - * - * Thanks in advance for your cooperation. - */ - -/** - * @fileoverview Validates configs. - * @author Brandon Mills - */ - -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const - util = require("util"), - configSchema = require("../../conf/config-schema"), - BuiltInRules = require("../rules"), - { - Legacy: { - ConfigOps, - environments: BuiltInEnvironments - } - } = require("@eslint/eslintrc"), - { emitDeprecationWarning } = require("./deprecation-warnings"); - -const ajv = require("./ajv")(); -const ruleValidators = new WeakMap(); -const noop = Function.prototype; - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ -let validateSchema; -const severityMap = { - error: 2, - warn: 1, - off: 0 -}; - -/** - * Gets a complete options schema for a rule. - * @param {{create: Function, schema: (Array|null)}} rule A new-style rule object - * @returns {Object} JSON Schema for the rule's options. - */ -function getRuleOptionsSchema(rule) { - if (!rule) { - return null; - } - - const schema = rule.schema || rule.meta && rule.meta.schema; - - // Given a tuple of schemas, insert warning level at the beginning - if (Array.isArray(schema)) { - if (schema.length) { - return { - type: "array", - items: schema, - minItems: 0, - maxItems: schema.length - }; - } - return { - type: "array", - minItems: 0, - maxItems: 0 - }; - - } - - // Given a full schema, leave it alone - return schema || null; -} - -/** - * Validates a rule's severity and returns the severity value. Throws an error if the severity is invalid. - * @param {options} options The given options for the rule. - * @throws {Error} Wrong severity value. - * @returns {number|string} The rule's severity value - */ -function validateRuleSeverity(options) { - const severity = Array.isArray(options) ? options[0] : options; - const normSeverity = typeof severity === "string" ? severityMap[severity.toLowerCase()] : severity; - - if (normSeverity === 0 || normSeverity === 1 || normSeverity === 2) { - return normSeverity; - } - - throw new Error(`\tSeverity should be one of the following: 0 = off, 1 = warn, 2 = error (you passed '${util.inspect(severity).replace(/'/gu, "\"").replace(/\n/gu, "")}').\n`); - -} - -/** - * Validates the non-severity options passed to a rule, based on its schema. - * @param {{create: Function}} rule The rule to validate - * @param {Array} localOptions The options for the rule, excluding severity - * @throws {Error} Any rule validation errors. - * @returns {void} - */ -function validateRuleSchema(rule, localOptions) { - if (!ruleValidators.has(rule)) { - const schema = getRuleOptionsSchema(rule); - - if (schema) { - ruleValidators.set(rule, ajv.compile(schema)); - } - } - - const validateRule = ruleValidators.get(rule); - - if (validateRule) { - validateRule(localOptions); - if (validateRule.errors) { - throw new Error(validateRule.errors.map( - error => `\tValue ${JSON.stringify(error.data)} ${error.message}.\n` - ).join("")); - } - } -} - -/** - * Validates a rule's options against its schema. - * @param {{create: Function}|null} rule The rule that the config is being validated for - * @param {string} ruleId The rule's unique name. - * @param {Array|number} options The given options for the rule. - * @param {string|null} source The name of the configuration source to report in any errors. If null or undefined, - * no source is prepended to the message. - * @throws {Error} Upon any bad rule configuration. - * @returns {void} - */ -function validateRuleOptions(rule, ruleId, options, source = null) { - try { - const severity = validateRuleSeverity(options); - - if (severity !== 0) { - validateRuleSchema(rule, Array.isArray(options) ? options.slice(1) : []); - } - } catch (err) { - const enhancedMessage = `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; - - if (typeof source === "string") { - throw new Error(`${source}:\n\t${enhancedMessage}`); - } else { - throw new Error(enhancedMessage); - } - } -} - -/** - * Validates an environment object - * @param {Object} environment The environment config object to validate. - * @param {string} source The name of the configuration source to report in any errors. - * @param {(envId:string) => Object} [getAdditionalEnv] A map from strings to loaded environments. - * @returns {void} - */ -function validateEnvironment( - environment, - source, - getAdditionalEnv = noop -) { - - // not having an environment is ok - if (!environment) { - return; - } - - Object.keys(environment).forEach(id => { - const env = getAdditionalEnv(id) || BuiltInEnvironments.get(id) || null; - - if (!env) { - const message = `${source}:\n\tEnvironment key "${id}" is unknown\n`; - - throw new Error(message); - } - }); -} - -/** - * Validates a rules config object - * @param {Object} rulesConfig The rules config object to validate. - * @param {string} source The name of the configuration source to report in any errors. - * @param {(ruleId:string) => Object} getAdditionalRule A map from strings to loaded rules - * @returns {void} - */ -function validateRules( - rulesConfig, - source, - getAdditionalRule = noop -) { - if (!rulesConfig) { - return; - } - - Object.keys(rulesConfig).forEach(id => { - const rule = getAdditionalRule(id) || BuiltInRules.get(id) || null; - - validateRuleOptions(rule, id, rulesConfig[id], source); - }); -} - -/** - * Validates a `globals` section of a config file - * @param {Object} globalsConfig The `globals` section - * @param {string|null} source The name of the configuration source to report in the event of an error. - * @returns {void} - */ -function validateGlobals(globalsConfig, source = null) { - if (!globalsConfig) { - return; - } - - Object.entries(globalsConfig) - .forEach(([configuredGlobal, configuredValue]) => { - try { - ConfigOps.normalizeConfigGlobal(configuredValue); - } catch (err) { - throw new Error(`ESLint configuration of global '${configuredGlobal}' in ${source} is invalid:\n${err.message}`); - } - }); -} - -/** - * Validate `processor` configuration. - * @param {string|undefined} processorName The processor name. - * @param {string} source The name of config file. - * @param {(id:string) => Processor} getProcessor The getter of defined processors. - * @throws {Error} For invalid processor configuration. - * @returns {void} - */ -function validateProcessor(processorName, source, getProcessor) { - if (processorName && !getProcessor(processorName)) { - throw new Error(`ESLint configuration of processor in '${source}' is invalid: '${processorName}' was not found.`); - } -} - -/** - * Formats an array of schema validation errors. - * @param {Array} errors An array of error messages to format. - * @returns {string} Formatted error message - */ -function formatErrors(errors) { - return errors.map(error => { - if (error.keyword === "additionalProperties") { - const formattedPropertyPath = error.dataPath.length ? `${error.dataPath.slice(1)}.${error.params.additionalProperty}` : error.params.additionalProperty; - - return `Unexpected top-level property "${formattedPropertyPath}"`; - } - if (error.keyword === "type") { - const formattedField = error.dataPath.slice(1); - const formattedExpectedType = Array.isArray(error.schema) ? error.schema.join("/") : error.schema; - const formattedValue = JSON.stringify(error.data); - - return `Property "${formattedField}" is the wrong type (expected ${formattedExpectedType} but got \`${formattedValue}\`)`; - } - - const field = error.dataPath[0] === "." ? error.dataPath.slice(1) : error.dataPath; - - return `"${field}" ${error.message}. Value: ${JSON.stringify(error.data)}`; - }).map(message => `\t- ${message}.\n`).join(""); -} - -/** - * Validates the top level properties of the config object. - * @param {Object} config The config object to validate. - * @param {string} source The name of the configuration source to report in any errors. - * @throws {Error} For any config invalid per the schema. - * @returns {void} - */ -function validateConfigSchema(config, source = null) { - validateSchema = validateSchema || ajv.compile(configSchema); - - if (!validateSchema(config)) { - throw new Error(`ESLint configuration in ${source} is invalid:\n${formatErrors(validateSchema.errors)}`); - } - - if (Object.hasOwnProperty.call(config, "ecmaFeatures")) { - emitDeprecationWarning(source, "ESLINT_LEGACY_ECMAFEATURES"); - } -} - -/** - * Validates an entire config object. - * @param {Object} config The config object to validate. - * @param {string} source The name of the configuration source to report in any errors. - * @param {(ruleId:string) => Object} [getAdditionalRule] A map from strings to loaded rules. - * @param {(envId:string) => Object} [getAdditionalEnv] A map from strings to loaded envs. - * @returns {void} - */ -function validate(config, source, getAdditionalRule, getAdditionalEnv) { - validateConfigSchema(config, source); - validateRules(config.rules, source, getAdditionalRule); - validateEnvironment(config.env, source, getAdditionalEnv); - validateGlobals(config.globals, source); - - for (const override of config.overrides || []) { - validateRules(override.rules, source, getAdditionalRule); - validateEnvironment(override.env, source, getAdditionalEnv); - validateGlobals(config.globals, source); - } -} - -const validated = new WeakSet(); - -/** - * Validate config array object. - * @param {ConfigArray} configArray The config array to validate. - * @returns {void} - */ -function validateConfigArray(configArray) { - const getPluginEnv = Map.prototype.get.bind(configArray.pluginEnvironments); - const getPluginProcessor = Map.prototype.get.bind(configArray.pluginProcessors); - const getPluginRule = Map.prototype.get.bind(configArray.pluginRules); - - // Validate. - for (const element of configArray) { - if (validated.has(element)) { - continue; - } - validated.add(element); - - validateEnvironment(element.env, element.name, getPluginEnv); - validateGlobals(element.globals, element.name); - validateProcessor(element.processor, element.name, getPluginProcessor); - validateRules(element.rules, element.name, getPluginRule); - } -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - getRuleOptionsSchema, - validate, - validateConfigArray, - validateConfigSchema, - validateRuleOptions -}; diff --git a/tools/node_modules/eslint/lib/shared/deprecation-warnings.js b/tools/node_modules/eslint/lib/shared/deprecation-warnings.js deleted file mode 100644 index d09cafb07fe13f..00000000000000 --- a/tools/node_modules/eslint/lib/shared/deprecation-warnings.js +++ /dev/null @@ -1,58 +0,0 @@ -/** - * @fileoverview Provide the function that emits deprecation warnings. - * @author Toru Nagashima - */ -"use strict"; - -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const path = require("path"); - -//------------------------------------------------------------------------------ -// Private -//------------------------------------------------------------------------------ - -// Definitions for deprecation warnings. -const deprecationWarningMessages = { - ESLINT_LEGACY_ECMAFEATURES: - "The 'ecmaFeatures' config file property is deprecated and has no effect." -}; - -const sourceFileErrorCache = new Set(); - -/** - * Emits a deprecation warning containing a given filepath. A new deprecation warning is emitted - * for each unique file path, but repeated invocations with the same file path have no effect. - * No warnings are emitted if the `--no-deprecation` or `--no-warnings` Node runtime flags are active. - * @param {string} source The name of the configuration source to report the warning for. - * @param {string} errorCode The warning message to show. - * @returns {void} - */ -function emitDeprecationWarning(source, errorCode) { - const cacheKey = JSON.stringify({ source, errorCode }); - - if (sourceFileErrorCache.has(cacheKey)) { - return; - } - - sourceFileErrorCache.add(cacheKey); - - const rel = path.relative(process.cwd(), source); - const message = deprecationWarningMessages[errorCode]; - - process.emitWarning( - `${message} (found in "${rel}")`, - "DeprecationWarning", - errorCode - ); -} - -//------------------------------------------------------------------------------ -// Public Interface -//------------------------------------------------------------------------------ - -module.exports = { - emitDeprecationWarning -}; diff --git a/tools/node_modules/eslint/lib/shared/relative-module-resolver.js b/tools/node_modules/eslint/lib/shared/relative-module-resolver.js deleted file mode 100644 index 18a694983c19f5..00000000000000 --- a/tools/node_modules/eslint/lib/shared/relative-module-resolver.js +++ /dev/null @@ -1,50 +0,0 @@ -/* - * STOP!!! DO NOT MODIFY. - * - * This file is part of the ongoing work to move the eslintrc-style config - * system into the @eslint/eslintrc package. This file needs to remain - * unchanged in order for this work to proceed. - * - * If you think you need to change this file, please contact @nzakas first. - * - * Thanks in advance for your cooperation. - */ - -/** - * Utility for resolving a module relative to another module - * @author Teddy Katz - */ - -"use strict"; - -const { createRequire } = require("module"); - -module.exports = { - - /** - * Resolves a Node module relative to another module - * @param {string} moduleName The name of a Node module, or a path to a Node module. - * @param {string} relativeToPath An absolute path indicating the module that `moduleName` should be resolved relative to. This must be - * a file rather than a directory, but the file need not actually exist. - * @throws {Error} Any error from `module.createRequire` or its `resolve`. - * @returns {string} The absolute path that would result from calling `require.resolve(moduleName)` in a file located at `relativeToPath` - */ - resolve(moduleName, relativeToPath) { - try { - return createRequire(relativeToPath).resolve(moduleName); - } catch (error) { - - // This `if` block is for older Node.js than 12.0.0. We can remove this block in the future. - if ( - typeof error === "object" && - error !== null && - error.code === "MODULE_NOT_FOUND" && - !error.requireStack && - error.message.includes(moduleName) - ) { - error.message += `\nRequire stack:\n- ${relativeToPath}`; - } - throw error; - } - } -}; diff --git a/tools/node_modules/eslint/lib/shared/runtime-info.js b/tools/node_modules/eslint/lib/shared/runtime-info.js index b99ad1038f3931..29de6fc8d84028 100644 --- a/tools/node_modules/eslint/lib/shared/runtime-info.js +++ b/tools/node_modules/eslint/lib/shared/runtime-info.js @@ -9,9 +9,9 @@ // Requirements //------------------------------------------------------------------------------ -const path = require("path"); +const path = require("node:path"); const spawn = require("cross-spawn"); -const os = require("os"); +const os = require("node:os"); const log = require("../shared/logging"); const packageJson = require("../../package.json"); @@ -162,6 +162,7 @@ function version() { //------------------------------------------------------------------------------ module.exports = { + __esModule: true, // Indicate intent for imports, remove ambiguity for Knip (see: https://github.com/eslint/eslint/pull/18005#discussion_r1484422616) environment, version }; diff --git a/tools/node_modules/eslint/lib/shared/serialization.js b/tools/node_modules/eslint/lib/shared/serialization.js new file mode 100644 index 00000000000000..69f5710f2a306e --- /dev/null +++ b/tools/node_modules/eslint/lib/shared/serialization.js @@ -0,0 +1,55 @@ +/** + * @fileoverview Serialization utils. + * @author Bryan Mishkin + */ + +"use strict"; + +/** + * Check if a value is a primitive or plain object created by the Object constructor. + * @param {any} val the value to check + * @returns {boolean} true if so + * @private + */ +function isSerializablePrimitiveOrPlainObject(val) { + return ( + val === null || + typeof val === "string" || + typeof val === "boolean" || + typeof val === "number" || + (typeof val === "object" && val.constructor === Object) || + Array.isArray(val) + ); +} + +/** + * Check if a value is serializable. + * Functions or objects like RegExp cannot be serialized by JSON.stringify(). + * Inspired by: https://stackoverflow.com/questions/30579940/reliable-way-to-check-if-objects-is-serializable-in-javascript + * @param {any} val the value + * @returns {boolean} true if the value is serializable + */ +function isSerializable(val) { + if (!isSerializablePrimitiveOrPlainObject(val)) { + return false; + } + if (typeof val === "object") { + for (const property in val) { + if (Object.hasOwn(val, property)) { + if (!isSerializablePrimitiveOrPlainObject(val[property])) { + return false; + } + if (typeof val[property] === "object") { + if (!isSerializable(val[property])) { + return false; + } + } + } + } + } + return true; +} + +module.exports = { + isSerializable +}; diff --git a/tools/node_modules/eslint/lib/shared/stats.js b/tools/node_modules/eslint/lib/shared/stats.js new file mode 100644 index 00000000000000..c5d4d1885d415b --- /dev/null +++ b/tools/node_modules/eslint/lib/shared/stats.js @@ -0,0 +1,30 @@ +/** + * @fileoverview Provides helper functions to start/stop the time measurements + * that are provided by the ESLint 'stats' option. + * @author Mara Kiefer + */ +"use strict"; + +/** + * Start time measurement + * @returns {[number, number]} t variable for tracking time + */ +function startTime() { + return process.hrtime(); +} + +/** + * End time measurement + * @param {[number, number]} t Variable for tracking time + * @returns {number} The measured time in milliseconds + */ +function endTime(t) { + const time = process.hrtime(t); + + return time[0] * 1e3 + time[1] / 1e6; +} + +module.exports = { + startTime, + endTime +}; diff --git a/tools/node_modules/eslint/lib/shared/string-utils.js b/tools/node_modules/eslint/lib/shared/string-utils.js index ed0781e578cb13..31d0df982ca43c 100644 --- a/tools/node_modules/eslint/lib/shared/string-utils.js +++ b/tools/node_modules/eslint/lib/shared/string-utils.js @@ -5,12 +5,6 @@ "use strict"; -//------------------------------------------------------------------------------ -// Requirements -//------------------------------------------------------------------------------ - -const Graphemer = require("graphemer").default; - //------------------------------------------------------------------------------ // Helpers //------------------------------------------------------------------------------ @@ -18,8 +12,8 @@ const Graphemer = require("graphemer").default; // eslint-disable-next-line no-control-regex -- intentionally including control characters const ASCII_REGEX = /^[\u0000-\u007f]*$/u; -/** @type {Graphemer | undefined} */ -let splitter; +/** @type {Intl.Segmenter | undefined} */ +let segmenter; //------------------------------------------------------------------------------ // Public Interface @@ -47,11 +41,15 @@ function getGraphemeCount(value) { return value.length; } - if (!splitter) { - splitter = new Graphemer(); + segmenter ??= new Intl.Segmenter("en-US"); // en-US locale should be supported everywhere + let graphemeCount = 0; + + // eslint-disable-next-line no-unused-vars -- for-of needs a variable + for (const unused of segmenter.segment(value)) { + graphemeCount++; } - return splitter.countGraphemes(value); + return graphemeCount; } module.exports = { diff --git a/tools/node_modules/eslint/lib/shared/types.js b/tools/node_modules/eslint/lib/shared/types.js index e3a40bc986be5e..f4186dd96adab8 100644 --- a/tools/node_modules/eslint/lib/shared/types.js +++ b/tools/node_modules/eslint/lib/shared/types.js @@ -168,7 +168,7 @@ module.exports = {}; * @property {Record} [configs] The definition of plugin configs. * @property {Record} [environments] The definition of plugin environments. * @property {Record} [processors] The definition of plugin processors. - * @property {Record} [rules] The definition of plugin rules. + * @property {Record} [rules] The definition of plugin rules. */ /** @@ -189,11 +189,45 @@ module.exports = {}; * @property {number} warningCount Number of warnings for the result. * @property {number} fixableErrorCount Number of fixable errors for the result. * @property {number} fixableWarningCount Number of fixable warnings for the result. + * @property {Stats} [stats] The performance statistics collected with the `stats` flag. * @property {string} [source] The source code of the file that was linted. * @property {string} [output] The source code of the file that was linted, with as many fixes applied as possible. * @property {DeprecatedRuleInfo[]} usedDeprecatedRules The list of used deprecated rules. */ +/** + * Performance statistics + * @typedef {Object} Stats + * @property {number} fixPasses The number of times ESLint has applied at least one fix after linting. + * @property {Times} times The times spent on (parsing, fixing, linting) a file. + */ + +/** + * Performance Times for each ESLint pass + * @typedef {Object} Times + * @property {TimePass[]} passes Time passes + */ + +/** + * @typedef {Object} TimePass + * @property {ParseTime} parse The parse object containing all parse time information. + * @property {Record} [rules] The rules object containing all lint time information for each rule. + * @property {FixTime} fix The parse object containing all fix time information. + * @property {number} total The total time that is spent on (parsing, fixing, linting) a file. + */ +/** + * @typedef {Object} ParseTime + * @property {number} total The total time that is spent when parsing a file. + */ +/** + * @typedef {Object} RuleTime + * @property {number} total The total time that is spent on a rule. + */ +/** + * @typedef {Object} FixTime + * @property {number} total The total time that is spent on applying fixes to the code. + */ + /** * Information provided when the maximum warning threshold is exceeded. * @typedef {Object} MaxWarningsExceeded diff --git a/tools/node_modules/eslint/lib/source-code/index.js b/tools/node_modules/eslint/lib/source-code/index.js index 76e27869f321ac..1ecfbe470aa7cd 100644 --- a/tools/node_modules/eslint/lib/source-code/index.js +++ b/tools/node_modules/eslint/lib/source-code/index.js @@ -1,5 +1,7 @@ "use strict"; +const SourceCode = require("./source-code"); + module.exports = { - SourceCode: require("./source-code") + SourceCode }; diff --git a/tools/node_modules/eslint/lib/source-code/source-code.js b/tools/node_modules/eslint/lib/source-code/source-code.js index 236f6b5c6cc1d7..0ed291afa4fc76 100644 --- a/tools/node_modules/eslint/lib/source-code/source-code.js +++ b/tools/node_modules/eslint/lib/source-code/source-code.js @@ -18,8 +18,12 @@ const directivesPattern } = require("../shared/directives"), - /* eslint-disable-next-line n/no-restricted-require -- Too messy to figure out right now. */ + /* eslint-disable n/no-restricted-require -- Should eventually be moved into SourceCode. */ + CodePathAnalyzer = require("../linter/code-path-analysis/code-path-analyzer"), + createEmitter = require("../linter/safe-emitter"), ConfigCommentParser = require("../linter/config-comment-parser"), + /* eslint-enable n/no-restricted-require -- Should eventually be moved into SourceCode. */ + eslintScope = require("eslint-scope"); //------------------------------------------------------------------------------ @@ -34,6 +38,16 @@ const const commentParser = new ConfigCommentParser(); +const CODE_PATH_EVENTS = [ + "onCodePathStart", + "onCodePathEnd", + "onCodePathSegmentStart", + "onCodePathSegmentEnd", + "onCodePathSegmentLoop", + "onUnreachableCodePathSegmentStart", + "onUnreachableCodePathSegmentEnd" +]; + /** * Validates that the given AST has the required information. * @param {ASTNode} ast The Program node of the AST to check. @@ -300,6 +314,115 @@ function markExportedVariables(globalScope, variables) { } +const STEP_KIND = { + visit: 1, + call: 2 +}; + +/** + * A class to represent a step in the traversal process. + */ +class TraversalStep { + + /** + * The type of the step. + * @type {string} + */ + type; + + /** + * The kind of the step. Represents the same data as the `type` property + * but it's a number for performance. + * @type {number} + */ + kind; + + /** + * The target of the step. + * @type {ASTNode|string} + */ + target; + + /** + * The phase of the step. + * @type {number|undefined} + */ + phase; + + /** + * The arguments of the step. + * @type {Array} + */ + args; + + /** + * Creates a new instance. + * @param {Object} options The options for the step. + * @param {string} options.type The type of the step. + * @param {ASTNode|string} options.target The target of the step. + * @param {number|undefined} [options.phase] The phase of the step. + * @param {Array} options.args The arguments of the step. + * @returns {void} + */ + constructor({ type, target, phase, args }) { + this.type = type; + this.kind = STEP_KIND[type]; + this.target = target; + this.phase = phase; + this.args = args; + } +} + +/** + * A class to represent a directive comment. + */ +class Directive { + + /** + * The type of directive. + * @type {"disable"|"enable"|"disable-next-line"|"disable-line"} + * @readonly + */ + type; + + /** + * The node representing the directive. + * @type {ASTNode|Comment} + * @readonly + */ + node; + + /** + * Everything after the "eslint-disable" portion of the directive, + * but before the "--" that indicates the justification. + * @type {string} + * @readonly + */ + value; + + /** + * The justification for the directive. + * @type {string} + * @readonly + */ + justification; + + /** + * Creates a new instance. + * @param {Object} options The options for the directive. + * @param {"disable"|"enable"|"disable-next-line"|"disable-line"} options.type The type of directive. + * @param {ASTNode|Comment} options.node The node representing the directive. + * @param {string} options.value The value of the directive. + * @param {string} options.justification The justification for the directive. + */ + constructor({ type, node, value, justification }) { + this.type = type; + this.node = node; + this.value = value; + this.justification = justification; + } +} + //------------------------------------------------------------------------------ // Public Interface //------------------------------------------------------------------------------ @@ -311,6 +434,12 @@ const caches = Symbol("caches"); */ class SourceCode extends TokenStore { + /** + * The cache of steps that were taken while traversing the source code. + * @type {Array} + */ + #steps; + /** * @param {string|Object} textOrConfig The source code text or config object. * @param {string} textOrConfig.text The source code text. @@ -415,13 +544,10 @@ class SourceCode extends TokenStore { * and uses match.index to get the correct line start indices. */ while ((match = lineEndingPattern.exec(this.text))) { - this.lines.push(this.text.slice(this.lineStartIndices[this.lineStartIndices.length - 1], match.index)); + this.lines.push(this.text.slice(this.lineStartIndices.at(-1), match.index)); this.lineStartIndices.push(match.index + match[0].length); } - this.lines.push(this.text.slice(this.lineStartIndices[this.lineStartIndices.length - 1])); - - // Cache for comments found using getComments(). - this._commentCache = new WeakMap(); + this.lines.push(this.text.slice(this.lineStartIndices.at(-1))); // don't allow further modification of this object Object.freeze(this); @@ -472,81 +598,6 @@ class SourceCode extends TokenStore { return this.ast.comments; } - /** - * Gets all comments for the given node. - * @param {ASTNode} node The AST node to get the comments for. - * @returns {Object} An object containing a leading and trailing array - * of comments indexed by their position. - * @public - * @deprecated replaced by getCommentsBefore(), getCommentsAfter(), and getCommentsInside(). - */ - getComments(node) { - if (this._commentCache.has(node)) { - return this._commentCache.get(node); - } - - const comments = { - leading: [], - trailing: [] - }; - - /* - * Return all comments as leading comments of the Program node when - * there is no executable code. - */ - if (node.type === "Program") { - if (node.body.length === 0) { - comments.leading = node.comments; - } - } else { - - /* - * Return comments as trailing comments of nodes that only contain - * comments (to mimic the comment attachment behavior present in Espree). - */ - if ((node.type === "BlockStatement" || node.type === "ClassBody") && node.body.length === 0 || - node.type === "ObjectExpression" && node.properties.length === 0 || - node.type === "ArrayExpression" && node.elements.length === 0 || - node.type === "SwitchStatement" && node.cases.length === 0 - ) { - comments.trailing = this.getTokens(node, { - includeComments: true, - filter: isCommentToken - }); - } - - /* - * Iterate over tokens before and after node and collect comment tokens. - * Do not include comments that exist outside of the parent node - * to avoid duplication. - */ - let currentToken = this.getTokenBefore(node, { includeComments: true }); - - while (currentToken && isCommentToken(currentToken)) { - if (node.parent && node.parent.type !== "Program" && (currentToken.start < node.parent.start)) { - break; - } - comments.leading.push(currentToken); - currentToken = this.getTokenBefore(currentToken, { includeComments: true }); - } - - comments.leading.reverse(); - - currentToken = this.getTokenAfter(node, { includeComments: true }); - - while (currentToken && isCommentToken(currentToken)) { - if (node.parent && node.parent.type !== "Program" && (currentToken.end > node.parent.end)) { - break; - } - comments.trailing.push(currentToken); - currentToken = this.getTokenAfter(currentToken, { includeComments: true }); - } - } - - this._commentCache.set(node, comments); - return comments; - } - /** * Retrieves the JSDoc comment for a given node. * @param {ASTNode} node The AST node to get the comment for. @@ -701,14 +752,14 @@ class SourceCode extends TokenStore { * See getIndexFromLoc for the motivation for this special case. */ if (index === this.text.length) { - return { line: this.lines.length, column: this.lines[this.lines.length - 1].length }; + return { line: this.lines.length, column: this.lines.at(-1).length }; } /* * To figure out which line index is on, determine the last place at which index could * be inserted into lineStartIndices to keep the list sorted. */ - const lineNumber = index >= this.lineStartIndices[this.lineStartIndices.length - 1] + const lineNumber = index >= this.lineStartIndices.at(-1) ? this.lineStartIndices.length : this.lineStartIndices.findIndex(el => index < el); @@ -920,6 +971,84 @@ class SourceCode extends TokenStore { return configNodes; } + /** + * Returns an all directive nodes that enable or disable rules along with any problems + * encountered while parsing the directives. + * @returns {{problems:Array,directives:Array}} Information + * that ESLint needs to further process the directives. + */ + getDisableDirectives() { + + // check the cache first + const cachedDirectives = this[caches].get("disableDirectives"); + + if (cachedDirectives) { + return cachedDirectives; + } + + const problems = []; + const directives = []; + + this.getInlineConfigNodes().forEach(comment => { + const { directivePart, justificationPart } = commentParser.extractDirectiveComment(comment.value); + + // Step 1: Extract the directive text + const match = directivesPattern.exec(directivePart); + + if (!match) { + return; + } + + const directiveText = match[1]; + + // Step 2: Extract the directive value + const lineCommentSupported = /^eslint-disable-(next-)?line$/u.test(directiveText); + + if (comment.type === "Line" && !lineCommentSupported) { + return; + } + + // Step 3: Validate the directive does not span multiple lines + if (directiveText === "eslint-disable-line" && comment.loc.start.line !== comment.loc.end.line) { + const message = `${directiveText} comment should not span multiple lines.`; + + problems.push({ + ruleId: null, + message, + loc: comment.loc + }); + return; + } + + // Step 4: Extract the directive value and create the Directive object + const directiveValue = directivePart.slice(match.index + directiveText.length); + + switch (directiveText) { + case "eslint-disable": + case "eslint-enable": + case "eslint-disable-next-line": + case "eslint-disable-line": { + const directiveType = directiveText.slice("eslint-".length); + + directives.push(new Directive({ + type: directiveType, + node: comment, + value: directiveValue, + justification: justificationPart + })); + } + + // no default + } + }); + + const result = { problems, directives }; + + this[caches].set("disableDirectives", result); + + return result; + } + /** * Applies language options sent in from the core. * @param {Object} languageOptions The language options for this run. @@ -934,7 +1063,7 @@ class SourceCode extends TokenStore { * https://github.com/eslint/eslint/issues/16302 */ const configGlobals = Object.assign( - {}, + Object.create(null), // https://github.com/eslint/eslint/issues/18363 getGlobalsForEcmaVersion(languageOptions.ecmaVersion), languageOptions.sourceType === "commonjs" ? globals.commonjs : void 0, languageOptions.globals @@ -963,7 +1092,7 @@ class SourceCode extends TokenStore { switch (directiveText) { case "exported": - Object.assign(exportedVariables, commentParser.parseStringConfig(directiveValue, comment)); + Object.assign(exportedVariables, commentParser.parseListConfig(directiveValue, comment)); break; case "globals": @@ -1050,6 +1179,91 @@ class SourceCode extends TokenStore { } + /** + * Traverse the source code and return the steps that were taken. + * @returns {Array} The steps that were taken while traversing the source code. + */ + traverse() { + + // Because the AST doesn't mutate, we can cache the steps + if (this.#steps) { + return this.#steps; + } + + const steps = this.#steps = []; + + /* + * This logic works for any AST, not just ESTree. Because ESLint has allowed + * custom parsers to return any AST, we need to ensure that the traversal + * logic works for any AST. + */ + const emitter = createEmitter(); + let analyzer = { + enterNode(node) { + steps.push(new TraversalStep({ + type: "visit", + target: node, + phase: 1, + args: [node, node.parent] + })); + }, + leaveNode(node) { + steps.push(new TraversalStep({ + type: "visit", + target: node, + phase: 2, + args: [node, node.parent] + })); + }, + emitter + }; + + /* + * We do code path analysis for ESTree only. Code path analysis is not + * necessary for other ASTs, and it's also not possible to do for other + * ASTs because the necessary information is not available. + * + * Generally speaking, we can tell that the AST is an ESTree if it has a + * Program node at the top level. This is not a perfect heuristic, but it + * is good enough for now. + */ + const isESTree = this.ast.type === "Program"; + + if (isESTree) { + analyzer = new CodePathAnalyzer(analyzer); + + CODE_PATH_EVENTS.forEach(eventName => { + emitter.on(eventName, (...args) => { + steps.push(new TraversalStep({ + type: "call", + target: eventName, + args + })); + }); + }); + } + + /* + * The actual AST traversal is done by the `Traverser` class. This class + * is responsible for walking the AST and calling the appropriate methods + * on the `analyzer` object, which is appropriate for the given AST. + */ + Traverser.traverse(this.ast, { + enter(node, parent) { + + // save the parent node on a property for backwards compatibility + node.parent = parent; + + analyzer.enterNode(node); + }, + leave(node) { + analyzer.leaveNode(node); + }, + visitorKeys: this.visitorKeys + }); + + return steps; + } } module.exports = SourceCode; diff --git a/tools/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js b/tools/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js index 454a2449701cf1..d3469c99b1459e 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/backward-token-cursor.js @@ -9,7 +9,7 @@ //------------------------------------------------------------------------------ const Cursor = require("./cursor"); -const utils = require("./utils"); +const { getLastIndex, getFirstIndex } = require("./utils"); //------------------------------------------------------------------------------ // Exports @@ -31,8 +31,8 @@ module.exports = class BackwardTokenCursor extends Cursor { constructor(tokens, comments, indexMap, startLoc, endLoc) { super(); this.tokens = tokens; - this.index = utils.getLastIndex(tokens, indexMap, endLoc); - this.indexEnd = utils.getFirstIndex(tokens, indexMap, startLoc); + this.index = getLastIndex(tokens, indexMap, endLoc); + this.indexEnd = getFirstIndex(tokens, indexMap, startLoc); } /** @inheritdoc */ diff --git a/tools/node_modules/eslint/lib/source-code/token-store/cursors.js b/tools/node_modules/eslint/lib/source-code/token-store/cursors.js index 30c72b69b8f962..f2676f13da624c 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/cursors.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/cursors.js @@ -86,5 +86,7 @@ class CursorFactory { // Exports //------------------------------------------------------------------------------ -exports.forward = new CursorFactory(ForwardTokenCursor, ForwardTokenCommentCursor); -exports.backward = new CursorFactory(BackwardTokenCursor, BackwardTokenCommentCursor); +module.exports = { + forward: new CursorFactory(ForwardTokenCursor, ForwardTokenCommentCursor), + backward: new CursorFactory(BackwardTokenCursor, BackwardTokenCommentCursor) +}; diff --git a/tools/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js b/tools/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js index 50c7a394f38476..8aa46c27b7435c 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/forward-token-comment-cursor.js @@ -9,7 +9,7 @@ //------------------------------------------------------------------------------ const Cursor = require("./cursor"); -const utils = require("./utils"); +const { getFirstIndex, search } = require("./utils"); //------------------------------------------------------------------------------ // Exports @@ -32,8 +32,8 @@ module.exports = class ForwardTokenCommentCursor extends Cursor { super(); this.tokens = tokens; this.comments = comments; - this.tokenIndex = utils.getFirstIndex(tokens, indexMap, startLoc); - this.commentIndex = utils.search(comments, startLoc); + this.tokenIndex = getFirstIndex(tokens, indexMap, startLoc); + this.commentIndex = search(comments, startLoc); this.border = endLoc; } diff --git a/tools/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js b/tools/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js index e8c18609621fba..9305cbef68380e 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/forward-token-cursor.js @@ -9,7 +9,7 @@ //------------------------------------------------------------------------------ const Cursor = require("./cursor"); -const utils = require("./utils"); +const { getFirstIndex, getLastIndex } = require("./utils"); //------------------------------------------------------------------------------ // Exports @@ -31,8 +31,8 @@ module.exports = class ForwardTokenCursor extends Cursor { constructor(tokens, comments, indexMap, startLoc, endLoc) { super(); this.tokens = tokens; - this.index = utils.getFirstIndex(tokens, indexMap, startLoc); - this.indexEnd = utils.getLastIndex(tokens, indexMap, endLoc); + this.index = getFirstIndex(tokens, indexMap, startLoc); + this.indexEnd = getLastIndex(tokens, indexMap, endLoc); } /** @inheritdoc */ diff --git a/tools/node_modules/eslint/lib/source-code/token-store/index.js b/tools/node_modules/eslint/lib/source-code/token-store/index.js index 46a96b2f4b189d..8f8d6de769f9c2 100644 --- a/tools/node_modules/eslint/lib/source-code/token-store/index.js +++ b/tools/node_modules/eslint/lib/source-code/token-store/index.js @@ -8,7 +8,7 @@ // Requirements //------------------------------------------------------------------------------ -const assert = require("assert"); +const assert = require("node:assert"); const { isCommentToken } = require("@eslint-community/eslint-utils"); const cursors = require("./cursors"); const ForwardTokenCursor = require("./forward-token-cursor"); @@ -37,8 +37,8 @@ function createIndexMap(tokens, comments) { const map = Object.create(null); let tokenIndex = 0; let commentIndex = 0; - let nextStart = 0; - let range = null; + let nextStart; + let range; while (tokenIndex < tokens.length || commentIndex < comments.length) { nextStart = (commentIndex < comments.length) ? comments[commentIndex].range[0] : Number.MAX_SAFE_INTEGER; diff --git a/tools/node_modules/eslint/lib/unsupported-api.js b/tools/node_modules/eslint/lib/unsupported-api.js index 8a2e147aabeca8..50e7f5bd6d2216 100644 --- a/tools/node_modules/eslint/lib/unsupported-api.js +++ b/tools/node_modules/eslint/lib/unsupported-api.js @@ -12,9 +12,8 @@ //----------------------------------------------------------------------------- const { FileEnumerator } = require("./cli-engine/file-enumerator"); -const { FlatESLint, shouldUseFlatConfig } = require("./eslint/flat-eslint"); -const FlatRuleTester = require("./rule-tester/flat-rule-tester"); -const { ESLint } = require("./eslint/eslint"); +const { ESLint: FlatESLint, shouldUseFlatConfig } = require("./eslint/eslint"); +const { LegacyESLint } = require("./eslint/legacy-eslint"); //----------------------------------------------------------------------------- // Exports @@ -24,7 +23,6 @@ module.exports = { builtinRules: require("./rules"), FlatESLint, shouldUseFlatConfig, - FlatRuleTester, FileEnumerator, - LegacyESLint: ESLint + LegacyESLint }; diff --git a/tools/node_modules/eslint/messages/config-file-missing.js b/tools/node_modules/eslint/messages/config-file-missing.js new file mode 100644 index 00000000000000..a416a87d3439c6 --- /dev/null +++ b/tools/node_modules/eslint/messages/config-file-missing.js @@ -0,0 +1,16 @@ +"use strict"; + +module.exports = function() { + return ` +ESLint couldn't find an eslint.config.(js|mjs|cjs) file. + +From ESLint v9.0.0, the default configuration file is now eslint.config.js. +If you are using a .eslintrc.* file, please follow the migration guide +to update your configuration file to the new format: + +https://eslint.org/docs/latest/use/configure/migration-guide + +If you still have problems after following the migration guide, please stop by +https://eslint.org/chat/help to chat with the team. +`.trimStart(); +}; diff --git a/tools/node_modules/eslint/messages/eslintrc-incompat.js b/tools/node_modules/eslint/messages/eslintrc-incompat.js index ee77cb2328ee15..b89c39bd88ba8a 100644 --- a/tools/node_modules/eslint/messages/eslintrc-incompat.js +++ b/tools/node_modules/eslint/messages/eslintrc-incompat.js @@ -11,6 +11,9 @@ Flat config uses "languageOptions.globals" to define global variables for your f Please see the following page for information on how to convert your config object into the correct format: https://eslint.org/docs/latest/use/configure/migration-guide#configuring-language-options + +If you're not using "env" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, extends: ` @@ -18,8 +21,11 @@ A config object is using the "extends" key, which is not supported in flat confi Instead of "extends", you can include config objects that you'd like to extend from directly in the flat config array. -Please see the following page for more information: +If you're using "extends" in your config file, please see the following: https://eslint.org/docs/latest/use/configure/migration-guide#predefined-and-shareable-configs + +If you're not using "extends" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, globals: ` @@ -29,6 +35,9 @@ Flat config uses "languageOptions.globals" to define global variables for your f Please see the following page for information on how to convert your config object into the correct format: https://eslint.org/docs/latest/use/configure/migration-guide#configuring-language-options + +If you're not using "globals" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, ignorePatterns: ` @@ -38,6 +47,9 @@ Flat config uses "ignores" to specify files to ignore. Please see the following page for information on how to convert your config object into the correct format: https://eslint.org/docs/latest/use/configure/migration-guide#ignoring-files + +If you're not using "ignorePatterns" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, noInlineConfig: ` @@ -56,6 +68,9 @@ Flat config is an array that acts like the eslintrc "overrides" array. Please see the following page for information on how to convert your config object into the correct format: https://eslint.org/docs/latest/use/configure/migration-guide#glob-based-configs + +If you're not using "overrides" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, parser: ` @@ -65,6 +80,9 @@ Flat config uses "languageOptions.parser" to override the default parser. Please see the following page for information on how to convert your config object into the correct format: https://eslint.org/docs/latest/use/configure/migration-guide#custom-parsers + +If you're not using "parser" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, parserOptions: ` @@ -74,6 +92,9 @@ Flat config uses "languageOptions.parserOptions" to specify parser options. Please see the following page for information on how to convert your config object into the correct format: https://eslint.org/docs/latest/use/configure/migration-guide#configuring-language-options + +If you're not using "parserOptions" directly (it may be coming from a plugin), please see the following: +https://eslint.org/docs/latest/use/configure/migration-guide#using-eslintrc-configs-in-flat-config `, reportUnusedDisableDirectives: ` diff --git a/tools/node_modules/eslint/messages/no-config-found.js b/tools/node_modules/eslint/messages/no-config-found.js index 21cf549ebc8812..64b93edbca1320 100644 --- a/tools/node_modules/eslint/messages/no-config-found.js +++ b/tools/node_modules/eslint/messages/no-config-found.js @@ -6,7 +6,7 @@ module.exports = function(it) { return ` ESLint couldn't find a configuration file. To set up a configuration file for this project, please run: - npm init @eslint/config + npm init @eslint/config@latest ESLint looked for configuration files in ${directoryPath} and its ancestors. If it found none, it then looked in your home directory. diff --git a/tools/node_modules/eslint/messages/plugin-conflict.js b/tools/node_modules/eslint/messages/plugin-conflict.js index c8c060e2f05c52..4113a538fc9f9e 100644 --- a/tools/node_modules/eslint/messages/plugin-conflict.js +++ b/tools/node_modules/eslint/messages/plugin-conflict.js @@ -15,7 +15,7 @@ module.exports = function(it) { Please remove the "plugins" setting from either config or remove either plugin installation. -If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team. +If you still can't figure out the problem, please see https://eslint.org/docs/latest/use/troubleshooting. `; return result; diff --git a/tools/node_modules/eslint/messages/plugin-invalid.js b/tools/node_modules/eslint/messages/plugin-invalid.js index 8b471d4a3366a6..4c60e41d319241 100644 --- a/tools/node_modules/eslint/messages/plugin-invalid.js +++ b/tools/node_modules/eslint/messages/plugin-invalid.js @@ -11,6 +11,6 @@ module.exports = function(it) { "${configName}" was referenced from the config file in "${importerName}". -If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team. +If you still can't figure out the problem, please see https://eslint.org/docs/latest/use/troubleshooting. `.trimStart(); }; diff --git a/tools/node_modules/eslint/messages/plugin-missing.js b/tools/node_modules/eslint/messages/plugin-missing.js index 0b7d34e3aa5f85..366ec4500e5f14 100644 --- a/tools/node_modules/eslint/messages/plugin-missing.js +++ b/tools/node_modules/eslint/messages/plugin-missing.js @@ -14,6 +14,6 @@ It's likely that the plugin isn't installed correctly. Try reinstalling by runni The plugin "${pluginName}" was referenced from the config file in "${importerName}". -If you still can't figure out the problem, please stop by https://eslint.org/chat/help to chat with the team. +If you still can't figure out the problem, please see https://eslint.org/docs/latest/use/troubleshooting. `.trimStart(); }; diff --git a/tools/node_modules/eslint/node_modules/.bin/rimraf b/tools/node_modules/eslint/node_modules/.bin/rimraf deleted file mode 120000 index 4cd49a49ddfc17..00000000000000 --- a/tools/node_modules/eslint/node_modules/.bin/rimraf +++ /dev/null @@ -1 +0,0 @@ -../rimraf/bin.js \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js index 599763e41a5210..d3c98ee91367bf 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/index.js @@ -224,7 +224,7 @@ var _transformAst = require("./transform-ast.js"); var _parse = require("./parse.js"); var thisFile = require("./index.js"); ; -const version = exports.version = "7.24.4"; +const version = exports.version = "7.24.5"; const DEFAULT_EXTENSIONS = exports.DEFAULT_EXTENSIONS = Object.freeze([".js", ".jsx", ".es6", ".es", ".mjs", ".cjs"]); ; { diff --git a/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js b/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js index eae3148cef362e..eca4b3f5118a59 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js +++ b/tools/node_modules/eslint/node_modules/@babel/core/lib/vendor/import-meta-resolve.js @@ -62,7 +62,7 @@ function _util() { return data; } function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } -function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } +function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } const own$1 = {}.hasOwnProperty; const classRegExp = /^([A-Z][a-z\d]*)+$/; const kTypes = new Set(['string', 'function', 'number', 'object', 'Function', 'Object', 'boolean', 'bigint', 'symbol']); diff --git a/tools/node_modules/eslint/node_modules/@babel/core/package.json b/tools/node_modules/eslint/node_modules/@babel/core/package.json index 30a9fff5369749..0d7140d4b2d90d 100644 --- a/tools/node_modules/eslint/node_modules/@babel/core/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/core/package.json @@ -1,6 +1,6 @@ { "name": "@babel/core", - "version": "7.24.4", + "version": "7.24.5", "description": "Babel compiler core.", "main": "./lib/index.js", "author": "The Babel Team (https://babel.dev/team)", @@ -48,14 +48,14 @@ "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.24.2", - "@babel/generator": "^7.24.4", + "@babel/generator": "^7.24.5", "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helpers": "^7.24.4", - "@babel/parser": "^7.24.4", + "@babel/helper-module-transforms": "^7.24.5", + "@babel/helpers": "^7.24.5", + "@babel/parser": "^7.24.5", "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0", + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", @@ -63,11 +63,11 @@ "semver": "^6.3.1" }, "devDependencies": { - "@babel/helper-transform-fixture-test-runner": "^7.24.4", + "@babel/helper-transform-fixture-test-runner": "^7.24.5", "@babel/plugin-syntax-flow": "^7.24.1", "@babel/plugin-transform-flow-strip-types": "^7.24.1", "@babel/plugin-transform-modules-commonjs": "^7.24.1", - "@babel/preset-env": "^7.24.4", + "@babel/preset-env": "^7.24.5", "@babel/preset-typescript": "^7.24.1", "@jridgewell/trace-mapping": "^0.3.25", "@types/convert-source-map": "^2.0.0", @@ -76,7 +76,7 @@ "@types/resolve": "^1.3.2", "@types/semver": "^5.4.0", "rimraf": "^3.0.0", - "ts-node": "^10.9.1" + "ts-node": "^11.0.0-beta.1" }, "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs index cf9e3010dc217a..3c2ed386702d73 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/client.cjs @@ -10,7 +10,7 @@ function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); } function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; } function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); } const path = require("path"); -var ACTIONS = exports.ACTIONS = { +const ACTIONS = exports.ACTIONS = { GET_VERSION: "GET_VERSION", GET_TYPES_INFO: "GET_TYPES_INFO", GET_VISITOR_KEYS: "GET_VISITOR_KEYS", diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs index 9eaab5f4df42b0..b521eb6158fd53 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/experimental-worker.cjs @@ -16,7 +16,7 @@ const baseParse = require("./parse.cjs"); const client = new _client.WorkerClient(); const meta = exports.meta = { name: "@babel/eslint-parser/experimental-worker", - version: "7.24.1" + version: "7.24.5" }; function parseForESLint(code, options = {}) { const normalizedOptions = normalizeESLintConfig(options); diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs index 913e7c0a2ff9e6..c51a0539524a11 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/index.cjs @@ -13,7 +13,7 @@ const baseParse = require("./parse.cjs"); const client = new _client.LocalClient(); const meta = exports.meta = { name: "@babel/eslint-parser", - version: "7.24.1" + version: "7.24.5" }; function parse(code, options = {}) { return baseParse(code, normalizeESLintConfig(options), client); diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs index 2c8aded333c394..a4006449990e3b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/lib/parse.cjs @@ -20,7 +20,7 @@ module.exports = function parse(code, options, client) { isRunningMinSupportedCoreVersion = semver.satisfies(client.getVersion(), minSupportedCoreVersion); } if (!isRunningMinSupportedCoreVersion) { - throw new Error(`@babel/eslint-parser@${"7.24.1"} does not support @babel/core@${client.getVersion()}. Please upgrade to @babel/core@${minSupportedCoreVersion}.`); + throw new Error(`@babel/eslint-parser@${"7.24.5"} does not support @babel/core@${client.getVersion()}. Please upgrade to @babel/core@${minSupportedCoreVersion}.`); } const { ast, diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json index 57a6a05322f52e..611a7236524fea 100644 --- a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/package.json @@ -1,6 +1,6 @@ { "name": "@babel/eslint-parser", - "version": "7.24.1", + "version": "7.24.5", "description": "ESLint parser that allows for linting of experimental syntax transformed by Babel", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -28,7 +28,7 @@ }, "peerDependencies": { "@babel/core": "^7.11.0", - "eslint": "^7.5.0 || ^8.0.0" + "eslint": "^7.5.0 || ^8.0.0 || ^9.0.0" }, "dependencies": { "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", @@ -36,11 +36,11 @@ "semver": "^6.3.1" }, "devDependencies": { - "@babel/core": "^7.24.1", + "@babel/core": "^7.24.5", "@types/eslint": "^8.56.2", "@types/estree": "^1.0.5", "@typescript-eslint/scope-manager": "^6.19.0", "dedent": "^0.7.0", - "eslint": "^8.22.0" + "eslint": "^9.0.0" } } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/eslint-parser/tsconfig.tsbuildinfo b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/tsconfig.tsbuildinfo new file mode 100644 index 00000000000000..d2b5a6fd79991e --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@babel/eslint-parser/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../dts/packages/babel-types/src/validators/react/isCompatTag.d.ts","../../dts/packages/babel-types/src/builders/react/buildChildren.d.ts","../../dts/packages/babel-types/src/asserts/assertNode.d.ts","../../dts/packages/babel-types/src/asserts/generated/index.d.ts","../../dts/packages/babel-types/src/builders/flow/createTypeAnnotationBasedOnTypeof.d.ts","../../dts/packages/babel-types/src/builders/flow/createFlowUnionType.d.ts","../../dts/packages/babel-types/src/builders/typescript/createTSUnionType.d.ts","../../dts/packages/babel-types/src/builders/generated/index.d.ts","../../packages/babel-types/src/builders/generated/uppercase.d.ts","../../dts/packages/babel-types/src/builders/productions.d.ts","../../dts/packages/babel-types/src/clone/cloneNode.d.ts","../../dts/packages/babel-types/src/clone/clone.d.ts","../../dts/packages/babel-types/src/clone/cloneDeep.d.ts","../../dts/packages/babel-types/src/clone/cloneDeepWithoutLoc.d.ts","../../dts/packages/babel-types/src/clone/cloneWithoutLoc.d.ts","../../dts/packages/babel-types/src/comments/addComment.d.ts","../../dts/packages/babel-types/src/comments/addComments.d.ts","../../dts/packages/babel-types/src/comments/inheritInnerComments.d.ts","../../dts/packages/babel-types/src/comments/inheritLeadingComments.d.ts","../../dts/packages/babel-types/src/comments/inheritsComments.d.ts","../../dts/packages/babel-types/src/comments/inheritTrailingComments.d.ts","../../dts/packages/babel-types/src/comments/removeComments.d.ts","../../dts/packages/babel-types/src/constants/generated/index.d.ts","../../dts/packages/babel-types/src/constants/index.d.ts","../../dts/packages/babel-types/src/converters/ensureBlock.d.ts","../../dts/packages/babel-types/src/converters/toBindingIdentifierName.d.ts","../../dts/packages/babel-types/src/converters/toBlock.d.ts","../../dts/packages/babel-types/src/converters/toComputedKey.d.ts","../../dts/packages/babel-types/src/converters/toExpression.d.ts","../../dts/packages/babel-types/src/converters/toIdentifier.d.ts","../../dts/packages/babel-types/src/converters/toKeyAlias.d.ts","../../dts/packages/babel-types/src/converters/toStatement.d.ts","../../dts/packages/babel-types/src/converters/valueToNode.d.ts","../../dts/packages/babel-types/src/definitions/utils.d.ts","../../dts/packages/babel-types/src/definitions/core.d.ts","../../dts/packages/babel-types/src/definitions/flow.d.ts","../../dts/packages/babel-types/src/definitions/jsx.d.ts","../../dts/packages/babel-types/src/definitions/misc.d.ts","../../dts/packages/babel-types/src/definitions/experimental.d.ts","../../dts/packages/babel-types/src/definitions/typescript.d.ts","../../dts/packages/babel-types/src/definitions/placeholders.d.ts","../../dts/packages/babel-types/src/definitions/deprecated-aliases.d.ts","../../dts/packages/babel-types/src/definitions/index.d.ts","../../dts/packages/babel-types/src/modifications/appendToMemberExpression.d.ts","../../dts/packages/babel-types/src/modifications/inherits.d.ts","../../dts/packages/babel-types/src/modifications/prependToMemberExpression.d.ts","../../dts/packages/babel-types/src/modifications/removeProperties.d.ts","../../dts/packages/babel-types/src/modifications/removePropertiesDeep.d.ts","../../dts/packages/babel-types/src/modifications/flow/removeTypeDuplicates.d.ts","../../dts/packages/babel-types/src/retrievers/getBindingIdentifiers.d.ts","../../dts/packages/babel-types/src/retrievers/getOuterBindingIdentifiers.d.ts","../../dts/packages/babel-types/src/traverse/traverse.d.ts","../../dts/packages/babel-types/src/traverse/traverseFast.d.ts","../../dts/packages/babel-types/src/utils/shallowEqual.d.ts","../../dts/packages/babel-types/src/validators/is.d.ts","../../dts/packages/babel-types/src/validators/isBinding.d.ts","../../dts/packages/babel-types/src/validators/isBlockScoped.d.ts","../../dts/packages/babel-types/src/validators/isImmutable.d.ts","../../dts/packages/babel-types/src/validators/isLet.d.ts","../../dts/packages/babel-types/src/validators/isNode.d.ts","../../dts/packages/babel-types/src/validators/isNodesEquivalent.d.ts","../../dts/packages/babel-types/src/validators/isPlaceholderType.d.ts","../../dts/packages/babel-types/src/validators/isReferenced.d.ts","../../dts/packages/babel-types/src/validators/isScope.d.ts","../../dts/packages/babel-types/src/validators/isSpecifierDefault.d.ts","../../dts/packages/babel-types/src/validators/isType.d.ts","../../dts/packages/babel-types/src/validators/isValidES3Identifier.d.ts","../../dts/packages/babel-types/src/validators/isValidIdentifier.d.ts","../../dts/packages/babel-types/src/validators/isVar.d.ts","../../dts/packages/babel-types/src/validators/matchesPattern.d.ts","../../dts/packages/babel-types/src/validators/validate.d.ts","../../dts/packages/babel-types/src/validators/buildMatchMemberExpression.d.ts","../../dts/packages/babel-types/src/validators/generated/index.d.ts","../../dts/packages/babel-types/src/ast-types/generated/index.d.ts","../../dts/packages/babel-types/src/utils/deprecationWarning.d.ts","../../dts/packages/babel-types/src/index.d.ts","../../dts/packages/babel-traverse/src/path/lib/virtual-types.d.ts","../../packages/babel-traverse/src/generated/visitor-types.d.ts","../../dts/packages/babel-traverse/src/types.d.ts","../../dts/packages/babel-traverse/src/visitors.d.ts","../../dts/packages/babel-traverse/src/scope/binding.d.ts","../../dts/packages/babel-traverse/src/scope/index.d.ts","../../dts/packages/babel-traverse/src/hub.d.ts","../../dts/packages/babel-traverse/src/context.d.ts","../../dts/packages/babel-traverse/src/path/ancestry.d.ts","../../dts/packages/babel-traverse/src/path/inference/index.d.ts","../../dts/packages/babel-traverse/src/path/replacement.d.ts","../../dts/packages/babel-traverse/src/path/evaluation.d.ts","../../dts/packages/babel-traverse/src/path/conversion.d.ts","../../dts/packages/babel-traverse/src/path/introspection.d.ts","../../dts/packages/babel-traverse/src/path/context.d.ts","../../dts/packages/babel-traverse/src/path/removal.d.ts","../../dts/packages/babel-traverse/src/path/modification.d.ts","../../dts/packages/babel-traverse/src/path/family.d.ts","../../dts/packages/babel-traverse/src/path/comments.d.ts","../../packages/babel-traverse/src/path/generated/asserts.d.ts","../../dts/packages/babel-traverse/src/path/lib/virtual-types-validator.d.ts","../../packages/babel-traverse/src/path/generated/validators.d.ts","../../dts/packages/babel-traverse/src/path/index.d.ts","../../dts/packages/babel-traverse/src/cache.d.ts","../../dts/packages/babel-traverse/src/index.d.ts","../../node_modules/@types/gensync/index.d.ts","../../dts/packages/babel-core/src/config/helpers/deep-array.d.ts","../../dts/packages/babel-parser/src/util/location.d.ts","../../dts/packages/babel-parser/src/tokenizer/context.d.ts","../../dts/packages/babel-parser/src/tokenizer/types.d.ts","../../dts/packages/babel-parser/src/parse-error/standard-errors.d.ts","../../dts/packages/babel-parser/src/parse-error.d.ts","../../dts/packages/babel-parser/src/tokenizer/state.d.ts","../../dts/packages/babel-parser/src/util/scopeflags.d.ts","../../dts/packages/babel-parser/src/util/scope.d.ts","../../dts/packages/babel-parser/src/util/expression-scope.d.ts","../../dts/packages/babel-parser/src/util/class-scope.d.ts","../../dts/packages/babel-parser/src/util/production-parameter.d.ts","../../packages/babel-parser/src/typings.d.ts","../../dts/packages/babel-parser/src/parser/base.d.ts","../../dts/packages/babel-parser/src/parser/util.d.ts","../../dts/packages/babel-parser/src/parser/node.d.ts","../../dts/packages/babel-parser/src/parser/comments.d.ts","../../dts/packages/babel-helper-string-parser/src/index.d.ts","../../dts/packages/babel-parser/src/tokenizer/index.d.ts","../../node_modules/@types/charcodes/index.d.ts","../../dts/packages/babel-parser/src/parser/lval.d.ts","../../dts/packages/babel-parser/src/parser/expression.d.ts","../../dts/packages/babel-parser/src/parser/statement.d.ts","../../dts/packages/babel-parser/src/plugins/placeholders.d.ts","../../packages/babel-parser/src/types.d.ts","../../dts/packages/babel-parser/src/parser/index.d.ts","../../dts/packages/babel-parser/src/plugins/flow/scope.d.ts","../../dts/packages/babel-parser/src/plugins/jsx/index.d.ts","../../dts/packages/babel-parser/src/plugins/typescript/scope.d.ts","../../dts/packages/babel-parser/src/plugin-utils.d.ts","../../dts/packages/babel-parser/src/options.d.ts","../../dts/packages/babel-parser/src/index.d.ts","../../dts/packages/babel-helper-compilation-targets/src/options.d.ts","../../dts/packages/babel-helper-compilation-targets/src/targets.d.ts","../../packages/babel-helper-compilation-targets/src/types.d.ts","../../dts/packages/babel-helper-compilation-targets/src/pretty.d.ts","../../dts/packages/babel-helper-compilation-targets/src/debug.d.ts","../../dts/packages/babel-helper-compilation-targets/src/filter-items.d.ts","../../dts/packages/babel-helper-compilation-targets/src/index.d.ts","../../dts/packages/babel-core/src/config/caching.d.ts","../../dts/packages/babel-core/src/config/printer.d.ts","../../dts/packages/babel-core/src/config/files/types.d.ts","../../dts/packages/babel-core/src/config/files/package.d.ts","../../dts/packages/babel-core/src/config/files/configuration.d.ts","../../dts/packages/babel-core/src/config/files/plugins.d.ts","../../dts/packages/babel-core/src/config/files/index.d.ts","../../dts/packages/babel-core/src/config/config-chain.d.ts","../../dts/packages/babel-core/src/config/cache-contexts.d.ts","../../dts/packages/babel-core/src/config/helpers/config-api.d.ts","../../dts/packages/babel-core/src/config/config-descriptors.d.ts","../../dts/packages/babel-core/src/config/item.d.ts","../../node_modules/@types/jsesc/index.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts","../../node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts","../../node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts","../../node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts","../../dts/packages/babel-generator/src/index.d.ts","../../dts/packages/babel-core/src/config/validation/options.d.ts","../../dts/packages/babel-core/src/config/validation/plugins.d.ts","../../dts/packages/babel-core/src/config/plugin.d.ts","../../dts/packages/babel-core/src/config/full.d.ts","../../dts/packages/babel-core/src/config/partial.d.ts","../../dts/packages/babel-core/src/config/index.d.ts","../../node_modules/@types/convert-source-map/index.d.ts","../../dts/packages/babel-core/src/transformation/normalize-file.d.ts","../../dts/packages/babel-core/src/transformation/file/file.d.ts","../../dts/packages/babel-core/src/transformation/plugin-pass.d.ts","../../dts/packages/babel-core/src/tools/build-external-helpers.d.ts","../../dts/packages/babel-core/src/config/helpers/environment.d.ts","../../dts/packages/babel-template/src/options.d.ts","../../dts/packages/babel-template/src/formatters.d.ts","../../dts/packages/babel-template/src/builder.d.ts","../../dts/packages/babel-template/src/index.d.ts","../../dts/packages/babel-core/src/transformation/index.d.ts","../../dts/packages/babel-core/src/transform.d.ts","../../dts/packages/babel-core/src/transform-file.d.ts","../../dts/packages/babel-core/src/transform-ast.d.ts","../../dts/packages/babel-core/src/parser/index.d.ts","../../dts/packages/babel-core/src/parse.d.ts","../../dts/packages/babel-core/src/index.d.ts","../../node_modules/typescript/lib/typescript.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types/dist/generated/ast-spec.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types/dist/lib.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types/dist/parser-options.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types/dist/ts-estree.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/types/dist/index.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionType.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/DefinitionBase.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/CatchClauseDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/ClassNameDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/FunctionNameDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/ImplicitGlobalVariableDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/ImportBindingDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/ParameterDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumMemberDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSEnumNameDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/TSModuleNameDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/TypeDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/VariableDefinition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/Definition.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/definition/index.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/variable/VariableBase.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/variable/ESLintScopeVariable.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/variable/Variable.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/variable/ImplicitLibVariable.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/variable/index.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Reference.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeType.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/GlobalScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ModuleScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/TSModuleScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ScopeBase.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/CatchScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassStaticBlockScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ConditionalTypeScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ForScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionExpressionNameScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/FunctionTypeScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/MappedTypeScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/SwitchScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/TSEnumScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/TypeScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/WithScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/Scope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/ClassFieldInitializerScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/ScopeManager.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/BlockScope.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/scope/index.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/visitor-keys/dist/get-keys.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/visitor-keys/dist/visitor-keys.d.ts","../../node_modules/@typescript-eslint/scope-manager/node_modules/@typescript-eslint/visitor-keys/dist/index.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/referencer/VisitorBase.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/referencer/PatternVisitor.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Visitor.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/referencer/Referencer.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/referencer/index.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/analyze.d.ts","../../node_modules/@typescript-eslint/scope-manager/dist/index.d.ts","./src/types.d.cts","./src/client.cts","./src/analyze-scope.cts","./src/configuration.cts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","./src/utils/eslint-version.cts","./src/convert/convertTokens.cts","./src/convert/convertComments.cts","./src/convert/convertAST.cts","./src/convert/index.cts","./src/parse.cts","./src/experimental-worker.cts","./src/index.cts","./src/worker/babel-core.cts","./src/worker/ast-info.cts","./src/worker/configuration.cts","./src/worker/extract-parser-options-plugin.cts","./src/worker/maybeParse.cts","./src/worker/handle-message.cts","./src/worker/index.cts","../../lib/globals.d.ts","../../scripts/repo-utils/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/fs-readdir-recursive/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lru-cache/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/v8flags/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","0c5a621a8cf10464c2020f05c99a86d8ac6875d9e17038cb8522cc2f604d539f","b360236d3b226a56126f9f071d68fccd10eba34e4b6831efc39e8a3277380523","a73bd08ca8f85d9c1f0307ae7abb246e38cb618f452e15fd3612464e846665b0","9b1b103c34f4c56ab0c40c87a85ffd36002295d8fbe17b493509e63a383f5814","e4a023723ff5cfdc22880b572dd15876d0bc4bb4f2a555d71d226a2578786ad3","3aa0ae0c3636319f9bc6e5c2a4bd484f9b2b4e78623b33131056a95fb59c954c","dc25e664429b44c379d4d3cf988b2cce06116ae94f5c6f1a0cf73245b4282a93","e59daf03ff2d76dee4726e48556aba1d105fd1c7a7a9cbf3e74ec4a1f91a6bea","250bb1ea2d799ecf488834fe20efa611063ab79b35639b7b3024f05e1b6641ee","a0fbfc839fefc3d41a12c5a8631e6543135ff18fd516cd06c5a09f84cb81578c","9ce376fdbe50ed84260f0dc45cc1f242916f2c0c91da6464df63df0ba2baae7c","c3e41c24eb14414b6995d4bbac99d16ce2e609282c9b53d1333b7b423e0f7d02","b555d22a622ea0565d08a340e5c19f6f439f40d4451a2f13fe6a33a39b3d761c","9f29212a64599c6c5563b78746bf85f709d5437f18dac77502a53af63dadb850","6b714d7db731bb6da813dfa3d88ded4ce0bc9b627464e86315468e1be9adadff","5ebd0c7b976b7cbe390e381d27ec9dc5adde1a02cf9ecfb2a7caed7a822a5cae","4171247c72f90ac86a3cd3cdb0f372214a556aa8b94aa92b28bf6d21dad5f7ee","b8b9aae5a37c0d3dec11813d992b893ed55a080289466ade6c1bc47e3987f53a","eb69d4cd5875c471c0dd30988bf8a4816f9b8fab1e71a8c39096e483411faa00","48225779dd7b1b7b384389e325ed6aa271a6745239d8193c2fc161cacbf3dac5","c6fd0f9d777f11f972b4decc52beeeae6aad9f2aa949184e8f9984a5c36e4448","3f4487628af3e52556d6f33151740876b29a5355b8a5ccf8e56d1b3ae7cbcc0e","2b4ca439136421892cc80ebf6f6ea641a0306e58bd12ed61ae7f20becb2ee15f","6296c7ce17d3115c72d6757513e79ea0f74b76f49e0138f78f37685fc1bc83f8","ce8fe0d07c32e6786203b5a3b93468afc6b1fcf57481dc9673e16fb119312c19","dfa94dabc1567d2b882222947f5c181adc89a3af5b6a2b730b1c3b85d4cfe48f","c33fa94c2e88d70a2e98a33474d3cf477d959477236323a748f638b3ca1e2af0","058e39e6fe02e97ddc18b2952a67d0dfb71f1f60f86405480fec569b602f5284","8c5dbef5fc0eb113d94132a5ba440d75e33eb85e9497a1f7e3bdb29a3fcd3469","0d9808e1f0d2bd4c45462c7e2f20c0cf08b700c6964e7eda5e10d1f6b707deb8","9f3f8ff5d06c5d5583e891d3bb98489d58e358e49bda2827f3f7819cdb632ad0","6978b8fc2f45108c4bc2788bd7053f2917d7efa28f74ddf52182dc9ab59d03cf","f4e40380711ea1048d9e9654dcf25cde7301571a98c9aceef4d3c71c02fd9d14","77adbafe67e2bf42d578d82d2fb994530cce5b9eaa28a2a5b24aca70a008c3d9","1cf9b232eeb34d97f2f27f3dac1a0164bcc852a4b7b86a1d7ebc1c9807e3a2cf","7d2a0764991446f121b01e690edcb502ce40fd02145613d1d349d9e46be3782a","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","513e4a7dd68f60782a39d5ae4ce6f0a19ccc4c51808b359560ad1f689f0ce93d","519157309e4f7c98b6067933db2a849961eaa0e5dec4a2ce5d2fc92ace85dcfd","c5f8672c8c39b8f9251a57fc2dab217ce20ac4a9d71c0a498b733cb922ff5e4e","82590ca2dfa968af29be579c534733406fd9c5c4a726213eef9f2308cbb04d23","e88043fb3ae0a6e33be31d45927494ed42c3263bfb318b024b9dab027f09dc2d","3f7e6d7b1d7155d68b5ec0f8e021f10075c785b29171d1d520d0b9b0dd617aa0","7571f6e856945cea6771a2985e008daff8785c6632f9dc1dc9f24f795f84444d","2ff5e66c8448d86302ef11ceeb27cbbd43d3af41aba05c2fc3a48cd0f1d8627f","a73d8151dd40ff705eebd2989e703ba14874574f5fe4f195babe74b6ef93ac59","1577b898eb3bebb6cebf1e5228552c8cc68fa010cb7b035ffe8eb5b558d35434","23996dceac72973064c9643fff1ca0cf585b642d715c56ed3512703f2b280c5e","95a1a8e1e7777214b2d970c3426819e976abf9120f2824b571e0ae51d1dd465b","11f45261b54dd91ac1dea5f299945e70225b4cf7a756f03190e88660aa310673","e1bb914c06cc75205fae8713e349dff14bdfd2d36c784d0d2f2b7b5d37e035e0","a5e89e63c809c01f8e8175c9d63da68ce734ddf15b7efd98b1eb262d8e4d05ec","466c63574f0654a81f7d760ccb32570f642b6b46e83b6fdc288c2e52bcef287c","c6526b7ad3213f40e40d617f0a150c8a9dcf0e8f868594ef4aa060b994fd11ce","b5e0565b7ca3ba4c129ed4e1788d4dc1bb30dcdeb14a37df1071c3881507e295","08cdf95dfc59101c1e7c23865951151455ee7f77f1bf7e257034aae8ba332972","4924f889957ee69dfd66643c7e60a5feee526c18b16d10985804c669fe1b6ce4","2c95044092cad1398b593b47290306d73513d163c61e85ebbc39715af4b15578","66612e3b3315adf8702a39830ad8690d6f4293f89193737c604f4b44a51e42ad","1d3f6521348f5d591d4da3408457a553274b024c79ecde88054361040967c211","03a629914760ae9bb64a05e72ad0f4e6aeefb1e7c7b6ae3d7836bb46f69ae23e","95017b0f25bb3cd6782853c14303c20b5099b866ef1491c57fc436add8183f14","989f035cd0c3acf51639b2ff4fb3cb8ccce3d7ef0103a1d32ca5e5f1cfd19387","9dfbdb5529d2be1c9e77112f7e0e20fba7518865f31501b9aa09c3965ee91f6a","9ba02d6560cc8cf8063172ba05b5368a24fb236a97c1c852665372be78143592","cafadd60cda0c63471975430893f7c0ac981f268ec719f08f131e41d8404c4db","6a7a221f94f9547a86feaa3c2ce81b8556c71ffb12057a43c54fc975bca83cde","156d025e006f7df4df1bcf7ce53cd3e3780a0190dfb03c65288f07b372e79843","e34a316302189537858d6d20d5d77d8f0351ed977da8947a401ad9986cdf147f","243665975c1af5dc7b51b10f52e76d3cb8b7676ccc23a6503977526d94b3cdde","3a91334c3409e173cafb3af175d8a4a3ae835851df7015c8f0fc5c117ad46c80","bfe8f5184c00e9c24f8bb40ec929097b2cafc50cc968bc1604501cb6c4a1440c","98c7850cf7a5bca4267e71403e8a2788c29543b15ac7354d1211a7accba496c8","f31ab9295985d01c5837c9bdc422643f6f73293cfd103738774b7cfb340566cc","99392e1e600259c50f21f691f136a4ecbee42839dbb9523384f09645c8756503","5c5d100793c0fb9b34076189904df18f3321e82cadf6f69815926104029c215b","0c0a84cad407d1b702140715c17ff2429fb15755fdc18b784f24d976077708dd","1079472c5e1f65ce739fb777054e2f539e9b50a97b438c0d6e56c4ee23be8bff","e519fe59c3e9744e02abcd086b492e4a901e699a47d131de8aae00201a2043be","c67208e9da4af7a50bfb75d07691326052d6ed8f3b577ece8b02cd425c9d632f","4f9a4bb30bc97017c72a600c0161962d8f74488d1cd93669e4adbce7e611e0de","8dec4b9028cc8905caa6b52a395786d7f49a10d61f6be869b59ae007dc5e0cdf","f952c9c19048db8b25e3fa8e48e2213c18d3fdbef6ac168e9fae6632ed58245f","92438df2330b4b55da8e9b7d66e77258a090d67388e3f649b43f81685fecc788","866c1b69a53d80383cb5eef0ce2760ad8d028c771fa45776426a583c56a23746","8b433fd18d5bac931c1d7c07c17a830475e0fcb224d144cfeb3ba4d1da198687","e772bc828730ee913e19f58bb18b7733ebce8a3f06cdce847cb33275343a6ecd","466f4f5da14b6046570025129a7e5ea168164572c9b2da45bdc7274e0e303dbd","00222577eecd6c1fc72150006351fc6e1b5bb3aaf78097e40ecac8b8343a7598","b398ff53792dee3ca93e1f96cee63fc123811631f3c99f1c22cd01b3b2e4d6c5","3b1765aafca023ad58d5aa017800e1f2e7ee95130c9a1e7d86d5019f45c756bc","e675dc45ca604b7a6fea16448050b34cf0fe86c2f9fa50f3911fb4153b42c186","d3e56e0f84e1d1843369533f50918cce5925129e99e9ca14c7cc35ad94b2a052","dfedb6704555de21c30e98a8decf8a6d31dde1d8403b9b95944a1d317379c7ae","7102463bc898ac4cfd90675e679cdd8e1a1b6f44702b280f9c99b93f206ae570","3fe5dc60a7d3a3cb6ed6abdb0eae01585b008451c9a193e6cd188e0bd881ab39","57e73f1c6da39bcf9429f52c39b6fc34eef11547fbb5a2be91836517ec746957","c639f1bf7b898c8fdc3bd5c05c25254f2bbf363d5fac0a5379ead6c7733be40e","bde8c75c442f701f7c428265ecad3da98023b6152db9ca49552304fd19fdba38","81af40a2264a5a56f71b8c45ff1717b50c5f0c00dd091410b12dc970ee340120","b10974251ad16a97b357ec50f87455c4430e7f0790f7b399564c900e4ebf87f1","234123959236555e336e4efcd7aa203ac1d5370ee5d891dcfc5828d996b28f59","b59756cf12284e6136e042f322af2e22664e1fd46f713b1dd3abb1740719b732","62b65c635a282ea4855cd6a9b968527cbab364c38410ea432f63c5c591db9072","2fe38d259b120889a148c6080d3c265dc8ee9579e4152b42f625fd0440fea92d","f2202744352b22a2b8697bae9c255e42b1c9342a6717c895b3f6a3ced2319b42","6131967512c4d205c32f126ef7415453f0c715bf53c7175d6deecb72d76a75b5","4e38f7bd172e7549c323610cfede12644c116581dfc4d751998d301eda9573e6","5b6b2f9d19c9e7f105f95aa0fbddd9b267d120f5c5e7d0ca3ae507fe2a7e4690","d8288a8eb14187b0df133ce467216d61d9ffe838ae5930471f476a5c36141828","70ae92a852a67db5b841a7ee3e9d16df7c06320ab86dbf2d5dbd9d76f3c98faa","e58a0a0add3feea2c936af4933dae5710f6c41e91468e22d880054afaa47b782","ead85b2d6cd6e6deb144a0995896c0ca7423820c66cc00e416e66733d2932985","63ac518dfd7a9ebe99c2dd882e06f9e42100365d0a7bbed4a505251205f836ef","6b4d9c91ed03e7afd40fa045042fcb7a6250b8dbe242154f3c4b948a99c74a9d","8b37c18f85644a1c666705bb5c233850cac84d8863c19870a8ed5f8d69c68800","186139eb9963554412f6fb33b35aabee1acdaa644b365de5c38fbd9123bdbe45","efd01e5afd2db9bafe6b8c1a20cff2f3c5a4870b3bf80a64c08b7d95aafba558","b7589677bd27b038f8aae8afeb030e554f1d5ff29dc4f45854e2cb7e5095d59a","220bc2f85b04326fd70de47faaa003666bc864e55f00543fdffa7b7f75d4dcdd","4a554afd8a11ad65a0f8878ebeddf6793c6775b1edbb14360bd47252840e051c","241c72acb955f811ae12adaa2312283785b5a32fdbb423a9201f404ec02bd824","8dd9a89d2cc4cc6c256017571ea6460ce9ee29f2e175cf2197d7402d2f52183b","255e1bc43d48739a7c2fe4a042a85489a94713d7d4bcc510778de34307393183","46016bfbc77b4f13e3d6730535d9943f42575c3a228190cecaffa891999a87de","e4aa4e8d3eb4c67b64962344ef3388a8cd607821ba619c9379b36316db65c9ac","4d2cd86c96bcba4ac080170bf78dd7dd5b17d2020cbac94885b849b5b43e3bcf","635ca94290fa45a56e53ffadd3b897a42650fd4ab0ddc241392e4dc729bf496b","6b978a464e8eea38072209608a13b38edc001654afa2d20b40131846f724e54c","c816420440bcf5abba58be6d5eeb6e00f744cafb864fca8eda2413117acc378e","843edba217964b253b187c2d6c15a808bacc03acd22c1b95b139f7f665761ffb","abae244b376437bfe2f0fdd1bd8925e2c235d10336ba08aec4330b800582ccbb","7da12c50edd45d08ae7f93183d0f88ab9753386ce060d1765926ffbe7c6491c2","1a8397f1c9125fc54db823eb6509221b841dd6f0c82a78997033a4a09fb1c86d","176d3525152384c3f7312b308c8af7b17690f8ec34e0788e6aaae548180f1941","6b34e6bdec80f7af4912497afb8455cd88ae1d6442d042c6663176b9927b69d4","41113f7f4529f81a16bae03c06bbd3c95146a4f7c8173ecafd6869fd1e97ed0b","c980191d2838b122a340074b58c566fddbc29a44bb57170671ac5034373c49a1","378871d06cbd514fe945b69a7be3cabe210139a5b2b3917a306ef8102afdd5bd","3bf0df1a6a59b16d43f97efd5bddcb376a3a3d66ecbe92a4dd80a0f81be6a009","49bf06ea475ae5c78e69f7af3c7e09e00af57750aa1e37c120aaad92fd8a8ab2","f8fc87c8c6822986fa509a62a0caed5cbf05f3f84d82fbbdb01a9e94aebfb2ec","60c51e31434ccc777c3d67ccc96892dd7e634816fb9fa5dc86e15d72de96ab3d","0737161a05160e848162b2abba07c4e867f415362187b810f4b6764d2626d021","69815e9eb00baef2634457bcf4952f69062d764211914619c6922dfa7760f8d2","444399b4f2fead080a55b82f86bf653a072a9f117042edc9a0fa69366672b418","d6ab7f2b45d4aa62ad21199fbb3105151a9dd4830d138a3bb3eab1e76eef9e45","56827baba9ab2b370c919b1858068e11f10a73d80dca8cb2467d2d1446fab073","14e8ace73d1c323c91aba5ac952d348943e753119ca8aed37b57c10eca3dab0b","1f689148e10f8b1a418c3f7f27496bd172e77009921b1f668cb701a8ffad8e0c","84a805c22a49922085dc337ca71ac0b85aad6d4dba6b01cee5bd5776ff54df39","971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","9d670bb3be18ea59cea824e3bb07d576b55c9542f5bc24aacc2a3c1ebd889de6","695b586df2d8c78b78cdd7cc6943594f3f4bc52948f13b31cdedfa3ce8d97c31","0771a93ef5e3b2a29f929c20f7ad232829341a671c9d1e96e93ef3fc42ef7bc2","cadb68b67b80b14a9a5bb64cce3093168fb2bfe2c7b10096d230df5203218de1","0b3c75be13f930b46117e205d900ee9c4f2ad6c7317655bca5364958ba1e34f0","5af161220fdf46730477706e8c431ccbd1b4ff50223cb32450bc20513f50bfbd","58dc55b8364f740005e662ee0ae7cc14b55094c2339b74377e16b4436fb863df","ba9c10476a9a3d9a88b68877c12f58d35b10c1146e1ec20d397cc88699d09153","83a3a4f21e36ee920e819ac865badd30bf258361e7a224d1fb134a5524f55a0f","0e444a71d6132e54059d824b0aec770d24b467ec7380f64fb030a538ddf0f913","db18c2ffebf4c7f8d5ebb8f2541bc30bbb4f6cacebb42a5a9742ae883fd583e1","a22722f2344d703cdcc5ada42cbf84890ef527a2a6e9154fab5ddb362e64b955","866041185b44ade1456dc03de3dc85aad9c2b02dfd92d7f2068d46e28ea66201","13d94ac3ee5780f99988ae4cce0efd139598ca159553bc0100811eba74fc2351","48864a43f6c1032cb3fb5bfac020d4b2919791f49d8f31ff18f2dd3d4816005f","975a13b0ded262c522be36ed51dfd394434acd410f642bc269d0a1d7feb6b7dd","838447eba0348ee8d9801eaeff74def53d41e681a387cb2278c9f369a4fba8f2","220c93cd694e27d77b91f874f31e92d7514aa808fd95768b64552693043d00b9","380543b1b41b88e3a6294b8419d5ed323c5da3a3051ab4a1d5677f525ee30698","269ee735294e8c328681830ae7fdf4aea6c24032f0541d76c914aac9afadda5c","23a790e87430f6bcf8dfbc4d3560e8b3d7441f9cfbe509bcf932b4608c60c9e3","7a8b858660503a4af876541f456b2cbc3d89b164ab842c7434ac0fb87ec0e026","eb1e3b36ed3aac2811786d5716a16c1f8bd1fcb62b524a3bb3d602db9f55e75a","f571e28d70c04d1ce72673771010febae11d2c907a71d027550d986ee424951d","ae4f0f443b828f28aaf843856dd25a8ab5e400f99581778f8977011c4a72d70d","cf5ba84fd9488f0ba7e302d54d1db6452b513d8573df389dd05f4153f5edfc26","64ec4840e09c2f03bc97e86f6fbc5aac99bb6a067f20e06dc186a3784aba2862","1213ffec6b715fc3208f0864649666ea0810584b79b5c6e35bb5fe9273c6533f","e7575e8fde833cacd2ab108e0e85fc2c3f1e6381261995061a37fb0d5d95a2b2","7e0c4a71364bcfbef8f85673e7ab636a766f2f749d88869b636ec5912c33a31c","45a87c6d4d683ab5d7abd72ad7fc0e5a5ebae957a0e34971afc2383d554460ef","38738b94918d3119aa7006a143ec3f1552726348c80ee9b2de3606b9d78be223","ac5c6aefe784ae554ccef97ab165378535dc055402198667b75a4909387e7e8a","530ad38028745590e3792e0570b96d063a5039dff59119d4b686673094d2e9e7","fcf764882c18b958c2a487ad1093d6c9630df63f1e90995b157fe052e9fcc632","92ebc3261b20037c4e078cd3d26bccedb719b3eec653925e103b6ced4a936c0d","857864124c3a81507e55dcd7ed8cfa3f0c0f14dcee7acf94ed598cb25526d278","0fa6d3bf24b1d056c43e7c1c8f27819b6bad234c647a78e6ce70f8ff5615c70d","55e5a83c57e75329952d4138a50cf1564ac2dfd0669c2e01fa9f50ee68196ced","50b410acd8c96105e69d93826137269413e120758411ba1dbb992b901e6a2e55","0d4e5400743b35d420d83f1a33add04e1be352d45c98f2777708ca40cbb525e6","a49a99c6fc351fa5491d7b7efa0dc5666f1400b57f2063ed8f362a93f2f98797","e4f5face52c9781d20d2127cf405288a8007cf2e15e87574f677916e534e706a","892bf5856b242f0769a7a87c05ca17a7f2075450cbaa0ab589b8944b03804a93","34bc4ae02c19ebf98cefa8f4505bcb87413a60fd2544d7d4e6193acbc4108dda","5eee4649c790eaab36ab3e1aa60c807ce0e8aaf9a025c90fb40e60b5f5684e6c","30d6dc9b525dd82df213f2ce4a2aa0b2935b3ae5366ea164f96e6c08f0968ac2","ebe7db5bd9df714d7dddaf077a0a5ab6cf33740c1e39ca0274beeb96bc86828c","4a091e7847acab6fe0536b507db54b71270d22fe98513728658e446b08941c8e","c467f362b3da83f87dff5bae2f330f17c8086eba5f8eb5240b12b049a7f77db5","ad42060f3e0f92a294748f19d9490a8a6a980fb40dda0fd4627991d1361862cc","ecbfb361d752394a3728d319a93d0a208c5a00960ec1e5763d23b5944a00e35d","60a6e14c616a9977e7e0e196977721232e6977952d0324be4fb932a07d1679e1","bd76bdc3263ffb0ca3353fb6a525e8d14323768e48b91927f9ba87183d20fff1","2d94e74a3f71bbafeab55ec22b10151b89ae85587bc65f00b83344899ee52e2c","711789984a100da43d3e498c17ae14d9702f03fa0fc32cb07bd789a405bf4ab6","281d01063c2dd246078dd4079bd7827d2680e74cfc19490d3705675022336683","1a9cdf3bfd9f257233439cb40238352fe1c6128005290ecabf5c09633d58e1bd","f92d1a32779136c5707ea3a9bfcaa66c719598b7221da13d7b4843d60b7cb1ce","abc44e24a9e4d448c16be0592efe21c226348f2cabc4a29baaca1a9d20603e48","6d6a44413b5561347e604b9136c09074efd84fac96f105b9e1b65ce2e1c4a105","0471d30e55be2eca003ccde4240963c61ed191ef664704aa9d714f66518004ae","d1a685ef40d9553092a6da3f019344e9555808f8c79cd837a2b1479a89aff86e","78febe79c300eb4e36b21a5f92c64b55659f9b1b4fdac3cccb9481b28e2572a2","9a0dbf7e661a3dc3d1842bd0fa64e001037e9086b5c6c3d46c34400afb9c8689","b8dffdc3b519083310f3405512c60e673170dd0cef15407f65f9e82790091b1a","0cf8620ca1bb4e8b07545a3ae165f49db3daf0fd184e435e0eb1aa16ba512174","3c72d7ec3a861bfbc632454bf0bfc514aa965ed26ec1f9450108258a3b6430a7","024e0a74ebd335b4c675747eee99453b53813d5ff3ad6cbaa81942a4f4ed57da","1eee1bcd570bda3524753ec72a47e4b1597d5fc362a6a83ec4bdc3195320f281","3416ba78c03a35b340a9f76647353292a656110f5327c2145fec97ff71f61ba6","0e0be8210df9c573b64f81f18a1c284c83d72b472abdfc840cf40cc0a1db3465","5199370d76f8fcb993ce69295f10a287d633de43a64a78fd5d2a367a31c4b258","aae56a4211c19ab565a4377a606ed2ff444264399560aa9f52b308e650880ecb","5b717f6f0f351120cdf828e55537e3e61ea96f82a1a160faa5b9ae39a75c6f68","083ae29c6fb50d676b29fd5965144fa7950ac4e3ee4fdf57c587bb3194013ae8","7c6b13ae7496db0387dea584ed361ed5ad7f9ee3426da3305a1526c4eedf8c5e","6f2c76b59c81a19f72c57ec4b9e2830a10c4b9534ff6e9cd418ddcd38b6fdc0c","16bb3683a72c89bbc51886628bbd22522148d2aa3615422eba481bcade151df7","55fa234a04eacdf253e0b46d72f6e3bd8a044339c43547a29cf3b9f29ccd050d","b181ff38cfb4c79fb7aa7ef163c06e84fe5b0c3b7a286848a0eaa5b2ec38c706","a8c65d6931f57824f95012e902b3c4aaed39aa655183d13a7f7487dcb1bcbf00","9a5cece9b6895a117590afa088b6b91db167e25b00e5de1cb5885898fad0a270","0d2b5656e6ee0ccde2ff5025a6230130598609e6ee351ffdfa9a468459c69fa6","f7a240307887227c5dafbea0de4e10ec4726f75b95704965853c7101fcd7e741","d2312207819e8646ffd59367976ee611f0865c5b1d1518269a005f58eaf1ccf2","0e002469c8f37a8eb2cb874bdbddd2099f0fd0b2f8cd8eec879740d1c1fae256","20173928a097871e7ce47443e237a9b34c38f80d62e025d831699ea7671458a0","c3639c4aeae045ed963d564f77672b64304ad903bd106c5f2e679c0a9ce276db","ae826fd8f6c1c292b6134b449344f2d2ef7af2386b067293396e6f10435d256c","53eb54070f817b851fbf711f7077f1657dad38bba59d87c11fa0e0aea662b03a",{"version":"841d7b5a086d152df7d7343e0c89beda8baf3c89f35797d91619bda9e2c44959","signature":"42aed41188d1b01c644a520a6863c7dd2c7557e853b71ea56506755da1c4970c"},{"version":"9e9149f1d84802e66a884b6fa1b60879433cd5acda253d64237211fd1e46cfce","signature":"4c3fa51ee748283e0b5d3f6c5e51d9884db0619f8d5ac0cee5669c72f1bd2249"},{"version":"f19e129e633db41f714bda92a5bcdf9ae728ed9a3093e9838e6c852700e07e28","signature":"47ad46f52ee10a34df7dc31f5634d9c95b729b816140cb6b7a784f9b99e1a0b6"},"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4",{"version":"fa6189dc847e90c971c9548be2ed7b32389b0eeb129edfe0c25fdc93c566ac2a","signature":"719d65997519f2fd2eea7b268baeb311831112b244f2d86a8ac9742f04263795"},{"version":"277c00b30562c300176bb053dc1fdcee9ac3ae59deecf98af248f9ab4149696a","signature":"e48e303e26e0bc9e0d7a7d8c38246a1c623c703245bf2d8f2d6b72941921e270"},{"version":"ae82ceff809f16f62a14b54dc547daffb22abc0e0b090e3f88186488e2b31a72","signature":"15249481a994cd78e290a923fcca909b7b5a75877b5b9353cf1845ba4dae9c86"},{"version":"863cb5638970b4eee5029f8d97d5309a304cf8f53584f1ca18cad1062ce5e17f","signature":"55b55a2ef7a1de73d8c18f90d7ab8b2d473083e9c303ff7e0cd6cd118021ca15"},{"version":"8d0fd256f05720cd8eb02927523ae032da6cb6fefa1f66a42098b8ff069eee09","signature":"b392ed5946bf4843ffcc0be5822fc32a1aa1552b48017eef35badd2b55ce1a4f"},{"version":"cd4d3a428e962eaf8c7b76cfa9d844622d7dddb09c60168b79d83bafaec2a94a","signature":"cb2d6f4374a68d53445e2a471a1d85c88fc8f3bfe295b571a0e34e12c9ec4772"},{"version":"c2a456a67d70c7e89a03c26f5f473181505246f8b64098ae44dffc693a1dfbee","signature":"d1b5c98f1a3530ea8ff760d0a322ece85529e7bb274a4569090e76c9ab9d3ca6"},{"version":"bfac1dc6936bf670596dbf881f8bf4f97e18058a7823829afc7e0db6af6cbf44","signature":"0c8d17485cdffdc3f3038daef9082d0642d708282a34924ce0de4f472c0175dc"},{"version":"d20265e2d34833d5ae1a914b6c0244e15d6040883b115c0bf278c4accdc9b854","signature":"ba68fe7b0eaccfc8d92474bd1b5fa169930252520e17db91109e86f92f873b23"},{"version":"be5337338fe7887c758327adda80264f6b0ed100c62bfd6b7b61c20aba0044b3","signature":"a3d838be6c76ff238cc1e9e2a5e408475aa92ceb8855992b91f6891c1b657b5c"},{"version":"c67e5774c9283852e80bfcb3b299533c0072ede5c2fe0e623cc70adb877d19f1","signature":"a7f5d7bc973b48d9620a6829c48a307e58baf274d7c30b85625eadf8e63a9089"},{"version":"838c44ea85eadc8c04c6d96503098f528ca299742b6437713ddef2bb87ccf1bb","signature":"7b3b0c1abda4c77abc90448a21bcf0c6ec9137aeaa3a4c059c1d87995ce76987"},{"version":"cd78139c95fe8e8a52cdad08a10c4e1b9c87c5c29366cff3743c91ae1c3b5260","signature":"364ecd330350d7765d162e1e888465fe2cd748c27ef9a8e3276d75f86c002b61"},{"version":"0563dd99b70183912f529e8364df007993fef4ce5f730292c44dd9608a32a368","signature":"e305f7acdf0276d601d1bd24bd4250f864c25e8da6cf9a4dedbd0338e9c5e4ed"},{"version":"c482fc20e80249846b5dca3158b29427cf854017ebdb869f20b7f5fb6a525893","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f0b6690984c3a44b15740ac24bfb63853617731c0f40c87a956ce537c4b50969","affectsGlobalScope":true},"77ac76cd081746189b8a6c047e0b5b40c8bfb5747fe1baea8550b4f3b9c9fd3d","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","3cf5f191d75bbe7c92f921e5ae12004ac672266e2be2ece69f40b1d6b1b678f9","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","1d78c35b7e8ce86a188e3e5528cc5d1edfc85187a85177458d26e17c8b48105f","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","818f832a8e29ca7e128dcde810a9ff8cbc3754010474e29fff0a5ed95adae032","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","1b282e90846fada1e96dc1cf5111647d6ab5985c8d7b5c542642f1ea2739406d","bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","8013f6c4d1632da8f1c4d3d702ae559acccd0f1be05360c31755f272587199c9",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e",{"version":"46894b2a21a60f8449ca6b2b7223b7179bba846a61b1434bed77b34b2902c306","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","9ad8802fd8850d22277c08f5653e69e551a2e003a376ce0afb3fe28474b51d65","fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"root":[[317,320],[361,377]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationDir":"../../dts","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":200,"noImplicitAny":true,"noImplicitThis":true,"rootDir":"../..","skipLibCheck":true,"strictBindCallApply":true,"target":99},"fileIdsList":[[212,220,234],[173],[173,174,214,219,222,223,234],[173,222,234],[173,215,234],[215,216,217,218],[173,215],[239],[173,174,234,236],[212,213,221,234],[173,222,224,234,235,237,238,256],[173,223,234],[173,219,220,234],[174,235],[173,223],[205,212,222,223,224,233,236],[172,205,234,256],[147,172,205,219,239,242,243,244,245,249,251,252,253,255],[173,198,234,239,254],[173,205,239],[147,173,239,250,256],[173,239,250,256],[147,172,241],[147,173,233,239],[147,173,239,240,242],[147,242],[147,205,225,232],[208],[206,207,208,209,210,211],[177,186,198,204],[203],[175,178,179],[180,182,183,184,185,186,198,199,204],[187,189,198],[175,177,179,188,189,194,198,199,204],[182,196,198,204],[175,177,179,181,188,189,193,198,199],[175,188,198],[175,177,181,189,195,198,199,204],[175,177,179,180,182,192,198,199],[175,176,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,196,198,199,200,201,202,204],[175,181,182,198],[175,176,177,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,196,198,199,204],[175,176,179,180,181,182,183,184,185,186,188,189,190,191,192,193,194,196,198,199,204],[175,176,177,179,180,186,189,190,191,198,204],[175,176,177,179,190,204],[176],[175,181,192],[175,179,192,198],[175,181,192,198],[246,247],[147],[147,246,248],[205],[147,153,154,170],[147,153,170,172],[147,153],[147,150,151,153,154,170,171],[147,170],[147,150,155,170],[170],[147,155,170],[147,150,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,169,172],[147,148,170],[147,153,170],[147,152,154,170,172],[147,148,149,172],[147,150,172],[105],[105,106,107,108,109,110,111,112,113],[72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[114,147],[317,318],[317,441,465],[317],[147,317,361],[317,361],[317,362,363,364],[318,319,320,366],[317,318,360,365],[69,71,177,192,254,256,316],[369],[256],[239,256,317,361,369],[318,369,370,371,373],[369,374,465],[256,317,365,369,370,372],[476],[229,231],[230],[227,229],[226,227,228],[226,229],[69,71],[68,69,70],[431,432,468,469],[471],[472],[478,481],[418,468,474,480],[475,479],[477],[382],[418],[419,424,452],[420,431,432,439,449,460],[420,421,431,439],[422,461],[423,424,432,440],[424,449,457],[425,427,431,439],[418,426],[427,428],[431],[429,431],[418,431],[431,432,433,449,460],[431,432,433,446,449,452],[416,419,465],[427,431,434,439,449,460],[431,432,434,435,439,449,457,460],[434,436,449,457,460],[382,383,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467],[431,437],[438,460,465],[427,431,439,449],[440],[441],[418,442],[443,459,465],[444],[445],[431,446,447],[446,448,461,463],[419,431,449,450,451,452],[419,449,451],[449,450],[452],[453],[418,449],[431,455,456],[455,456],[424,439,449,457],[458],[439,459],[419,434,445,460],[424,461],[449,462],[438,463],[464],[419,424,431,433,442,449,460,463,465],[449,466],[321,360],[321,345,360],[360],[321],[321,346,360],[321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359],[346,360],[489],[262,282,292,303,306],[262,304,314],[262,263,264],[265,266,267,268,269,270,271,272,273,274,275],[262,263],[263,265,266,267,268,269,270,271,272,273,274,275,276],[277,282,283,304,306,311,312,315],[262,310],[262,282,306],[262,283,304,306,312],[262,310,311],[262,309],[313],[262,284,289,302,304],[262,282,283,284,289,302,304],[262,282,284,289,302,304],[285,286,287,288,290,291,292,293,294,295,296,297,298,299,300,301,303,305],[262,277,282,283,284,285,286,287,288,302,304],[284,285,286,287,288,290,291,293,294,295,296,297,298,299,300,301,302,303,305],[262,278],[279,280,306],[278],[262,277,283,306],[279,280,281],[257],[258,259,260,261],[257,259],[258,261],[262],[307,308],[478],[393,397,460],[393,449,460],[388],[390,393,457,460],[439,457],[468],[388,468],[390,393,439,460],[385,386,389,392,419,431,449,460],[385,391],[389,393,419,452,460,468],[419,468],[409,419,468],[387,388,468],[393],[387,388,389,390,391,392,393,394,395,397,398,399,400,401,402,403,404,405,406,407,408,410,411,412,413,414,415],[393,400,401],[391,393,401,402],[392],[385,388,393],[393,397,401,402],[397],[391,393,396,460],[385,390,391,393,397,400],[419,449],[388,393,409,419,465,468],[207],[175,179,192,197,204],[147,150],[147,168,170],[318],[256,317]],"referencedMap":[[221,1],[213,2],[220,3],[223,4],[217,5],[219,6],[216,7],[218,2],[215,8],[237,9],[222,10],[239,11],[224,12],[238,13],[236,14],[214,15],[234,16],[235,17],[256,18],[255,19],[254,20],[253,21],[252,22],[251,22],[242,23],[250,24],[241,25],[243,26],[233,27],[210,28],[211,28],[212,29],[209,28],[205,30],[204,31],[179,32],[187,33],[190,34],[195,35],[199,36],[194,37],[189,38],[196,39],[188,40],[203,41],[200,42],[201,43],[197,44],[202,42],[192,45],[180,46],[177,47],[184,48],[183,49],[182,50],[248,51],[247,52],[249,53],[246,54],[171,55],[155,56],[154,57],[172,58],[156,59],[166,59],[162,60],[160,59],[159,61],[165,62],[170,63],[157,59],[161,59],[168,64],[148,52],[164,65],[163,61],[158,59],[152,65],[153,66],[150,67],[151,68],[74,52],[75,52],[77,52],[76,52],[79,52],[81,52],[73,52],[78,52],[83,52],[84,52],[85,52],[82,52],[86,52],[87,52],[88,52],[89,52],[90,52],[92,52],[91,52],[93,52],[94,52],[96,52],[98,52],[99,52],[100,52],[102,52],[103,52],[104,52],[106,69],[114,70],[105,52],[147,71],[115,52],[120,52],[116,52],[117,52],[118,52],[119,52],[121,52],[122,52],[123,52],[124,52],[143,52],[144,52],[126,52],[127,52],[128,52],[129,52],[130,52],[131,52],[132,52],[134,52],[135,52],[136,52],[137,52],[140,52],[141,52],[142,72],[319,73],[318,74],[320,75],[364,76],[363,52],[362,77],[365,78],[367,79],[368,79],[366,80],[317,81],[370,82],[369,83],[371,84],[374,85],[375,86],[373,87],[477,88],[232,89],[231,90],[228,91],[229,92],[227,93],[380,94],[71,95],[470,96],[472,97],[473,98],[483,99],[481,100],[480,101],[482,102],[382,103],[383,103],[418,104],[419,105],[420,106],[421,107],[422,108],[423,109],[424,110],[425,111],[426,112],[427,113],[428,113],[430,114],[429,115],[431,116],[432,117],[433,118],[417,119],[434,120],[435,121],[436,122],[468,123],[437,124],[438,125],[439,126],[440,127],[441,128],[442,129],[443,130],[444,131],[445,132],[446,133],[447,133],[448,134],[449,135],[451,136],[450,137],[452,138],[453,139],[454,140],[455,141],[456,142],[457,143],[458,144],[459,145],[460,146],[461,147],[462,148],[463,149],[464,150],[465,151],[466,152],[345,153],[346,154],[321,155],[324,155],[343,153],[344,153],[334,153],[333,156],[331,153],[326,153],[339,153],[337,153],[341,153],[325,153],[338,153],[342,153],[327,153],[328,153],[340,153],[322,153],[329,153],[330,153],[332,153],[336,153],[347,157],[335,153],[323,153],[360,158],[354,157],[356,159],[355,157],[348,157],[349,157],[351,157],[353,157],[357,159],[358,159],[350,159],[352,159],[490,160],[304,161],[315,162],[265,163],[266,163],[276,164],[264,165],[267,163],[268,163],[269,163],[270,163],[271,163],[272,163],[273,163],[274,163],[275,163],[277,166],[316,167],[311,168],[283,169],[313,170],[312,171],[310,172],[314,173],[305,174],[290,174],[303,174],[291,174],[292,174],[293,174],[294,174],[295,174],[285,175],[296,174],[286,176],[297,174],[287,174],[302,177],[289,178],[298,174],[299,174],[288,174],[300,174],[301,174],[306,179],[279,180],[281,181],[280,182],[278,183],[282,184],[258,185],[262,186],[260,187],[261,188],[307,189],[309,190],[479,191],[478,102],[400,192],[407,193],[399,192],[414,194],[391,195],[390,196],[413,197],[408,198],[411,199],[393,200],[392,201],[388,202],[387,203],[410,204],[389,205],[394,206],[398,206],[416,207],[415,206],[402,208],[403,209],[405,210],[401,211],[404,212],[409,197],[396,213],[397,214],[406,215],[386,216],[412,217],[208,218],[198,219],[149,220],[167,59],[169,221]],"exportedModulesMap":[[221,1],[213,2],[220,3],[223,4],[217,5],[219,6],[216,7],[218,2],[215,8],[237,9],[222,10],[239,11],[224,12],[238,13],[236,14],[214,15],[234,16],[235,17],[256,18],[255,19],[254,20],[253,21],[252,22],[251,22],[242,23],[250,24],[241,25],[243,26],[233,27],[210,28],[211,28],[212,29],[209,28],[205,30],[204,31],[179,32],[187,33],[190,34],[195,35],[199,36],[194,37],[189,38],[196,39],[188,40],[203,41],[200,42],[201,43],[197,44],[202,42],[192,45],[180,46],[177,47],[184,48],[183,49],[182,50],[248,51],[247,52],[249,53],[246,54],[171,55],[155,56],[154,57],[172,58],[156,59],[166,59],[162,60],[160,59],[159,61],[165,62],[170,63],[157,59],[161,59],[168,64],[148,52],[164,65],[163,61],[158,59],[152,65],[153,66],[150,67],[151,68],[74,52],[75,52],[77,52],[76,52],[79,52],[81,52],[73,52],[78,52],[83,52],[84,52],[85,52],[82,52],[86,52],[87,52],[88,52],[89,52],[90,52],[92,52],[91,52],[93,52],[94,52],[96,52],[98,52],[99,52],[100,52],[102,52],[103,52],[104,52],[106,69],[114,70],[105,52],[147,71],[115,52],[120,52],[116,52],[117,52],[118,52],[119,52],[121,52],[122,52],[123,52],[124,52],[143,52],[144,52],[126,52],[127,52],[128,52],[129,52],[130,52],[131,52],[132,52],[134,52],[135,52],[136,52],[137,52],[140,52],[141,52],[142,72],[319,222],[318,75],[320,75],[364,75],[363,52],[362,75],[365,75],[366,73],[317,81],[369,83],[371,223],[374,222],[373,223],[477,88],[232,89],[231,90],[228,91],[229,92],[227,93],[380,94],[71,95],[470,96],[472,97],[473,98],[483,99],[481,100],[480,101],[482,102],[382,103],[383,103],[418,104],[419,105],[420,106],[421,107],[422,108],[423,109],[424,110],[425,111],[426,112],[427,113],[428,113],[430,114],[429,115],[431,116],[432,117],[433,118],[417,119],[434,120],[435,121],[436,122],[468,123],[437,124],[438,125],[439,126],[440,127],[441,128],[442,129],[443,130],[444,131],[445,132],[446,133],[447,133],[448,134],[449,135],[451,136],[450,137],[452,138],[453,139],[454,140],[455,141],[456,142],[457,143],[458,144],[459,145],[460,146],[461,147],[462,148],[463,149],[464,150],[465,151],[466,152],[345,153],[346,154],[321,155],[324,155],[343,153],[344,153],[334,153],[333,156],[331,153],[326,153],[339,153],[337,153],[341,153],[325,153],[338,153],[342,153],[327,153],[328,153],[340,153],[322,153],[329,153],[330,153],[332,153],[336,153],[347,157],[335,153],[323,153],[360,158],[354,157],[356,159],[355,157],[348,157],[349,157],[351,157],[353,157],[357,159],[358,159],[350,159],[352,159],[490,160],[304,161],[315,162],[265,163],[266,163],[276,164],[264,165],[267,163],[268,163],[269,163],[270,163],[271,163],[272,163],[273,163],[274,163],[275,163],[277,166],[316,167],[311,168],[283,169],[313,170],[312,171],[310,172],[314,173],[305,174],[290,174],[303,174],[291,174],[292,174],[293,174],[294,174],[295,174],[285,175],[296,174],[286,176],[297,174],[287,174],[302,177],[289,178],[298,174],[299,174],[288,174],[300,174],[301,174],[306,179],[279,180],[281,181],[280,182],[278,183],[282,184],[258,185],[262,186],[260,187],[261,188],[307,189],[309,190],[479,191],[478,102],[400,192],[407,193],[399,192],[414,194],[391,195],[390,196],[413,197],[408,198],[411,199],[393,200],[392,201],[388,202],[387,203],[410,204],[389,205],[394,206],[398,206],[416,207],[415,206],[402,208],[403,209],[405,210],[401,211],[404,212],[409,197],[396,213],[397,214],[406,215],[386,216],[412,217],[208,218],[198,219],[149,220],[167,59],[169,221]],"semanticDiagnosticsPerFile":[221,213,220,223,217,219,216,218,215,237,222,174,245,239,224,238,236,214,234,235,256,255,254,244,253,252,251,242,250,241,243,233,210,211,212,206,209,207,191,205,204,179,178,187,190,195,199,194,189,196,188,203,200,201,197,202,176,192,180,177,184,183,175,185,182,181,248,247,249,246,171,155,154,172,156,166,162,160,159,165,170,157,161,168,148,164,163,158,152,153,150,151,74,75,145,77,76,79,81,73,78,83,84,85,82,86,87,88,89,90,92,91,93,94,95,96,97,98,99,100,101,102,103,104,106,113,110,107,114,108,109,112,111,105,147,115,120,116,117,118,119,121,122,123,124,146,125,143,144,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,72,142,319,318,320,364,363,362,365,367,368,366,317,361,370,369,371,372,374,375,373,376,477,232,230,231,228,226,229,227,476,193,378,240,379,380,68,71,69,381,173,470,471,472,473,483,474,475,481,480,482,225,70,484,485,469,382,383,418,419,420,421,422,423,424,425,426,427,428,430,429,431,432,433,417,467,434,435,436,468,437,438,439,440,441,442,443,444,445,446,447,448,449,451,450,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,486,345,346,321,324,343,344,334,333,331,326,339,337,341,325,338,342,327,328,340,322,329,330,332,336,347,335,323,360,359,354,356,355,348,349,351,353,357,358,350,352,487,488,489,490,304,315,265,266,276,264,263,267,268,269,270,271,272,273,274,275,277,316,311,283,313,312,310,314,305,290,303,291,292,293,294,295,285,296,286,297,287,302,289,284,298,299,288,300,301,306,279,281,280,278,282,258,262,259,260,261,307,309,308,384,479,478,66,67,13,12,2,14,15,16,17,18,19,20,21,3,22,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,60,11,64,62,61,65,63,257,400,407,399,414,391,390,413,408,411,393,392,388,387,410,389,394,395,398,385,416,415,402,403,405,401,404,409,396,397,406,386,412,208,198,186,149,167,169,80,377],"latestChangedDtsFile":"../../dts/eslint/babel-eslint-parser/src/worker/index.d.cts"},"version":"5.4.2"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js b/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js index f137135dc792ae..95fb1f00bab0b5 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js +++ b/tools/node_modules/eslint/node_modules/@babel/generator/lib/printer.js @@ -321,7 +321,7 @@ class Printer { } this._printStack.push(node); const oldInAux = this._insideAux; - this._insideAux = node.loc == undefined; + this._insideAux = node.loc == null; this._maybeAddAuxComment(this._insideAux && !oldInAux); const parenthesized = (_node$extra = node.extra) == null ? void 0 : _node$extra.parenthesized; let shouldPrintParens = forceParens || parenthesized && format.retainFunctionParens && nodeType === "FunctionExpression" || needsParens(node, parent, this._printStack); @@ -614,7 +614,7 @@ class Printer { if (type === 0) { let offset = 0; if (i === 0) { - if (this._buf.hasContent() && (comment.type === "CommentLine" || commentStartLine != commentEndLine)) { + if (this._buf.hasContent() && (comment.type === "CommentLine" || commentStartLine !== commentEndLine)) { offset = leadingCommentNewline = 1; } } else { diff --git a/tools/node_modules/eslint/node_modules/@babel/generator/package.json b/tools/node_modules/eslint/node_modules/@babel/generator/package.json index 786aec00841b6d..71e541bdfb5777 100644 --- a/tools/node_modules/eslint/node_modules/@babel/generator/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/generator/package.json @@ -1,6 +1,6 @@ { "name": "@babel/generator", - "version": "7.24.4", + "version": "7.24.5", "description": "Turns an AST into code.", "author": "The Babel Team (https://babel.dev/team)", "license": "MIT", @@ -19,14 +19,14 @@ "lib" ], "dependencies": { - "@babel/types": "^7.24.0", + "@babel/types": "^7.24.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "devDependencies": { "@babel/helper-fixtures": "^7.24.4", - "@babel/parser": "^7.24.4", + "@babel/parser": "^7.24.5", "@jridgewell/sourcemap-codec": "^1.4.15", "@types/jsesc": "^2.5.0", "charcodes": "^0.2.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json index 895e0ddab9b7f6..b72bccba7821d2 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-module-transforms/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-module-transforms", - "version": "7.23.3", + "version": "7.24.5", "description": "Babel helper functions for implementing ES6 module transformations", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-module-transforms", @@ -16,14 +16,14 @@ "main": "./lib/index.js", "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-simple-access": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/helper-validator-identifier": "^7.22.20" + "@babel/helper-module-imports": "^7.24.3", + "@babel/helper-simple-access": "^7.24.5", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/helper-validator-identifier": "^7.24.5" }, "devDependencies": { - "@babel/core": "^7.23.3", - "@babel/traverse": "^7.23.3" + "@babel/core": "^7.24.5", + "@babel/traverse": "^7.24.5" }, "peerDependencies": { "@babel/core": "^7.0.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json index c1afb770367da7..35353b0a016ad2 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-plugin-utils", - "version": "7.24.0", + "version": "7.24.5", "description": "General utilities for plugins to use", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-plugin-utils", @@ -17,5 +17,8 @@ "engines": { "node": ">=6.9.0" }, + "devDependencies": { + "@babel/core": "^7.24.5" + }, "type": "commonjs" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/tsconfig.tsbuildinfo b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/tsconfig.tsbuildinfo new file mode 100644 index 00000000000000..daa23452344698 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@babel/helper-plugin-utils/tsconfig.tsbuildinfo @@ -0,0 +1 @@ +{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.es2021.d.ts","../../node_modules/typescript/lib/lib.es2022.d.ts","../../node_modules/typescript/lib/lib.es2023.d.ts","../../node_modules/typescript/lib/lib.esnext.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../node_modules/typescript/lib/lib.esnext.object.d.ts","../../node_modules/typescript/lib/lib.decorators.d.ts","../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../node_modules/js-tokens-BABEL_8_BREAKING-true/index.d.ts","../../node_modules/@types/charcodes/index.d.ts","../babel-helper-validator-identifier/src/identifier.ts","../babel-helper-validator-identifier/src/keyword.ts","../babel-helper-validator-identifier/src/index.ts","../../node_modules/picocolors/types.ts","../../node_modules/picocolors/picocolors.d.ts","../babel-highlight/src/index.ts","../babel-code-frame/src/index.ts","../babel-types/src/utils/shallowEqual.ts","../babel-types/src/utils/deprecationWarning.ts","../babel-types/src/validators/generated/index.ts","../babel-types/src/validators/matchesPattern.ts","../babel-types/src/validators/buildMatchMemberExpression.ts","../babel-types/src/validators/react/isReactComponent.ts","../babel-types/src/validators/react/isCompatTag.ts","../../node_modules/to-fast-properties-BABEL_8_BREAKING-true/index.d.ts","../babel-types/src/validators/isType.ts","../babel-types/src/validators/isPlaceholderType.ts","../babel-types/src/validators/is.ts","../babel-types/src/validators/isValidIdentifier.ts","../babel-helper-string-parser/src/index.ts","../babel-types/src/constants/index.ts","../babel-types/src/definitions/utils.ts","../babel-types/src/definitions/core.ts","../babel-types/src/definitions/flow.ts","../babel-types/src/definitions/jsx.ts","../babel-types/src/definitions/placeholders.ts","../babel-types/src/definitions/misc.ts","../babel-types/src/definitions/experimental.ts","../babel-types/src/definitions/typescript.ts","../babel-types/src/definitions/deprecated-aliases.ts","../babel-types/src/definitions/index.ts","../babel-types/src/validators/validate.ts","../babel-types/src/builders/validateNode.ts","../babel-types/src/builders/generated/index.ts","../babel-types/src/utils/react/cleanJSXElementLiteralChild.ts","../babel-types/src/builders/react/buildChildren.ts","../babel-types/src/validators/isNode.ts","../babel-types/src/asserts/assertNode.ts","../babel-types/src/asserts/generated/index.ts","../babel-types/src/builders/flow/createTypeAnnotationBasedOnTypeof.ts","../babel-types/src/modifications/flow/removeTypeDuplicates.ts","../babel-types/src/builders/flow/createFlowUnionType.ts","../babel-types/src/modifications/typescript/removeTypeDuplicates.ts","../babel-types/src/builders/typescript/createTSUnionType.ts","../babel-types/src/builders/generated/uppercase.d.ts","../babel-types/src/builders/productions.ts","../babel-types/src/clone/cloneNode.ts","../babel-types/src/clone/clone.ts","../babel-types/src/clone/cloneDeep.ts","../babel-types/src/clone/cloneDeepWithoutLoc.ts","../babel-types/src/clone/cloneWithoutLoc.ts","../babel-types/src/comments/addComments.ts","../babel-types/src/comments/addComment.ts","../babel-types/src/utils/inherit.ts","../babel-types/src/comments/inheritInnerComments.ts","../babel-types/src/comments/inheritLeadingComments.ts","../babel-types/src/comments/inheritTrailingComments.ts","../babel-types/src/comments/inheritsComments.ts","../babel-types/src/comments/removeComments.ts","../babel-types/src/constants/generated/index.ts","../babel-types/src/converters/toBlock.ts","../babel-types/src/converters/ensureBlock.ts","../babel-types/src/converters/toIdentifier.ts","../babel-types/src/converters/toBindingIdentifierName.ts","../babel-types/src/converters/toComputedKey.ts","../babel-types/src/converters/toExpression.ts","../babel-types/src/traverse/traverseFast.ts","../babel-types/src/modifications/removeProperties.ts","../babel-types/src/modifications/removePropertiesDeep.ts","../babel-types/src/converters/toKeyAlias.ts","../babel-types/src/converters/toStatement.ts","../babel-types/src/converters/valueToNode.ts","../babel-types/src/modifications/appendToMemberExpression.ts","../babel-types/src/modifications/inherits.ts","../babel-types/src/modifications/prependToMemberExpression.ts","../babel-types/src/retrievers/getBindingIdentifiers.ts","../babel-types/src/retrievers/getOuterBindingIdentifiers.ts","../babel-types/src/traverse/traverse.ts","../babel-types/src/validators/isBinding.ts","../babel-types/src/validators/isLet.ts","../babel-types/src/validators/isBlockScoped.ts","../babel-types/src/validators/isImmutable.ts","../babel-types/src/validators/isNodesEquivalent.ts","../babel-types/src/validators/isReferenced.ts","../babel-types/src/validators/isScope.ts","../babel-types/src/validators/isSpecifierDefault.ts","../babel-types/src/validators/isValidES3Identifier.ts","../babel-types/src/validators/isVar.ts","../babel-types/src/ast-types/generated/index.ts","../babel-types/src/index.ts","../babel-traverse/src/path/lib/virtual-types.ts","../babel-traverse/src/scope/binding.ts","../babel-helper-split-export-declaration/src/index.ts","../babel-helper-environment-visitor/src/index.ts","../babel-traverse/src/generated/visitor-types.d.ts","../babel-traverse/src/types.ts","../babel-traverse/src/context.ts","../babel-traverse/src/traverse-node.ts","../babel-traverse/src/scope/lib/renamer.ts","../../node_modules/type-fest/source/basic.d.ts","../../node_modules/type-fest/source/except.d.ts","../../node_modules/type-fest/source/mutable.d.ts","../../node_modules/type-fest/source/merge.d.ts","../../node_modules/type-fest/source/merge-exclusive.d.ts","../../node_modules/type-fest/source/require-at-least-one.d.ts","../../node_modules/type-fest/source/require-exactly-one.d.ts","../../node_modules/type-fest/source/partial-deep.d.ts","../../node_modules/type-fest/source/readonly-deep.d.ts","../../node_modules/type-fest/source/literal-union.d.ts","../../node_modules/type-fest/source/promisable.d.ts","../../node_modules/type-fest/source/opaque.d.ts","../../node_modules/type-fest/source/set-optional.d.ts","../../node_modules/type-fest/source/set-required.d.ts","../../node_modules/type-fest/source/value-of.d.ts","../../node_modules/type-fest/source/promise-value.d.ts","../../node_modules/type-fest/source/async-return-type.d.ts","../../node_modules/type-fest/source/conditional-keys.d.ts","../../node_modules/type-fest/source/conditional-except.d.ts","../../node_modules/type-fest/source/conditional-pick.d.ts","../../node_modules/type-fest/source/union-to-intersection.d.ts","../../node_modules/type-fest/source/stringified.d.ts","../../node_modules/type-fest/source/fixed-length-array.d.ts","../../node_modules/type-fest/source/iterable-element.d.ts","../../node_modules/type-fest/source/entry.d.ts","../../node_modules/type-fest/source/entries.d.ts","../../node_modules/type-fest/source/set-return-type.d.ts","../../node_modules/type-fest/source/asyncify.d.ts","../../node_modules/type-fest/source/package-json.d.ts","../../node_modules/type-fest/source/tsconfig-json.d.ts","../../node_modules/type-fest/base.d.ts","../../node_modules/type-fest/source/utilities.d.ts","../../node_modules/type-fest/ts41/camel-case.d.ts","../../node_modules/type-fest/ts41/delimiter-case.d.ts","../../node_modules/type-fest/ts41/kebab-case.d.ts","../../node_modules/type-fest/ts41/pascal-case.d.ts","../../node_modules/type-fest/ts41/snake-case.d.ts","../../node_modules/type-fest/ts41/index.d.ts","../../node_modules/globals-BABEL_8_BREAKING-true/globals.json","../../node_modules/globals-BABEL_8_BREAKING-true/index.d.ts","../babel-traverse/src/cache.ts","../babel-traverse/src/scope/index.ts","../babel-traverse/src/hub.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/sourcemap-segment.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/types.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/any-map.d.ts","../../node_modules/@jridgewell/trace-mapping/dist/types/trace-mapping.d.ts","../../node_modules/@jridgewell/gen-mapping/dist/types/sourcemap-segment.d.ts","../../node_modules/@jridgewell/gen-mapping/dist/types/types.d.ts","../../node_modules/@jridgewell/gen-mapping/dist/types/gen-mapping.d.ts","../babel-generator/src/source-map.ts","../babel-generator/src/buffer.ts","../babel-generator/src/node/whitespace.ts","../babel-generator/src/node/parentheses.ts","../babel-generator/src/node/index.ts","../babel-parser/src/util/location.ts","../babel-parser/src/tokenizer/context.ts","../babel-parser/src/tokenizer/types.ts","../babel-parser/src/parse-error/module-errors.ts","../babel-parser/src/parse-error/to-node-description.ts","../babel-parser/src/parse-error/standard-errors.ts","../babel-parser/src/parse-error/strict-mode-errors.ts","../babel-parser/src/parse-error/pipeline-operator-errors.ts","../babel-parser/src/parse-error.ts","../babel-parser/src/tokenizer/state.ts","../babel-parser/src/util/scopeflags.ts","../babel-parser/src/util/scope.ts","../babel-parser/src/util/expression-scope.ts","../babel-parser/src/util/class-scope.ts","../babel-parser/src/util/production-parameter.ts","../babel-parser/src/typings.d.ts","../babel-parser/src/parser/base.ts","../babel-parser/src/util/whitespace.ts","../babel-parser/src/util/identifier.ts","../babel-parser/src/parser/util.ts","../babel-parser/src/parser/node.ts","../babel-parser/src/parser/comments.ts","../babel-parser/src/tokenizer/index.ts","../babel-parser/src/plugins/placeholders.ts","../babel-parser/src/types.d.ts","../babel-parser/src/parser/lval.ts","../babel-parser/src/parser/expression.ts","../babel-parser/src/parser/statement.ts","../babel-parser/src/parser/index.ts","../babel-parser/src/plugins/estree.ts","../babel-parser/src/plugins/flow/scope.ts","../babel-parser/src/plugins/flow/index.ts","../babel-parser/src/plugins/jsx/xhtml.ts","../babel-parser/src/plugins/jsx/index.ts","../babel-parser/src/plugins/typescript/scope.ts","../babel-parser/src/plugins/typescript/index.ts","../babel-parser/src/plugins/v8intrinsic.ts","../babel-parser/src/plugin-utils.ts","../babel-parser/src/options.ts","../babel-parser/src/index.ts","../../node_modules/@types/jsesc/index.d.ts","../babel-generator/src/generators/template-literals.ts","../babel-generator/src/generators/expressions.ts","../babel-generator/src/generators/statements.ts","../babel-generator/src/generators/classes.ts","../babel-generator/src/generators/methods.ts","../babel-generator/src/generators/modules.ts","../babel-generator/src/generators/types.ts","../babel-generator/src/generators/flow.ts","../babel-generator/src/generators/base.ts","../babel-generator/src/generators/jsx.ts","../babel-generator/src/generators/typescript.ts","../babel-generator/src/generators/index.ts","../babel-generator/src/printer.ts","../babel-generator/src/index.ts","../babel-traverse/src/path/ancestry.ts","../babel-traverse/src/path/inference/util.ts","../babel-traverse/src/path/inference/inferer-reference.ts","../babel-traverse/src/path/inference/inferers.ts","../babel-traverse/src/path/inference/index.ts","../babel-helper-hoist-variables/src/index.ts","../babel-traverse/src/path/replacement.ts","../babel-traverse/src/path/evaluation.ts","../babel-template/src/formatters.ts","../babel-template/src/options.ts","../babel-template/src/parse.ts","../babel-template/src/populate.ts","../babel-template/src/string.ts","../babel-template/src/literal.ts","../babel-template/src/builder.ts","../babel-template/src/index.ts","../babel-helper-function-name/src/index.ts","../babel-traverse/src/path/conversion.ts","../babel-traverse/src/path/introspection.ts","../babel-traverse/src/path/context.ts","../babel-traverse/src/path/lib/removal-hooks.ts","../babel-traverse/src/path/removal.ts","../babel-traverse/src/path/lib/hoister.ts","../babel-traverse/src/path/modification.ts","../babel-traverse/src/path/family.ts","../babel-traverse/src/path/comments.ts","../babel-traverse/src/path/generated/asserts.d.ts","../babel-traverse/src/path/generated/validators.d.ts","../babel-traverse/src/path/index.ts","../babel-traverse/src/path/lib/virtual-types-validator.ts","../babel-traverse/src/visitors.ts","../babel-traverse/src/index.ts","../babel-helpers/src/helpers-generated.ts","../babel-helpers/src/helpers.ts","../babel-helpers/src/index.ts","../babel-helper-module-imports/src/import-builder.ts","../babel-helper-module-imports/src/is-module.ts","../babel-helper-module-imports/src/import-injector.ts","../babel-helper-module-imports/src/index.ts","../babel-helper-module-transforms/src/rewrite-this.ts","../babel-helper-simple-access/src/index.ts","../babel-helper-module-transforms/src/normalize-and-load-metadata.ts","../babel-helper-module-transforms/src/rewrite-live-references.ts","../babel-helper-module-transforms/src/lazy-modules.ts","../babel-helper-module-transforms/src/dynamic-import.ts","../babel-helper-module-transforms/src/get-module-name.ts","../babel-helper-module-transforms/src/index.ts","../babel-core/node_modules/@types/semver/index.d.ts","../../node_modules/@types/gensync/index.d.ts","../babel-core/src/gensync-utils/async.ts","../../node_modules/browserslist/index.d.ts","../babel-helper-validator-option/src/find-suggestion.ts","../babel-helper-validator-option/src/validator.ts","../babel-helper-validator-option/src/index.ts","../babel-compat-data/data/native-modules.json","../../node_modules/@types/lru-cache/index.d.ts","../babel-helper-compilation-targets/node_modules/@types/semver/index.d.ts","../babel-helper-compilation-targets/src/targets.ts","../babel-helper-compilation-targets/src/types.d.ts","../babel-helper-compilation-targets/src/utils.ts","../babel-helper-compilation-targets/src/options.ts","../babel-helper-compilation-targets/src/pretty.ts","../babel-helper-compilation-targets/src/debug.ts","../babel-compat-data/data/plugins.json","../babel-helper-compilation-targets/src/filter-items.ts","../babel-helper-compilation-targets/src/index.ts","../babel-core/src/gensync-utils/functional.ts","../babel-core/src/config/caching.ts","../babel-core/src/gensync-utils/fs.ts","../babel-core/src/config/files/utils.ts","../babel-core/src/config/files/types.ts","../babel-core/src/errors/rewrite-stack-trace.ts","../babel-core/src/errors/config-error.ts","../babel-core/src/config/files/package.ts","../../node_modules/json5/lib/parse.d.ts","../../node_modules/json5/lib/stringify.d.ts","../../node_modules/json5/lib/index.d.ts","../babel-core/src/config/pattern-to-regex.ts","../babel-core/src/config/printer.ts","../babel-core/src/config/helpers/deep-array.ts","../babel-core/src/config/config-chain.ts","../babel-core/src/config/cache-contexts.ts","../babel-core/src/config/helpers/config-api.ts","../babel-core/src/transformation/plugin-pass.ts","../babel-core/src/config/validation/option-assertions.ts","../babel-core/src/config/validation/plugins.ts","../babel-core/src/config/plugin.ts","../babel-core/src/transformation/block-hoist-plugin.ts","../babel-core/src/transformation/normalize-opts.ts","../../node_modules/@types/convert-source-map/index.d.ts","../../node_modules/@ampproject/remapping/dist/types/types.d.ts","../../node_modules/@ampproject/remapping/dist/types/source-map.d.ts","../../node_modules/@ampproject/remapping/dist/types/remapping.d.ts","../babel-core/src/transformation/file/merge-map.ts","../babel-core/src/transformation/file/generate.ts","../babel-core/src/transformation/index.ts","../babel-core/src/transform-file-browser.ts","../babel-core/src/transform-file.ts","../babel-core/src/config/files/module-types.ts","../babel-core/src/config/files/configuration.ts","../babel-core/src/vendor/import-meta-resolve.d.ts","../babel-core/src/config/files/plugins.ts","../babel-core/src/config/files/index-browser.ts","../babel-core/src/config/files/index.ts","../babel-core/src/config/resolve-targets-browser.ts","../babel-core/src/config/resolve-targets.ts","../babel-core/src/config/config-descriptors.ts","../babel-core/src/config/item.ts","../babel-core/src/config/validation/removed.ts","../babel-core/src/config/validation/options.ts","../babel-core/src/config/util.ts","../babel-core/src/config/helpers/environment.ts","../babel-core/src/config/partial.ts","../babel-core/src/config/full.ts","../babel-core/src/config/index.ts","../babel-core/src/parser/util/missing-plugin-helper.ts","../babel-core/src/parser/index.ts","../babel-core/src/transformation/util/clone-deep.ts","../babel-core/src/transformation/normalize-file.ts","../babel-core/src/transformation/file/file.ts","../babel-core/src/tools/build-external-helpers.ts","../babel-core/src/transform.ts","../babel-core/src/transform-ast.ts","../babel-core/src/parse.ts","../babel-core/src/index.ts","../babel-helper-check-duplicate-nodes/src/index.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../babel-helper-fixtures/src/index.ts","../babel-helper-transform-fixture-test-runner/src/helpers.ts","../babel-helper-transform-fixture-test-runner/src/source-map-visualizer.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/jest-diff/node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../babel-helper-transform-fixture-test-runner/node_modules/make-dir/index.d.ts","../../node_modules/@types/fs-readdir-recursive/index.d.ts","../babel-helper-transform-fixture-test-runner/src/index.ts","../babel-helper-plugin-test-runner/src/index.ts","./src/index.ts","../babel-helpers/src/helpers/checkInRHS.ts","../babel-helpers/src/helpers/setFunctionName.ts","../babel-helpers/src/helpers/toPrimitive.ts","../babel-helpers/src/helpers/toPropertyKey.ts","../babel-helpers/src/helpers/applyDecs2305.ts","../babel-helpers/src/helpers/applyDecs2311.ts","../babel-helpers/src/helpers/assertClassBrand.ts","../babel-helpers/src/helpers/isNativeReflectConstruct.ts","../babel-helpers/src/helpers/callSuper.ts","../babel-helpers/src/helpers/classPrivateFieldGet2.ts","../babel-helpers/src/helpers/classPrivateFieldSet2.ts","../babel-helpers/src/helpers/classPrivateGetter.ts","../babel-helpers/src/helpers/classPrivateSetter.ts","../babel-helpers/src/helpers/construct.ts","../babel-helpers/src/helpers/toSetter.ts","../babel-helpers/src/helpers/usingCtx.ts","../babel-types/src/converters/gatherSequenceExpressions.ts","../babel-types/src/converters/toSequenceExpression.ts","../../lib/globals.d.ts","../../scripts/repo-utils/index.d.ts","../babel-parser/typings/babel-parser.d.ts","../babel-parser/typings/babel-parser.source.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/jest/node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/chalk/index.d.ts","../../node_modules/@types/jest/node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/@types/jest/node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/v8flags/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"9b178631a934bd5e4832b478d4f74083d4dc357615a0d1a632357dfafe898cdb","b7589677bd27b038f8aae8afeb030e554f1d5ff29dc4f45854e2cb7e5095d59a",{"version":"cc53ec8aa19c336fda45c57878dd0cb0e3fef52b67bc6865934c2c2583f61344","signature":"603a6a23fb575101f92bb7c9d9f70e149b923b0b64b8da3bff10b76dad968f73"},{"version":"ba047e49d1eac4a6da39da7b05c2cd77e498a771b1bddd35760742bf93aa4d0e","signature":"a04503349c00a0421942bb14d5e9eea391fa1633d867b13fe5125f7df8355962"},{"version":"cef698f00f85277f0b2d4beb2fd7a69e9d223afa7c259daf47c4c4c392772473","signature":"e81bb81b21289ef6653935d1dbadedd907b857ada80f9221b260a33e311c9ea1"},"576d63ef3a0408e9044ab3855ea0877b5f0c674752d4a339d79b8ed6bb88b02a","8c5f0739f00f89f89b03a1fe6658c6d78000d7ebd7f556f0f8d6908fa679de35",{"version":"966193e44bc086f29bb1f8c6b602063fd0bb6f8a90275fbf6355cc0c56ac6378","signature":"e42016f3651c7e6a261bd594eca02d675da320f18a3814570397a9858c1935ab"},{"version":"7fd4381ff9526f000a26c861d47c64f00897e11882a688502ec04e8e7263122f","signature":"0879634ab66ba30092b8a65128cb6ce93af668c9994895d5be68f10621fd453d"},{"version":"8fcfeade248c2db0d29c967805f6a6d70ddc13a81f867fb2ba1cdfeedba2ad7d","signature":"e1bb914c06cc75205fae8713e349dff14bdfd2d36c784d0d2f2b7b5d37e035e0"},{"version":"7af3de459d08bd38b386abfc2d832ac446af0a4360f35145f6cddca5a82825e5","signature":"bfe8f5184c00e9c24f8bb40ec929097b2cafc50cc968bc1604501cb6c4a1440c"},{"version":"c0546f26640bd54a27df096202c4007bb308089dd2392f59da120574a8c9fc58","signature":"243665975c1af5dc7b51b10f52e76d3cb8b7676ccc23a6503977526d94b3cdde"},{"version":"aac28eeaa76e34b6ced7c5b001ed6e80b8b1f8f0816eb592555daf1ec2f4d7bb","signature":"6a7a221f94f9547a86feaa3c2ce81b8556c71ffb12057a43c54fc975bca83cde"},{"version":"3f0a83b294ddd8b8075870cc0cbd7754fedeca16e56bd4cdb7e9313c218c2e65","signature":"e34a316302189537858d6d20d5d77d8f0351ed977da8947a401ad9986cdf147f"},{"version":"afd3d7a25f7ad12ce91561c34ffc674c84ac3249919df4940856c6c6491462ea","signature":"c4fed2ac667845f4fe7863bbd478df921793eada16941b666bcfe161f40caef1"},{"version":"171a63d115fb2e1f18ea8a0a9229809e3441b8024346e8f6eb6f71da2acb0fb5","signature":"b360236d3b226a56126f9f071d68fccd10eba34e4b6831efc39e8a3277380523"},"d252563303cbd2c3f385c83b550b84b6c5a112da78050ad8922c428d38f63d6b",{"version":"cdae18a2e7912f1ce695077b914ad1c14078e4ca70cdd3ef8c4c3d1caea07f7a","signature":"989f035cd0c3acf51639b2ff4fb3cb8ccce3d7ef0103a1d32ca5e5f1cfd19387"},{"version":"357c8c1eedefe4572a845d2fbf39504afcf63900427de0f25780adaab29023cd","signature":"66612e3b3315adf8702a39830ad8690d6f4293f89193737c604f4b44a51e42ad"},{"version":"1af5af5e448bf69819c821acc50cc5b7a8eac66d0ba3c4ed471847612fc39062","signature":"a5e89e63c809c01f8e8175c9d63da68ce734ddf15b7efd98b1eb262d8e4d05ec"},{"version":"6effa8e58111946b0a830032546674f1254b1e4217d8558460071aff6acc4237","signature":"9ba02d6560cc8cf8063172ba05b5368a24fb236a97c1c852665372be78143592"},{"version":"e3e2c75e1993bafa26b9c42671d80534a762be1f14a07ae426411d293f728e15","signature":"186139eb9963554412f6fb33b35aabee1acdaa644b365de5c38fbd9123bdbe45"},{"version":"52050c18a38ecd88e094441b24e00d4c09be722fd4010716dd3482c99b0e3118","signature":"ce8fe0d07c32e6786203b5a3b93468afc6b1fcf57481dc9673e16fb119312c19"},{"version":"895b24dea0177eb5710bec8517219aaa3e89af6130130f10ceb452d561b6affc","signature":"1cf9b232eeb34d97f2f27f3dac1a0164bcc852a4b7b86a1d7ebc1c9807e3a2cf"},{"version":"692e36a1eadcd9ed42bbe4fc3cf1853c61ba1e2dfefd7bf749bede5d301e0ea5","signature":"7d2a0764991446f121b01e690edcb502ce40fd02145613d1d349d9e46be3782a"},{"version":"c876ff173fcd7abe086947b26a1bb71aee345568f24bde0a4db1eb161b1b3f2f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"ecedc0b9f905ae08952b3e86b8f049a0d28071b80431a59a7fd9980bae5a2cc7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"bddeccbea54a281dff4c47c0a6fb0044631989d863025fda8438959e439e86ac","signature":"513e4a7dd68f60782a39d5ae4ce6f0a19ccc4c51808b359560ad1f689f0ce93d"},{"version":"c825ca3f05c6e25f236f8e8762b44fbbf66f709b3a8d3ca0e42146ebe1581a9a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"c2adbec387364f5d73dde7780a3cc1dcfdcca50c64008212eb78da6977f8e2e1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"531ae897693e06c39fa774e7d5efebe99dc25eb315d28dc9868cf5d66caa6b4e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"1d980ffa590cf05dd111bc619f46a3b22d733f28e53dd43c0ed7c04086a27db0","signature":"519157309e4f7c98b6067933db2a849961eaa0e5dec4a2ce5d2fc92ace85dcfd"},{"version":"8d5646f46ffd5da015100bc01b95cb9bd7865608a2b9f9de49f70574da948299","signature":"c5f8672c8c39b8f9251a57fc2dab217ce20ac4a9d71c0a498b733cb922ff5e4e"},{"version":"d8ebfc0205cf426841c3f0b464ed1ba7eae8c3e8c5ceda630bad2f902044e2d2","signature":"156d025e006f7df4df1bcf7ce53cd3e3780a0190dfb03c65288f07b372e79843"},{"version":"bc154d30e8b9d4dbf8a3209a4a0fc3c374935d3f550b90e6499a25397c8f7dce","signature":"e181a4a2b4612772f2fe5a2fc18135d1c1df3f50e6c4884163117c650a495e20"},{"version":"8697dae129484c754357221381228d92160263db3f8e0aebb368998410bdd0b4","signature":"250bb1ea2d799ecf488834fe20efa611063ab79b35639b7b3024f05e1b6641ee"},{"version":"769b28d22d4a0e318d061221324e405ce7d9dff89a7ba20de60d4c2952ff15c2","signature":"b1fd1f3a57d18737a7792630d476f230f4eda06a2e3afa85a1725830d912b1cf"},{"version":"a6b289321f7db8293d68955fa596e46dfbcbef03e15612828f6a244e770de6ee","signature":"a73bd08ca8f85d9c1f0307ae7abb246e38cb618f452e15fd3612464e846665b0"},{"version":"226c3a35bba8947d4296e3b1d38dd17d4b16688c580357672a696091479b980a","signature":"4924f889957ee69dfd66643c7e60a5feee526c18b16d10985804c669fe1b6ce4"},{"version":"0d6d17c452ec87c53738e449f61d0642144827b747aa47eada063024e6a114b3","signature":"9b1b103c34f4c56ab0c40c87a85ffd36002295d8fbe17b493509e63a383f5814"},{"version":"edd51847a7bb071792713662c868ef3e68b46db5735d8303dc6c2c22340d1490","signature":"e4a023723ff5cfdc22880b572dd15876d0bc4bb4f2a555d71d226a2578786ad3"},{"version":"be08025002e28149f50ac7814003f38c04bc27532868e7f1e5b308e0772bb7c4","signature":"3aa0ae0c3636319f9bc6e5c2a4bd484f9b2b4e78623b33131056a95fb59c954c"},{"version":"ae14008ee982da971ac2804a9f64b663ae451c0146042d54b94795a69a172f83","signature":"a73d8151dd40ff705eebd2989e703ba14874574f5fe4f195babe74b6ef93ac59"},{"version":"a029e1c4b13d11618865d30254ff2762481ba33613ec180de6ee6190f75afa86","signature":"dc25e664429b44c379d4d3cf988b2cce06116ae94f5c6f1a0cf73245b4282a93"},{"version":"f7dd108b6c8c89c0150a9a0e133d7276814f06346609ae7a0953584b03da4940","signature":"f32fa5785766bba7c9c8dd0b2c822abdd6e6df528ac2512786b87103a03628b4"},{"version":"6470630dba76968b44e9fd031270da3f3e39852e9b4af3b63eaa56633120ebdf","signature":"e59daf03ff2d76dee4726e48556aba1d105fd1c7a7a9cbf3e74ec4a1f91a6bea"},"a0fbfc839fefc3d41a12c5a8631e6543135ff18fd516cd06c5a09f84cb81578c",{"version":"33166ad3efe9a4e610e12af338b7a5ea56e0b41b064ed509e40f901ddcc458e6","signature":"9ce376fdbe50ed84260f0dc45cc1f242916f2c0c91da6464df63df0ba2baae7c"},{"version":"548643195692cae832ccfcc7d6aac0582460eabeacb3d66907c7b6fddbd68103","signature":"c3e41c24eb14414b6995d4bbac99d16ce2e609282c9b53d1333b7b423e0f7d02"},{"version":"0b54bc2b799d87aa1177e909d465f54c6bef360ba83af93005e5ed227d19dab6","signature":"b555d22a622ea0565d08a340e5c19f6f439f40d4451a2f13fe6a33a39b3d761c"},{"version":"764f73212be29948c4fcd78f507088fc7e6defa31e7197c0bb75b6f4347bb1e4","signature":"9f29212a64599c6c5563b78746bf85f709d5437f18dac77502a53af63dadb850"},{"version":"47d2fe1d53745d28b017cf0e222e1d4a4f4227f7dd0a581bd92b113335531e88","signature":"6b714d7db731bb6da813dfa3d88ded4ce0bc9b627464e86315468e1be9adadff"},{"version":"be7e96cd9390cdaef4671d6035bbdaf562ede5e8c0a1276109d8e0bdd6ea6c3d","signature":"5ebd0c7b976b7cbe390e381d27ec9dc5adde1a02cf9ecfb2a7caed7a822a5cae"},{"version":"90ff25e6450736895d78029bff4fbe1ed9e4716ace55d7d68c69629a8b1cee1a","signature":"b8b9aae5a37c0d3dec11813d992b893ed55a080289466ade6c1bc47e3987f53a"},{"version":"c500cb69aa5cf5f562b1494e6094854b4179d1800351d2413da092b6be0abb4f","signature":"4171247c72f90ac86a3cd3cdb0f372214a556aa8b94aa92b28bf6d21dad5f7ee"},{"version":"d60d7a09651839c6bd24d23dd861c6d7bb6db5cef12499d31ec7c70dcd704e82","signature":"a9cb234a7e1c11097b0d897a52a82d54b51545d32863c0e7d026f70309a10eb4"},{"version":"15d3b873cf25203b8d3bde2fdf2290ff0c3bc56fcad31661838f8ddf455a084d","signature":"eb69d4cd5875c471c0dd30988bf8a4816f9b8fab1e71a8c39096e483411faa00"},{"version":"a4b304456b23b28cc0a552fe9a59ccd81b19c92a316071ed6e16b4f52ec77544","signature":"48225779dd7b1b7b384389e325ed6aa271a6745239d8193c2fc161cacbf3dac5"},{"version":"e823b7c5c5284a0915c664ba5116fa0935e1818de3cc34abca01282b017ec8ab","signature":"3f4487628af3e52556d6f33151740876b29a5355b8a5ccf8e56d1b3ae7cbcc0e"},{"version":"f1ef69cbcfb53cde7b93395b8c8e08a27700a153299a2af6eded4ef6f96dcdb1","signature":"c6fd0f9d777f11f972b4decc52beeeae6aad9f2aa949184e8f9984a5c36e4448"},{"version":"769de8be7004cefe640665543efa370ae48b6d6e2010297e2b5b22a8eaf2e939","signature":"2b4ca439136421892cc80ebf6f6ea641a0306e58bd12ed61ae7f20becb2ee15f"},{"version":"0b7052f1b0ffb904374e01198404cac8c4931bfdd7f87e550be5f48b425e9319","signature":"6296c7ce17d3115c72d6757513e79ea0f74b76f49e0138f78f37685fc1bc83f8"},{"version":"3b4274e19bf0b5551ad7f0190902eaf651a88d213d80e156ee158c8a3d68acd0","signature":"058e39e6fe02e97ddc18b2952a67d0dfb71f1f60f86405480fec569b602f5284"},{"version":"924473fe3db09406d721c813e1d9a9e932ac42de6526cbbf19fcc4b86a5f09d7","signature":"dfa94dabc1567d2b882222947f5c181adc89a3af5b6a2b730b1c3b85d4cfe48f"},{"version":"a030f8b58759c806d7a2ec11a0ae694035182ea7dcb2a93f969dbbe187535118","signature":"9f3f8ff5d06c5d5583e891d3bb98489d58e358e49bda2827f3f7819cdb632ad0"},{"version":"b60bfab426a779fe9bd50b8d19995564654b10b83c592dd00b9a7605bb12f329","signature":"c33fa94c2e88d70a2e98a33474d3cf477d959477236323a748f638b3ca1e2af0"},{"version":"7c676dde7b7864996d974adfa5c57f1ac22d4abd75f60f75c1e18c57ed842763","signature":"8c5dbef5fc0eb113d94132a5ba440d75e33eb85e9497a1f7e3bdb29a3fcd3469"},{"version":"2effc0f6de7a36ef7f347cc9965e0c064d40bd0a4b37e163a07db488809e9667","signature":"0d9808e1f0d2bd4c45462c7e2f20c0cf08b700c6964e7eda5e10d1f6b707deb8"},{"version":"018122b7c09f2b173d854ef06baeac3e3be7f5e4ed44925a5a280074d172875e","signature":"11f45261b54dd91ac1dea5f299945e70225b4cf7a756f03190e88660aa310673"},{"version":"88100c31b99360b9a517196944e1a9b509a588be609ddf7498e81ea04c7857f7","signature":"7571f6e856945cea6771a2985e008daff8785c6632f9dc1dc9f24f795f84444d"},{"version":"c690d242a9b796a6632297f61a7030ff914715883601a1f06ce7d06b3a726ca7","signature":"2ff5e66c8448d86302ef11ceeb27cbbd43d3af41aba05c2fc3a48cd0f1d8627f"},{"version":"52b637792df11dd64a7acc6d31ba77ca5ac3b65e2eac6a39f0adf0aa52f49051","signature":"6978b8fc2f45108c4bc2788bd7053f2917d7efa28f74ddf52182dc9ab59d03cf"},{"version":"0814686d7a7474b9c3072198413393be949e3c358587acb6d81fa987faa13bcc","signature":"f4e40380711ea1048d9e9654dcf25cde7301571a98c9aceef4d3c71c02fd9d14"},{"version":"80ada1ba893eecbc28f915970b607295cb3402838669ea5ca34090fcde633218","signature":"77adbafe67e2bf42d578d82d2fb994530cce5b9eaa28a2a5b24aca70a008c3d9"},{"version":"0926c32fe1c110a3d7f1d7dc9341c6ced58a237bc894293d144782ca336595e0","signature":"82590ca2dfa968af29be579c534733406fd9c5c4a726213eef9f2308cbb04d23"},{"version":"82b86e1638a2b839335bda260e9f5ff8864c7be8a7ae4749626807eb82f77c09","signature":"e88043fb3ae0a6e33be31d45927494ed42c3263bfb318b024b9dab027f09dc2d"},{"version":"1705c872aaf610b945fe927e224dfd1d186a182c7e65740f1a52ea9ab5178388","signature":"3f7e6d7b1d7155d68b5ec0f8e021f10075c785b29171d1d520d0b9b0dd617aa0"},{"version":"b8f6cd73544b444847787b504491b8cdf288e0a0ec9a87402e15fae1549a9b47","signature":"1577b898eb3bebb6cebf1e5228552c8cc68fa010cb7b035ffe8eb5b558d35434"},{"version":"54ccf8f7da67b45fb7a69c09d0313c4c6475e918f100fad0088a19f200dc57b3","signature":"23996dceac72973064c9643fff1ca0cf585b642d715c56ed3512703f2b280c5e"},{"version":"e0c730d1cef48b39c0ea78bbece9a770062d40b87f8fbb46dba3b91a39f5e8ae","signature":"95a1a8e1e7777214b2d970c3426819e976abf9120f2824b571e0ae51d1dd465b"},{"version":"450c70e5d1f762a0616f6b381fc3dd0bcc8649df987cefd95a807bdb882f0a19","signature":"466c63574f0654a81f7d760ccb32570f642b6b46e83b6fdc288c2e52bcef287c"},{"version":"ded09790fe023c6a76e3b52f8a37778d89fa0ac82703aa92d294b83a13b10a93","signature":"08cdf95dfc59101c1e7c23865951151455ee7f77f1bf7e257034aae8ba332972"},{"version":"8e6f85f2acce1e4132756c0b3f928a5102abcf9f8bcd6f19f759664cde9fc75c","signature":"c6526b7ad3213f40e40d617f0a150c8a9dcf0e8f868594ef4aa060b994fd11ce"},{"version":"3542d64a563b0efef64ff2553cbeace4e7635d2e9fefa9719ce14b9453b56843","signature":"b5e0565b7ca3ba4c129ed4e1788d4dc1bb30dcdeb14a37df1071c3881507e295"},{"version":"f1e46fa426072281a31a60bb2c50854397f9bc95a8a4efc7cb40824c286b100f","signature":"2c95044092cad1398b593b47290306d73513d163c61e85ebbc39715af4b15578"},{"version":"ea097853cb731b90f8da5b56d5c65dba3d6defcd42c6206753622ec6a51e6ebb","signature":"1d3f6521348f5d591d4da3408457a553274b024c79ecde88054361040967c211"},{"version":"fdf67ae033c8bd49182fef927461ea75acfb741c615820047bcaed083ff3b3f4","signature":"03a629914760ae9bb64a05e72ad0f4e6aeefb1e7c7b6ae3d7836bb46f69ae23e"},{"version":"d757c6a733cf1e7101672c61cd52d3c964fe19a4370bf4e2fa96fde3989ec76f","signature":"95017b0f25bb3cd6782853c14303c20b5099b866ef1491c57fc436add8183f14"},{"version":"ac81e071ce704acdc83cf7155ea62306f105a5d53010308cae52cef8b2eda5af","signature":"9dfbdb5529d2be1c9e77112f7e0e20fba7518865f31501b9aa09c3965ee91f6a"},{"version":"1bce4319db89c0eaebaac319159b604c707fb9f2ae4530c4a9d333263b1168e3","signature":"cafadd60cda0c63471975430893f7c0ac981f268ec719f08f131e41d8404c4db"},{"version":"3d3b5460f76a29a0ca48739d4a0ba58ba9ad7f7c82860fc3a6d39c2e14feb4b5","signature":"3a91334c3409e173cafb3af175d8a4a3ae835851df7015c8f0fc5c117ad46c80"},{"version":"bd6f370ce77154839f8bbabf421d4cafae387b210e0f640a0f1b80a3c11c0be3","signature":"98c7850cf7a5bca4267e71403e8a2788c29543b15ac7354d1211a7accba496c8"},{"version":"f8fa15710b26507fe7a17ee1dac9e831dd99b42694607338938f213ec9431e25","signature":"f31ab9295985d01c5837c9bdc422643f6f73293cfd103738774b7cfb340566cc"},{"version":"733c3b25c72dd7e6de0e6d4ca36adc235608aeb476031ba7b981c4dabf74ac23","signature":"1079472c5e1f65ce739fb777054e2f539e9b50a97b438c0d6e56c4ee23be8bff"},{"version":"8760ae5ae5734576423e72503da03b1725dfdac42781d6e172e4797a89748445","signature":"60033f2f6324491b9129d3e4df3818434ab6997e7cb1e386597ee08275d1d935"},{"version":"1f3c73b020e1aa5450f4e54400db5f420ecb113b1b3654dea0fb3ca73d17c26c","signature":"692328e8946fb1762788901188e290d17a95cd6676388cbf94f6794b60333e88"},"99392e1e600259c50f21f691f136a4ecbee42839dbb9523384f09645c8756503",{"version":"816b5e57cf6e493b499767f2b2272d939f1fe7e30256fac7ddacfbcd3de9cd10","signature":"5c5d100793c0fb9b34076189904df18f3321e82cadf6f69815926104029c215b"},{"version":"f7e00b63bc596030913bd3ab6033b587eeffdceacf87fee8b96c36b9c0e6d4d7","signature":"4f9a4bb30bc97017c72a600c0161962d8f74488d1cd93669e4adbce7e611e0de"},{"version":"d0ab323d291d5643e25726d0f1ea22f9903d74081bede5f50ca65f3b49eeec62","signature":"6f5e1adbd8ecb5ca09948ea08ddb357362a459ad3c1e3b682695559058c067d4"},{"version":"2b1fb6572bae536fcd2453ef05c703438ba9163e470ce24dbdd7c221685fa71c","signature":"d9ea1d16fdd5778b962ead323e028a70358574d18c8d80695a8c2d94e1b29401"},{"version":"f20c9c09c8a0fea4784952305a937bdb092417908bad669dc789d3e54d8a5386","affectsGlobalScope":true},"c58be3e560989a877531d3ff7c9e5db41c5dd9282480ccf197abfcc708a95b8d","91f23ddc3971b1c8938c638fb55601a339483953e1eb800675fa5b5e8113db72","50d22844db90a0dcd359afeb59dd1e9a384d977b4b363c880b4e65047237a29e","d33782b82eea0ee17b99ca563bd19b38259a3aaf096d306ceaf59cd4422629be","55a84db1ca921c86709117fabae152ab802511dd395c26d6049e6d4fb1e78112","2d14198b25428b7b8010a895085add8edfaae476ab863c0c15fe2867fc214fe4","61046f12c3cfafd353d2d03febc96b441c1a0e3bb82a5a88de78cc1be9e10520","f4e7f5824ac7b35539efc3bef36b3e6be89603b88224cb5c0ad3526a454fc895","b29ef0a32e75e0d2a08762d6af502c0ffcd7a83fec07ed7a153e95329b89d761","537aff717746703d2157ec563b5de4f6393ce9f69a84ae62b49e9b6c80b6e587","d4220a16027ddf0cc7d105d80cbb01f5070ca7ddd8b2d007cfb024b27e22b912","fb3aa3fb5f4fcd0d57d389a566c962e92dbfdaea3c38e3eaf27d466e168871c6","0af1485d84516c1a080c1f4569fea672caac8051e29f33733bf8d01df718d213","69630ad0e50189fb7a6b8f138c5492450394cb45424a903c8b53b2d5dd1dbce2","c585e44fdf120eba5f6b12c874966f152792af727115570b21cb23574f465ce1","8e067d3c170e56dfe3502fc8ebd092ae76a5235baad6f825726f3bbcc8a3836a","ae7f57067310d6c4acbc4862b91b5799e88831f4ab77f865443a9bc5057b540a","955d0c60502897e9735fcd08d2c1ad484b6166786328b89386074aebcd735776","2fa69d202a513f2a6553f263d473cba85d598ce250261715d78e8aab42df6b93","55480aa69f3984607fa60b3862b5cd24c2ee7bdd4edaed1eef6a8b46554e947f","3c19e77a05c092cab5f4fd57f6864aa2657f3ad524882f917a05fdb025905199","708350608d7483a4c585233b95d2dc86d992d36e7da312d5802e9a8837b5829d","41ceb13974711a87f182145196a641ad804125baf1fca181595f1be8cb0a2cc1","13897f9cb8ddf535e2cc6448942410f18298c1540338c1276a17880362b1eb45","4d2f7644abb97ec0d681d89b455170cf2bd0e72ee2a3e52d396074d0def264c4","671da85fc40086ce6f7309c428511bd77aebc0405b88700a26590a75cf37ff10","6e95aab5b3ba30cdbc9d4ad350ae7cbeb519a1eda30a214d2b1ec1f53eecdf9c","e11ff96a6e720e91e52ac54c53ee5bea99929bf096ae6b34bca2276e2b277ef8","08ce78e8c4c047bb08ccadc6587f6b45f025d85829854199db891cf1de7b209e","3afed5176dbb8e33d3366dff69f6fb0948b6849e0d2b53f6d61f41357cd617a3","51f8343ee830b7003a644ac90122bd092413344f957f9f9bec64d5945f179927","15eb363cdbe0004d3db00bce07892a5f5eb55d281761f768ee0545df54b04a0c","9b83354a819146569dfe74a2468b7c11e287286d58b5654555ed1fec10688649","e90e58ad52b0d25a238f6a794be594bf647280a6e8478b2337ff729dce62a63c","ea1393c82a0cd229de6915d3682db9571c9b65803b971a04f6042bd3b3826b60","d4978c3f743921aefd2609c001cf4a6baf74dd5e67337b5088bb29cb6d832ebb","973aa2a5bc9b967d9c2ada4edc050ffe2832b09860bfa0ba0cb79b8253e81dd6","37e30fdf5825973338db6b1f3eba96b67ecc9126098886350d568c960fc16bb2","4159d1e07c660524153c2aef8ee8a933de82872cc64ab5e01e58aae301c9ab20",{"version":"f48bc40fd4214e7ccceee1c29bd2f2e547e1fddb63551c36870df7f0196d4e20","signature":"57e73f1c6da39bcf9429f52c39b6fc34eef11547fbb5a2be91836517ec746957"},{"version":"4cfc89042c22ac8ad3b7fa62f8ef2c56e69b8a2871920e12a9ccac1a938ddb62","signature":"e519fe59c3e9744e02abcd086b492e4a901e699a47d131de8aae00201a2043be"},{"version":"e663c71ede6c0ad637e91b25269c014fc6f86d276b63da4215b6d2998ea87284","signature":"c67208e9da4af7a50bfb75d07691326052d6ed8f3b577ece8b02cd425c9d632f"},"3cf5f191d75bbe7c92f921e5ae12004ac672266e2be2ece69f40b1d6b1b678f9","971f12a5fc236419ced0b7b9f23a53c1758233713f565635bbf4b85e2b23f55a","9d670bb3be18ea59cea824e3bb07d576b55c9542f5bc24aacc2a3c1ebd889de6","695b586df2d8c78b78cdd7cc6943594f3f4bc52948f13b31cdedfa3ce8d97c31","0771a93ef5e3b2a29f929c20f7ad232829341a671c9d1e96e93ef3fc42ef7bc2","cadb68b67b80b14a9a5bb64cce3093168fb2bfe2c7b10096d230df5203218de1","0b3c75be13f930b46117e205d900ee9c4f2ad6c7317655bca5364958ba1e34f0","5af161220fdf46730477706e8c431ccbd1b4ff50223cb32450bc20513f50bfbd",{"version":"5995a97cd70877231d44397b301edd3f8b9504808960d75e09877cd34d3bb91e","signature":"183c86a7e101184b772b247e43c5ed3b37d756b72770db07e371d64728bfb182"},{"version":"8f087ad151e31397ec7c9b7d38532c510e0c3230f719dd47f25f335069413545","signature":"408679da9fda0962d7c0343c5c4e899ec85d9761a4cdba79654e973983889237"},{"version":"35fd864f57288e19cb80bd2e555a773ae59d6efcfd918c0ac2935b2ddd5e25de","signature":"d1b22f8a95370f6cefb5799b523142d1fe0364c97d40d2b905b91c8bbc3350ef"},{"version":"53210c13e9a79f0463840725c3621e72f22ac53eed2d54d0fca7088fd6804bd2","signature":"7dc05e9167a00409e9d7a620b7c1e5e53127a1805ad7a9762f49a229c76c0220"},{"version":"837e1d7e25ab3769faa6070fe1cf237e56a44d844638e9e205091322a0d6e7cd","signature":"750f5ce82d7b2199bd2118b2bc663f2881edc37ecefb3b8369ba3f93c0944858"},{"version":"cf770a90e28cd62999528b61f8e997eaae027ddae2d95e29a20fe02447636e14","signature":"b10974251ad16a97b357ec50f87455c4430e7f0790f7b399564c900e4ebf87f1"},{"version":"88d9572cc89ab1512ecc4867a2b88bedf149fc7fc64f8b85d57ea6ba3226651f","signature":"234123959236555e336e4efcd7aa203ac1d5370ee5d891dcfc5828d996b28f59"},{"version":"2bd6aa5dc587db0e7546fffa74d651ea920696016fdaee66f601cc7c1c52eac9","signature":"b59756cf12284e6136e042f322af2e22664e1fd46f713b1dd3abb1740719b732"},{"version":"69d8195c4173277fd77cd75049b208000446a150025f9967aa520ff0c3df84e2","signature":"b7c164b46f7ddbdbc7ac32357100a1d569acd9c885cc511b827ebf51af5adcb0"},{"version":"cdce15930d610b1100f2196287010cff98875b0919e1c2adb23cac7abe4da0f0","signature":"cf3a0eb31aa449df0754f60f8be9622aeeaa4c985291cdaa9563788180260fd6"},{"version":"775ea9c6265a56d51b29938382e6ad9e4fc244f7a99391d005f70b747ecc94bb","signature":"62b65c635a282ea4855cd6a9b968527cbab364c38410ea432f63c5c591db9072"},{"version":"e3431330ec4ba8175669ad0130e248dd81afd939cd9f373d47b8fd1edae598e4","signature":"922fca8caceda4299b0184e2f68de6948e826a764f6f33d25126b53ec94c0ed1"},{"version":"94486bc1816e6577a9b4711a793b94323ae5d5969fc0391623aeff28158b868b","signature":"a382df4ff5c36b5a1f042f310ee52dc547da679b92066ececaa0f00bf76e35e4"},{"version":"2d8f125bd69f912f81c9a1c7e2c2050ec733b470224c9fb7d3f193bb0215c068","signature":"2fe38d259b120889a148c6080d3c265dc8ee9579e4152b42f625fd0440fea92d"},{"version":"87899a7f389eff41af0bf88ac52781ba0dc69c0e4f1f8696fe3424c7ed87a190","signature":"f2202744352b22a2b8697bae9c255e42b1c9342a6717c895b3f6a3ced2319b42"},{"version":"31a3d57bd70fdbcb8a72dd0838ae423cd06d938d5e01f24d4e5544b9c8568e20","signature":"6131967512c4d205c32f126ef7415453f0c715bf53c7175d6deecb72d76a75b5"},{"version":"1856bfb4336411e9591469cfc980a00a216f03acdd152ed741287021e2127cd9","signature":"4e38f7bd172e7549c323610cfede12644c116581dfc4d751998d301eda9573e6"},{"version":"b5f7fc6d28f1f71889e9ad7f536eba1f7c79d267afdf56ee4621decca6915a04","signature":"5b6b2f9d19c9e7f105f95aa0fbddd9b267d120f5c5e7d0ca3ae507fe2a7e4690"},{"version":"bc098722e4d6b9b99661cb3c596a569f38c94cdc8ed67efa098b0189251eab3c","signature":"d8288a8eb14187b0df133ce467216d61d9ffe838ae5930471f476a5c36141828"},{"version":"0eb74b906b79f3f93cb2ab8e03d1996daa83098332a551f2ecf9520f617e420d","signature":"70ae92a852a67db5b841a7ee3e9d16df7c06320ab86dbf2d5dbd9d76f3c98faa"},"e58a0a0add3feea2c936af4933dae5710f6c41e91468e22d880054afaa47b782",{"version":"b85379fc70458bedef43253c21e40d0eb5772899996a28bb5791010570a53549","signature":"ead85b2d6cd6e6deb144a0995896c0ca7423820c66cc00e416e66733d2932985"},{"version":"969debe0a34414d4192edac2bff8573e0de7b398516d830a3dd977c11a54713e","signature":"2c66e853b459b5354429e957b3bc64a66479153e31df1def46fa0c7ff343d9b6"},{"version":"e4fd41129789f0d42c83925ecf0b187e2e3d6c55ab8a75b3ad97193e22e80f51","signature":"f8cfa2723700e6651de70b62b08d6536a7d6a1a1fb4e28914e0164741caa7755"},{"version":"d62432c8dd905b371a0aa3a64e8e6f1b8765e7dad369a3c327431fac277c8136","signature":"63ac518dfd7a9ebe99c2dd882e06f9e42100365d0a7bbed4a505251205f836ef"},{"version":"0736d521e7f68fb1d6c06b28a3c0ab18d00c61c4c02ef78731d34f20ed3b7ccb","signature":"6b4d9c91ed03e7afd40fa045042fcb7a6250b8dbe242154f3c4b948a99c74a9d"},{"version":"9b710dd9ee172a08cdb6913901aaf7d9d3555897688577acbdcceea22ebbf639","signature":"8b37c18f85644a1c666705bb5c233850cac84d8863c19870a8ed5f8d69c68800"},{"version":"e952b2178e6afc0ded08e1070966ff29a9313cbe3fdbc6f34f132f0795eb6ea9","signature":"efd01e5afd2db9bafe6b8c1a20cff2f3c5a4870b3bf80a64c08b7d95aafba558"},{"version":"883f1ee530a819005870fe09ab41093e36541b538a9ef87cccf63b426a86dbb0","signature":"8dd9a89d2cc4cc6c256017571ea6460ce9ee29f2e175cf2197d7402d2f52183b"},"255e1bc43d48739a7c2fe4a042a85489a94713d7d4bcc510778de34307393183",{"version":"d636b5c918f05e7a866440271129bef6ee9d402a0bb5c168a323d34dff5437cb","signature":"220bc2f85b04326fd70de47faaa003666bc864e55f00543fdffa7b7f75d4dcdd"},{"version":"d61b877463728f76e65f278f62609117adb55cbc7028c58843a6f3ad522d02ce","signature":"4a554afd8a11ad65a0f8878ebeddf6793c6775b1edbb14360bd47252840e051c"},{"version":"ece4e6f0a692d9916028d9fae19cec8efe06c600b6a7d2ae8054eadac744d47e","signature":"241c72acb955f811ae12adaa2312283785b5a32fdbb423a9201f404ec02bd824"},{"version":"7fb02554f67c86ab1ee92d24debb012ba924861c59cd631ed3559a1c083b2118","signature":"46016bfbc77b4f13e3d6730535d9943f42575c3a228190cecaffa891999a87de"},{"version":"3d6d2a27301cd65af757a55ba8c582b4521ae579f3ac79573e27b30d214f668d","signature":"0c2d1a07f72ef488bfba34325c89a94ecbca8b3eb48107fdfbee666d9f9c66fb"},{"version":"a679f0ba59fd4967efa69a289527ca730065ed5335bbcf43578026ef4fd45638","signature":"e4aa4e8d3eb4c67b64962344ef3388a8cd607821ba619c9379b36316db65c9ac"},{"version":"23d6df2624e97fb8c3b10b2670ab17ffbe291a881f27fcc91539438ac02c9ff7","signature":"026faa9da5b25cbc61ac0356c4f293d28d5ee23d5e6ccad64705dcdd4b2f720e"},{"version":"57669050e66a5d3ef5e559802fd86545028ecbe5582fed49de9944fb537b8dbb","signature":"9b94792c88485a63a47c60f14a06a24fbed8882a03f0c399497957dacf2f24c2"},{"version":"1228aa1caf9080cc851622f1b307c98c87ac12c7fb258f78f99686d40b6ee169","signature":"4d2cd86c96bcba4ac080170bf78dd7dd5b17d2020cbac94885b849b5b43e3bcf"},{"version":"37d83a587db9cf28d7e244be681dcef0b6f3ff2c526dfaa3a81dea9b00134b31","signature":"635ca94290fa45a56e53ffadd3b897a42650fd4ab0ddc241392e4dc729bf496b"},{"version":"90fdbe8f405dc349adfb623c36725092bdd445b6043ef32ab6c1d6336b04f915","signature":"194d306499fe94d139bffbbac0d7fb5f56c58fedba24a7611ffefb6cfa0e3463"},{"version":"a62829e45d9d641ad609286af9013b5133a754e312e58d432bebf0735e69a815","signature":"3968146258f76f8c3189699afb9235a8996ecaa7ea54b19fc6d75c0b4d10112b"},{"version":"d54f2cfe774208973b06d54267e1566fd2d3a1eee78579bad259d058e5e1934a","signature":"6b978a464e8eea38072209608a13b38edc001654afa2d20b40131846f724e54c"},{"version":"34100510b699e23825d495693ebcdb7f72f1c02309dc43b7569f686f5d22acbe","signature":"c816420440bcf5abba58be6d5eeb6e00f744cafb864fca8eda2413117acc378e"},{"version":"5c22d4c36234e7596e8c4255a66104b0f98cdc0f6eec31450d15aca16caa8672","signature":"843edba217964b253b187c2d6c15a808bacc03acd22c1b95b139f7f665761ffb"},"84a805c22a49922085dc337ca71ac0b85aad6d4dba6b01cee5bd5776ff54df39",{"version":"7b1569a8004537a6fd1edd822318068bc683daa152bee5600865603ced04540a","signature":"26ec114efc917770589b586b763006d480627b51dd3df9a15f9f317e43cefaa6"},{"version":"e2bbb4a2ad4d1df8909dc7982c0138dc1c105fbe81727c9da873dbc59536512d","signature":"bf73c05755f594917334996662db473a792c05ac8085baad9d0981d170b71e73"},{"version":"494ed05bd0591ecfaa3db178ee961ff72fc2c040f66be4896eb4f05cb6fd9d82","signature":"a47f912628fb74dd979b579736f213d66b912b0c76cc9efe54c63602ab2fb18c"},{"version":"99d3e3eb85904987d1a31c27b1f1fc9f5375ffc8798215ed47da276575768954","signature":"9b7df65f0234bc2fbcddb49a36961fc297136af5557557d61c852b65a086247f"},{"version":"2109c6dac6d2846cd158652ac1e95293bebf957fa105000fc004226b59bd637c","signature":"330b006be10c92613d9f75d801bd60ffc57a520c190050c5926de4692ac80b4e"},{"version":"649c88afac65accea627402ebbcc0f071e282b1871a8e0e0a34524ebce19f090","signature":"b89934651144ee9eb80d3afecde1a161d6c393aa7de5020136428e4407dd19cb"},{"version":"f924b7680039004bf60555d976855f6ce138f25c4f37e30605a92859252861ce","signature":"bd022c5652e49f61d58a9f15255e3889005566bc5aa87c37398307057859e6ed"},{"version":"ddbfaebef06b18fed3b5931b3d38761a5ab536fd9b94d91beedd80da8eb3ad32","signature":"2157ac459fb9cd60da3288de0870a51d07be5c9244c37f6c1d860a60bc336753"},{"version":"5c44d985f07ae1e9e343c0935ec7bf5da4bb77e134a3ecc09cb269afd55b8b40","signature":"2e7db7d4a7f75fdc68fd5fceac391b0337e305d30e37970d5d349404abba0eb6"},{"version":"10830946c54d35ab071b137893607f429b8e1753f1ff07941b9628a42843d66f","signature":"a9d413dcf89b3cbab1c138ea77edcdebe6ca46a7d687f5d61d991cdf780936dc"},{"version":"897c30de4a58dfcb330e210f7b8ed5fba4c3f60b090d85a52f63effc64bb0f24","signature":"41bd58abd21da42574f9a2a09f4119be6a668bab975d3f03b49bea7c6b94ab49"},"6e3555b72390516ce90bdc2a97827dd44218547d073b2d97074a7d43eb5577ee",{"version":"f90d974fdb0d06522b311b2da9f3e9ce3acd47d0120f197dd7f28af9b10677a7","signature":"a46d5c908010231e5fcb8c949b6c90addc091420e75351fc6074f191119a9560"},{"version":"be05eb7999f9c2fe07167c19df64a33b88ef476da2da5dd8b5c7fac1ada0c763","signature":"58dc55b8364f740005e662ee0ae7cc14b55094c2339b74377e16b4436fb863df"},{"version":"b00061cd6daf1b9c8da6306f2dbb36d516e9cdaca048b0aa4f934eb4a794917c","signature":"8dec4b9028cc8905caa6b52a395786d7f49a10d61f6be869b59ae007dc5e0cdf"},{"version":"e79e7f74a3b052d2b07e65ce3ad5af3ba501d6b97a89101884dc5c0fdb3c5d80","signature":"e43763a155cb34a76ce267f5191c47481fe45e8e6780446086d4af429204a6d7"},{"version":"1fef1fbc231e48731eb9f8aba26a53d7718caf44823cdcc53a0fd462e11acbc6","signature":"dea3318275e8028e114e4a929ce48a338596d4024877d18888e1fc279fa3ffa0"},{"version":"665593c19aa86507bef1bed468ec519b335e70de0272182fa57ede3eac0e5931","signature":"c78898140fe8e75fd9a40e9fba228c6792e1bfadb1980ba3e4d8d465ee44c147"},{"version":"a5f9926024b694707ab910cbb85f41273d000faf9febf478d6583a07d85f0fa3","signature":"f952c9c19048db8b25e3fa8e48e2213c18d3fdbef6ac168e9fae6632ed58245f"},{"version":"438ea0b094fced487bee05b5850065b2680662fca110c2879886854c892615ea","signature":"063f53d5fd391537f7b4e14e376a67930b80684c72f2e8780df33eb5596cf5e9"},{"version":"9f50dabeefc2327921561b6f2cd1b377924cf90e07075972ff03e3c261791c68","signature":"92438df2330b4b55da8e9b7d66e77258a090d67388e3f649b43f81685fecc788"},{"version":"16e8c882b00d9c01c42ed6814b975b7b490ea61571049901a99677fb3916971b","signature":"866c1b69a53d80383cb5eef0ce2760ad8d028c771fa45776426a583c56a23746"},{"version":"3206dd506869621a904b05e4c4efbc617b5aafd60a44ef1d0b1c774ea846a888","signature":"23a790e87430f6bcf8dfbc4d3560e8b3d7441f9cfbe509bcf932b4608c60c9e3"},{"version":"9eff35a7b656773bc91ebbc0b4f5034e6bb1a761b016c9bac49cad0e4754910f","signature":"269ee735294e8c328681830ae7fdf4aea6c24032f0541d76c914aac9afadda5c"},{"version":"be43c99620df23cd01c8940ca91fd1aa913a5839f02910ea291b66dcb24e6b87","signature":"f64d84c7d26c46fbe74a320adbbffc5f4f136c97b495ff051a8d439643774e6a"},{"version":"2d7af83da7a8e13dd097ea32365d7dd4711e9657f9d31e483c98a3a62cfc3249","signature":"d3b2b753db518c14961367b5435d512352b5e3ad72a85de6aa18038ea6c480df"},{"version":"e7d189b934e2c1eccbb725caa53d594536ab02c027661474af648de2829a1a6b","signature":"18d3a2cc651905a61088a56f684783699a3c66541568a5a458cf75c8638de2ac"},{"version":"f7d12b498acff33492c82d062e62fe1909ebc22f9c49ca28e76a9b85cd81e63a","signature":"6a7820891908f3e6dfbdf5d9b3c8ede00967a3a8bf51e90a70f6560733334809"},{"version":"8510b88d197c5c9225986baa88fccb4a419a7423242a1324210e3129d059ba49","signature":"7a8b858660503a4af876541f456b2cbc3d89b164ab842c7434ac0fb87ec0e026"},{"version":"61e5ee63cbc96733816e921073edad91ec4a943229b15b34134ae2293fd4e476","signature":"eb1e3b36ed3aac2811786d5716a16c1f8bd1fcb62b524a3bb3d602db9f55e75a"},{"version":"8304c69e2fc78e5cc2a23ed507894a463945fe8030012dee3f408c37dd5070f6","signature":"2da7fcd097f2f40ebcc4fde1e512477e1092dd97dc206a46bb2bbd5028230fa8"},{"version":"62c00b648e2b2938934147ffe3d4fd05ae519c208dd03415ed8adcf6fb2c6e78","signature":"8b433fd18d5bac931c1d7c07c17a830475e0fcb224d144cfeb3ba4d1da198687"},{"version":"385dd75a450262aa06c15d3e640f477fe94eccbce91fb723ffcd9d3a638153dd","signature":"e772bc828730ee913e19f58bb18b7733ebce8a3f06cdce847cb33275343a6ecd"},{"version":"55989c2c4b9d1f9eecdbb0d65809757118718c7c3675749f56e263c90e8e7717","signature":"466f4f5da14b6046570025129a7e5ea168164572c9b2da45bdc7274e0e303dbd"},{"version":"835ca304ae6473d6dc6702532d9df515b920c613a0f1384a04b7dde28dfa2f34","signature":"37aca357a14fab8a174e0f2cffcc155721f9c9e0f1abaeff0e21972597a2a676"},{"version":"47f2f50997a0f582ad9d4fdb5e94c1d5cd0d10e624733e06524f0f80949d45b2","signature":"00222577eecd6c1fc72150006351fc6e1b5bb3aaf78097e40ecac8b8343a7598"},{"version":"01181460ee90945f0be6061aa469fa8f47c6d963d7eabd84af10a55bfc5fd333","signature":"a9347f177e175bde3461b0d847b84183e6b3dfb5acc93e2d818641ca59be4dc5"},{"version":"afa52bce13279f9dd8f385dfa2dd541fe7384a212b4553c62dac015185aa9b0f","signature":"b398ff53792dee3ca93e1f96cee63fc123811631f3c99f1c22cd01b3b2e4d6c5"},{"version":"c9bccea1575c4936785e14bb8e367422d5366ccc883c39786edd753fc5c1b911","signature":"3b1765aafca023ad58d5aa017800e1f2e7ee95130c9a1e7d86d5019f45c756bc"},{"version":"30ccad241aceeca940e9ac504b55613d533d0f47655c2a74b83677b7ed895214","signature":"e675dc45ca604b7a6fea16448050b34cf0fe86c2f9fa50f3911fb4153b42c186"},"d3e56e0f84e1d1843369533f50918cce5925129e99e9ca14c7cc35ad94b2a052","7102463bc898ac4cfd90675e679cdd8e1a1b6f44702b280f9c99b93f206ae570",{"version":"14a5646f07a55fcb97c538b3677b4a950a0f555ee08cc7e6550fdcfa8dd9f1c2","signature":"3fe5dc60a7d3a3cb6ed6abdb0eae01585b008451c9a193e6cd188e0bd881ab39"},{"version":"3e6e265e5c100e90cc2186128dd32a3eaeaf0f1b83367b36f78243f08693c942","signature":"dfedb6704555de21c30e98a8decf8a6d31dde1d8403b9b95944a1d317379c7ae"},{"version":"f3dd4142b6423528b92f26e2c25c2abe3651e3a1f9fd8ec8a754a91bf9b6594e","signature":"0c0a84cad407d1b702140715c17ff2429fb15755fdc18b784f24d976077708dd"},{"version":"1353758c9ba5ff781fbf1025de5aa39a3751376a60b3dbfb2834435de8fb7786","signature":"c639f1bf7b898c8fdc3bd5c05c25254f2bbf363d5fac0a5379ead6c7733be40e"},{"version":"58d2108028a1470af823457f592ae3d78afe4f485c8dbfffd974b196d3a866a4","signature":"6b99cb793edffdcf2ca371e9f91eaf3415c969239f55c611892415a4785b16a7"},{"version":"e06c157d3bef1c41d2015a9b85d6b456bb46ac7311b00bb8d605400c87437524","signature":"5c3822437766fcb3d7a09e262a2ea353945df80998a61ae9918a6167fa780677"},{"version":"83997e6cc3f1cbca86ead3c3e63c277ac580e4a346e16982f5bd9b879a3a4cda","signature":"6c2cb2bc7c99cebde6b4156ba782a81dfd9e959a63a2220119dff9e7a712bb76"},{"version":"3e57fc247dfe3334d583c80c0c7cdebdedf37d4739bb3c91cfd1fbefbcb90b2e","signature":"768cc1c917fe8e0f9f693b4949ace825473c48f758f886c3be2ea628781db007"},{"version":"c8c092918088e9c82b5001c0804dea101afc6c61baf49420285f0b8f0a89e228","signature":"20098686bca193d64e2f384f8ce794e275ec75b788f975aefe30aac93597aed9"},{"version":"a34f844a3908d24fc1274f753fd5c23f8a7208b8523d4b9301015a3dffd6586c","signature":"6ac15f4fa9fa32f24d01ef6fad1e595d4ffaaed4a10a1e592c88843d1de53540"},{"version":"a5edef8ce8d9fd76e83525359c0a7e163c5583438c0f09bc5233a742b78ce344","signature":"2da21460c23a576317e17d761fb928310775dd7115ce2463899ce5656bd5589c"},{"version":"dd6f8a801eb458bc4bfa5c7e03ca163a6bf2025dd91dfb75a9d9a2a573d34fab","signature":"50083ea214502138c35c00a335bac0eb13afaea722fd9561b79cb34cc4a964ec"},{"version":"dde47c07d6ba393c72f19f230579965ff5fbd87f35a755e15a921a84f9c017d6","signature":"f92ff82fe862ded7739daa830e8a764db480e82930432b4b391f4de0f230e059"},{"version":"07375388d9809262594018f09e80e2ece44e606427bd467ad1b59d954b27e82f","signature":"cfee2b45d4731f66269c0e4acaaf0f7f1f075ff5b0ee48bdcf6d2e2f9b643606"},{"version":"60be2bc6c77518ef09f038d3e3d781f0b8db66fc3453368cc88b583396116f46","signature":"0d2a908a00b868b9e7c8c468e414dea621bb908efeee8add5fdd7abb19ecefc0"},{"version":"425a8a4a4e75eb84482d1cc27c9aafd56fcea8532da8793e04e6ff84f84e85af","signature":"e683a3e3f5a4d6f88e4163c192941fea916529a6d7407bfe4f15b5de3855a367"},{"version":"70f6dc27bb7014e784b1f9dd808342bba9442a9d1acb3eaf06e3d342baf8a5c0","signature":"53ae81158213a813fc41d57cd037c7df30a45cc0639c6b32fb391488b6d3ffdb"},{"version":"dd0ed5bfedbab3f423509058b18555b8d67c2b8df165f7b1a9903c8a0bdae0ff","signature":"cf51488c3fcb865bc0588815d68af871c3562b3530292846177e7181c7a89dd0"},{"version":"7810009efeb3b9b6ffa348a2697df713c96bc264ef7edaab250c58e5b1b94864","signature":"efd9781555f32ecef1f822bb212f7d0844920e02cd02992e3850f9c454dcfb82"},"bb95470284971cf0cce66a339224fa5db412729bf3e22c2c02a1c343fd4444ab","bde8c75c442f701f7c428265ecad3da98023b6152db9ca49552304fd19fdba38",{"version":"33d4500982be117ce4fce7f35b2e12059dba61165e932334e9572bec748d334a","signature":"e1b86105546b28e74d49d3b2c5209ef49b34a725824cc7e27540ff11fb01f328"},{"version":"48cd813fde115ec68fc3d48624827f8d3f2e6474506c971a646af22abb32910d","affectsGlobalScope":true},{"version":"19ad665731c15e2afd4091c6f46b4311825d296dd46e2cd0952c868489e7a74c","signature":"67683bd79e22a3d29785b4ca1c342c8c49b9512865d1b8c7210f2af822ec0285"},{"version":"c104c27a30fdbf8533565395b87043bbec04924be5e636dda9b9e79dd5c41b8f","signature":"b01a6c12b7583d8c7f7eeaa2d0d20313c65869bff7657529e25c04e97c54b087"},"6fe47ea5e29ef669f97b7eb05d5068cb2af451d06a50f7bfec26d7c06d151953","1b14cf74b090ffe8def9013ca4bb448b4c76e98fbfe20c58a06e439b9e4e6438","6d727c1f6a7122c04e4f7c164c5e6f460c21ada618856894cdaa6ac25e95f38c","bb95470284971cf0cce66a339224fa5db412729bf3e22c2c02a1c343fd4444ab",{"version":"7c66f9660bb7be90b270553734b22cdc94c41c3896529a9772912180edf8dcfa","signature":"7da12c50edd45d08ae7f93183d0f88ab9753386ce060d1765926ffbe7c6491c2"},"1a8397f1c9125fc54db823eb6509221b841dd6f0c82a78997033a4a09fb1c86d",{"version":"80a6bb9643d4a76565e4b7c885419f4b1a3f315ea028659b5336250c49f26fd3","signature":"4250615fd2a4a426b0f644655b50b69506f4bf47a158f024f9890c01a7eccd44"},{"version":"7746909bdcf5f6b660a182dfd6ba7c91dc1d9e89713db851cd25475be9e0153e","signature":"abae244b376437bfe2f0fdd1bd8925e2c235d10336ba08aec4330b800582ccbb"},{"version":"2638ce60797fa9b9cd7fa2bcf16492318c003e7e20964fec77ba43b0d9aa463c","signature":"176d3525152384c3f7312b308c8af7b17690f8ec34e0788e6aaae548180f1941"},{"version":"425ab9db767452e4f46efa9a9cf0a1d021e6155083adef8b66caf815a2996ff8","signature":"6b34e6bdec80f7af4912497afb8455cd88ae1d6442d042c6663176b9927b69d4"},"77cc2703dc64f5726a76e7502ec578b7844b1ae4f9cfb5645e45d6bfc4817418",{"version":"eb8d5e9b5765a7fc11be0310b32de385e72783b7d7b0de6e630f94c2913c238e","signature":"41113f7f4529f81a16bae03c06bbd3c95146a4f7c8173ecafd6869fd1e97ed0b"},{"version":"5674599d1d22e2457039b25bf3c65748cbcfa7de5103ea2edc8078b9f6b2da7d","signature":"c980191d2838b122a340074b58c566fddbc29a44bb57170671ac5034373c49a1"},{"version":"b587d71c7d5e2c47f637f35295e51e76ae42d45424f6817896bbd872e133fe4d","signature":"67fbb5e2cab94fd680040182fb83908f93a378ac1dbe67ff0e98db1ddb4fd4dd"},{"version":"2209abf736be20077ff8a5d916123ab8570ee0e206e2692cd203c8098ea856b9","signature":"378871d06cbd514fe945b69a7be3cabe210139a5b2b3917a306ef8102afdd5bd"},{"version":"e13db61fe8c1ddb74b0515cbcb847782b5db4a8f4b64b21d77eabefbad2f65af","signature":"1e37a488c4ad74837a8a37544049e533213e7270f1e52ac2a70ca6d528277cf3"},{"version":"07a4860d1b590f24eaeb64985162bfbac3475b4f8ea43e26459cd99855d8461a","signature":"250de328744a943a8d2cf471e57728f5f87d5cabe1fcfd8f06b5e6b2acd11b53"},{"version":"a6538870e6c3de07a0f1b01e61409c45ef1a836442d76736f35f1e641c48ce78","signature":"49bf06ea475ae5c78e69f7af3c7e09e00af57750aa1e37c120aaad92fd8a8ab2"},{"version":"39adfcac320fd710fcd03ea178d1d2b544e3f93976dd5d204926ba598e949eb1","signature":"1d215e671d8b299143261397510d03de1f106148e1fc763134320aae5c7452e7"},{"version":"15e73a579573f500b4757cc86a449927255b5644620d8c94389e68b57a3405b5","signature":"104a8a35d9ec11fb958c23fadb5430f7992eafaaf0f34040da858f183d16807f"},{"version":"d60ff304aafddb81ce202db89cc8a173ffc7f53bcca828b9976fb0eda750dcc4","signature":"f8fc87c8c6822986fa509a62a0caed5cbf05f3f84d82fbbdb01a9e94aebfb2ec"},"88a3a6f8c2a1640d8d5fd30d8d86462f8babd86a1e52fab0e8b7f7c141fb348e","345f76c854da724803c96f727a3f9c75e26cf95c6e7b8c1064dbc4e7727b74e6","ab7b7a15a5d73eb0cfc2b973e580f357f07492bff6608669d7e899e2d49ac9a3",{"version":"f872698db4601b7ae2883a7651c0630d6e4db9e94a2ad4634497c34648236595","signature":"f33651b8aa26111e69efe968cc3ae68dbccf6a017f1d462f7780b26db8bd4d22"},{"version":"c0b3b5cb24572ee660dc76f82c73848c266c262fb5357c8cae1a99347a33b90c","signature":"3bf0df1a6a59b16d43f97efd5bddcb376a3a3d66ecbe92a4dd80a0f81be6a009"},{"version":"31091075ef7e87af6418543fb9be2f800a7a907733e0b4267207c5f047c36047","signature":"81af40a2264a5a56f71b8c45ff1717b50c5f0c00dd091410b12dc970ee340120"},{"version":"29a3f31c9702c93def4cea4732ba5190b2f993305727476c3ab860215bf7678a","signature":"444399b4f2fead080a55b82f86bf653a072a9f117042edc9a0fa69366672b418"},{"version":"dbabf31278e50677041de6eb4d712e5d4a91418b3f67aef421ade26867ad7cf0","signature":"d6ab7f2b45d4aa62ad21199fbb3105151a9dd4830d138a3bb3eab1e76eef9e45"},{"version":"4ef5e8bf935967f5db704c3836810822e143a606c23a4c2196f92507fbdc970d","signature":"56827baba9ab2b370c919b1858068e11f10a73d80dca8cb2467d2d1446fab073"},{"version":"bd5be63db88d863b93b07d83ca069cd9e4126b32870053ef8804e48a097a0faa","signature":"838447eba0348ee8d9801eaeff74def53d41e681a387cb2278c9f369a4fba8f2"},{"version":"c56b196bb29efc9c308f0ce8d0c89191f8eb06e8ee6c19e933e3e86c0bbfe587","signature":"9a47909f76247757663a35d96ea5e3bfdab3de970ad3fda7a116d1368b88d412"},{"version":"7920c58580baa54730a4221b3d3e159e2554bd78b38a0ce50fdc915d9570ef83","signature":"83a3a4f21e36ee920e819ac865badd30bf258361e7a224d1fb134a5524f55a0f"},{"version":"8dbc2af4f1c73d69aac06d3836135e5a005966e405de728a1ceab682c567d55d","signature":"0e444a71d6132e54059d824b0aec770d24b467ec7380f64fb030a538ddf0f913"},{"version":"3408cefaecd51b8803c55740f3cc30f1e8cf7f61dfec03f761b4fb08614cce6a","signature":"507fade66a323b65e5bc8351844fb9c69f4466eb081a0e95fadea3b7ec6373f0"},{"version":"be19b4b985f1b6748ff3bd2e572acd500405246377efa4c48b51d689682b9f07","signature":"f5b777c512ba4ec8473f760760ec99a0eb808c15a426431de390204aeab0938e"},"13d94ac3ee5780f99988ae4cce0efd139598ca159553bc0100811eba74fc2351","ab5b379e400dd9ae9546e1f691c38e5aaafc6363225ea8ac65d3c07bca6825bf","5d028f3e82de0a8e972fd4509e63357871ba4162a50289f84e54394fa4291210","0b6762a36839eeea42b8713f8ed16da01366799c686632522e5ff932456c1ed2",{"version":"43b27291c6e9c5626d6cffea62d423a1a1bf69bfdab7dc1ed372dc47653dd1cb","signature":"4bf574cec6ba20c0ded65c7a94954c17fd6595809fa40fa224f456ea70540bae"},{"version":"94640cc4366ce86a0402018f568011d192b008fe74db0308012e4a61163a0432","signature":"cf25fb6383c748c38223a9a156e1299dd15c7ff9f0f01fb411f500ef4dd71879"},{"version":"cbcada412eb0effd56eb06352136e2c70750b5a70377f806a94f2d47ac8adc2c","signature":"f571e28d70c04d1ce72673771010febae11d2c907a71d027550d986ee424951d"},{"version":"13602d62f5e390351afc91292eed65d37d839142ed843143a285c978cb28d9ee","signature":"5fde1b40052163df65f8e55904024dfffc3a130721305aa6aee682fbdc048c75"},{"version":"07e88f0a9754531c1083621d40ea62f12cd52c6ba2a91449ee12207fb3d53081","signature":"cf5ba84fd9488f0ba7e302d54d1db6452b513d8573df389dd05f4153f5edfc26"},{"version":"15d56a43cfd00e2dcbceafacc7644a11b8b9cb11ec57bb7f307c67e95139436d","signature":"f88563bf0a7f4bbe3fc3a6839a8eb3e5f1aecce7dde29d380fbdd64a9e26e68e"},{"version":"d421a5b1ee3b5fb0c626e3ad6417a57ef84e5249ed85347913a0dce93b0db322","signature":"60c51e31434ccc777c3d67ccc96892dd7e634816fb9fa5dc86e15d72de96ab3d"},"fa3b395916dbea25a701332418c116006d03842dbace79b3b27ff9e931926170",{"version":"9cccd72204546b7dd7b358c08f4eededfa632d159f2611ca1a1e83501272a5a0","signature":"0737161a05160e848162b2abba07c4e867f415362187b810f4b6764d2626d021"},{"version":"29f20688fd18bc5e0e65651280d8e1362a0e612e880085b4af756be6d6d294e3","signature":"8365c52f24004e601e9a8f7446cd7d233994b2fd73d544d1a0337f760c42b698"},{"version":"266666ccbe816528b98259123dc7b3697881a38781dd1e567943fb0e76569fca","signature":"69815e9eb00baef2634457bcf4952f69062d764211914619c6922dfa7760f8d2"},{"version":"5c04de864e7026516a04b45dc258ca7cf90d312836dc5ebd0d7b3f6905c24497","signature":"8223dfd33af509e0f333c678996f92d751a44a403a300a03faed958b462ebcaa"},{"version":"c6bc112265af45202ac2e8942dcfe771d2a5a528ed7254d296e5203b80093302","signature":"89c1eedc94aed52dad83eae64f48461643530a6ab1c2dcf3ae37ae42d118075b"},{"version":"1b7a592915fd1d1cffa93cb95d0769daca3848e74c2c63dd4d09c4163d431294","signature":"14e8ace73d1c323c91aba5ac952d348943e753119ca8aed37b57c10eca3dab0b"},{"version":"6da865ef84ec1166716984038fc9f9449e5fb6105dba87b6dd9a0a6dcd3e94be","signature":"1f689148e10f8b1a418c3f7f27496bd172e77009921b1f668cb701a8ffad8e0c"},{"version":"6fc3120606dd309e6fa17a5de730baeba2174a2db6c84419084423567beb6509","signature":"a22d45c921934e292071f5e249c804ad65f5b16280913aeee925a3530254a060"},{"version":"243a4558569347c3f3083e490ce995dd8bac135c391e0d572f1661bb1cf95298","signature":"ba9c10476a9a3d9a88b68877c12f58d35b10c1146e1ec20d397cc88699d09153"},{"version":"b992b7d7faa4a4a3c42671632e0444e711472b06215b7688acf507d116de023f","signature":"6a1267bfb8ba3b79837edf9b72418763a658156e2d09a0aa07382f4eb918aa29"},{"version":"ad04a322aa0effd6506ddd22bd24f5e7cb88b0fe3961907ba4623481adba8bb4","signature":"380543b1b41b88e3a6294b8419d5ed323c5da3a3051ab4a1d5677f525ee30698"},{"version":"7f6c2a054f6f87debc4478029218b57050245fa4e9cc2496e82b77d45b0a9d14","signature":"a22722f2344d703cdcc5ada42cbf84890ef527a2a6e9154fab5ddb362e64b955"},{"version":"16e5f0fe1f21f2b4a9aae8f76c4debf11d51a4cfa48a191e6a61be4c8836d13f","signature":"db18c2ffebf4c7f8d5ebb8f2541bc30bbb4f6cacebb42a5a9742ae883fd583e1"},{"version":"cc12f598e054d6d2c2723b25c45f61d4b226fd84c2fbb61305786e1898d3247a","signature":"866041185b44ade1456dc03de3dc85aad9c2b02dfd92d7f2068d46e28ea66201"},{"version":"5b22d5ff0e523683ea2397fe8b87dd5dd7fa240c533fffc7fdb7896e6105f958","signature":"088957f364ff2b9d3d76fbcb8f1ede5fc95c585854fedc09247c28e2a001f1d3"},{"version":"711c95d083916c576fa894be44f11682a890eecc930761f456669f1bef95eea5","signature":"1213ffec6b715fc3208f0864649666ea0810584b79b5c6e35bb5fe9273c6533f"},{"version":"e431b4039db512a65cbc0059caae4b5c0950f75cf24fdaeebdf1ff0d8d1008ea","signature":"e555e5752db30397ac4a0e61253faf77d77fc697f7312b20a0d0b3dbe28149f1"},{"version":"353045edf32c209a9a1a50acf4efd48c66e9c0ba99a8d9cb142a0af2b42874e6","signature":"48864a43f6c1032cb3fb5bfac020d4b2919791f49d8f31ff18f2dd3d4816005f"},{"version":"eea8fb29e73d9b79c481273df33f2794fe0ec6ceda60c131eb715e33a53d4c2b","signature":"975a13b0ded262c522be36ed51dfd394434acd410f642bc269d0a1d7feb6b7dd"},{"version":"ba0dfd1df3e282324fe43503202538345f66e76557cda2b7322ec553ac3d7e07","signature":"220c93cd694e27d77b91f874f31e92d7514aa808fd95768b64552693043d00b9"},{"version":"28b2bd4084e4b54db3401bc743f130f2dec2b1cb90226c96ab11f8bd7552b265","signature":"ae4f0f443b828f28aaf843856dd25a8ab5e400f99581778f8977011c4a72d70d"},{"version":"1ab11dc560e48362f462254eecefcb58737d4dac59a3a1bf8a908b676231bb95","signature":"64ec4840e09c2f03bc97e86f6fbc5aac99bb6a067f20e06dc186a3784aba2862"},{"version":"ba16b4cfd7377e2f2bd55e8419fccb5d61b4174794de61a6b6def386f82ef644","signature":"e7575e8fde833cacd2ab108e0e85fc2c3f1e6381261995061a37fb0d5d95a2b2"},{"version":"a7524e6d7cf45a6874e1d3f740148975d69250d2f500755576a74b31a25e9dae","signature":"7e0c4a71364bcfbef8f85673e7ab636a766f2f749d88869b636ec5912c33a31c"},{"version":"fa3030f1629a274031d5875bb61b5150ff78fccc0ea808c36a5450ab06e1f5f8","signature":"d369e126bb461a972a33aa3389dbfe011eecb71570c4b6706af17e99de4b95c8"},"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4",{"version":"e1c677a3dbd5833ab46e8ad1253139e9951fdd52434c1fa2bfe8bc261d271828","signature":"3e6aa5643c2b1046e0d6bd612166c616b7ba9486c1942d9d289ae1bae82d0dbf"},{"version":"ba2c39b0a5731ee0969f52a0d55939dff772d9ecf09f264332fc60ef3c286a40","signature":"0f827d05c6ace86ef4a1010b0a5a388fdf63f726edf37241085c69521f2043a5"},{"version":"5b807e5990dd6a6994d025362dd3ec85e825508bbe58a73c578998d1a6a6a0d9","signature":"b132a8bac53c561fde537f5371abc0fa5d1e9ecaa26240ee27cbe9d5f1a036d0"},"c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","818f832a8e29ca7e128dcde810a9ff8cbc3754010474e29fff0a5ed95adae032","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"e2eb1ce13a9c0fa7ab62c63909d81973ef4b707292667c64f1e25e6e53fa7afa","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","1b282e90846fada1e96dc1cf5111647d6ab5985c8d7b5c542642f1ea2739406d","bd3f5d05b6b5e4bfcea7739a45f3ffb4a7f4a3442ba7baf93e0200799285b8f1","4c775c2fccabf49483c03cd5e3673f87c1ffb6079d98e7b81089c3def79e29c6","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","f1ace2d2f98429e007d017c7a445efad2aaebf8233135abdb2c88b8c0fef91ab","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"ea455cc68871b049bcecd9f56d4cf27b852d6dafd5e3b54468ca87cc11604e4d","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"ae5507fc333d637dec9f37c6b3f4d423105421ea2820a64818de55db85214d66","affectsGlobalScope":true},{"version":"0666f4c99b8688c7be5956df8fecf5d1779d3b22f8f2a88258ae7072c7b6026f","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","54e854615c4eafbdd3fd7688bd02a3aafd0ccf0e87c98f79d3e9109f047ce6b8","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","7424817d5eb498771e6d1808d726ec38f75d2eaf3fa359edd5c0c540c52725c1","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"bddce945d552a963c9733db106b17a25474eefcab7fc990157a2134ef55d4954","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","8013f6c4d1632da8f1c4d3d702ae559acccd0f1be05360c31755f272587199c9",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","60608e5ffe3e56af425a4e4933df9e8cf7ce19071bf488994cd7cd393ed4ce6f","1d78c35b7e8ce86a188e3e5528cc5d1edfc85187a85177458d26e17c8b48105f",{"version":"8070ce65511a30dd008fb20dbdbf3c3de62095e641723fad17afbc0f919e853e","signature":"7da82f1d4219e88c37dfd174a4b69a7bc460a1c6c28951c0a871ee694fbb3e57"},{"version":"dcb5ca825b61620db786da0dd9afaaece8a0224f66e1e82fa908d999aaef9035","signature":"b486c2aceca4ee80987a8ab93f57a2f28966efee141b9f80afd5d66b68552f1f"},{"version":"81a579dc7f78ea58d5d864ef7fbe6eeaf1fd915ae7c99e64677280cc52b1109a","signature":"8f5173c0244c0e24737a51b649a07df75416d93a7cd9aa1ee3753c9b7825e423"},{"version":"a6a72168c7067f951d52ac0934c797724b51a5a444af8470d1c7dc61e27acbeb","signature":"7911d993174fadab159ed4238d0e4f8b3865dc6d1afc96f0e10242a85820d16c"},{"version":"0d279de6d18efff8e087ebfaedb028781f8507fa4bd42d4e834db4b69db5b902","signature":"892de9c6189d8ca35d3dc58765220d6691c1b9ff82a1fe6180689dd2a7b171b2"},{"version":"8c9899241cef16dbcc7fa39c0d78f68f705f402f4a9fa169f0b1e4eaec60e254","signature":"aec78d06066deb5f972bc34e9c4f69f5aa022d012d32efc48d378ce71256b297"},{"version":"6fa13cd4c5add7b307cca148a50dc5607796a4e993983f7c5489b7f382d935b7","signature":"2d13978edce57ac64260b083f53afbf62ecf45be86c598b8cf13f4bc1dbb1c48"},{"version":"f98e785edd78fac596973556d3983cbfa33cc2e6e09e4070527a47c7347a7c1f","signature":"aa5e61d1f4040cd9c4f0ae1d4ae0b0896f295017af3e1be6526b07e6cf97f004"},{"version":"7c049860ead5d1b286fbeb22547cb9c135cde9175768e589da5e5048f3b28421","signature":"1b844b311a5fd3e6028e9fc0f251bd8e18ebde1d2ddf23fbb33599b5dbeead58"},{"version":"2bb9829d7804eda61222b89eb8654cc7bd00a1e5b5497020f085aba3df373321","signature":"51b163a753210d6921ede854bb15c5b82011cce8fbf96ebb7185a1764b9f7c14"},{"version":"73a192f8618141248885fd8247fedfab9bc31350a5bb6a85e5276912b6617764","signature":"b1062ac426823f9d00882cee0616a104f980323baf1f1ee8c64675cb3e64ac2b"},{"version":"96259b44c196a13ac57f19286b48a22ea588bb086f228ef887b931ab28d90922","signature":"3ddaf39c991e526aef5727126f1697d304dbd138b80ff481935dffe6529a32d1"},{"version":"6e5a55b72087385a8f1fcbb4d133aeef638d2e92d392d7908657bdc2481b3f5d","signature":"801c4b9fc7437bcdc777d219e56eda997d267943511139d3855c1b2ecbef4112"},{"version":"efb2c72786e9c94db7f8f89096c47999534dd807afddce8624674066fa79a228","signature":"22daae4bb805346aeab03163937f9b0359b51d877f76456c648c7741639701e5"},{"version":"7490a8efb9a474f13586487c8b1b285f51980e7810fd60998d103693563c3e57","signature":"ae6f2c8971b4d87d25a60b5430bddfa13aa69148a42621a70306309686190e68"},{"version":"5cec8f7cc9b6d81cd57b0d5090f75eb0c86700479f5b3912ba0384f2265ff977","signature":"bc2279d6023c568f006f5c4a16f24d9a4f3459efc89f770129ed876299d64928"},{"version":"461fcd7c9172f9f7018340d33c5000f53e9c0985f4f2bdfbf6c854b78f3d550a","signature":"38fe915c01f6bc9e8f01b3ed0460755c3845890b4255adcd6f90ff68bd88ebeb"},{"version":"c85340bea3752b500563c7d5b03c8a369687cd951352beee1a53342b1bd27a9b","signature":"3c3a0bdfed557d2943d530b31038374c8e9d90a5fdd7cfdcce16ea298c41d418"},{"version":"4efecf60f11f4893bdd4fe5914221a7d5be775fac49e6ccaaad59a591536daa8","signature":"badd3ebb6d0f1d1f9bf087595cd83ed12b3f433f26830924a4e588dfadf2c932"},{"version":"bb04527534bbac0e9861f974ab2d784153d58731c46e506802206cf8bdbf4781","signature":"5e957add0125f7a5f5b57fdef4a7111ab3ea892974baa898f1e72b70d9acee00"},{"version":"23cb0582a1fc0a813e46c150fb012ac25282d48a3cb5ef957632fb7a8ae2c966","signature":"968ffdb87c470d380b6ea8db40761a2908278156c836f42c6e0c310b400a580a"},{"version":"f0b6690984c3a44b15740ac24bfb63853617731c0f40c87a956ce537c4b50969","affectsGlobalScope":true},"77ac76cd081746189b8a6c047e0b5b40c8bfb5747fe1baea8550b4f3b9c9fd3d","8041cfce439ff29d339742389de04c136e3029d6b1817f07b2d7fcbfb7534990","4eb1446ed6af6046fb8401915e08dd4453befdfd4aa4f5248576fd473ae89835","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e",{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","0c5a621a8cf10464c2020f05c99a86d8ac6875d9e17038cb8522cc2f604d539f","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","8841e2aa774b89bd23302dede20663306dc1b9902431ac64b24be8b8d0e3f649","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","6d969939c4a63f70f2aa49e88da6f64b655c8e6799612807bef41ccff6ea0da9","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e",{"version":"46894b2a21a60f8449ca6b2b7223b7179bba846a61b1434bed77b34b2902c306","affectsGlobalScope":true},"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","c6c4fea9acc55d5e38ff2b70d57ab0b5cdbd08f8bc5d7a226e322cea128c5b57","9ad8802fd8850d22277c08f5653e69e551a2e003a376ce0afb3fe28474b51d65","fdfbe321c556c39a2ecf791d537b999591d0849e971dd938d88f460fea0186f6","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"root":[[70,72],[75,83],[85,168],[209,211],[220,264],[266,326],329,[331,333],[337,342],[344,353],[357,368],[373,405],[446,448],[542,566]],"options":{"allowImportingTsExtensions":true,"composite":true,"declaration":true,"declarationDir":"../../dts","declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"module":200,"noImplicitAny":true,"noImplicitThis":true,"rootDir":"../..","skipLibCheck":true,"strictBindCallApply":true,"target":99},"fileIdsList":[[370,371],[219,370],[216],[449],[216,218],[217],[214,216],[213,214,215],[213,216],[569,571],[568,569,570],[502,503,539,573],[575],[576],[451,581],[489,539,578,580],[452,579],[450],[453],[489],[490,495,523],[491,502,503,510,520,531],[491,492,502,510],[493,532],[494,495,503,511],[495,520,528],[496,498,502,510],[489,497],[498,499],[502],[500,502],[489,502],[502,503,504,520,531],[502,503,504,517,520,523],[487,490,536],[498,502,505,510,520,531],[502,503,505,506,510,520,528,531],[505,507,520,528,531],[453,454,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538],[502,508],[509,531,536],[498,502,510,520],[511],[512],[489,513],[514,530,536],[515],[516],[502,517,518],[517,519,532,534],[490,502,520,521,522,523],[490,520,522],[520,521],[523],[524],[489,520],[502,526,527],[526,527],[495,510,520,528],[529],[510,530],[490,505,516,531],[495,532],[520,533],[509,534],[535],[490,495,502,504,513,520,531,534,536],[520,537],[406,445],[406,430,445],[445],[406],[406,431,445],[406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444],[431,445],[588],[206,207],[451],[354,355],[73],[169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[184],[184,195],[170,186],[186],[193],[169],[170],[178],[200],[199,201,202,203,204,205],[202],[201],[464,468,531],[464,520,531],[459],[461,464,528,531],[510,528],[539],[459,539],[461,464,510,531],[456,457,460,463,490,502,520,531],[456,462],[460,464,490,523,531,539],[490,539],[480,490,539],[458,459,539],[464],[458,459,460,461,462,463,464,465,466,468,469,470,471,472,473,474,475,476,477,478,479,481,482,483,484,485,486],[464,471,472],[462,464,472,473],[463],[456,459,464],[464,468,472,473],[468],[462,464,467,531],[456,461,462,464,468,471],[490,520],[459,464,480,490,536,539],[73,74,75],[345,360,389],[328,329,390],[212,328,347,351,352,357,358,359,362,383,386,389,512],[328,346,347,362,383,385,387,389],[212,328,347,348,349,350,351,352,356,357,362,378,389,503,509,512],[328,350,389],[350,353,379,381,382,383],[212,327,328,329,351,352,377,394,509,512,531],[328,349,350,352,512],[212,328,329,378,380,503,509,512,531],[394],[328,347,348,503],[311,328,329,347,352,359,360,361,362,365,366,386,387,389,390,392,404],[327,345,347,361,389,404],[328,351,362,365,387,389,392,393,404],[328,386,389,512],[328,360,366,383,385,387,389,390,391,512],[359,365],[328,386],[345,389],[345,384,385,389,512],[389],[264,279,345,352,362,364,366,386,387,388],[264,311,364,389,404],[351],[328],[328,503],[328,329],[159,264,295,311,363,377,383,391,394,399,400,401,402,403,404,509],[328,351,368,389,394,396],[76,264,328,394,395],[159,279,295,314,399],[159,328,351,375,394],[328,348,375,376,377,394],[328,351,375,394],[159,311,366,394],[76,159,311,314,326,327,398],[279,369,373,394,399],[372],[159,279,311,328,359,363,367,368,374,394,398,399],[159,212,328,369,394,396,397,399,503,512],[394,512],[159,399],[69,220],[159,278],[69,159,278],[159,224,278],[159,271,272,278],[266,267,268,269,270,271,272,273,274,275,276],[159,278,311],[159,265,278],[159,219,220,264,265,278],[159,222,223],[159],[69,159,224],[69,159,216,220,221,224,264,265,277],[216,219],[327,338,339,341],[327,338,339,343],[330,333,334,335,337,338,339,340,341,342,344],[327,337,338],[337],[327,333,337,338],[159,311],[219,404,445,503,509,512,531],[159,295,311],[159,311,404,453],[159,311,315,316,404,453],[159,311,316,317],[404],[311,318,319,321,322,323,324,325,404,453],[321,404],[72,159,162,311,512],[311,320,321,404,453],[163,311,404],[512,531,542],[69],[503,539],[76,335,404,405,446,447,448,452,453,491,495,503,509,511,512,531,534,540,541],[70,71],[331,332],[331],[295],[159,295,312],[545,546,548],[552],[551],[547],[159,311,313,404],[68,72,73,74],[227,240,249,253,262,263],[262],[225,228,230,231,232],[233],[229,233],[234,236,237,238,239,240,249,253,263],[69,241,245,249],[69,225,227,232,233,235,237,239,243,244,245,246,249,250,253,263],[236,249,252,262,263],[69,225,227,233,235,243,244,245,249,253],[225,244,249],[69,225,227,233,234,235,237,239,243,244,245,247,249,250,251,253,263],[225,227,233,234,235,236,237,238,239,242,243,247,249,253],[240,248,253,254,256,258,260,261],[225,227,233,235,244,245,249,253],[69,225,226,227,233,235,243,244,245,249,252,253,255],[225,235,236,249],[69,225,226,227,233,242,243,244,245,249,253,257],[69,225,227,233,235,244,245,249,253],[69,225,226,227,233,234,235,239,244,245,249,250,252,253,258,259],[225,233,235,236,249],[227,244,249,253],[69,89,225,226,227,233,234,240,242,243,245,246,249,263],[225,226,227,233,246,263],[226],[225,233,247,248,263],[225,233,235,247],[225,233,247,249],[69,72],[225,233,235,247,249],[159,240],[288,289,292,293],[288,289,294],[288,289,290,291],[264],[76,159,264,288,289],[159,289,290],[159,210,211,308],[159,165,210,308,311],[159,165],[159,210],[159,165,167,209,210,211,308,310],[159,308],[159,165,166,167,308],[159,163,296,308,310],[159,166,308],[159,308,309],[159,160,165,166,209,210,211,212,279,280,284,286,287,297,298,299,301,303,304,305,306,307,309,311],[159,283,308],[159,161,281,308],[159,281,282,308],[159,161,165,210,308],[159,160,308],[159,209,210,302,308],[159,209,300,308],[76,159,209,264,285,308,311],[159,210,308],[159,161,165,168,208,209,308,310,311],[159,161,162,163,167,310,311],[159,166,210,308,311],[159,160,164,311],[159,160,165,309,311],[106,159],[78,87,159],[103,110,159],[103,159],[78,102,159],[103],[79,104,159],[79,103,112,159],[101,159],[116,159],[79,100,159],[121,159],[123,159],[124,125,126,159],[90,159],[100],[130,159],[79,103,116,145,159,311],[132],[79,103,159],[79,159],[72,88],[79,116,138,159],[159,561],[88,103,159],[72,87,88,89,90,91,159],[91],[84,91,92,93,94,95,96,97,98,99],[91,95],[87,91,92],[87,101,159],[77,78,79,80,81,82,83,85,86,87,88,90,100,101,103,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158],[90,127,159],[136,137,159],[145,159],[100,159],[80,159],[77,78,159],[77,85,86,100,159],[79,149,159],[79,85,159],[79,90,159],[88],[72],[81],[328,358,359,362,383,386,389],[328,362,389],[350,353,379,381],[328,350],[328,359,366,389],[345,347,361,389],[328,362,365,387,389,392,393,404],[328,386,389],[328,360,383,389],[264,279,345,362,366,386,387],[264,311,389,404],[159,264,295,311,363,377,383,391,394,399,400,401,402,403],[249,328,389,394,396],[264,328,394],[159,328,375,394,404],[328,375,394,404],[366],[159,311,398],[279,394,399],[159,279,328,394],[159,328,369,394,399],[219,220],[159,272,278],[159,219,264,265],[159,222],[224],[159,216,219,220,221,264,265,277],[338],[337,338,340,341,342,344],[219,404],[159,311,404],[311,318,319,321,323,324,325,404],[311,321,404],[311],[159,308,311],[446,534],[159,404],[227,240,249,263],[225,230,233],[241,245,249],[225,227,233,244,245,249,250,253,263],[236,249,252,263],[225,227,235,245,249,251,253,263],[225,227,233,234,236,247,249,253],[69,89,225,226,233,234,235,236,237,238,239,240,244,245,246,247,249,250,252,253,255,258,259,263],[69,89,225,226,227,233,234,235,236,237,238,239,240,244,245,246,247,249,250,252,253,263],[69,89,225,226,227,233,234,235,236,237,238,239,240,244,245,246,247,249,250,252,253,255,263],[69,89,225,226,233,234,235,236,237,238,239,240,244,245,246,247,249,250,252,253,263],[69,89,225,226,227,233,234,235,236,237,238,239,240,244,245,246,247,249,250,252,253,258,259,263],[89,225,226,227,233,234,240,245,246,249,263],[225,235,247],[225,235,247,249],[288,289],[159,289,294],[159,288,289],[159,210,308,311],[159,165,209,210,211,308,310],[159,165,166,308],[308],[159,165,166,210,211,280,284,286,287,297,298,299,301,303,304,305,306,307,311],[159,282,308],[159,161,210,308],[159,161,211,308,311],[161,311],[159,165,311],[91,92,93,94,95,96,97,98,99],[77,78,79,80,81,83,85,86,87,88,90,100,101,103,105,106,107,108,109,110,111,113,114,115,116,117,118,119,120,121,122,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159]],"referencedMap":[[372,1],[371,2],[370,3],[450,4],[219,5],[218,6],[215,7],[216,8],[214,9],[572,10],[571,11],[574,12],[576,13],[577,14],[583,15],[581,16],[580,17],[582,18],[453,19],[454,19],[489,20],[490,21],[491,22],[492,23],[493,24],[494,25],[495,26],[496,27],[497,28],[498,29],[499,29],[501,30],[500,31],[502,32],[503,33],[504,34],[488,35],[505,36],[506,37],[507,38],[539,39],[508,40],[509,41],[510,42],[511,43],[512,44],[513,45],[514,46],[515,47],[516,48],[517,49],[518,49],[519,50],[520,51],[522,52],[521,53],[523,54],[524,55],[525,56],[526,57],[527,58],[528,59],[529,60],[530,61],[531,62],[532,63],[533,64],[534,65],[535,66],[536,67],[537,68],[430,69],[431,70],[406,71],[409,71],[428,69],[429,69],[419,69],[418,72],[416,69],[411,69],[424,69],[422,69],[426,69],[410,69],[423,69],[427,69],[412,69],[413,69],[425,69],[407,69],[414,69],[415,69],[417,69],[421,69],[432,73],[420,69],[408,69],[445,74],[439,73],[441,75],[440,73],[433,73],[434,73],[436,73],[438,73],[442,75],[443,75],[435,75],[437,75],[589,76],[208,77],[452,78],[451,18],[356,79],[74,80],[199,81],[185,82],[196,83],[187,84],[188,85],[194,86],[178,87],[172,88],[197,89],[176,87],[177,87],[174,88],[181,88],[182,88],[201,90],[202,90],[206,91],[203,92],[204,93],[205,92],[471,94],[478,95],[470,94],[485,96],[462,97],[461,98],[484,99],[479,100],[482,101],[464,102],[463,103],[459,104],[458,105],[481,106],[460,107],[465,108],[469,108],[487,109],[486,108],[473,110],[474,111],[476,112],[472,113],[475,114],[480,99],[467,115],[468,116],[477,117],[457,118],[483,119],[76,120],[361,121],[347,122],[360,123],[386,124],[379,125],[382,126],[383,127],[378,128],[353,129],[381,130],[350,131],[349,132],[393,133],[362,134],[394,135],[387,136],[392,137],[357,44],[366,138],[358,139],[384,140],[385,141],[390,142],[364,140],[389,143],[365,144],[352,145],[329,146],[348,147],[346,148],[404,149],[403,150],[396,151],[400,152],[402,153],[377,154],[401,155],[367,156],[399,157],[374,158],[373,159],[375,160],[398,161],[368,162],[363,163],[221,164],[274,165],[269,166],[267,167],[273,168],[277,169],[275,165],[270,170],[271,165],[268,166],[266,165],[272,171],[276,170],[279,172],[224,173],[223,174],[222,175],[278,176],[220,177],[405,174],[342,178],[344,179],[345,180],[341,181],[338,182],[339,183],[163,184],[446,185],[296,186],[285,184],[315,187],[317,188],[318,189],[316,184],[324,190],[326,191],[323,192],[321,193],[322,194],[319,195],[543,196],[544,190],[320,184],[162,184],[89,197],[540,198],[542,199],[448,3],[70,197],[72,200],[333,201],[332,202],[312,203],[313,204],[549,205],[550,205],[553,206],[554,207],[555,207],[556,207],[557,207],[558,206],[548,208],[314,209],[75,210],[264,211],[263,212],[233,213],[228,214],[232,215],[230,215],[231,214],[241,216],[246,217],[251,218],[253,219],[250,220],[245,221],[252,222],[244,223],[262,224],[254,225],[256,226],[255,227],[258,228],[248,229],[260,230],[259,231],[261,232],[247,233],[234,234],[227,235],[249,236],[238,237],[237,238],[243,239],[236,240],[242,197],[565,174],[566,241],[294,242],[288,174],[295,243],[293,244],[289,245],[290,246],[291,247],[292,244],[209,248],[166,249],[164,250],[211,251],[311,252],[280,253],[305,253],[299,254],[297,255],[287,253],[304,256],[306,253],[307,257],[308,258],[284,259],[282,260],[283,261],[281,174],[298,253],[302,262],[300,253],[309,263],[160,174],[303,264],[301,265],[286,266],[161,267],[210,268],[168,269],[167,270],[165,271],[310,272],[107,273],[108,274],[111,275],[109,276],[103,277],[115,278],[105,279],[113,280],[102,281],[117,282],[118,282],[119,282],[116,283],[120,282],[122,284],[121,174],[124,285],[125,285],[126,285],[127,286],[128,287],[129,288],[131,289],[561,290],[133,291],[130,292],[134,292],[135,293],[132,294],[139,295],[562,296],[140,292],[141,297],[92,298],[97,299],[93,299],[100,300],[94,299],[96,301],[95,299],[98,302],[91,303],[159,304],[142,276],[110,293],[143,305],[144,276],[137,287],[138,306],[112,293],[145,293],[146,307],[147,308],[136,308],[123,174],[104,276],[81,309],[79,310],[87,311],[148,307],[150,312],[151,313],[149,314],[106,308],[152,308],[86,288],[153,174],[154,293],[155,293],[85,308],[156,315],[88,316],[157,314],[80,293],[82,317],[101,308]],"exportedModulesMap":[[372,1],[371,2],[370,3],[450,4],[219,5],[218,6],[215,7],[216,8],[214,9],[572,10],[571,11],[574,12],[576,13],[577,14],[583,15],[581,16],[580,17],[582,18],[453,19],[454,19],[489,20],[490,21],[491,22],[492,23],[493,24],[494,25],[495,26],[496,27],[497,28],[498,29],[499,29],[501,30],[500,31],[502,32],[503,33],[504,34],[488,35],[505,36],[506,37],[507,38],[539,39],[508,40],[509,41],[510,42],[511,43],[512,44],[513,45],[514,46],[515,47],[516,48],[517,49],[518,49],[519,50],[520,51],[522,52],[521,53],[523,54],[524,55],[525,56],[526,57],[527,58],[528,59],[529,60],[530,61],[531,62],[532,63],[533,64],[534,65],[535,66],[536,67],[537,68],[430,69],[431,70],[406,71],[409,71],[428,69],[429,69],[419,69],[418,72],[416,69],[411,69],[424,69],[422,69],[426,69],[410,69],[423,69],[427,69],[412,69],[413,69],[425,69],[407,69],[414,69],[415,69],[417,69],[421,69],[432,73],[420,69],[408,69],[445,74],[439,73],[441,75],[440,73],[433,73],[434,73],[436,73],[438,73],[442,75],[443,75],[435,75],[437,75],[589,76],[208,77],[452,78],[451,18],[356,79],[74,80],[199,81],[185,82],[196,83],[187,84],[188,85],[194,86],[178,87],[172,88],[197,89],[176,87],[177,87],[174,88],[181,88],[182,88],[201,90],[202,90],[206,91],[203,92],[204,93],[205,92],[471,94],[478,95],[470,94],[485,96],[462,97],[461,98],[484,99],[479,100],[482,101],[464,102],[463,103],[459,104],[458,105],[481,106],[460,107],[465,108],[469,108],[487,109],[486,108],[473,110],[474,111],[476,112],[472,113],[475,114],[480,99],[467,115],[468,116],[477,117],[457,118],[483,119],[361,121],[347,146],[360,318],[386,319],[379,126],[382,126],[383,320],[378,146],[353,321],[381,146],[350,131],[349,146],[393,322],[362,323],[394,324],[387,325],[392,326],[366,138],[358,139],[384,140],[385,140],[390,142],[364,142],[389,327],[365,328],[329,146],[348,147],[346,146],[404,329],[403,330],[396,331],[402,332],[377,333],[401,333],[367,334],[399,335],[374,336],[375,337],[398,338],[368,131],[363,163],[221,339],[274,165],[269,165],[267,165],[273,340],[277,169],[275,165],[270,170],[271,165],[268,165],[266,165],[272,165],[276,170],[279,341],[224,342],[223,174],[222,343],[278,344],[220,177],[405,174],[342,345],[344,345],[345,346],[341,345],[338,182],[339,345],[163,184],[446,347],[296,184],[285,184],[315,348],[317,348],[318,189],[316,184],[324,190],[326,349],[323,192],[321,184],[322,350],[319,351],[544,190],[320,351],[162,352],[540,198],[542,353],[72,200],[333,201],[312,174],[313,174],[314,354],[264,355],[263,212],[233,356],[241,216],[246,357],[251,358],[253,359],[250,229],[245,221],[252,360],[244,361],[262,362],[254,363],[256,364],[255,227],[258,363],[248,365],[260,366],[259,227],[261,365],[247,367],[234,234],[227,235],[249,236],[238,368],[237,238],[243,316],[236,369],[565,174],[566,241],[294,370],[288,174],[295,371],[293,370],[289,245],[290,372],[291,247],[292,370],[209,248],[166,373],[164,250],[211,251],[311,374],[280,253],[305,253],[299,375],[297,253],[287,376],[304,256],[306,253],[307,257],[308,377],[284,253],[282,253],[283,378],[281,174],[298,253],[302,379],[300,376],[309,263],[160,174],[303,267],[301,376],[286,253],[161,267],[210,380],[168,381],[167,373],[165,271],[310,382],[107,174],[108,174],[111,174],[109,174],[103,174],[115,174],[105,174],[113,174],[102,174],[117,174],[118,174],[119,174],[116,174],[120,174],[122,174],[121,174],[124,174],[125,174],[126,174],[127,174],[128,174],[129,174],[131,174],[561,184],[130,174],[134,174],[135,174],[139,174],[562,174],[140,174],[141,174],[92,299],[100,383],[91,174],[159,384],[142,174],[110,174],[143,174],[144,174],[137,174],[138,174],[112,174],[145,174],[146,174],[147,174],[136,174],[123,174],[104,174],[81,174],[79,174],[87,174],[148,174],[150,174],[151,174],[149,174],[106,174],[152,174],[153,174],[154,174],[155,174],[85,174],[157,174],[80,174],[82,174],[101,308]],"semanticDiagnosticsPerFile":[563,372,371,370,450,219,217,218,215,213,216,214,449,69,567,369,212,572,568,571,569,541,328,574,575,576,577,583,578,579,581,580,582,265,570,584,335,573,453,454,489,490,491,492,493,494,495,496,497,498,499,501,500,502,503,504,488,538,505,506,507,539,508,509,510,511,512,513,514,515,516,517,518,519,520,522,521,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,585,430,431,406,409,428,429,419,418,416,411,424,422,426,410,423,427,412,413,425,407,414,415,417,421,432,420,408,445,444,439,441,440,433,434,436,438,442,443,435,437,586,587,588,589,330,455,207,208,452,451,68,356,354,355,74,73,84,199,185,196,169,187,186,188,194,193,170,191,192,178,173,172,171,180,197,176,179,184,177,174,175,181,182,195,190,198,189,200,183,201,202,206,203,204,205,66,67,13,12,2,14,15,16,17,18,19,20,21,3,22,4,23,27,24,25,26,28,29,30,5,31,32,33,34,6,38,35,36,37,39,7,40,45,46,41,42,43,44,8,50,47,48,49,51,9,52,53,54,57,55,56,58,59,10,1,60,11,64,62,61,65,63,471,478,470,485,462,461,484,479,482,464,463,459,458,481,460,465,466,469,456,487,486,473,474,476,472,475,480,467,468,477,457,483,76,334,343,327,361,347,360,386,379,382,383,378,353,381,350,349,393,362,359,391,394,387,392,357,366,358,384,385,390,364,389,365,388,352,351,329,348,346,404,403,396,395,400,402,376,377,401,367,399,374,373,375,398,368,363,397,380,221,274,269,267,273,277,275,270,271,268,266,272,276,279,224,223,222,278,220,405,336,342,344,345,340,341,337,338,339,163,446,296,285,315,317,318,316,324,325,326,323,321,322,319,543,544,320,162,89,540,447,542,448,70,72,71,331,333,332,312,313,549,550,551,553,545,554,555,556,557,558,552,546,547,548,559,560,314,75,264,263,233,228,232,230,231,229,241,246,251,253,250,245,252,244,262,254,256,255,258,257,248,260,259,261,226,247,234,227,249,240,238,237,243,225,239,236,235,242,565,566,294,288,295,293,289,290,291,292,209,166,164,211,311,280,305,299,297,287,304,306,307,308,284,282,283,281,298,302,300,309,160,303,301,286,161,210,168,167,165,310,107,108,158,111,109,103,114,115,105,113,102,117,118,119,116,120,122,121,124,125,126,127,128,129,90,131,561,133,130,134,135,132,139,562,140,141,92,99,97,93,100,94,96,95,98,91,159,142,110,143,144,137,138,112,145,146,147,136,78,123,104,77,81,79,87,148,150,151,149,106,152,86,153,154,155,85,156,88,157,80,83,82,101,564],"latestChangedDtsFile":"../../dts/packages/babel-types/src/converters/toSequenceExpression.d.ts"},"version":"5.4.2"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/lib/index.js index 90680f58a476f1..8965ab42c63694 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/lib/index.js @@ -60,7 +60,7 @@ const simpleAssignmentVisitor = { return; } if (path.parentPath.isExpressionStatement() && !path.isCompletionRecord()) { - const operator = path.node.operator == "++" ? "+=" : "-="; + const operator = path.node.operator === "++" ? "+=" : "-="; path.replaceWith(assignmentExpression(operator, arg.node, numericLiteral(1))); } else if (path.node.prefix) { path.replaceWith(assignmentExpression("=", identifier(localName), binaryExpression(path.node.operator[0], unaryExpression("+", arg.node), numericLiteral(1)))); diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json index d71efa401802d8..c5c586c7dbfbee 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-simple-access/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-simple-access", - "version": "7.22.5", + "version": "7.24.5", "description": "Babel helper for ensuring that access to a given value is performed through simple accesses", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helper-simple-access", @@ -15,11 +15,11 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.5" }, "devDependencies": { - "@babel/core": "^7.22.5", - "@babel/traverse": "^7.22.5" + "@babel/core": "^7.24.5", + "@babel/traverse": "^7.24.5" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json index 1e69201b4c44a9..a684b920a670ff 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-split-export-declaration/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-split-export-declaration", - "version": "7.22.6", + "version": "7.24.5", "description": "", "repository": { "type": "git", @@ -14,7 +14,7 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/types": "^7.22.5" + "@babel/types": "^7.24.5" }, "engines": { "node": ">=6.9.0" diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json b/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json index 67bddb4bf985a2..9f509b6e397e8c 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helper-validator-identifier", - "version": "7.22.20", + "version": "7.24.5", "description": "Validate identifier/keywords name", "repository": { "type": "git", diff --git a/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js b/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js index 7f753a95843031..f3fd9e9adab85f 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js +++ b/tools/node_modules/eslint/node_modules/@babel/helper-validator-identifier/scripts/generate-identifier-regex.js @@ -13,7 +13,7 @@ let last = -1; const cont = require( "@unicode/unicode-" + version + "/Binary_Property/ID_Continue/code-points.js" ).filter(function (ch) { - return ch > 0x7f && search(start, ch, last + 1) == -1; + return ch > 0x7f && search(start, ch, last + 1) === -1; }); function search(arr, ch, starting) { @@ -40,13 +40,13 @@ function generate(chars) { for (let i = 0, at = 0x10000; i < chars.length; i++) { const from = chars[i]; let to = from; - while (i < chars.length - 1 && chars[i + 1] == to + 1) { + while (i < chars.length - 1 && chars[i + 1] === to + 1) { i++; to++; } if (to <= 0xffff) { - if (from == to) re += esc(from); - else if (from + 1 == to) re += esc(from) + esc(to); + if (from === to) re += esc(from); + else if (from + 1 === to) re += esc(from) + esc(to); else re += esc(from) + "-" + esc(to); } else { astral.push(from - at, to - from); diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js index b8a808310ff213..a7ab279180cbaa 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers-generated.js @@ -49,7 +49,7 @@ var _default = exports.default = Object.freeze({ toSetter: helper("7.24.0", 'export default function _toSetter(t,e,n){e||(e=[]);var r=e.length++;return Object.defineProperty({},"_",{set:function(o){e[r]=o,t.apply(n,e)}})}'), typeof: helper("7.0.0-beta.0", 'export default function _typeof(o){"@babel/helpers - typeof";return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(o){return typeof o}:function(o){return o&&"function"==typeof Symbol&&o.constructor===Symbol&&o!==Symbol.prototype?"symbol":typeof o},_typeof(o)}'), using: helper("7.22.0", 'export default function _using(o,n,e){if(null==n)return n;if(Object(n)!==n)throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");if(e)var r=n[Symbol.asyncDispose||Symbol.for("Symbol.asyncDispose")];if(null==r&&(r=n[Symbol.dispose||Symbol.for("Symbol.dispose")]),"function"!=typeof r)throw new TypeError("Property [Symbol.dispose] is not a function.");return o.push({v:n,d:r,a:e}),n}'), - usingCtx: helper("7.23.9", 'export default function _usingCtx(){var r="function"==typeof SuppressedError?SuppressedError:function(r,n){var e=Error();return e.name="SuppressedError",e.suppressed=n,e.error=r,e},n={},e=[];function using(r,n){if(null!=n){if(Object(n)!==n)throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");if(r)var o=n[Symbol.asyncDispose||Symbol.for("Symbol.asyncDispose")];if(null==o&&(o=n[Symbol.dispose||Symbol.for("Symbol.dispose")]),"function"!=typeof o)throw new TypeError("Property [Symbol.dispose] is not a function.");e.push({v:n,d:o,a:r})}return n}return{e:n,u:using.bind(null,!1),a:using.bind(null,!0),d:function(){var o=this.e;function next(){for(;r=e.pop();)try{var r,t=r.d.call(r.v);if(r.a)return Promise.resolve(t).then(next,err)}catch(r){return err(r)}if(o!==n)throw o}function err(e){return o=o!==n?new r(o,e):e,next()}return next()}}}'), + usingCtx: helper("7.23.9", 'export default function _usingCtx(){var r="function"==typeof SuppressedError?SuppressedError:function(r,n){var e=Error();return e.name="SuppressedError",e.error=r,e.suppressed=n,e},n={},e=[];function using(r,n){if(null!=n){if(Object(n)!==n)throw new TypeError("using declarations can only be used with objects, functions, null, or undefined.");if(r)var o=n[Symbol.asyncDispose||Symbol.for("Symbol.asyncDispose")];if(null==o&&(o=n[Symbol.dispose||Symbol.for("Symbol.dispose")]),"function"!=typeof o)throw new TypeError("Property [Symbol.dispose] is not a function.");e.push({v:n,d:o,a:r})}else r&&e.push({d:n,a:r});return n}return{e:n,u:using.bind(null,!1),a:using.bind(null,!0),d:function(){var o=this.e;function next(){for(;r=e.pop();)try{var r,t=r.d&&r.d.call(r.v);if(r.a)return Promise.resolve(t).then(next,err)}catch(r){return err(r)}if(o!==n)throw o}function err(e){return o=o!==n?new r(e,o):e,next()}return next()}}}'), wrapRegExp: helper("7.19.0", 'import setPrototypeOf from"setPrototypeOf";import inherits from"inherits";export default function _wrapRegExp(){_wrapRegExp=function(e,r){return new BabelRegExp(e,void 0,r)};var e=RegExp.prototype,r=new WeakMap;function BabelRegExp(e,t,p){var o=RegExp(e,t);return r.set(o,p||r.get(e)),setPrototypeOf(o,BabelRegExp.prototype)}function buildGroups(e,t){var p=r.get(t);return Object.keys(p).reduce((function(r,t){var o=p[t];if("number"==typeof o)r[t]=e[o];else{for(var i=0;void 0===e[o[i]]&&i+1]+)>/g,(function(e,r){var t=o[r];return"$"+(Array.isArray(t)?t.join("$"):t)})))}if("function"==typeof p){var i=this;return e[Symbol.replace].call(this,t,(function(){var e=arguments;return"object"!=typeof e[e.length-1]&&(e=[].slice.call(e)).push(buildGroups(e,i)),p.apply(this,e)}))}return e[Symbol.replace].call(this,t,p)},_wrapRegExp.apply(this,arguments)}') }); diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers.js b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers.js index 99d9c34357dc4f..468f641ba385d3 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers.js +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers.js @@ -319,13 +319,12 @@ helpers.objectWithoutPropertiesLoose = helper("7.0.0-beta.0")` if (source == null) return {}; var target = {}; - var sourceKeys = Object.keys(source); - var key, i; - for (i = 0; i < sourceKeys.length; i++) { - key = sourceKeys[i]; - if (excluded.indexOf(key) >= 0) continue; - target[key] = source[key]; + for (var key in source) { + if (Object.prototype.hasOwnProperty.call(source, key)) { + if (excluded.indexOf(key) >= 0) continue; + target[key] = source[key]; + } } return target; diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers/usingCtx.js b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers/usingCtx.js index 2fadf2e5d4e247..b5265394d846e0 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers/usingCtx.js +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/lib/helpers/usingCtx.js @@ -8,8 +8,8 @@ function _usingCtx() { var _disposeSuppressedError = typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed) { var err = new Error(); err.name = "SuppressedError"; - err.suppressed = suppressed; err.error = error; + err.suppressed = suppressed; return err; }, empty = {}, @@ -33,6 +33,11 @@ function _usingCtx() { d: dispose, a: isAwait }); + } else if (isAwait) { + stack.push({ + d: value, + a: isAwait + }); } return value; } @@ -46,7 +51,7 @@ function _usingCtx() { while (resource = stack.pop()) { try { var resource, - disposalResult = resource.d.call(resource.v); + disposalResult = resource.d && resource.d.call(resource.v); if (resource.a) { return Promise.resolve(disposalResult).then(next, err); } @@ -57,7 +62,7 @@ function _usingCtx() { if (error !== empty) throw error; } function err(e) { - error = error !== empty ? new _disposeSuppressedError(error, e) : e; + error = error !== empty ? new _disposeSuppressedError(e, error) : e; return next(); } return next(); diff --git a/tools/node_modules/eslint/node_modules/@babel/helpers/package.json b/tools/node_modules/eslint/node_modules/@babel/helpers/package.json index 6a8362aa22a7d1..546de3488d6a52 100644 --- a/tools/node_modules/eslint/node_modules/@babel/helpers/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@babel/helpers", - "version": "7.24.4", + "version": "7.24.5", "description": "Collection of helper functions used by Babel transforms.", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-helpers", @@ -16,13 +16,13 @@ "main": "./lib/index.js", "dependencies": { "@babel/template": "^7.24.0", - "@babel/traverse": "^7.24.1", - "@babel/types": "^7.24.0" + "@babel/traverse": "^7.24.5", + "@babel/types": "^7.24.5" }, "devDependencies": { - "@babel/generator": "^7.24.4", + "@babel/generator": "^7.24.5", "@babel/helper-plugin-test-runner": "^7.24.1", - "@babel/parser": "^7.24.4", + "@babel/parser": "^7.24.5", "regenerator-runtime": "^0.14.0" }, "engines": { diff --git a/tools/node_modules/eslint/node_modules/@babel/highlight/lib/index.js b/tools/node_modules/eslint/node_modules/@babel/highlight/lib/index.js index 42ed89fbc598a6..944a0433f1094b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/highlight/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/highlight/lib/index.js @@ -9,7 +9,7 @@ var _jsTokens = require("js-tokens"); var _helperValidatorIdentifier = require("@babel/helper-validator-identifier"); var _picocolors = _interopRequireWildcard(require("picocolors"), true); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } -function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } +function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } const colors = typeof process === "object" && (process.env.FORCE_COLOR === "0" || process.env.FORCE_COLOR === "false") ? (0, _picocolors.createColors)(false) : _picocolors.default; const compose = (f, g) => v => f(g(v)); const sometimesKeywords = new Set(["as", "async", "from", "get", "of", "set"]); @@ -36,7 +36,7 @@ let tokenize; if ((0, _helperValidatorIdentifier.isKeyword)(token.value) || (0, _helperValidatorIdentifier.isStrictReservedWord)(token.value, true) || sometimesKeywords.has(token.value)) { return "keyword"; } - if (JSX_TAG.test(token.value) && (text[offset - 1] === "<" || text.slice(offset - 2, offset) == " type === "UpdateExpression" ? NodeDescriptions.UpdateExpression[String(prefix)] : NodeDescriptions[type]; +const toNodeDescription = node => node.type === "UpdateExpression" ? NodeDescriptions.UpdateExpression[`${node.prefix}`] : NodeDescriptions[node.type]; var StandardErrors = { AccessorIsGenerator: ({ kind @@ -293,6 +290,7 @@ var StandardErrors = { UnterminatedRegExp: "Unterminated regular expression.", UnterminatedString: "Unterminated string constant.", UnterminatedTemplate: "Unterminated template.", + UsingDeclarationExport: "Using declaration cannot be exported.", UsingDeclarationHasBindingPattern: "Using declaration cannot have destructuring patterns.", VarRedeclaration: ({ identifierName @@ -582,6 +580,10 @@ var estree = superClass => class ESTreeParserMixin extends superClass { } return this.finishNode(node, "MethodDefinition"); } + nameIsConstructor(key) { + if (key.type === "Literal") return key.value === "constructor"; + return super.nameIsConstructor(key); + } parseClassProperty(...args) { const propertyNode = super.parseClassProperty(...args); { @@ -646,9 +648,9 @@ var estree = superClass => class ESTreeParserMixin extends superClass { } } toAssignableObjectExpressionProp(prop, isLast, isLHS) { - if (prop.kind === "get" || prop.kind === "set") { + if (prop.type === "Property" && (prop.kind === "get" || prop.kind === "set")) { this.raise(Errors.PatternHasAccessor, prop.key); - } else if (prop.method) { + } else if (prop.type === "Property" && prop.method) { this.raise(Errors.PatternHasMethod, prop.key); } else { super.toAssignableObjectExpressionProp(prop, isLast, isLHS); @@ -660,9 +662,9 @@ var estree = superClass => class ESTreeParserMixin extends superClass { node.type = "ImportExpression"; node.source = node.arguments[0]; if (this.hasPlugin("importAttributes") || this.hasPlugin("importAssertions")) { - var _node$arguments$, _node$arguments$2; - node.options = (_node$arguments$ = node.arguments[1]) != null ? _node$arguments$ : null; - node.attributes = (_node$arguments$2 = node.arguments[1]) != null ? _node$arguments$2 : null; + var _ref, _ref2; + node.options = (_ref = node.arguments[1]) != null ? _ref : null; + node.attributes = (_ref2 = node.arguments[1]) != null ? _ref2 : null; } delete node.arguments; delete node.callee; @@ -734,7 +736,7 @@ var estree = superClass => class ESTreeParserMixin extends superClass { return node.type === "Property" && node.kind === "init" && !node.method; } isObjectMethod(node) { - return node.method || node.kind === "get" || node.kind === "set"; + return node.type === "Property" && (node.method || node.kind === "get" || node.kind === "set"); } finishNodeAt(node, type, endLoc) { return toESTreeLocation(super.finishNodeAt(node, type, endLoc)); @@ -1637,7 +1639,9 @@ class CommentsParser extends BaseParser { const { commentsLen } = this.state; - if (this.comments.length != commentsLen) this.comments.length = commentsLen; + if (this.comments.length !== commentsLen) { + this.comments.length = commentsLen; + } this.comments.push(comment); this.state.commentsLen++; } @@ -4811,50 +4815,56 @@ var flow = superClass => class FlowParserMixin extends superClass { this.state.noAnonFunctionType = oldNoAnonFunctionType; return type; case 47: - node.typeParameters = this.flowParseTypeParameterDeclaration(); - this.expect(10); - tmp = this.flowParseFunctionTypeParams(); - node.params = tmp.params; - node.rest = tmp.rest; - node.this = tmp._this; - this.expect(11); - this.expect(19); - node.returnType = this.flowParseType(); - return this.finishNode(node, "FunctionTypeAnnotation"); + { + const node = this.startNode(); + node.typeParameters = this.flowParseTypeParameterDeclaration(); + this.expect(10); + tmp = this.flowParseFunctionTypeParams(); + node.params = tmp.params; + node.rest = tmp.rest; + node.this = tmp._this; + this.expect(11); + this.expect(19); + node.returnType = this.flowParseType(); + return this.finishNode(node, "FunctionTypeAnnotation"); + } case 10: - this.next(); - if (!this.match(11) && !this.match(21)) { - if (tokenIsIdentifier(this.state.type) || this.match(78)) { - const token = this.lookahead().type; - isGroupedType = token !== 17 && token !== 14; - } else { - isGroupedType = true; + { + const node = this.startNode(); + this.next(); + if (!this.match(11) && !this.match(21)) { + if (tokenIsIdentifier(this.state.type) || this.match(78)) { + const token = this.lookahead().type; + isGroupedType = token !== 17 && token !== 14; + } else { + isGroupedType = true; + } } - } - if (isGroupedType) { - this.state.noAnonFunctionType = false; - type = this.flowParseType(); - this.state.noAnonFunctionType = oldNoAnonFunctionType; - if (this.state.noAnonFunctionType || !(this.match(12) || this.match(11) && this.lookahead().type === 19)) { - this.expect(11); - return type; + if (isGroupedType) { + this.state.noAnonFunctionType = false; + type = this.flowParseType(); + this.state.noAnonFunctionType = oldNoAnonFunctionType; + if (this.state.noAnonFunctionType || !(this.match(12) || this.match(11) && this.lookahead().type === 19)) { + this.expect(11); + return type; + } else { + this.eat(12); + } + } + if (type) { + tmp = this.flowParseFunctionTypeParams([this.reinterpretTypeAsFunctionTypeParam(type)]); } else { - this.eat(12); + tmp = this.flowParseFunctionTypeParams(); } + node.params = tmp.params; + node.rest = tmp.rest; + node.this = tmp._this; + this.expect(11); + this.expect(19); + node.returnType = this.flowParseType(); + node.typeParameters = null; + return this.finishNode(node, "FunctionTypeAnnotation"); } - if (type) { - tmp = this.flowParseFunctionTypeParams([this.reinterpretTypeAsFunctionTypeParam(type)]); - } else { - tmp = this.flowParseFunctionTypeParams(); - } - node.params = tmp.params; - node.rest = tmp.rest; - node.this = tmp._this; - this.expect(11); - this.expect(19); - node.returnType = this.flowParseType(); - node.typeParameters = null; - return this.finishNode(node, "FunctionTypeAnnotation"); case 133: return this.parseLiteral(this.state.value, "StringLiteralTypeAnnotation"); case 85: @@ -5170,7 +5180,7 @@ var flow = superClass => class FlowParserMixin extends superClass { const arrows = []; while (stack.length !== 0) { const node = stack.pop(); - if (node.type === "ArrowFunctionExpression") { + if (node.type === "ArrowFunctionExpression" && node.body.type !== "BlockStatement") { if (node.typeParameters || !node.returnType) { this.finishArrowValidation(node); } else { @@ -5207,18 +5217,18 @@ var flow = superClass => class FlowParserMixin extends superClass { return result; } parseParenItem(node, startLoc) { - node = super.parseParenItem(node, startLoc); + const newNode = super.parseParenItem(node, startLoc); if (this.eat(17)) { - node.optional = true; + newNode.optional = true; this.resetEndLocation(node); } if (this.match(14)) { const typeCastNode = this.startNodeAt(startLoc); - typeCastNode.expression = node; + typeCastNode.expression = newNode; typeCastNode.typeAnnotation = this.flowParseTypeAnnotation(); return this.finishNode(typeCastNode, "TypeCastExpression"); } - return node; + return newNode; } assertModuleNodeAllowed(node) { if (node.type === "ImportDeclaration" && (node.importKind === "type" || node.importKind === "typeof") || node.type === "ExportNamedDeclaration" && node.exportKind === "type" || node.type === "ExportAllDeclaration" && node.exportKind === "type") { @@ -6591,7 +6601,7 @@ var jsx = superClass => class JSXParserMixin extends superClass { } else { let count = 0; let semi = false; - while (count++ < 10 && this.state.pos < this.length && !(semi = this.codePointAtPos(this.state.pos) == 59)) { + while (count++ < 10 && this.state.pos < this.length && !(semi = this.codePointAtPos(this.state.pos) === 59)) { ++this.state.pos; } if (semi) { @@ -6753,7 +6763,7 @@ var jsx = superClass => class JSXParserMixin extends superClass { children.push(this.jsxParseElementAt(startLoc)); break; case 141: - children.push(this.parseExprAtom()); + children.push(this.parseLiteral(this.state.value, "JSXText")); break; case 5: { @@ -6810,9 +6820,7 @@ var jsx = superClass => class JSXParserMixin extends superClass { context[context.length - 1] = newContext; } parseExprAtom(refExpressionErrors) { - if (this.match(141)) { - return this.parseLiteral(this.state.value, "JSXText"); - } else if (this.match(142)) { + if (this.match(142)) { return this.jsxParseElement(); } else if (this.match(47) && this.input.charCodeAt(this.state.pos) !== 33) { this.replaceToken(142); @@ -6893,14 +6901,14 @@ class TypeScriptScopeHandler extends ScopeHandler { return new TypeScriptScope(flags); } enter(flags) { - if (flags == 256) { + if (flags === 256) { this.importsStack.push(new Set()); } super.enter(flags); } exit() { const flags = super.exit(); - if (flags == 256) { + if (flags === 256) { this.importsStack.pop(); } return flags; @@ -7209,14 +7217,15 @@ class LValParser extends NodeUtils { return this.finishNode(prop, "RestElement"); } parseBindingProperty() { - const prop = this.startNode(); const { type, startLoc } = this.state; if (type === 21) { - return this.parseBindingRestProperty(prop); - } else if (type === 138) { + return this.parseBindingRestProperty(this.startNode()); + } + const prop = this.startNode(); + if (type === 138) { this.expectPlugin("destructuringPrivate", startLoc); this.classScope.usePrivateName(this.state.value, startLoc); prop.key = this.parsePrivateName(); @@ -9066,13 +9075,14 @@ var typescript = superClass => class TypeScriptParserMixin extends superClass { parseExport(node, decorators) { if (this.match(83)) { this.next(); + const nodeImportEquals = node; let maybeDefaultIdentifier = null; if (this.isContextual(130) && this.isPotentialImportPhase(false)) { - maybeDefaultIdentifier = this.parseMaybeImportPhase(node, false); + maybeDefaultIdentifier = this.parseMaybeImportPhase(nodeImportEquals, false); } else { - node.importKind = "value"; + nodeImportEquals.importKind = "value"; } - return this.tsParseImportEqualsDeclaration(node, maybeDefaultIdentifier, true); + return this.tsParseImportEqualsDeclaration(nodeImportEquals, maybeDefaultIdentifier, true); } else if (this.eat(29)) { const assign = node; assign.expression = super.parseExpression(); @@ -9244,9 +9254,9 @@ var typescript = superClass => class TypeScriptParserMixin extends superClass { return result.node; } parseParenItem(node, startLoc) { - node = super.parseParenItem(node, startLoc); + const newNode = super.parseParenItem(node, startLoc); if (this.eat(17)) { - node.optional = true; + newNode.optional = true; this.resetEndLocation(node); } if (this.match(14)) { @@ -9355,7 +9365,9 @@ var typescript = superClass => class TypeScriptParserMixin extends superClass { } declareClassPrivateMethodInScope(node, kind) { if (node.type === "TSDeclareMethod") return; - if (node.type === "MethodDefinition" && !node.value.body) return; + if (node.type === "MethodDefinition" && !hasOwnProperty.call(node.value, "body")) { + return; + } super.declareClassPrivateMethodInScope(node, kind); } parseClassSuper(node) { @@ -9907,9 +9919,12 @@ var placeholders = superClass => class PlaceholdersParserMixin extends superClas } } finishPlaceholder(node, expectedNode) { - const isFinished = !!(node.expectedNode && node.type === "Placeholder"); - node.expectedNode = expectedNode; - return isFinished ? node : this.finishNode(node, "Placeholder"); + let placeholder = node; + if (!placeholder.expectedNode || !placeholder.type) { + placeholder = this.finishNode(placeholder, "Placeholder"); + } + placeholder.expectedNode = expectedNode; + return placeholder; } getTokenFromCode(code) { if (code === 37 && this.input.charCodeAt(this.state.pos + 1) === 37) { @@ -9969,8 +9984,9 @@ var placeholders = superClass => class PlaceholdersParserMixin extends superClas return this.finishNode(stmt, "LabeledStatement"); } this.semicolon(); - node.name = expr.name; - return this.finishPlaceholder(node, "Statement"); + const stmtPlaceholder = node; + stmtPlaceholder.name = expr.name; + return this.finishPlaceholder(stmtPlaceholder, "Statement"); } parseBlock(allowDirectives, createNewLexicalScope, afterBlockParse) { return this.parsePlaceholder("BlockStatement") || super.parseBlock(allowDirectives, createNewLexicalScope, afterBlockParse); @@ -10003,17 +10019,18 @@ var placeholders = superClass => class PlaceholdersParserMixin extends superClas parseExport(node, decorators) { const placeholder = this.parsePlaceholder("Identifier"); if (!placeholder) return super.parseExport(node, decorators); + const node2 = node; if (!this.isContextual(98) && !this.match(12)) { - node.specifiers = []; - node.source = null; - node.declaration = this.finishPlaceholder(placeholder, "Declaration"); - return this.finishNode(node, "ExportNamedDeclaration"); + node2.specifiers = []; + node2.source = null; + node2.declaration = this.finishPlaceholder(placeholder, "Declaration"); + return this.finishNode(node2, "ExportNamedDeclaration"); } this.expectPlugin("exportDefaultFrom"); const specifier = this.startNode(); specifier.exported = placeholder; - node.specifiers = [this.finishNode(specifier, "ExportDefaultSpecifier")]; - return super.parseExport(node, decorators); + node2.specifiers = [this.finishNode(specifier, "ExportDefaultSpecifier")]; + return super.parseExport(node2, decorators); } isExportDefaultSpecifier() { if (this.match(65)) { @@ -11313,14 +11330,16 @@ class ExpressionParser extends LValParser { } parseTemplate(isTagged) { const node = this.startNode(); - node.expressions = []; let curElt = this.parseTemplateElement(isTagged); - node.quasis = [curElt]; + const quasis = [curElt]; + const substitutions = []; while (!curElt.tail) { - node.expressions.push(this.parseTemplateSubstitution()); + substitutions.push(this.parseTemplateSubstitution()); this.readTemplateContinuation(); - node.quasis.push(curElt = this.parseTemplateElement(isTagged)); + quasis.push(curElt = this.parseTemplateElement(isTagged)); } + node.expressions = substitutions; + node.quasis = quasis; return this.finishNode(node, "TemplateLiteral"); } parseTemplateSubstitution() { @@ -11408,8 +11427,11 @@ class ExpressionParser extends LValParser { let isGenerator = this.eat(55); this.parsePropertyNamePrefixOperator(prop); const containsEsc = this.state.containsEsc; - const key = this.parsePropertyName(prop, refExpressionErrors); + this.parsePropertyName(prop, refExpressionErrors); if (!isGenerator && !containsEsc && this.maybeAsyncOrAccessorProp(prop)) { + const { + key + } = prop; const keyName = key.name; if (keyName === "async" && !this.hasPrecedingLineBreak()) { isAsync = true; @@ -11544,7 +11566,6 @@ class ExpressionParser extends LValParser { prop.computed = false; } } - return prop.key; } initFunction(node, isAsync) { node.id = null; @@ -12954,8 +12975,11 @@ class StatementParser extends ExpressionParser { isClassMethod() { return this.match(10); } + nameIsConstructor(key) { + return key.type === "Identifier" && key.name === "constructor" || key.type === "StringLiteral" && key.value === "constructor"; + } isNonstaticConstructor(method) { - return !method.computed && !method.static && (method.key.name === "constructor" || method.key.value === "constructor"); + return !method.computed && !method.static && this.nameIsConstructor(method.key); } parseClassBody(hadSuperClass, oldStrict) { this.classScope.enter(); @@ -13057,9 +13081,10 @@ class StatementParser extends ExpressionParser { this.pushClassMethod(classBody, publicMethod, true, false, false, false); return; } - const isContextual = tokenIsIdentifier(this.state.type) && !this.state.containsEsc; - const isPrivate = this.match(138); + const isContextual = !this.state.containsEsc && tokenIsIdentifier(this.state.type); const key = this.parseClassElementName(member); + const maybeContextualKw = isContextual ? key.name : null; + const isPrivate = this.isPrivateName(key); const maybeQuestionTokenStartLoc = this.state.startLoc; this.parsePostMemberNameModifiers(publicMember); if (this.isClassMethod()) { @@ -13088,7 +13113,7 @@ class StatementParser extends ExpressionParser { } else { this.pushClassProperty(classBody, publicProp); } - } else if (isContextual && key.name === "async" && !this.isLineTerminator()) { + } else if (maybeContextualKw === "async" && !this.isLineTerminator()) { this.resetPreviousNodeTrailingComments(key); const isGenerator = this.eat(55); if (publicMember.optional) { @@ -13106,9 +13131,9 @@ class StatementParser extends ExpressionParser { } this.pushClassMethod(classBody, publicMethod, isGenerator, true, false, false); } - } else if (isContextual && (key.name === "get" || key.name === "set") && !(this.match(55) && this.isLineTerminator())) { + } else if ((maybeContextualKw === "get" || maybeContextualKw === "set") && !(this.match(55) && this.isLineTerminator())) { this.resetPreviousNodeTrailingComments(key); - method.kind = key.name; + method.kind = maybeContextualKw; const isPrivate = this.match(138); this.parseClassElementName(publicMethod); if (isPrivate) { @@ -13120,7 +13145,7 @@ class StatementParser extends ExpressionParser { this.pushClassMethod(classBody, publicMethod, false, false, false, false); } this.checkGetterSetterParams(publicMethod); - } else if (isContextual && key.name === "accessor" && !this.isLineTerminator()) { + } else if (maybeContextualKw === "accessor" && !this.isLineTerminator()) { this.expectPlugin("decoratorAutoAccessors"); this.resetPreviousNodeTrailingComments(key); const isPrivate = this.match(138); @@ -13152,7 +13177,8 @@ class StatementParser extends ExpressionParser { member.key = key; return key; } - return this.parsePropertyName(member); + this.parsePropertyName(member); + return member.key; } parseClassStaticBlock(classBody, member) { var _member$decorators; @@ -13171,7 +13197,7 @@ class StatementParser extends ExpressionParser { } } pushClassProperty(classBody, prop) { - if (!prop.computed && (prop.key.name === "constructor" || prop.key.value === "constructor")) { + if (!prop.computed && this.nameIsConstructor(prop.key)) { this.raise(Errors.ConstructorClassField, prop.key); } classBody.body.push(this.parseClassProperty(prop)); @@ -13182,11 +13208,8 @@ class StatementParser extends ExpressionParser { this.classScope.declarePrivateName(this.getPrivateNameSV(node.key), 0, node.key.loc.start); } pushClassAccessorProperty(classBody, prop, isPrivate) { - if (!isPrivate && !prop.computed) { - const key = prop.key; - if (key.name === "constructor" || key.value === "constructor") { - this.raise(Errors.ConstructorClassField, key); - } + if (!isPrivate && !prop.computed && this.nameIsConstructor(prop.key)) { + this.raise(Errors.ConstructorClassField, prop.key); } const node = this.parseClassAccessorProperty(prop); classBody.body.push(node); @@ -13322,7 +13345,8 @@ class StatementParser extends ExpressionParser { } maybeParseExportNamespaceSpecifier(node) { if (this.isContextual(93)) { - if (!node.specifiers) node.specifiers = []; + var _ref, _ref$specifiers; + (_ref$specifiers = (_ref = node).specifiers) != null ? _ref$specifiers : _ref.specifiers = []; const specifier = this.startNodeAt(this.state.lastTokStartLoc); this.next(); specifier.exported = this.parseModuleExportName(); @@ -13333,13 +13357,14 @@ class StatementParser extends ExpressionParser { } maybeParseExportNamedSpecifiers(node) { if (this.match(5)) { - if (!node.specifiers) node.specifiers = []; - const isTypeExport = node.exportKind === "type"; - node.specifiers.push(...this.parseExportSpecifiers(isTypeExport)); - node.source = null; - node.declaration = null; + const node2 = node; + if (!node2.specifiers) node2.specifiers = []; + const isTypeExport = node2.exportKind === "type"; + node2.specifiers.push(...this.parseExportSpecifiers(isTypeExport)); + node2.source = null; + node2.declaration = null; if (this.hasPlugin("importAssertions")) { - node.assertions = []; + node2.assertions = []; } return true; } @@ -13450,6 +13475,14 @@ class StatementParser extends ExpressionParser { return true; } } + if (this.isContextual(107)) { + this.raise(Errors.UsingDeclarationExport, this.state.startLoc); + return true; + } + if (this.isContextual(96) && this.startsAwaitUsing()) { + this.raise(Errors.UsingDeclarationExport, this.state.startLoc); + return true; + } return type === 74 || type === 75 || type === 68 || type === 80 || this.isLet() || this.isAsyncFunction(); } checkExport(node, checkNames, isDefault, isFrom) { @@ -13487,12 +13520,15 @@ class StatementParser extends ExpressionParser { } } } else if (node.declaration) { - if (node.declaration.type === "FunctionDeclaration" || node.declaration.type === "ClassDeclaration") { - const id = node.declaration.id; + const decl = node.declaration; + if (decl.type === "FunctionDeclaration" || decl.type === "ClassDeclaration") { + const { + id + } = decl; if (!id) throw new Error("Assertion failure"); this.checkDuplicateExports(node, id.name); - } else if (node.declaration.type === "VariableDeclaration") { - for (const declaration of node.declaration.declarations) { + } else if (decl.type === "VariableDeclaration") { + for (const declaration of decl.declarations) { this.checkDeclaration(declaration.id); } } diff --git a/tools/node_modules/eslint/node_modules/@babel/parser/package.json b/tools/node_modules/eslint/node_modules/@babel/parser/package.json index 39790fe094f621..8775b8b05fb744 100644 --- a/tools/node_modules/eslint/node_modules/@babel/parser/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/parser/package.json @@ -1,6 +1,6 @@ { "name": "@babel/parser", - "version": "7.24.4", + "version": "7.24.5", "description": "A JavaScript parser", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-parser", @@ -38,7 +38,7 @@ "@babel/helper-check-duplicate-nodes": "^7.22.5", "@babel/helper-fixtures": "^7.24.4", "@babel/helper-string-parser": "^7.24.1", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-validator-identifier": "^7.24.5", "charcodes": "^0.2.0" }, "bin": "./bin/babel-parser.js", diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/family.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/family.js index 505af29d963757..f4f5cc928fc7aa 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/family.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/family.js @@ -22,7 +22,6 @@ var _t = require("@babel/types"); const { getBindingIdentifiers: _getBindingIdentifiers, getOuterBindingIdentifiers: _getOuterBindingIdentifiers, - isDeclaration, numericLiteral, unaryExpression } = _t; @@ -301,7 +300,7 @@ function getBindingIdentifierPaths(duplicates = false, outerOnly = false) { } if (id.isExportDeclaration()) { const declaration = id.get("declaration"); - if (isDeclaration(declaration)) { + if (declaration.isDeclaration()) { search.push(declaration); } continue; diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js index c835fdc0371939..1372655782e7d6 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/index.js @@ -31,7 +31,7 @@ const debug = _debug("babel"); const REMOVED = exports.REMOVED = 1 << 0; const SHOULD_STOP = exports.SHOULD_STOP = 1 << 1; const SHOULD_SKIP = exports.SHOULD_SKIP = 1 << 2; -class NodePath { +const NodePath_Final = exports.default = class NodePath { constructor(hub, parent) { this.contexts = []; this.state = null; @@ -162,28 +162,27 @@ class NodePath { this._traverseFlags &= ~REMOVED; } } -} -Object.assign(NodePath.prototype, NodePath_ancestry, NodePath_inference, NodePath_replacement, NodePath_evaluation, NodePath_conversion, NodePath_introspection, NodePath_context, NodePath_removal, NodePath_modification, NodePath_family, NodePath_comments); +}; +Object.assign(NodePath_Final.prototype, NodePath_ancestry, NodePath_inference, NodePath_replacement, NodePath_evaluation, NodePath_conversion, NodePath_introspection, NodePath_context, NodePath_removal, NodePath_modification, NodePath_family, NodePath_comments); { - NodePath.prototype._guessExecutionStatusRelativeToDifferentFunctions = NodePath_introspection._guessExecutionStatusRelativeTo; + NodePath_Final.prototype._guessExecutionStatusRelativeToDifferentFunctions = NodePath_introspection._guessExecutionStatusRelativeTo; } for (const type of t.TYPES) { const typeKey = `is${type}`; const fn = t[typeKey]; - NodePath.prototype[typeKey] = function (opts) { + NodePath_Final.prototype[typeKey] = function (opts) { return fn(this.node, opts); }; - NodePath.prototype[`assert${type}`] = function (opts) { + NodePath_Final.prototype[`assert${type}`] = function (opts) { if (!fn(this.node, opts)) { throw new TypeError(`Expected node path of type ${type}`); } }; } -Object.assign(NodePath.prototype, NodePath_virtual_types_validator); +Object.assign(NodePath_Final.prototype, NodePath_virtual_types_validator); for (const type of Object.keys(virtualTypes)) { if (type[0] === "_") continue; if (!t.TYPES.includes(type)) t.TYPES.push(type); } -var _default = exports.default = NodePath; //# sourceMappingURL=index.js.map diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js index 391328db88498f..d79e570cb25699 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/introspection.js @@ -38,7 +38,8 @@ function matchesPattern(pattern, allowPartial) { return _matchesPattern(this.node, pattern, allowPartial); } function has(key) { - const val = this.node && this.node[key]; + var _this$node; + const val = (_this$node = this.node) == null ? void 0 : _this$node[key]; if (val && Array.isArray(val)) { return !!val.length; } else { diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js index 619ebee89e6479..f8a17add155ea7 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/lib/virtual-types-validator.js @@ -139,10 +139,12 @@ function isFlow() { } } function isRestProperty() { - return nodeIsRestElement(this.node) && this.parentPath && this.parentPath.isObjectPattern(); + var _this$parentPath; + return nodeIsRestElement(this.node) && ((_this$parentPath = this.parentPath) == null ? void 0 : _this$parentPath.isObjectPattern()); } function isSpreadProperty() { - return nodeIsRestElement(this.node) && this.parentPath && this.parentPath.isObjectExpression(); + var _this$parentPath2; + return nodeIsRestElement(this.node) && ((_this$parentPath2 = this.parentPath) == null ? void 0 : _this$parentPath2.isObjectExpression()); } function isForAwaitStatement() { return isForOfStatement(this.node, { diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/modification.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/modification.js index c0a6bec1ae3518..3a55cc76572c47 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/modification.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/path/modification.js @@ -112,18 +112,19 @@ function insertAfter(nodes_) { return isExpression(node) ? expressionStatement(node) : node; })); } else if (this.isNodeType("Expression") && !this.isJSXElement() && !parentPath.isJSXElement() || parentPath.isForStatement() && this.key === "init") { - if (this.node) { - const node = this.node; + const self = this; + if (self.node) { + const node = self.node; let { scope } = this; if (scope.path.isPattern()) { assertExpression(node); - this.replaceWith(callExpression(arrowFunctionExpression([], node), [])); - this.get("callee.body").insertAfter(nodes); - return [this]; + self.replaceWith(callExpression(arrowFunctionExpression([], node), [])); + self.get("callee.body").insertAfter(nodes); + return [self]; } - if (isHiddenInSequenceExpression(this)) { + if (isHiddenInSequenceExpression(self)) { nodes.unshift(node); } else if (isCallExpression(node) && isSuper(node.callee)) { nodes.unshift(node); diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js index 720771e0bc5637..ff56a2a5bef742 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/lib/scope/index.js @@ -276,6 +276,9 @@ const collectorVisitor = { if (path.has("id") && !path.get("id").node[NOT_LOCAL_BINDING]) { path.scope.registerBinding("local", path); } + }, + TSTypeAnnotation(path) { + path.skip(); } }; let uid = 0; diff --git a/tools/node_modules/eslint/node_modules/@babel/traverse/package.json b/tools/node_modules/eslint/node_modules/@babel/traverse/package.json index 7f5e26c02f67d3..c8ca91002db221 100644 --- a/tools/node_modules/eslint/node_modules/@babel/traverse/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/traverse/package.json @@ -1,6 +1,6 @@ { "name": "@babel/traverse", - "version": "7.24.1", + "version": "7.24.5", "description": "The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-traverse", @@ -16,19 +16,19 @@ }, "main": "./lib/index.js", "dependencies": { - "@babel/code-frame": "^7.24.1", - "@babel/generator": "^7.24.1", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.5", "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-function-name": "^7.23.0", "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.24.1", - "@babel/types": "^7.24.0", + "@babel/helper-split-export-declaration": "^7.24.5", + "@babel/parser": "^7.24.5", + "@babel/types": "^7.24.5", "debug": "^4.3.1", "globals": "^11.1.0" }, "devDependencies": { - "@babel/core": "^7.24.1", + "@babel/core": "^7.24.5", "@babel/helper-plugin-test-runner": "^7.24.1" }, "engines": { diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js index ba5b4816dc63d3..ccc250811f88ab 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/definitions/core.js @@ -130,7 +130,7 @@ defineType("CallExpression", { validate: (0, _utils.assertNodeType)("Expression", "Super", "V8IntrinsicIdentifier") }, arguments: { - validate: (0, _utils.chain)((0, _utils.assertValueType)("array"), (0, _utils.assertEach)((0, _utils.assertNodeType)("Expression", "SpreadElement", "JSXNamespacedName", "ArgumentPlaceholder"))) + validate: (0, _utils.chain)((0, _utils.assertValueType)("array"), (0, _utils.assertEach)((0, _utils.assertNodeType)("Expression", "SpreadElement", "ArgumentPlaceholder"))) } }, !process.env.BABEL_TYPES_8_BREAKING ? { optional: { @@ -1517,7 +1517,7 @@ defineType("OptionalCallExpression", { validate: (0, _utils.assertNodeType)("Expression") }, arguments: { - validate: (0, _utils.chain)((0, _utils.assertValueType)("array"), (0, _utils.assertEach)((0, _utils.assertNodeType)("Expression", "SpreadElement", "JSXNamespacedName", "ArgumentPlaceholder"))) + validate: (0, _utils.chain)((0, _utils.assertValueType)("array"), (0, _utils.assertEach)((0, _utils.assertNodeType)("Expression", "SpreadElement", "ArgumentPlaceholder"))) }, optional: { validate: !process.env.BABEL_TYPES_8_BREAKING ? (0, _utils.assertValueType)("boolean") : (0, _utils.chain)((0, _utils.assertValueType)("boolean"), (0, _utils.assertOptionalChainStart)()) diff --git a/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow b/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow index 2164ee96729fdb..d9cdf9ba5c8c3b 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow +++ b/tools/node_modules/eslint/node_modules/@babel/types/lib/index.js.flow @@ -86,7 +86,7 @@ declare class BabelNodeBreakStatement extends BabelNode { declare class BabelNodeCallExpression extends BabelNode { type: "CallExpression"; callee: BabelNodeExpression | BabelNodeSuper | BabelNodeV8IntrinsicIdentifier; - arguments: Array; + arguments: Array; optional?: true | false; typeArguments?: BabelNodeTypeParameterInstantiation; typeParameters?: BabelNodeTSTypeParameterInstantiation; @@ -240,7 +240,7 @@ declare class BabelNodeMemberExpression extends BabelNode { declare class BabelNodeNewExpression extends BabelNode { type: "NewExpression"; callee: BabelNodeExpression | BabelNodeSuper | BabelNodeV8IntrinsicIdentifier; - arguments: Array; + arguments: Array; optional?: true | false; typeArguments?: BabelNodeTypeParameterInstantiation; typeParameters?: BabelNodeTSTypeParameterInstantiation; @@ -601,7 +601,7 @@ declare class BabelNodeOptionalMemberExpression extends BabelNode { declare class BabelNodeOptionalCallExpression extends BabelNode { type: "OptionalCallExpression"; callee: BabelNodeExpression; - arguments: Array; + arguments: Array; optional: boolean; typeArguments?: BabelNodeTypeParameterInstantiation; typeParameters?: BabelNodeTSTypeParameterInstantiation; @@ -1686,7 +1686,7 @@ declare module "@babel/types" { declare export function directiveLiteral(value: string): BabelNodeDirectiveLiteral; declare export function blockStatement(body: Array, directives?: Array): BabelNodeBlockStatement; declare export function breakStatement(label?: BabelNodeIdentifier): BabelNodeBreakStatement; - declare export function callExpression(callee: BabelNodeExpression | BabelNodeSuper | BabelNodeV8IntrinsicIdentifier, _arguments: Array): BabelNodeCallExpression; + declare export function callExpression(callee: BabelNodeExpression | BabelNodeSuper | BabelNodeV8IntrinsicIdentifier, _arguments: Array): BabelNodeCallExpression; declare export function catchClause(param?: BabelNodeIdentifier | BabelNodeArrayPattern | BabelNodeObjectPattern, body: BabelNodeBlockStatement): BabelNodeCatchClause; declare export function conditionalExpression(test: BabelNodeExpression, consequent: BabelNodeExpression, alternate: BabelNodeExpression): BabelNodeConditionalExpression; declare export function continueStatement(label?: BabelNodeIdentifier): BabelNodeContinueStatement; @@ -1709,7 +1709,7 @@ declare module "@babel/types" { declare export function regExpLiteral(pattern: string, flags?: string): BabelNodeRegExpLiteral; declare export function logicalExpression(operator: "||" | "&&" | "??", left: BabelNodeExpression, right: BabelNodeExpression): BabelNodeLogicalExpression; declare export function memberExpression(object: BabelNodeExpression | BabelNodeSuper, property: BabelNodeExpression | BabelNodeIdentifier | BabelNodePrivateName, computed?: boolean, optional?: true | false): BabelNodeMemberExpression; - declare export function newExpression(callee: BabelNodeExpression | BabelNodeSuper | BabelNodeV8IntrinsicIdentifier, _arguments: Array): BabelNodeNewExpression; + declare export function newExpression(callee: BabelNodeExpression | BabelNodeSuper | BabelNodeV8IntrinsicIdentifier, _arguments: Array): BabelNodeNewExpression; declare export function program(body: Array, directives?: Array, sourceType?: "script" | "module", interpreter?: BabelNodeInterpreterDirective): BabelNodeProgram; declare export function objectExpression(properties: Array): BabelNodeObjectExpression; declare export function objectMethod(kind?: "method" | "get" | "set", key: BabelNodeExpression | BabelNodeIdentifier | BabelNodeStringLiteral | BabelNodeNumericLiteral | BabelNodeBigIntLiteral, params: Array, body: BabelNodeBlockStatement, computed?: boolean, generator?: boolean, async?: boolean): BabelNodeObjectMethod; @@ -1761,7 +1761,7 @@ declare module "@babel/types" { declare export function bigIntLiteral(value: string): BabelNodeBigIntLiteral; declare export function exportNamespaceSpecifier(exported: BabelNodeIdentifier): BabelNodeExportNamespaceSpecifier; declare export function optionalMemberExpression(object: BabelNodeExpression, property: BabelNodeExpression | BabelNodeIdentifier, computed?: boolean, optional: boolean): BabelNodeOptionalMemberExpression; - declare export function optionalCallExpression(callee: BabelNodeExpression, _arguments: Array, optional: boolean): BabelNodeOptionalCallExpression; + declare export function optionalCallExpression(callee: BabelNodeExpression, _arguments: Array, optional: boolean): BabelNodeOptionalCallExpression; declare export function classProperty(key: BabelNodeIdentifier | BabelNodeStringLiteral | BabelNodeNumericLiteral | BabelNodeBigIntLiteral | BabelNodeExpression, value?: BabelNodeExpression, typeAnnotation?: BabelNodeTypeAnnotation | BabelNodeTSTypeAnnotation | BabelNodeNoop, decorators?: Array, computed?: boolean, _static?: boolean): BabelNodeClassProperty; declare export function classAccessorProperty(key: BabelNodeIdentifier | BabelNodeStringLiteral | BabelNodeNumericLiteral | BabelNodeBigIntLiteral | BabelNodeExpression | BabelNodePrivateName, value?: BabelNodeExpression, typeAnnotation?: BabelNodeTypeAnnotation | BabelNodeTSTypeAnnotation | BabelNodeNoop, decorators?: Array, computed?: boolean, _static?: boolean): BabelNodeClassAccessorProperty; declare export function classPrivateProperty(key: BabelNodePrivateName, value?: BabelNodeExpression, decorators?: Array, _static?: boolean): BabelNodeClassPrivateProperty; @@ -2609,4 +2609,4 @@ declare module "@babel/types" { declare export function isVar(node: BabelNode): boolean declare export function matchesPattern(node: ?BabelNode, match: string | Array, allowPartial?: boolean): boolean declare export function validate(n: BabelNode, key: string, value: mixed): void; -} +} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@babel/types/package.json b/tools/node_modules/eslint/node_modules/@babel/types/package.json index b1d457d496932b..1831a192550f87 100644 --- a/tools/node_modules/eslint/node_modules/@babel/types/package.json +++ b/tools/node_modules/eslint/node_modules/@babel/types/package.json @@ -1,6 +1,6 @@ { "name": "@babel/types", - "version": "7.24.0", + "version": "7.24.5", "description": "Babel Types is a Lodash-esque utility library for AST nodes", "author": "The Babel Team (https://babel.dev/team)", "homepage": "https://babel.dev/docs/en/next/babel-types", @@ -24,13 +24,13 @@ } }, "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", + "@babel/helper-string-parser": "^7.24.1", + "@babel/helper-validator-identifier": "^7.24.5", "to-fast-properties": "^2.0.0" }, "devDependencies": { - "@babel/generator": "^7.23.6", - "@babel/parser": "^7.24.0", + "@babel/generator": "^7.24.5", + "@babel/parser": "^7.24.5", "glob": "^7.2.0" }, "engines": { diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.babelrc.json b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.babelrc.json deleted file mode 100644 index 2bffce2ed1414f..00000000000000 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.babelrc.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "plugins": [ - "@babel/plugin-syntax-class-properties" - ], - "presets": [ - [ - "@babel/preset-env", - { - "targets": { - "node": 10 - } - } - ] - ], - "env": { - "test": { - "plugins": [ "istanbul" ] - } - } -} diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.ncurc.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.ncurc.js deleted file mode 100644 index a9b98729c13a97..00000000000000 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/.ncurc.js +++ /dev/null @@ -1,8 +0,0 @@ -'use strict'; - -module.exports = { - reject: [ - // Wait until ash-nazg can work with it and use flat config - 'eslint-plugin-array-func' - ] -}; diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs index 6fdae65d385ff2..307117233f740f 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/dist/index.cjs.cjs @@ -84,6 +84,7 @@ const stripEncapsulatingBrackets = (container, isArr) => { /** * @typedef {{ * delimiter: string, + * delimiterLineBreak: string, * description: string, * descriptionEndLine?: Integer, * descriptionLines: JsdocDescriptionLine[], @@ -98,6 +99,7 @@ const stripEncapsulatingBrackets = (container, isArr) => { * postDelimiter: string, * tags: JsdocTag[], * terminal: string, + * preterminalLineBreak: string, * type: "JsdocBlock", * }} JsdocBlock */ @@ -125,13 +127,16 @@ const inlineTagToAST = ({ /** * Converts comment parser AST to ESTree format. - * @param {import('./index.js').JsdocBlockWithInline} jsdoc + * @param {import('.').JsdocBlockWithInline} jsdoc * @param {import('jsdoc-type-pratt-parser').ParseMode} mode * @param {object} opts + * @param {'compact'|'preserve'} [opts.spacing] By default, empty lines are + * compacted; set to 'preserve' to preserve empty comment lines. * @param {boolean} [opts.throwOnTypeParsingErrors] * @returns {JsdocBlock} */ const commentParserToESTree = (jsdoc, mode, { + spacing = 'compact', throwOnTypeParsingErrors = false } = {}) => { /** @@ -147,6 +152,11 @@ const commentParserToESTree = (jsdoc, mode, { stripEncapsulatingBrackets(lastTag.typeLines, true); } + // Remove single empty line description. + if (lastTag.descriptionLines.length === 1 && lastTag.descriptionLines[0].description === '') { + lastTag.descriptionLines.length = 0; + } + // With even a multiline type now in full, add parsing let parsedType = null; try { @@ -179,6 +189,7 @@ const commentParserToESTree = (jsdoc, mode, { /** @type {JsdocBlock} */ const ast = { delimiter: delimiterRoot, + delimiterLineBreak: '\n', description: '', descriptionLines: [], inlineTags: blockInlineTags.map(t => inlineTagToAST(t)), @@ -186,6 +197,7 @@ const commentParserToESTree = (jsdoc, mode, { tags: [], // `terminal` will be overwritten if there are other entries terminal: endRoot, + preterminalLineBreak: '\n', hasPreterminalDescription: 0, endLine, postDelimiter: postDelimiterRoot, @@ -203,6 +215,9 @@ const commentParserToESTree = (jsdoc, mode, { /** @type {JsdocTag|null} */ let lastTag = null; + + // Tracks when first valid tag description line is seen. + let tagDescriptionSeen = false; let descLineStateOpen = true; source.forEach((info, idx) => { const { @@ -239,7 +254,20 @@ const commentParserToESTree = (jsdoc, mode, { // to still process if (end && !tag) { ast.terminal = end; + + // Check if there are any description lines and if not then this is a + // one line comment block. + const isDelimiterLine = ast.descriptionLines.length === 0 && delimiter === '/**'; + + // Remove delimiter line break for one line comments blocks. + if (isDelimiterLine) { + ast.delimiterLineBreak = ''; + } if (description) { + // Remove terminal line break at end when description is defined. + if (ast.terminal === '*/') { + ast.preterminalLineBreak = ''; + } if (lastTag) { ast.hasPreterminalTagDescription = 1; } else { @@ -247,10 +275,14 @@ const commentParserToESTree = (jsdoc, mode, { } const holder = lastTag || ast; holder.description += (holder.description ? '\n' : '') + description; + + // Do not include `delimiter` / `postDelimiter` for opening + // delimiter line. + holder.descriptionLines.push({ - delimiter, + delimiter: isDelimiterLine ? '' : delimiter, description, - postDelimiter, + postDelimiter: isDelimiterLine ? '' : postDelimiter, initial, type: 'JsdocDescriptionLine' }); @@ -320,6 +352,7 @@ const commentParserToESTree = (jsdoc, mode, { }; tagObj.tag = tagObj.tag.replace(/^@/u, ''); lastTag = tagObj; + tagDescriptionSeen = false; tags.push(tagObj); } if (rawType) { @@ -341,29 +374,64 @@ const commentParserToESTree = (jsdoc, mode, { /** @type {JsdocTag} */ lastTag.rawType += /** @type {JsdocTag} */lastTag.rawType ? '\n' + rawType : rawType; } - if (description) { + + // In `compact` mode skip processing if `description` is an empty string + // unless lastTag is being processed. + // + // In `preserve` mode process when `description` is not the `empty string + // or the `delimiter` is not `/**` ensuring empty lines are preserved. + if (spacing === 'compact' && description || lastTag || spacing === 'preserve' && (description || delimiter !== '/**')) { const holder = lastTag || ast; - holder.descriptionLines.push(holder.descriptionLines.length ? { - delimiter, - description, - postDelimiter, - initial, - type: 'JsdocDescriptionLine' - } : lastTag ? { - delimiter: '', - description, - postDelimiter: '', - initial: '', - type: 'JsdocDescriptionLine' - } : { - delimiter, - description, - postDelimiter, - initial, - type: 'JsdocDescriptionLine' - }); + + // Check if there are any description lines and if not then this is a + // multi-line comment block with description on 0th line. Treat + // `delimiter` / `postDelimiter` / `initial` as being on a new line. + const isDelimiterLine = holder.descriptionLines.length === 0 && delimiter === '/**'; + + // Remove delimiter line break for one line comments blocks. + if (isDelimiterLine) { + ast.delimiterLineBreak = ''; + } + + // Track when the first description line is seen to avoid adding empty + // description lines for tag type lines. + tagDescriptionSeen || (tagDescriptionSeen = Boolean(lastTag && (rawType === '' || (rawType === null || rawType === void 0 ? void 0 : rawType.endsWith('}'))))); + if (lastTag) { + if (tagDescriptionSeen) { + // The first tag description line is a continuation after type / + // name parsing. + const isFirstDescriptionLine = holder.descriptionLines.length === 0; + + // For `compact` spacing must allow through first description line. + if (spacing === 'compact' && (description || isFirstDescriptionLine) || spacing === 'preserve') { + holder.descriptionLines.push({ + delimiter: isFirstDescriptionLine ? '' : delimiter, + description, + postDelimiter: isFirstDescriptionLine ? '' : postDelimiter, + initial: isFirstDescriptionLine ? '' : initial, + type: 'JsdocDescriptionLine' + }); + } + } + } else { + holder.descriptionLines.push({ + delimiter: isDelimiterLine ? '' : delimiter, + description, + postDelimiter: isDelimiterLine ? '' : postDelimiter, + initial: isDelimiterLine ? `` : initial, + type: 'JsdocDescriptionLine' + }); + } if (!tag) { - holder.description += !holder.description && !lastTag ? description : '\n' + description; + if (lastTag) { + // For `compact` spacing must filter out any empty description lines + // after the initial `holder.description` has content. + if (tagDescriptionSeen && !(spacing === 'compact' && holder.description && description === '')) { + holder.description += !holder.description ? description : '\n' + description; + } + } else { + holder.description += !holder.description ? description : '\n' + description; + } } } @@ -371,6 +439,11 @@ const commentParserToESTree = (jsdoc, mode, { if (end && tag) { ast.terminal = end; ast.hasPreterminalTagDescription = 1; + + // Remove terminal line break at end when tag is defined on last line. + if (ast.terminal === '*/') { + ast.preterminalLineBreak = ''; + } cleanUpLastTag( /** @type {JsdocTag} */lastTag); } }); @@ -386,17 +459,13 @@ const jsdocVisitorKeys = { JsdocInlineTag: [] }; -/** - * @typedef {import('./index.js').CommentHandler} CommentHandler - */ - /** * @param {{[name: string]: any}} settings - * @returns {CommentHandler} + * @returns {import('.').CommentHandler} */ const commentHandler = settings => { /** - * @type {CommentHandler} + * @type {import('.').CommentHandler} */ return (commentSelector, jsdoc) => { const { @@ -415,299 +484,197 @@ const commentHandler = settings => { }; }; -/** - * @param {string} str - * @returns {string} - */ -const toCamelCase = str => { - return str.toLowerCase().replaceAll(/^[a-z]/gu, init => { - return init.toUpperCase(); - }).replaceAll(/_(?[a-z])/gu, (_, n1, o, s, { - wordInit - }) => { - return wordInit.toUpperCase(); - }); +/** @type {Record} */ +const stringifiers = { + JsdocBlock, + /** + * @param {import('./commentParserToESTree').JsdocDescriptionLine} node + * @returns {string} + */ + JsdocDescriptionLine({ + initial, + delimiter, + postDelimiter, + description + }) { + return `${initial}${delimiter}${postDelimiter}${description}`; + }, + /** + * @param {import('./commentParserToESTree').JsdocTypeLine} node + * @returns {string} + */ + JsdocTypeLine({ + initial, + delimiter, + postDelimiter, + rawType + }) { + return `${initial}${delimiter}${postDelimiter}${rawType}`; + }, + /** + * @param {import('./commentParserToESTree').JsdocInlineTag} node + */ + JsdocInlineTag({ + format, + namepathOrURL, + tag, + text + }) { + return format === 'pipe' ? `{@${tag} ${namepathOrURL}|${text}}` : format === 'plain' ? `{@${tag} ${namepathOrURL}}` : format === 'prefix' ? `[${text}]{@${tag} ${namepathOrURL}}` + // "space" + : `{@${tag} ${namepathOrURL} ${text}}`; + }, + JsdocTag }; /** - * @param {RegExpMatchArray & { - * indices: { - * groups: { - * [key: string]: [number, number] - * } - * } - * groups: {[key: string]: string} - * }} match An inline tag regexp match. - * @returns {'pipe' | 'plain' | 'prefix' | 'space'} + * @todo convert for use by escodegen (until may be patched to support + * custom entries?). + * @param {import('./commentParserToESTree').JsdocBlock| + * import('./commentParserToESTree').JsdocDescriptionLine| + * import('./commentParserToESTree').JsdocTypeLine| + * import('./commentParserToESTree').JsdocTag| + * import('./commentParserToESTree').JsdocInlineTag| + * import('jsdoc-type-pratt-parser').RootResult + * } node + * @param {import('.').ESTreeToStringOptions} opts + * @throws {Error} + * @returns {string} */ -function determineFormat(match) { - const { - separator, - text - } = match.groups; - const [, textEnd] = match.indices.groups.text; - const [tagStart] = match.indices.groups.tag; - if (!text) { - return 'plain'; - } else if (separator === '|') { - return 'pipe'; - } else if (textEnd < tagStart) { - return 'prefix'; +function estreeToString(node, opts = {}) { + if (Object.prototype.hasOwnProperty.call(stringifiers, node.type)) { + return stringifiers[ + /** + * @type {import('./commentParserToESTree').JsdocBlock| + * import('./commentParserToESTree').JsdocDescriptionLine| + * import('./commentParserToESTree').JsdocTypeLine| + * import('./commentParserToESTree').JsdocTag} + */ + node.type](node, opts); } - return 'space'; + + // We use raw type instead but it is a key as other apps may wish to traverse + if (node.type.startsWith('JsdocType')) { + return opts.preferRawType ? '' : `{${jsdocTypePrattParser.stringify( /** @type {import('jsdoc-type-pratt-parser').RootResult} */ + node)}}`; + } + throw new Error(`Unhandled node type: ${node.type}`); } /** - * @typedef {import('./index.js').InlineTag} InlineTag + * @param {import('./commentParserToESTree').JsdocBlock} node + * @param {import('.').ESTreeToStringOptions} opts + * @returns {string} */ +function JsdocBlock(node, opts) { + const { + delimiter, + delimiterLineBreak, + descriptionLines, + initial, + postDelimiter, + preterminalLineBreak, + tags, + terminal + } = node; + const terminalPrepend = preterminalLineBreak !== '' ? `${preterminalLineBreak}${initial} ` : ''; + let result = `${initial}${delimiter}${postDelimiter}${delimiterLineBreak}`; + for (let i = 0; i < descriptionLines.length; i++) { + result += estreeToString(descriptionLines[i]); + if (i !== descriptionLines.length - 1 || tags.length) { + result += '\n'; + } + } + for (let i = 0; i < tags.length; i++) { + result += estreeToString(tags[i], opts); + if (i !== tags.length - 1) { + result += '\n'; + } + } + result += `${terminalPrepend}${terminal}`; + return result; +} /** - * Extracts inline tags from a description. - * @param {string} description - * @returns {InlineTag[]} Array of inline tags from the description. + * @param {import('./commentParserToESTree').JsdocTag} node + * @param {import('.').ESTreeToStringOptions} opts + * @returns {string} */ -function parseDescription(description) { - /** @type {InlineTag[]} */ - const result = []; - - // This could have been expressed in a single pattern, - // but having two avoids a potentially exponential time regex. +function JsdocTag(node, opts) { + const { + delimiter, + descriptionLines, + initial, + name, + parsedType, + postDelimiter, + postName, + postTag, + postType, + tag, + typeLines + } = node; + let result = `${initial}${delimiter}${postDelimiter}@${tag}${postTag}`; - const prefixedTextPattern = new RegExp(/(?:\[(?[^\]]+)\])\{@(?[^}\s]+)\s?(?[^}\s|]*)\}/gu, 'gud'); - // The pattern used to match for text after tag uses a negative lookbehind - // on the ']' char to avoid matching the prefixed case too. - const suffixedAfterPattern = new RegExp(/(?[^}\s]+)\s?(?[^}\s|]*)\s*(?[\s|])?\s*(?[^}]*)\}/gu, 'gud'); - const matches = [...description.matchAll(prefixedTextPattern), ...description.matchAll(suffixedAfterPattern)]; - for (const mtch of matches) { - const match = - /** - * @type {RegExpMatchArray & { - * indices: { - * groups: { - * [key: string]: [number, number] - * } - * } - * groups: {[key: string]: string} - * }} - */ - mtch; - const { - tag, - namepathOrURL, - text - } = match.groups; - const [start, end] = match.indices[0]; - const format = determineFormat(match); - result.push({ - tag, - namepathOrURL, - text, - format, - start, - end - }); + // Could do `rawType` but may have been changed; could also do + // `typeLines` but not as likely to be changed + // parsedType + // Comment this out later in favor of `parsedType` + // We can't use raw `typeLines` as first argument has delimiter on it + if (opts.preferRawType || !parsedType) { + if (typeLines.length) { + result += '{'; + for (let i = 0; i < typeLines.length; i++) { + result += estreeToString(typeLines[i]); + if (i !== typeLines.length - 1) { + result += '\n'; + } + } + result += '}'; + } + } else if (parsedType !== null && parsedType !== void 0 && parsedType.type.startsWith('JsdocType')) { + result += `{${jsdocTypePrattParser.stringify( /** @type {import('jsdoc-type-pratt-parser').RootResult} */ + parsedType)}}`; + } + result += name ? `${postType}${name}${postName}` : postType; + for (let i = 0; i < descriptionLines.length; i++) { + const descriptionLine = descriptionLines[i]; + result += estreeToString(descriptionLine); + if (i !== descriptionLines.length - 1) { + result += '\n'; + } } return result; } /** - * Splits the `{@prefix}` from remaining `Spec.lines[].token.description` - * into the `inlineTags` tokens, and populates `spec.inlineTags` - * @param {import('comment-parser').Block} block - * @returns {import('./index.js').JsdocBlockWithInline} + * Obtained originally from {@link https://github.com/eslint/eslint/blob/master/lib/util/source-code.js#L313}. + * + * @license MIT */ -function parseInlineTags(block) { - const inlineTags = - /** - * @type {(import('./commentParserToESTree.js').JsdocInlineTagNoType & { - * line?: import('./commentParserToESTree.js').Integer - * })[]} - */ - parseDescription(block.description); - - /** @type {import('./index.js').JsdocBlockWithInline} */ - block.inlineTags = inlineTags; - for (const tag of block.tags) { - /** - * @type {import('./index.js').JsdocTagWithInline} - */ - tag.inlineTags = parseDescription(tag.description); - } - return ( - /** - * @type {import('./index.js').JsdocBlockWithInline} - */ - block - ); -} -/* eslint-disable prefer-named-capture-group -- Temporary */ -const { - name: nameTokenizer, - tag: tagTokenizer, - type: typeTokenizer, - description: descriptionTokenizer -} = commentParser.tokenizers; +/** + * @typedef {import('eslint').AST.Token | import('estree').Comment | { + * type: import('eslint').AST.TokenType|"Line"|"Block"|"Shebang", + * range: [number, number], + * value: string + * }} Token + */ /** - * @param {import('comment-parser').Spec} spec - * @returns {boolean} + * @typedef {import('eslint').Rule.Node| + * import('@typescript-eslint/types').TSESTree.Node} ESLintOrTSNode */ -const hasSeeWithLink = spec => { - return spec.tag === 'see' && /\{@link.+?\}/u.test(spec.source[0].source); -}; -const defaultNoTypes = ['default', 'defaultvalue', 'description', 'example', 'file', 'fileoverview', 'license', 'overview', 'see', 'summary']; -const defaultNoNames = ['access', 'author', 'default', 'defaultvalue', 'description', 'example', 'exception', 'file', 'fileoverview', 'kind', 'license', 'overview', 'return', 'returns', 'since', 'summary', 'throws', 'version', 'variation']; -const optionalBrackets = /^\[(?[^=]*)=[^\]]*\]/u; -const preserveTypeTokenizer = typeTokenizer('preserve'); -const preserveDescriptionTokenizer = descriptionTokenizer('preserve'); -const plainNameTokenizer = nameTokenizer(); /** - * Can't import `comment-parser/es6/parser/tokenizers/index.js`, - * so we redefine here. - * @typedef {(spec: import('comment-parser').Spec) => - * import('comment-parser').Spec} CommentParserTokenizer + * @typedef {number} int */ /** - * @param {object} [cfg] - * @param {string[]} [cfg.noTypes] - * @param {string[]} [cfg.noNames] - * @returns {CommentParserTokenizer[]} - */ -const getTokenizers = ({ - noTypes = defaultNoTypes, - noNames = defaultNoNames -} = {}) => { - // trim - return [ - // Tag - tagTokenizer(), - /** - * Type tokenizer. - * @param {import('comment-parser').Spec} spec - * @returns {import('comment-parser').Spec} - */ - spec => { - if (noTypes.includes(spec.tag)) { - return spec; - } - return preserveTypeTokenizer(spec); - }, - /** - * Name tokenizer. - * @param {import('comment-parser').Spec} spec - * @returns {import('comment-parser').Spec} - */ - spec => { - if (spec.tag === 'template') { - // const preWS = spec.postTag; - const remainder = spec.source[0].tokens.description; - const pos = remainder.search(/(? -1) { - [, postName, description, lineEnd] = /** @type {RegExpMatchArray} */ - extra.match(/(\s*)([^\r]*)(\r)?/u); - } - if (optionalBrackets.test(name)) { - var _name$match; - name = - /** @type {string} */ - /** @type {RegExpMatchArray} */ - (_name$match = name.match(optionalBrackets)) === null || _name$match === void 0 || (_name$match = _name$match.groups) === null || _name$match === void 0 ? void 0 : _name$match.name; - spec.optional = true; - } else { - spec.optional = false; - } - spec.name = name; - const { - tokens - } = spec.source[0]; - tokens.name = name; - tokens.postName = postName; - tokens.description = description; - tokens.lineEnd = lineEnd || ''; - return spec; - } - if (noNames.includes(spec.tag) || hasSeeWithLink(spec)) { - return spec; - } - return plainNameTokenizer(spec); - }, - /** - * Description tokenizer. - * @param {import('comment-parser').Spec} spec - * @returns {import('comment-parser').Spec} - */ - spec => { - return preserveDescriptionTokenizer(spec); - }]; -}; - -/** - * Accepts a comment token or complete comment string and converts it into - * `comment-parser` AST. - * @param {string | {value: string}} commentOrNode - * @param {string} [indent] Whitespace - * @returns {import('./index.js').JsdocBlockWithInline} - */ -const parseComment = (commentOrNode, indent = '') => { - let block; - switch (typeof commentOrNode) { - case 'string': - // Preserve JSDoc block start/end indentation. - [block] = commentParser.parse(`${indent}${commentOrNode}`, { - // @see https://github.com/yavorskiy/comment-parser/issues/21 - tokenizers: getTokenizers() - }); - break; - case 'object': - // Preserve JSDoc block start/end indentation. - [block] = commentParser.parse(`${indent}/*${commentOrNode.value}*/`, { - // @see https://github.com/yavorskiy/comment-parser/issues/21 - tokenizers: getTokenizers() - }); - break; - default: - throw new TypeError(`'commentOrNode' is not a string or object.`); - } - return parseInlineTags(block); -}; - -/* eslint-disable jsdoc/imports-as-dependencies -- https://github.com/gajus/eslint-plugin-jsdoc/issues/1114 */ -/** - * Obtained originally from {@link https://github.com/eslint/eslint/blob/master/lib/util/source-code.js#L313}. - * - * @license MIT - */ - -/** - * @typedef {import('eslint').AST.Token | import('estree').Comment | { - * type: import('eslint').AST.TokenType|"Line"|"Block"|"Shebang", - * range: [number, number], - * value: string - * }} Token - */ - -/** - * @typedef {import('eslint').Rule.Node| - * import('@typescript-eslint/types').TSESTree.Node} ESLintOrTSNode - */ - -/** - * @typedef {number} int - */ - -/** - * Checks if the given token is a comment token or not. - * - * @param {Token} token - The token to check. - * @returns {boolean} `true` if the token is a comment token. + * Checks if the given token is a comment token or not. + * + * @param {Token} token - The token to check. + * @returns {boolean} `true` if the token is a comment token. */ const isCommentToken = token => { return token.type === 'Line' || token.type === 'Block' || token.type === 'Shebang'; @@ -747,24 +714,24 @@ const getTSFunctionComment = function (astNode) { const { parent } = astNode; - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!parent) { return astNode; } const grandparent = parent.parent; - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!grandparent) { return astNode; } const greatGrandparent = grandparent.parent; const greatGreatGrandparent = greatGrandparent && greatGrandparent.parent; - // istanbul ignore if + /* v8 ignore next 3 */ if ( /** @type {ESLintOrTSNode} */parent.type !== 'TSTypeAnnotation') { return astNode; } switch ( /** @type {ESLintOrTSNode} */grandparent.type) { - // @ts-expect-error + // @ts-expect-error -- For `ClassProperty`. case 'PropertyDefinition': case 'ClassProperty': case 'TSDeclareFunction': @@ -772,69 +739,67 @@ const getTSFunctionComment = function (astNode) { case 'TSPropertySignature': return grandparent; case 'ArrowFunctionExpression': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGrandparent) { return astNode; } - // istanbul ignore else if (greatGrandparent.type === 'VariableDeclarator' // && greatGreatGrandparent.parent.type === 'VariableDeclaration' ) { - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGreatGrandparent || !greatGreatGrandparent.parent) { return astNode; } return greatGreatGrandparent.parent; } - // istanbul ignore next + /* v8 ignore next */ return astNode; case 'FunctionExpression': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGreatGrandparent) { return astNode; } - // istanbul ignore else + /* v8 ignore next 3 */ if (greatGrandparent.type === 'MethodDefinition') { return greatGrandparent; } // Fallthrough default: - // istanbul ignore if + /* v8 ignore next 3 */ if (grandparent.type !== 'Identifier') { - // istanbul ignore next return astNode; } } - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGreatGrandparent) { return astNode; } - // istanbul ignore next + /* v8 ignore next */ switch (greatGrandparent.type) { case 'ArrowFunctionExpression': - // istanbul ignore else + /* v8 ignore next 6 */ if (greatGreatGrandparent.type === 'VariableDeclarator' && greatGreatGrandparent.parent.type === 'VariableDeclaration') { return greatGreatGrandparent.parent; } - // istanbul ignore next + /* v8 ignore next */ return astNode; case 'FunctionDeclaration': return greatGrandparent; case 'VariableDeclarator': - // istanbul ignore else + /* v8 ignore next 3 */ if (greatGreatGrandparent.type === 'VariableDeclaration') { return greatGreatGrandparent; } // Fallthrough default: - // istanbul ignore next + /* v8 ignore next */ return astNode; } }; @@ -862,7 +827,7 @@ const getReducedASTNode = function (node, sourceCode) { case 'TSEnumDeclaration': case 'ClassDeclaration': case 'FunctionDeclaration': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!parent) { return node; } @@ -873,7 +838,7 @@ const getReducedASTNode = function (node, sourceCode) { case 'ArrowFunctionExpression': case 'TSEmptyBodyFunctionExpression': case 'FunctionExpression': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!parent) { return node; } @@ -963,7 +928,7 @@ const findJSDocComment = (astNode, sourceCode, settings) => { break; } - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!tokenBefore || !currentNode.loc || !tokenBefore.loc) { return null; } @@ -992,163 +957,254 @@ const getJSDocComment = function (sourceCode, node, settings) { }; /** - * @typedef {import('./index.js').ESTreeToStringOptions} ESTreeToStringOptions + * @param {RegExpMatchArray & { + * indices: { + * groups: { + * [key: string]: [number, number] + * } + * } + * groups: {[key: string]: string} + * }} match An inline tag regexp match. + * @returns {'pipe' | 'plain' | 'prefix' | 'space'} */ +function determineFormat(match) { + const { + separator, + text + } = match.groups; + const [, textEnd] = match.indices.groups.text; + const [tagStart] = match.indices.groups.tag; + if (!text) { + return 'plain'; + } else if (separator === '|') { + return 'pipe'; + } else if (textEnd < tagStart) { + return 'prefix'; + } + return 'space'; +} -const stringifiers = { - /** - * @param {import('./commentParserToESTree.js').JsdocBlock} node - * @param {ESTreeToStringOptions} opts - * @param {string[]} descriptionLines - * @param {string[]} tags - * @returns {string} - */ - JsdocBlock({ - delimiter, - postDelimiter, - lineEnd, - initial, - terminal, - endLine - }, opts, descriptionLines, tags) { - var _descriptionLines$at, _tags$at; - const alreadyHasLine = descriptionLines.length && !tags.length && ((_descriptionLines$at = descriptionLines.at(-1)) === null || _descriptionLines$at === void 0 ? void 0 : _descriptionLines$at.endsWith('\n')) || tags.length && ((_tags$at = tags.at(-1)) === null || _tags$at === void 0 ? void 0 : _tags$at.endsWith('\n')); - return `${initial}${delimiter}${postDelimiter}${endLine ? ` -` : ''}${ - // Could use `node.description` (and `node.lineEnd`), but lines may have - // been modified - descriptionLines.length ? descriptionLines.join(lineEnd + '\n') + (tags.length ? lineEnd + '\n' : '') : ''}${tags.length ? tags.join(lineEnd + '\n') : ''}${endLine && !alreadyHasLine ? `${lineEnd} - ${initial}` : endLine ? ` ${initial}` : ''}${terminal}`; - }, +/** + * Extracts inline tags from a description. + * @param {string} description + * @returns {import('.').InlineTag[]} Array of inline tags from the description. + */ +function parseDescription(description) { + /** @type {import('.').InlineTag[]} */ + const result = []; + + // This could have been expressed in a single pattern, + // but having two avoids a potentially exponential time regex. + + const prefixedTextPattern = new RegExp(/(?:\[(?[^\]]+)\])\{@(?[^}\s]+)\s?(?[^}\s|]*)\}/gu, 'gud'); + // The pattern used to match for text after tag uses a negative lookbehind + // on the ']' char to avoid matching the prefixed case too. + const suffixedAfterPattern = new RegExp(/(?[^}\s]+)\s?(?[^}\s|]*)\s*(?[\s|])?\s*(?[^}]*)\}/gu, 'gud'); + const matches = [...description.matchAll(prefixedTextPattern), ...description.matchAll(suffixedAfterPattern)]; + for (const mtch of matches) { + const match = + /** + * @type {RegExpMatchArray & { + * indices: { + * groups: { + * [key: string]: [number, number] + * } + * } + * groups: {[key: string]: string} + * }} + */ + mtch; + const { + tag, + namepathOrURL, + text + } = match.groups; + const [start, end] = match.indices[0]; + const format = determineFormat(match); + result.push({ + tag, + namepathOrURL, + text, + format, + start, + end + }); + } + return result; +} + +/** + * Splits the `{@prefix}` from remaining `Spec.lines[].token.description` + * into the `inlineTags` tokens, and populates `spec.inlineTags` + * @param {import('comment-parser').Block} block + * @returns {import('.').JsdocBlockWithInline} + */ +function parseInlineTags(block) { + const inlineTags = /** - * @param {import('./commentParserToESTree.js').JsdocDescriptionLine} node - * @returns {string} + * @type {(import('./commentParserToESTree').JsdocInlineTagNoType & { + * line?: import('./commentParserToESTree').Integer + * })[]} */ - JsdocDescriptionLine({ - initial, - delimiter, - postDelimiter, - description - }) { - return `${initial}${delimiter}${postDelimiter}${description}`; - }, + parseDescription(block.description); + + /** @type {import('.').JsdocBlockWithInline} */ + block.inlineTags = inlineTags; + for (const tag of block.tags) { + /** + * @type {import('.').JsdocTagWithInline} + */ + tag.inlineTags = parseDescription(tag.description); + } + return ( + /** + * @type {import('.').JsdocBlockWithInline} + */ + block + ); +} + +/* eslint-disable prefer-named-capture-group -- Temporary */ +const { + name: nameTokenizer, + tag: tagTokenizer, + type: typeTokenizer, + description: descriptionTokenizer +} = commentParser.tokenizers; + +/** + * @param {import('comment-parser').Spec} spec + * @returns {boolean} + */ +const hasSeeWithLink = spec => { + return spec.tag === 'see' && /\{@link.+?\}/u.test(spec.source[0].source); +}; +const defaultNoTypes = ['default', 'defaultvalue', 'description', 'example', 'file', 'fileoverview', 'license', 'overview', 'see', 'summary']; +const defaultNoNames = ['access', 'author', 'default', 'defaultvalue', 'description', 'example', 'exception', 'file', 'fileoverview', 'kind', 'license', 'overview', 'return', 'returns', 'since', 'summary', 'throws', 'version', 'variation']; +const optionalBrackets = /^\[(?[^=]*)=[^\]]*\]/u; +const preserveTypeTokenizer = typeTokenizer('preserve'); +const preserveDescriptionTokenizer = descriptionTokenizer('preserve'); +const plainNameTokenizer = nameTokenizer(); + +/** + * Can't import `comment-parser/es6/parser/tokenizers/index.js`, + * so we redefine here. + * @typedef {(spec: import('comment-parser').Spec) => + * import('comment-parser').Spec} CommentParserTokenizer + */ + +/** + * @param {object} [cfg] + * @param {string[]} [cfg.noTypes] + * @param {string[]} [cfg.noNames] + * @returns {CommentParserTokenizer[]} + */ +const getTokenizers = ({ + noTypes = defaultNoTypes, + noNames = defaultNoNames +} = {}) => { + // trim + return [ + // Tag + tagTokenizer(), /** - * @param {import('./commentParserToESTree.js').JsdocTypeLine} node - * @returns {string} + * Type tokenizer. + * @param {import('comment-parser').Spec} spec + * @returns {import('comment-parser').Spec} */ - JsdocTypeLine({ - initial, - delimiter, - postDelimiter, - rawType - }) { - return `${initial}${delimiter}${postDelimiter}${rawType}`; + spec => { + if (noTypes.includes(spec.tag)) { + return spec; + } + return preserveTypeTokenizer(spec); }, /** - * @param {import('./commentParserToESTree.js').JsdocInlineTag} node + * Name tokenizer. + * @param {import('comment-parser').Spec} spec + * @returns {import('comment-parser').Spec} */ - JsdocInlineTag({ - format, - namepathOrURL, - tag, - text - }) { - return format === 'pipe' ? `{@${tag} ${namepathOrURL}|${text}}` : format === 'plain' ? `{@${tag} ${namepathOrURL}}` : format === 'prefix' ? `[${text}]{@${tag} ${namepathOrURL}}` - // "space" - : `{@${tag} ${namepathOrURL} ${text}}`; + spec => { + if (spec.tag === 'template') { + // const preWS = spec.postTag; + const remainder = spec.source[0].tokens.description; + const pos = remainder.search(/(? -1) { + [, postName, description, lineEnd] = /** @type {RegExpMatchArray} */ + extra.match(/(\s*)([^\r]*)(\r)?/u); + } + if (optionalBrackets.test(name)) { + var _name$match; + name = + /** @type {string} */ + /** @type {RegExpMatchArray} */ + (_name$match = name.match(optionalBrackets)) === null || _name$match === void 0 || (_name$match = _name$match.groups) === null || _name$match === void 0 ? void 0 : _name$match.name; + spec.optional = true; + } else { + spec.optional = false; + } + spec.name = name; + const { + tokens + } = spec.source[0]; + tokens.name = name; + tokens.postName = postName; + tokens.description = description; + tokens.lineEnd = lineEnd || ''; + return spec; + } + if (noNames.includes(spec.tag) || hasSeeWithLink(spec)) { + return spec; + } + return plainNameTokenizer(spec); }, /** - * @param {import('./commentParserToESTree.js').JsdocTag} node - * @param {ESTreeToStringOptions} opts - * @param {string} parsedType - * @param {string[]} typeLines - * @param {string[]} descriptionLines - * @returns {string} + * Description tokenizer. + * @param {import('comment-parser').Spec} spec + * @returns {import('comment-parser').Spec} */ - JsdocTag(node, opts, parsedType, typeLines, descriptionLines) { - const { - description, - name, - postName, - postTag, - postType, - initial, - delimiter, - postDelimiter, - tag - // , rawType - } = node; - return `${initial}${delimiter}${postDelimiter}@${tag}${postTag}${ - // Could do `rawType` but may have been changed; could also do - // `typeLines` but not as likely to be changed - // parsedType - // Comment this out later in favor of `parsedType` - // We can't use raw `typeLines` as first argument has delimiter on it - opts.preferRawType || !parsedType ? typeLines.length ? `{${typeLines.join('\n')}}` : '' : parsedType}${postType}${name ? `${name}${postName || (description ? '\n' : '')}` : ''}${descriptionLines.join('\n')}`; - } -}; -const visitorKeys = { - ...jsdocVisitorKeys, - ...jsdocTypePrattParser.visitorKeys + spec => { + return preserveDescriptionTokenizer(spec); + }]; }; /** - * @todo convert for use by escodegen (until may be patched to support - * custom entries?). - * @param {import('./commentParserToESTree.js').JsdocBlock| - * import('./commentParserToESTree.js').JsdocDescriptionLine| - * import('./commentParserToESTree.js').JsdocTypeLine| - * import('./commentParserToESTree.js').JsdocTag| - * import('./commentParserToESTree.js').JsdocInlineTag| - * import('jsdoc-type-pratt-parser').RootResult - * } node - * @param {ESTreeToStringOptions} opts - * @throws {Error} - * @returns {string} + * Accepts a comment token or complete comment string and converts it into + * `comment-parser` AST. + * @param {string | {value: string}} commentOrNode + * @param {string} [indent] Whitespace + * @returns {import('.').JsdocBlockWithInline} */ -function estreeToString(node, opts = {}) { - if (Object.prototype.hasOwnProperty.call(stringifiers, node.type)) { - const childNodeOrArray = visitorKeys[node.type]; - const args = /** @type {(string[]|string|null)[]} */ - childNodeOrArray.map(key => { - // @ts-expect-error - return Array.isArray(node[key]) - // @ts-expect-error - ? node[key].map(( - /** - * @type {import('./commentParserToESTree.js').JsdocBlock| - * import('./commentParserToESTree.js').JsdocDescriptionLine| - * import('./commentParserToESTree.js').JsdocTypeLine| - * import('./commentParserToESTree.js').JsdocTag| - * import('./commentParserToESTree.js').JsdocInlineTag} - */ - item) => { - return estreeToString(item, opts); - }) - // @ts-expect-error - : node[key] === undefined || node[key] === null ? null - // @ts-expect-error - : estreeToString(node[key], opts); - }); - return stringifiers[ - /** - * @type {import('./commentParserToESTree.js').JsdocBlock| - * import('./commentParserToESTree.js').JsdocDescriptionLine| - * import('./commentParserToESTree.js').JsdocTypeLine| - * import('./commentParserToESTree.js').JsdocTag} - */ - node.type](node, opts, - // @ts-expect-error - ...args); - } +const parseComment = (commentOrNode, indent = '') => { + let block; + switch (typeof commentOrNode) { + case 'string': + // Preserve JSDoc block start/end indentation. + [block] = commentParser.parse(`${indent}${commentOrNode}`, { + // @see https://github.com/yavorskiy/comment-parser/issues/21 + tokenizers: getTokenizers() + }); + break; + case 'object': + if (commentOrNode === null) { + throw new TypeError(`'commentOrNode' is not a string or object.`); + } - // We use raw type instead but it is a key as other apps may wish to traverse - if (node.type.startsWith('JsdocType')) { - return opts.preferRawType ? '' : `{${jsdocTypePrattParser.stringify( /** @type {import('jsdoc-type-pratt-parser').RootResult} */ - node)}}`; + // Preserve JSDoc block start/end indentation. + [block] = commentParser.parse(`${indent}/*${commentOrNode.value}*/`, { + // @see https://github.com/yavorskiy/comment-parser/issues/21 + tokenizers: getTokenizers() + }); + break; + default: + throw new TypeError(`'commentOrNode' is not a string or object.`); } - throw new Error(`Unhandled node type: ${node.type}`); -} + return parseInlineTags(block); +}; Object.defineProperty(exports, "jsdocTypeVisitorKeys", { enumerable: true, @@ -1168,7 +1224,6 @@ exports.hasSeeWithLink = hasSeeWithLink; exports.jsdocVisitorKeys = jsdocVisitorKeys; exports.parseComment = parseComment; exports.parseInlineTags = parseInlineTags; -exports.toCamelCase = toCamelCase; Object.keys(jsdocTypePrattParser).forEach(function (k) { if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, { enumerable: true, diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json index 52c51e8d60045a..74e433d778c120 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/package.json @@ -1,36 +1,35 @@ { "name": "@es-joy/jsdoccomment", - "version": "0.42.0", + "version": "0.43.0", "author": "Brett Zamir ", "contributors": [], "description": "Maintained replacement for ESLint's deprecated SourceCode#getJSDocComment along with other jsdoc utilities", "license": "MIT", "keywords": [ + "ast", + "comment", + "estree", + "jsdoc", + "parser", "eslint", "sourcecode" ], "type": "module", "types": "./dist/index.d.ts", - "main": "./dist/index.cjs.cjs", "exports": { "types": "./dist/index.d.ts", "import": "./src/index.js", "require": "./dist/index.cjs.cjs" }, - "c8": { - "reporter": [ - "lcov", - "text" - ], - "checkCoverage": true, - "branches": 100, - "statements": 100, - "lines": 100, - "functions": 100 - }, "browserslist": [ "cover 100%" ], + "typedocOptions": { + "dmtLinksService": { + "GitHub": "https://github.com/es-joy/jsdoccomment", + "NPM": "https://www.npmjs.com/package/@es-joy/jsdoccomment" + } + }, "repository": { "type": "git", "url": "git+https://github.com/es-joy/jsdoccomment.git" @@ -43,6 +42,9 @@ "node": ">=16" }, "dependencies": { + "@typescript-eslint/types": "^7.2.0", + "@types/eslint": "^8.56.5", + "@types/estree": "^1.0.5", "comment-parser": "1.4.1", "esquery": "^1.5.0", "jsdoc-type-pratt-parser": "~4.0.0" @@ -53,15 +55,12 @@ "@babel/preset-env": "^7.23.9", "@brettz9/eslint-plugin": "^1.0.4", "@rollup/plugin-babel": "^6.0.4", - "@types/chai": "^4.3.11", - "@types/eslint": "^8.56.2", "@types/esquery": "^1.5.3", "@types/estraverse": "^5.1.7", - "@types/estree": "^1.0.5", - "@types/mocha": "^10.0.6", - "@typescript-eslint/types": "^6.20.0", - "c8": "^9.1.0", - "chai": "^5.0.3", + "@typhonjs-build-test/esm-d-ts": "^0.3.0-next.1", + "@typhonjs-typedoc/typedoc-pkg": "^0.0.4", + "@vitest/coverage-v8": "^1.3.0", + "@vitest/ui": "^1.3.0", "eslint": "^8.56.0", "eslint-config-ash-nazg": "35.3.0", "eslint-config-standard": "^17.1.0", @@ -80,19 +79,25 @@ "eslint-plugin-unicorn": "^50.0.1", "espree": "^10.0.0", "estraverse": "^5.3.0", - "mocha": "^10.2.0", "rollup": "^4.9.6", - "typescript": "^5.3.3" + "typescript": "^5.4.2", + "vitest": "^1.3.0" }, + "files": [ + "/dist", + "/src", + "CHANGES.md", + "LICENSE-MIT.txt" + ], "scripts": { - "tsc": "tsc", - "open": "open ./coverage/lcov-report/index.html", - "build": "npm run rollup && tsc -p tsconfig-prod.json", - "rollup": "rollup -c", + "build": "rollup -c && npm run types", + "docs": "typedoc-pkg --api-link es", "eslint": "eslint --ext=js,cjs,md,html .", "lint": "npm run eslint --", - "mocha": "mocha --require chai/register-expect.js", - "c8": "c8 npm run mocha", - "test": "npm run lint && npm run build && npm run c8" + "open": "open ./coverage/index.html", + "test": "npm run lint && npm run build && vitest run --coverage", + "test-ui": "vitest --ui --coverage", + "tsc": "tsc", + "types": "esm-d-ts gen ./src/index.js --output ./dist/index.d.ts" } } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentHandler.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentHandler.js index fe0d317009c10b..455afdd2b4f56d 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentHandler.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentHandler.js @@ -8,17 +8,13 @@ import { commentParserToESTree, jsdocVisitorKeys } from './commentParserToESTree.js'; -/** - * @typedef {import('./index.js').CommentHandler} CommentHandler - */ - /** * @param {{[name: string]: any}} settings - * @returns {CommentHandler} + * @returns {import('.').CommentHandler} */ const commentHandler = (settings) => { /** - * @type {CommentHandler} + * @type {import('.').CommentHandler} */ return (commentSelector, jsdoc) => { const {mode} = settings; @@ -40,4 +36,4 @@ const commentHandler = (settings) => { }; }; -export default commentHandler; +export {commentHandler}; diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentParserToESTree.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentParserToESTree.js index 53bb44cb56974f..ba4c8981a771c5 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentParserToESTree.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/commentParserToESTree.js @@ -89,6 +89,7 @@ const stripEncapsulatingBrackets = (container, isArr) => { /** * @typedef {{ * delimiter: string, + * delimiterLineBreak: string, * description: string, * descriptionEndLine?: Integer, * descriptionLines: JsdocDescriptionLine[], @@ -103,6 +104,7 @@ const stripEncapsulatingBrackets = (container, isArr) => { * postDelimiter: string, * tags: JsdocTag[], * terminal: string, + * preterminalLineBreak: string, * type: "JsdocBlock", * }} JsdocBlock */ @@ -125,13 +127,16 @@ const inlineTagToAST = ({text, tag, format, namepathOrURL}) => ({ /** * Converts comment parser AST to ESTree format. - * @param {import('./index.js').JsdocBlockWithInline} jsdoc + * @param {import('.').JsdocBlockWithInline} jsdoc * @param {import('jsdoc-type-pratt-parser').ParseMode} mode * @param {object} opts + * @param {'compact'|'preserve'} [opts.spacing] By default, empty lines are + * compacted; set to 'preserve' to preserve empty comment lines. * @param {boolean} [opts.throwOnTypeParsingErrors] * @returns {JsdocBlock} */ const commentParserToESTree = (jsdoc, mode, { + spacing = 'compact', throwOnTypeParsingErrors = false } = {}) => { /** @@ -143,10 +148,17 @@ const commentParserToESTree = (jsdoc, mode, { // Strip out `}` that encapsulates and is not part of // the type stripEncapsulatingBrackets(lastTag); + if (lastTag.typeLines.length) { stripEncapsulatingBrackets(lastTag.typeLines, true); } + // Remove single empty line description. + if (lastTag.descriptionLines.length === 1 && + lastTag.descriptionLines[0].description === '') { + lastTag.descriptionLines.length = 0; + } + // With even a multiline type now in full, add parsing let parsedType = null; @@ -182,6 +194,7 @@ const commentParserToESTree = (jsdoc, mode, { /** @type {JsdocBlock} */ const ast = { delimiter: delimiterRoot, + delimiterLineBreak: '\n', description: '', descriptionLines: [], @@ -191,6 +204,7 @@ const commentParserToESTree = (jsdoc, mode, { tags: [], // `terminal` will be overwritten if there are other entries terminal: endRoot, + preterminalLineBreak: '\n', hasPreterminalDescription: 0, endLine, postDelimiter: postDelimiterRoot, @@ -210,6 +224,9 @@ const commentParserToESTree = (jsdoc, mode, { /** @type {JsdocTag|null} */ let lastTag = null; + // Tracks when first valid tag description line is seen. + let tagDescriptionSeen = false; + let descLineStateOpen = true; source.forEach((info, idx) => { @@ -247,7 +264,23 @@ const commentParserToESTree = (jsdoc, mode, { // to still process if (end && !tag) { ast.terminal = end; + + // Check if there are any description lines and if not then this is a + // one line comment block. + const isDelimiterLine = ast.descriptionLines.length === 0 && + delimiter === '/**'; + + // Remove delimiter line break for one line comments blocks. + if (isDelimiterLine) { + ast.delimiterLineBreak = ''; + } + if (description) { + // Remove terminal line break at end when description is defined. + if (ast.terminal === '*/') { + ast.preterminalLineBreak = ''; + } + if (lastTag) { ast.hasPreterminalTagDescription = 1; } else { @@ -256,10 +289,14 @@ const commentParserToESTree = (jsdoc, mode, { const holder = lastTag || ast; holder.description += (holder.description ? '\n' : '') + description; + + // Do not include `delimiter` / `postDelimiter` for opening + // delimiter line. + holder.descriptionLines.push({ - delimiter, + delimiter: isDelimiterLine ? '' : delimiter, description, - postDelimiter, + postDelimiter: isDelimiterLine ? '' : postDelimiter, initial, type: 'JsdocDescriptionLine' }); @@ -333,6 +370,7 @@ const commentParserToESTree = (jsdoc, mode, { tagObj.tag = tagObj.tag.replace(/^@/u, ''); lastTag = tagObj; + tagDescriptionSeen = false; tags.push(tagObj); } @@ -363,38 +401,75 @@ const commentParserToESTree = (jsdoc, mode, { : rawType; } - if (description) { + // In `compact` mode skip processing if `description` is an empty string + // unless lastTag is being processed. + // + // In `preserve` mode process when `description` is not the `empty string + // or the `delimiter` is not `/**` ensuring empty lines are preserved. + if (((spacing === 'compact' && description) || lastTag) || + (spacing === 'preserve' && (description || delimiter !== '/**'))) { const holder = lastTag || ast; - holder.descriptionLines.push( - holder.descriptionLines.length - ? { - delimiter, - description, - postDelimiter, - initial, - type: 'JsdocDescriptionLine' - } - : lastTag - ? { - delimiter: '', - description, - postDelimiter: '', - initial: '', - type: 'JsdocDescriptionLine' - } - : { - delimiter, + + // Check if there are any description lines and if not then this is a + // multi-line comment block with description on 0th line. Treat + // `delimiter` / `postDelimiter` / `initial` as being on a new line. + const isDelimiterLine = holder.descriptionLines.length === 0 && + delimiter === '/**'; + + // Remove delimiter line break for one line comments blocks. + if (isDelimiterLine) { + ast.delimiterLineBreak = ''; + } + + // Track when the first description line is seen to avoid adding empty + // description lines for tag type lines. + tagDescriptionSeen ||= Boolean(lastTag && + (rawType === '' || rawType?.endsWith('}'))); + + if (lastTag) { + if (tagDescriptionSeen) { + // The first tag description line is a continuation after type / + // name parsing. + const isFirstDescriptionLine = holder.descriptionLines.length === 0; + + // For `compact` spacing must allow through first description line. + if ((spacing === 'compact' && + (description || isFirstDescriptionLine)) || + spacing === 'preserve') { + holder.descriptionLines.push({ + delimiter: isFirstDescriptionLine ? '' : delimiter, description, - postDelimiter, - initial, + postDelimiter: isFirstDescriptionLine ? '' : postDelimiter, + initial: isFirstDescriptionLine ? '' : initial, type: 'JsdocDescriptionLine' - } - ); + }); + } + } + } else { + holder.descriptionLines.push({ + delimiter: isDelimiterLine ? '' : delimiter, + description, + postDelimiter: isDelimiterLine ? '' : postDelimiter, + initial: isDelimiterLine ? `` : initial, + type: 'JsdocDescriptionLine' + }); + } if (!tag) { - holder.description += (!holder.description && !lastTag) - ? description - : '\n' + description; + if (lastTag) { + // For `compact` spacing must filter out any empty description lines + // after the initial `holder.description` has content. + if (tagDescriptionSeen && !(spacing === 'compact' && + holder.description && description === '')) { + holder.description += !holder.description + ? description + : '\n' + description; + } + } else { + holder.description += !holder.description + ? description + : '\n' + description; + } } } @@ -403,6 +478,11 @@ const commentParserToESTree = (jsdoc, mode, { ast.terminal = end; ast.hasPreterminalTagDescription = 1; + // Remove terminal line break at end when tag is defined on last line. + if (ast.terminal === '*/') { + ast.preterminalLineBreak = ''; + } + cleanUpLastTag(/** @type {JsdocTag} */ (lastTag)); } }); diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/estreeToString.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/estreeToString.js index 26442de533ae84..29268803ddee93 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/estreeToString.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/estreeToString.js @@ -1,50 +1,11 @@ -import { - visitorKeys as jsdocTypePrattParserVisitorKeys, - stringify -} from 'jsdoc-type-pratt-parser'; - -import {jsdocVisitorKeys} from './commentParserToESTree.js'; - -/** - * @typedef {import('./index.js').ESTreeToStringOptions} ESTreeToStringOptions - */ +import {stringify as prattStringify} from 'jsdoc-type-pratt-parser'; +/** @type {Record} */ const stringifiers = { - /** - * @param {import('./commentParserToESTree.js').JsdocBlock} node - * @param {ESTreeToStringOptions} opts - * @param {string[]} descriptionLines - * @param {string[]} tags - * @returns {string} - */ - JsdocBlock ({ - delimiter, postDelimiter, lineEnd, initial, terminal, endLine - }, opts, descriptionLines, tags) { - const alreadyHasLine = - (descriptionLines.length && !tags.length && - descriptionLines.at(-1)?.endsWith('\n')) || - (tags.length && tags.at(-1)?.endsWith('\n')); - return `${initial}${delimiter}${postDelimiter}${endLine - ? ` -` - : ''}${ - // Could use `node.description` (and `node.lineEnd`), but lines may have - // been modified - descriptionLines.length - ? descriptionLines.join( - lineEnd + '\n' - ) + (tags.length ? lineEnd + '\n' : '') - : '' - }${ - tags.length ? tags.join(lineEnd + '\n') : '' - }${endLine && !alreadyHasLine - ? `${lineEnd} - ${initial}` - : endLine ? ` ${initial}` : ''}${terminal}`; - }, + JsdocBlock, /** - * @param {import('./commentParserToESTree.js').JsdocDescriptionLine} node + * @param {import('./commentParserToESTree').JsdocDescriptionLine} node * @returns {string} */ JsdocDescriptionLine ({ @@ -54,7 +15,7 @@ const stringifiers = { }, /** - * @param {import('./commentParserToESTree.js').JsdocTypeLine} node + * @param {import('./commentParserToESTree').JsdocTypeLine} node * @returns {string} */ JsdocTypeLine ({ @@ -64,7 +25,7 @@ const stringifiers = { }, /** - * @param {import('./commentParserToESTree.js').JsdocInlineTag} node + * @param {import('./commentParserToESTree').JsdocInlineTag} node */ JsdocInlineTag ({format, namepathOrURL, tag, text}) { return format === 'pipe' @@ -77,96 +38,36 @@ const stringifiers = { : `{@${tag} ${namepathOrURL} ${text}}`; }, - /** - * @param {import('./commentParserToESTree.js').JsdocTag} node - * @param {ESTreeToStringOptions} opts - * @param {string} parsedType - * @param {string[]} typeLines - * @param {string[]} descriptionLines - * @returns {string} - */ - JsdocTag (node, opts, parsedType, typeLines, descriptionLines) { - const { - description, - name, postName, postTag, postType, - initial, delimiter, postDelimiter, tag - // , rawType - } = node; - - return `${initial}${delimiter}${postDelimiter}@${tag}${postTag}${ - // Could do `rawType` but may have been changed; could also do - // `typeLines` but not as likely to be changed - // parsedType - // Comment this out later in favor of `parsedType` - // We can't use raw `typeLines` as first argument has delimiter on it - (opts.preferRawType || !parsedType) - ? typeLines.length ? `{${typeLines.join('\n')}}` : '' - : parsedType - }${postType}${ - name ? `${name}${postName || (description ? '\n' : '')}` : '' - }${descriptionLines.join('\n')}`; - } + JsdocTag }; -const visitorKeys = {...jsdocVisitorKeys, ...jsdocTypePrattParserVisitorKeys}; - /** * @todo convert for use by escodegen (until may be patched to support * custom entries?). - * @param {import('./commentParserToESTree.js').JsdocBlock| - * import('./commentParserToESTree.js').JsdocDescriptionLine| - * import('./commentParserToESTree.js').JsdocTypeLine| - * import('./commentParserToESTree.js').JsdocTag| - * import('./commentParserToESTree.js').JsdocInlineTag| + * @param {import('./commentParserToESTree').JsdocBlock| + * import('./commentParserToESTree').JsdocDescriptionLine| + * import('./commentParserToESTree').JsdocTypeLine| + * import('./commentParserToESTree').JsdocTag| + * import('./commentParserToESTree').JsdocInlineTag| * import('jsdoc-type-pratt-parser').RootResult * } node - * @param {ESTreeToStringOptions} opts + * @param {import('.').ESTreeToStringOptions} opts * @throws {Error} * @returns {string} */ function estreeToString (node, opts = {}) { if (Object.prototype.hasOwnProperty.call(stringifiers, node.type)) { - const childNodeOrArray = visitorKeys[node.type]; - - const args = /** @type {(string[]|string|null)[]} */ ( - childNodeOrArray.map((key) => { - // @ts-expect-error - return Array.isArray(node[key]) - // @ts-expect-error - ? node[key].map( - ( - /** - * @type {import('./commentParserToESTree.js').JsdocBlock| - * import('./commentParserToESTree.js').JsdocDescriptionLine| - * import('./commentParserToESTree.js').JsdocTypeLine| - * import('./commentParserToESTree.js').JsdocTag| - * import('./commentParserToESTree.js').JsdocInlineTag} - */ - item - ) => { - return estreeToString(item, opts); - } - ) - // @ts-expect-error - : (node[key] === undefined || node[key] === null - ? null - // @ts-expect-error - : estreeToString(node[key], opts)); - }) - ); return stringifiers[ /** - * @type {import('./commentParserToESTree.js').JsdocBlock| - * import('./commentParserToESTree.js').JsdocDescriptionLine| - * import('./commentParserToESTree.js').JsdocTypeLine| - * import('./commentParserToESTree.js').JsdocTag} + * @type {import('./commentParserToESTree').JsdocBlock| + * import('./commentParserToESTree').JsdocDescriptionLine| + * import('./commentParserToESTree').JsdocTypeLine| + * import('./commentParserToESTree').JsdocTag} */ (node).type ]( node, - opts, - // @ts-expect-error - ...args + opts ); } @@ -174,7 +75,7 @@ function estreeToString (node, opts = {}) { if (node.type.startsWith('JsdocType')) { return opts.preferRawType ? '' - : `{${stringify( + : `{${prattStringify( /** @type {import('jsdoc-type-pratt-parser').RootResult} */ ( node ) @@ -184,4 +85,95 @@ function estreeToString (node, opts = {}) { throw new Error(`Unhandled node type: ${node.type}`); } -export default estreeToString; +/** + * @param {import('./commentParserToESTree').JsdocBlock} node + * @param {import('.').ESTreeToStringOptions} opts + * @returns {string} + */ +function JsdocBlock (node, opts) { + const {delimiter, delimiterLineBreak, descriptionLines, + initial, postDelimiter, preterminalLineBreak, tags, terminal} = node; + + const terminalPrepend = preterminalLineBreak !== '' + ? `${preterminalLineBreak}${initial} ` + : ''; + + let result = `${initial}${delimiter}${postDelimiter}${delimiterLineBreak}`; + + for (let i = 0; i < descriptionLines.length; i++) { + result += estreeToString(descriptionLines[i]); + + if (i !== descriptionLines.length - 1 || tags.length) { + result += '\n'; + } + } + + for (let i = 0; i < tags.length; i++) { + result += estreeToString(tags[i], opts); + + if (i !== tags.length - 1) { + result += '\n'; + } + } + + result += `${terminalPrepend}${terminal}`; + + return result; +} + +/** + * @param {import('./commentParserToESTree').JsdocTag} node + * @param {import('.').ESTreeToStringOptions} opts + * @returns {string} + */ +function JsdocTag (node, opts) { + const { + delimiter, descriptionLines, initial, name, parsedType, postDelimiter, + postName, postTag, postType, tag, typeLines + } = node; + + let result = `${initial}${delimiter}${postDelimiter}@${tag}${postTag}`; + + // Could do `rawType` but may have been changed; could also do + // `typeLines` but not as likely to be changed + // parsedType + // Comment this out later in favor of `parsedType` + // We can't use raw `typeLines` as first argument has delimiter on it + if (opts.preferRawType || !parsedType) { + if (typeLines.length) { + result += '{'; + + for (let i = 0; i < typeLines.length; i++) { + result += estreeToString(typeLines[i]); + + if (i !== typeLines.length - 1) { + result += '\n'; + } + } + + result += '}'; + } + } else if (parsedType?.type.startsWith('JsdocType')) { + result += `{${prattStringify( + /** @type {import('jsdoc-type-pratt-parser').RootResult} */ ( + parsedType + ) + )}}`; + } + + result += name ? `${postType}${name}${postName}` : postType; + + for (let i = 0; i < descriptionLines.length; i++) { + const descriptionLine = descriptionLines[i]; + + result += estreeToString(descriptionLine); + + if (i !== descriptionLines.length - 1) { + result += '\n'; + } + } + + return result; +} + +export {estreeToString}; diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js index 9b11820ab0b242..cd68852e3edd7e 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/index.js @@ -1,5 +1,5 @@ /** - * @typedef {import('./commentParserToESTree.js').JsdocInlineTagNoType & { + * @typedef {import('./commentParserToESTree').JsdocInlineTagNoType & { * start: number, * end: number, * }} InlineTag @@ -7,9 +7,9 @@ /** * @typedef {import('comment-parser').Spec & { - * line?: import('./commentParserToESTree.js').Integer, - * inlineTags: (import('./commentParserToESTree.js').JsdocInlineTagNoType & { - * line?: import('./commentParserToESTree.js').Integer + * line?: import('./commentParserToESTree').Integer, + * inlineTags: (import('./commentParserToESTree').JsdocInlineTagNoType & { + * line?: import('./commentParserToESTree').Integer * })[] * }} JsdocTagWithInline */ @@ -21,8 +21,8 @@ * source: import('comment-parser').Line[], * problems: import('comment-parser').Problem[], * tags: JsdocTagWithInline[], - * inlineTags: (import('./commentParserToESTree.js').JsdocInlineTagNoType & { - * line?: import('./commentParserToESTree.js').Integer + * inlineTags: (import('./commentParserToESTree').JsdocInlineTagNoType & { + * line?: import('./commentParserToESTree').Integer * })[] * }} JsdocBlockWithInline */ @@ -34,7 +34,7 @@ /** * @callback CommentHandler * @param {string} commentSelector - * @param {import('./index.js').JsdocBlockWithInline} jsdoc + * @param {import('.').JsdocBlockWithInline} jsdoc * @returns {boolean} */ @@ -42,16 +42,9 @@ export {visitorKeys as jsdocTypeVisitorKeys} from 'jsdoc-type-pratt-parser'; export * from 'jsdoc-type-pratt-parser'; -export {default as commentHandler} from './commentHandler.js'; - -export {default as toCamelCase} from './toCamelCase.js'; - -export * from './parseComment.js'; - -export {default as parseInlineTags} from './parseInlineTags.js'; - +export * from './commentHandler.js'; export * from './commentParserToESTree.js'; - +export * from './estreeToString.js'; export * from './jsdoccomment.js'; - -export {default as estreeToString} from './estreeToString.js'; +export * from './parseComment.js'; +export * from './parseInlineTags.js'; diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js index b497e8c404f639..fca017c1292bb4 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/jsdoccomment.js @@ -1,4 +1,3 @@ -/* eslint-disable jsdoc/imports-as-dependencies -- https://github.com/gajus/eslint-plugin-jsdoc/issues/1114 */ /** * Obtained originally from {@link https://github.com/eslint/eslint/blob/master/lib/util/source-code.js#L313}. * @@ -68,78 +67,77 @@ const looksLikeExport = function (astNode) { */ const getTSFunctionComment = function (astNode) { const {parent} = astNode; - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!parent) { return astNode; } const grandparent = parent.parent; - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!grandparent) { return astNode; } const greatGrandparent = grandparent.parent; const greatGreatGrandparent = greatGrandparent && greatGrandparent.parent; - // istanbul ignore if + /* v8 ignore next 3 */ if (/** @type {ESLintOrTSNode} */ (parent).type !== 'TSTypeAnnotation') { return astNode; } switch (/** @type {ESLintOrTSNode} */ (grandparent).type) { - // @ts-expect-error + // @ts-expect-error -- For `ClassProperty`. case 'PropertyDefinition': case 'ClassProperty': case 'TSDeclareFunction': case 'TSMethodSignature': case 'TSPropertySignature': return grandparent; case 'ArrowFunctionExpression': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGrandparent) { return astNode; } - // istanbul ignore else + if ( greatGrandparent.type === 'VariableDeclarator' // && greatGreatGrandparent.parent.type === 'VariableDeclaration' ) { - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGreatGrandparent || !greatGreatGrandparent.parent) { return astNode; } return greatGreatGrandparent.parent; } - // istanbul ignore next + /* v8 ignore next */ return astNode; case 'FunctionExpression': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGreatGrandparent) { return astNode; } - // istanbul ignore else + /* v8 ignore next 3 */ if (greatGrandparent.type === 'MethodDefinition') { return greatGrandparent; } // Fallthrough default: - // istanbul ignore if + /* v8 ignore next 3 */ if (grandparent.type !== 'Identifier') { - // istanbul ignore next return astNode; } } - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!greatGreatGrandparent) { return astNode; } - // istanbul ignore next + /* v8 ignore next */ switch (greatGrandparent.type) { case 'ArrowFunctionExpression': - // istanbul ignore else + /* v8 ignore next 6 */ if ( greatGreatGrandparent.type === 'VariableDeclarator' && greatGreatGrandparent.parent.type === 'VariableDeclaration' @@ -147,19 +145,19 @@ const getTSFunctionComment = function (astNode) { return greatGreatGrandparent.parent; } - // istanbul ignore next + /* v8 ignore next */ return astNode; case 'FunctionDeclaration': return greatGrandparent; case 'VariableDeclarator': - // istanbul ignore else + /* v8 ignore next 3 */ if (greatGreatGrandparent.type === 'VariableDeclaration') { return greatGreatGrandparent; } // Fallthrough default: - // istanbul ignore next + /* v8 ignore next */ return astNode; } }; @@ -200,7 +198,7 @@ const getReducedASTNode = function (node, sourceCode) { case 'TSEnumDeclaration': case 'ClassDeclaration': case 'FunctionDeclaration': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!parent) { return node; } @@ -212,7 +210,7 @@ const getReducedASTNode = function (node, sourceCode) { case 'ArrowFunctionExpression': case 'TSEmptyBodyFunctionExpression': case 'FunctionExpression': - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!parent) { return node; } @@ -317,7 +315,7 @@ const findJSDocComment = (astNode, sourceCode, settings) => { break; } - /* c8 ignore next 3 */ + /* v8 ignore next 3 */ if (!tokenBefore || !currentNode.loc || !tokenBefore.loc) { return null; } diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseComment.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseComment.js index c922bb811561a1..8d2ffe09a19d74 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseComment.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseComment.js @@ -4,7 +4,7 @@ import { tokenizers } from 'comment-parser'; -import parseInlineTags from './parseInlineTags.js'; +import {parseInlineTags} from './parseInlineTags.js'; const { name: nameTokenizer, @@ -145,7 +145,7 @@ const getTokenizers = ({ * `comment-parser` AST. * @param {string | {value: string}} commentOrNode * @param {string} [indent] Whitespace - * @returns {import('./index.js').JsdocBlockWithInline} + * @returns {import('.').JsdocBlockWithInline} */ const parseComment = (commentOrNode, indent = '') => { let block; @@ -160,6 +160,10 @@ const parseComment = (commentOrNode, indent = '') => { break; case 'object': + if (commentOrNode === null) { + throw new TypeError(`'commentOrNode' is not a string or object.`); + } + // Preserve JSDoc block start/end indentation. [block] = commentParser(`${indent}/*${commentOrNode.value}*/`, { // @see https://github.com/yavorskiy/comment-parser/issues/21 diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseInlineTags.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseInlineTags.js index 45c2d985e25053..bd9868c96baf22 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseInlineTags.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/parseInlineTags.js @@ -23,17 +23,13 @@ function determineFormat (match) { return 'space'; } -/** - * @typedef {import('./index.js').InlineTag} InlineTag - */ - /** * Extracts inline tags from a description. * @param {string} description - * @returns {InlineTag[]} Array of inline tags from the description. + * @returns {import('.').InlineTag[]} Array of inline tags from the description. */ function parseDescription (description) { - /** @type {InlineTag[]} */ + /** @type {import('.').InlineTag[]} */ const result = []; // This could have been expressed in a single pattern, @@ -83,30 +79,30 @@ function parseDescription (description) { * Splits the `{@prefix}` from remaining `Spec.lines[].token.description` * into the `inlineTags` tokens, and populates `spec.inlineTags` * @param {import('comment-parser').Block} block - * @returns {import('./index.js').JsdocBlockWithInline} + * @returns {import('.').JsdocBlockWithInline} */ -export default function parseInlineTags (block) { +export function parseInlineTags (block) { const inlineTags = /** - * @type {(import('./commentParserToESTree.js').JsdocInlineTagNoType & { - * line?: import('./commentParserToESTree.js').Integer + * @type {(import('./commentParserToESTree').JsdocInlineTagNoType & { + * line?: import('./commentParserToESTree').Integer * })[]} */ ( parseDescription(block.description) ); - /** @type {import('./index.js').JsdocBlockWithInline} */ ( + /** @type {import('.').JsdocBlockWithInline} */ ( block ).inlineTags = inlineTags; for (const tag of block.tags) { /** - * @type {import('./index.js').JsdocTagWithInline} + * @type {import('.').JsdocTagWithInline} */ (tag).inlineTags = parseDescription(tag.description); } return ( /** - * @type {import('./index.js').JsdocBlockWithInline} + * @type {import('.').JsdocBlockWithInline} */ (block) ); } diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/toCamelCase.js b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/toCamelCase.js index 067f48750e70f0..0526f02b4c4768 100644 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/toCamelCase.js +++ b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/src/toCamelCase.js @@ -10,4 +10,4 @@ const toCamelCase = (str) => { }); }; -export default toCamelCase; +export {toCamelCase}; diff --git a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/tsconfig-prod.json b/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/tsconfig-prod.json deleted file mode 100644 index 67d3d18f4a09bd..00000000000000 --- a/tools/node_modules/eslint/node_modules/@es-joy/jsdoccomment/tsconfig-prod.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "compilerOptions": { - "lib": ["es2022"], - "moduleResolution": "NodeNext", - "module": "NodeNext", - "allowJs": true, - "checkJs": true, - "noEmit": false, - "emitDeclarationOnly": true, - "declaration": true, - "declarationMap": true, - "strict": true, - "target": "es6", - "outDir": "dist" - }, - "include": ["src/**/*.js"], - "exclude": ["node_modules"] -} diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE new file mode 100644 index 00000000000000..17a25538d9bd63 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE @@ -0,0 +1,201 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "{}" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright contributors + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs new file mode 100644 index 00000000000000..00f91bcc4834d6 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.cjs @@ -0,0 +1,384 @@ +'use strict'; + +Object.defineProperty(exports, '__esModule', { value: true }); + +/** + * @typedef {{ readonly [type: string]: ReadonlyArray }} VisitorKeys + */ + +/** + * @type {VisitorKeys} + */ +const KEYS = { + ArrayExpression: [ + "elements" + ], + ArrayPattern: [ + "elements" + ], + ArrowFunctionExpression: [ + "params", + "body" + ], + AssignmentExpression: [ + "left", + "right" + ], + AssignmentPattern: [ + "left", + "right" + ], + AwaitExpression: [ + "argument" + ], + BinaryExpression: [ + "left", + "right" + ], + BlockStatement: [ + "body" + ], + BreakStatement: [ + "label" + ], + CallExpression: [ + "callee", + "arguments" + ], + CatchClause: [ + "param", + "body" + ], + ChainExpression: [ + "expression" + ], + ClassBody: [ + "body" + ], + ClassDeclaration: [ + "id", + "superClass", + "body" + ], + ClassExpression: [ + "id", + "superClass", + "body" + ], + ConditionalExpression: [ + "test", + "consequent", + "alternate" + ], + ContinueStatement: [ + "label" + ], + DebuggerStatement: [], + DoWhileStatement: [ + "body", + "test" + ], + EmptyStatement: [], + ExperimentalRestProperty: [ + "argument" + ], + ExperimentalSpreadProperty: [ + "argument" + ], + ExportAllDeclaration: [ + "exported", + "source" + ], + ExportDefaultDeclaration: [ + "declaration" + ], + ExportNamedDeclaration: [ + "declaration", + "specifiers", + "source" + ], + ExportSpecifier: [ + "exported", + "local" + ], + ExpressionStatement: [ + "expression" + ], + ForInStatement: [ + "left", + "right", + "body" + ], + ForOfStatement: [ + "left", + "right", + "body" + ], + ForStatement: [ + "init", + "test", + "update", + "body" + ], + FunctionDeclaration: [ + "id", + "params", + "body" + ], + FunctionExpression: [ + "id", + "params", + "body" + ], + Identifier: [], + IfStatement: [ + "test", + "consequent", + "alternate" + ], + ImportDeclaration: [ + "specifiers", + "source" + ], + ImportDefaultSpecifier: [ + "local" + ], + ImportExpression: [ + "source" + ], + ImportNamespaceSpecifier: [ + "local" + ], + ImportSpecifier: [ + "imported", + "local" + ], + JSXAttribute: [ + "name", + "value" + ], + JSXClosingElement: [ + "name" + ], + JSXClosingFragment: [], + JSXElement: [ + "openingElement", + "children", + "closingElement" + ], + JSXEmptyExpression: [], + JSXExpressionContainer: [ + "expression" + ], + JSXFragment: [ + "openingFragment", + "children", + "closingFragment" + ], + JSXIdentifier: [], + JSXMemberExpression: [ + "object", + "property" + ], + JSXNamespacedName: [ + "namespace", + "name" + ], + JSXOpeningElement: [ + "name", + "attributes" + ], + JSXOpeningFragment: [], + JSXSpreadAttribute: [ + "argument" + ], + JSXSpreadChild: [ + "expression" + ], + JSXText: [], + LabeledStatement: [ + "label", + "body" + ], + Literal: [], + LogicalExpression: [ + "left", + "right" + ], + MemberExpression: [ + "object", + "property" + ], + MetaProperty: [ + "meta", + "property" + ], + MethodDefinition: [ + "key", + "value" + ], + NewExpression: [ + "callee", + "arguments" + ], + ObjectExpression: [ + "properties" + ], + ObjectPattern: [ + "properties" + ], + PrivateIdentifier: [], + Program: [ + "body" + ], + Property: [ + "key", + "value" + ], + PropertyDefinition: [ + "key", + "value" + ], + RestElement: [ + "argument" + ], + ReturnStatement: [ + "argument" + ], + SequenceExpression: [ + "expressions" + ], + SpreadElement: [ + "argument" + ], + StaticBlock: [ + "body" + ], + Super: [], + SwitchCase: [ + "test", + "consequent" + ], + SwitchStatement: [ + "discriminant", + "cases" + ], + TaggedTemplateExpression: [ + "tag", + "quasi" + ], + TemplateElement: [], + TemplateLiteral: [ + "quasis", + "expressions" + ], + ThisExpression: [], + ThrowStatement: [ + "argument" + ], + TryStatement: [ + "block", + "handler", + "finalizer" + ], + UnaryExpression: [ + "argument" + ], + UpdateExpression: [ + "argument" + ], + VariableDeclaration: [ + "declarations" + ], + VariableDeclarator: [ + "id", + "init" + ], + WhileStatement: [ + "test", + "body" + ], + WithStatement: [ + "object", + "body" + ], + YieldExpression: [ + "argument" + ] +}; + +// Types. +const NODE_TYPES = Object.keys(KEYS); + +// Freeze the keys. +for (const type of NODE_TYPES) { + Object.freeze(KEYS[type]); +} +Object.freeze(KEYS); + +/** + * @author Toru Nagashima + * See LICENSE file in root directory for full license. + */ + +/** + * @typedef {import('./visitor-keys.js').VisitorKeys} VisitorKeys + */ + +// List to ignore keys. +const KEY_BLACKLIST = new Set([ + "parent", + "leadingComments", + "trailingComments" +]); + +/** + * Check whether a given key should be used or not. + * @param {string} key The key to check. + * @returns {boolean} `true` if the key should be used. + */ +function filterKey(key) { + return !KEY_BLACKLIST.has(key) && key[0] !== "_"; +} + +/** + * Get visitor keys of a given node. + * @param {object} node The AST node to get keys. + * @returns {readonly string[]} Visitor keys of the node. + */ +function getKeys(node) { + return Object.keys(node).filter(filterKey); +} + +// Disable valid-jsdoc rule because it reports syntax error on the type of @returns. +// eslint-disable-next-line valid-jsdoc +/** + * Make the union set with `KEYS` and given keys. + * @param {VisitorKeys} additionalKeys The additional keys. + * @returns {VisitorKeys} The union set. + */ +function unionWith(additionalKeys) { + const retv = /** @type {{ + [type: string]: ReadonlyArray + }} */ (Object.assign({}, KEYS)); + + for (const type of Object.keys(additionalKeys)) { + if (Object.prototype.hasOwnProperty.call(retv, type)) { + const keys = new Set(additionalKeys[type]); + + for (const key of retv[type]) { + keys.add(key); + } + + retv[type] = Object.freeze(Array.from(keys)); + } else { + retv[type] = Object.freeze(Array.from(additionalKeys[type])); + } + } + + return Object.freeze(retv); +} + +exports.KEYS = KEYS; +exports.getKeys = getKeys; +exports.unionWith = unionWith; diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts new file mode 100644 index 00000000000000..c7c28ed37b805f --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/dist/eslint-visitor-keys.d.cts @@ -0,0 +1,27 @@ +type VisitorKeys$1 = { + readonly [type: string]: readonly string[]; +}; +/** + * @typedef {{ readonly [type: string]: ReadonlyArray }} VisitorKeys + */ +/** + * @type {VisitorKeys} + */ +declare const KEYS: VisitorKeys$1; + +/** + * Get visitor keys of a given node. + * @param {object} node The AST node to get keys. + * @returns {readonly string[]} Visitor keys of the node. + */ +declare function getKeys(node: object): readonly string[]; +/** + * Make the union set with `KEYS` and given keys. + * @param {VisitorKeys} additionalKeys The additional keys. + * @returns {VisitorKeys} The union set. + */ +declare function unionWith(additionalKeys: VisitorKeys): VisitorKeys; + +type VisitorKeys = VisitorKeys$1; + +export { KEYS, VisitorKeys, getKeys, unionWith }; diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js new file mode 100644 index 00000000000000..3622816d632da0 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/index.js @@ -0,0 +1,65 @@ +/** + * @author Toru Nagashima + * See LICENSE file in root directory for full license. + */ +import KEYS from "./visitor-keys.js"; + +/** + * @typedef {import('./visitor-keys.js').VisitorKeys} VisitorKeys + */ + +// List to ignore keys. +const KEY_BLACKLIST = new Set([ + "parent", + "leadingComments", + "trailingComments" +]); + +/** + * Check whether a given key should be used or not. + * @param {string} key The key to check. + * @returns {boolean} `true` if the key should be used. + */ +function filterKey(key) { + return !KEY_BLACKLIST.has(key) && key[0] !== "_"; +} + +/** + * Get visitor keys of a given node. + * @param {object} node The AST node to get keys. + * @returns {readonly string[]} Visitor keys of the node. + */ +export function getKeys(node) { + return Object.keys(node).filter(filterKey); +} + +// Disable valid-jsdoc rule because it reports syntax error on the type of @returns. +// eslint-disable-next-line valid-jsdoc +/** + * Make the union set with `KEYS` and given keys. + * @param {VisitorKeys} additionalKeys The additional keys. + * @returns {VisitorKeys} The union set. + */ +export function unionWith(additionalKeys) { + const retv = /** @type {{ + [type: string]: ReadonlyArray + }} */ (Object.assign({}, KEYS)); + + for (const type of Object.keys(additionalKeys)) { + if (Object.prototype.hasOwnProperty.call(retv, type)) { + const keys = new Set(additionalKeys[type]); + + for (const key of retv[type]) { + keys.add(key); + } + + retv[type] = Object.freeze(Array.from(keys)); + } else { + retv[type] = Object.freeze(Array.from(additionalKeys[type])); + } + } + + return Object.freeze(retv); +} + +export { KEYS }; diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js new file mode 100644 index 00000000000000..ccf2b1f9a3fe89 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/lib/visitor-keys.js @@ -0,0 +1,315 @@ +/** + * @typedef {{ readonly [type: string]: ReadonlyArray }} VisitorKeys + */ + +/** + * @type {VisitorKeys} + */ +const KEYS = { + ArrayExpression: [ + "elements" + ], + ArrayPattern: [ + "elements" + ], + ArrowFunctionExpression: [ + "params", + "body" + ], + AssignmentExpression: [ + "left", + "right" + ], + AssignmentPattern: [ + "left", + "right" + ], + AwaitExpression: [ + "argument" + ], + BinaryExpression: [ + "left", + "right" + ], + BlockStatement: [ + "body" + ], + BreakStatement: [ + "label" + ], + CallExpression: [ + "callee", + "arguments" + ], + CatchClause: [ + "param", + "body" + ], + ChainExpression: [ + "expression" + ], + ClassBody: [ + "body" + ], + ClassDeclaration: [ + "id", + "superClass", + "body" + ], + ClassExpression: [ + "id", + "superClass", + "body" + ], + ConditionalExpression: [ + "test", + "consequent", + "alternate" + ], + ContinueStatement: [ + "label" + ], + DebuggerStatement: [], + DoWhileStatement: [ + "body", + "test" + ], + EmptyStatement: [], + ExperimentalRestProperty: [ + "argument" + ], + ExperimentalSpreadProperty: [ + "argument" + ], + ExportAllDeclaration: [ + "exported", + "source" + ], + ExportDefaultDeclaration: [ + "declaration" + ], + ExportNamedDeclaration: [ + "declaration", + "specifiers", + "source" + ], + ExportSpecifier: [ + "exported", + "local" + ], + ExpressionStatement: [ + "expression" + ], + ForInStatement: [ + "left", + "right", + "body" + ], + ForOfStatement: [ + "left", + "right", + "body" + ], + ForStatement: [ + "init", + "test", + "update", + "body" + ], + FunctionDeclaration: [ + "id", + "params", + "body" + ], + FunctionExpression: [ + "id", + "params", + "body" + ], + Identifier: [], + IfStatement: [ + "test", + "consequent", + "alternate" + ], + ImportDeclaration: [ + "specifiers", + "source" + ], + ImportDefaultSpecifier: [ + "local" + ], + ImportExpression: [ + "source" + ], + ImportNamespaceSpecifier: [ + "local" + ], + ImportSpecifier: [ + "imported", + "local" + ], + JSXAttribute: [ + "name", + "value" + ], + JSXClosingElement: [ + "name" + ], + JSXClosingFragment: [], + JSXElement: [ + "openingElement", + "children", + "closingElement" + ], + JSXEmptyExpression: [], + JSXExpressionContainer: [ + "expression" + ], + JSXFragment: [ + "openingFragment", + "children", + "closingFragment" + ], + JSXIdentifier: [], + JSXMemberExpression: [ + "object", + "property" + ], + JSXNamespacedName: [ + "namespace", + "name" + ], + JSXOpeningElement: [ + "name", + "attributes" + ], + JSXOpeningFragment: [], + JSXSpreadAttribute: [ + "argument" + ], + JSXSpreadChild: [ + "expression" + ], + JSXText: [], + LabeledStatement: [ + "label", + "body" + ], + Literal: [], + LogicalExpression: [ + "left", + "right" + ], + MemberExpression: [ + "object", + "property" + ], + MetaProperty: [ + "meta", + "property" + ], + MethodDefinition: [ + "key", + "value" + ], + NewExpression: [ + "callee", + "arguments" + ], + ObjectExpression: [ + "properties" + ], + ObjectPattern: [ + "properties" + ], + PrivateIdentifier: [], + Program: [ + "body" + ], + Property: [ + "key", + "value" + ], + PropertyDefinition: [ + "key", + "value" + ], + RestElement: [ + "argument" + ], + ReturnStatement: [ + "argument" + ], + SequenceExpression: [ + "expressions" + ], + SpreadElement: [ + "argument" + ], + StaticBlock: [ + "body" + ], + Super: [], + SwitchCase: [ + "test", + "consequent" + ], + SwitchStatement: [ + "discriminant", + "cases" + ], + TaggedTemplateExpression: [ + "tag", + "quasi" + ], + TemplateElement: [], + TemplateLiteral: [ + "quasis", + "expressions" + ], + ThisExpression: [], + ThrowStatement: [ + "argument" + ], + TryStatement: [ + "block", + "handler", + "finalizer" + ], + UnaryExpression: [ + "argument" + ], + UpdateExpression: [ + "argument" + ], + VariableDeclaration: [ + "declarations" + ], + VariableDeclarator: [ + "id", + "init" + ], + WhileStatement: [ + "test", + "body" + ], + WithStatement: [ + "object", + "body" + ], + YieldExpression: [ + "argument" + ] +}; + +// Types. +const NODE_TYPES = Object.keys(KEYS); + +// Freeze the keys. +for (const type of NODE_TYPES) { + Object.freeze(KEYS[type]); +} +Object.freeze(KEYS); + +export default KEYS; diff --git a/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json new file mode 100644 index 00000000000000..b9d51ce0e68900 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/package.json @@ -0,0 +1,74 @@ +{ + "name": "eslint-visitor-keys", + "version": "3.4.3", + "description": "Constants and utilities about visitor keys to traverse AST.", + "type": "module", + "main": "dist/eslint-visitor-keys.cjs", + "types": "./dist/index.d.ts", + "exports": { + ".": [ + { + "import": "./lib/index.js", + "require": "./dist/eslint-visitor-keys.cjs" + }, + "./dist/eslint-visitor-keys.cjs" + ], + "./package.json": "./package.json" + }, + "files": [ + "dist/index.d.ts", + "dist/visitor-keys.d.ts", + "dist/eslint-visitor-keys.cjs", + "dist/eslint-visitor-keys.d.cts", + "lib" + ], + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "devDependencies": { + "@types/estree": "^0.0.51", + "@types/estree-jsx": "^0.0.1", + "@typescript-eslint/parser": "^5.14.0", + "c8": "^7.11.0", + "chai": "^4.3.6", + "eslint": "^7.29.0", + "eslint-config-eslint": "^7.0.0", + "eslint-plugin-jsdoc": "^35.4.0", + "eslint-plugin-node": "^11.1.0", + "eslint-release": "^3.2.0", + "esquery": "^1.4.0", + "json-diff": "^0.7.3", + "mocha": "^9.2.1", + "opener": "^1.5.2", + "rollup": "^2.70.0", + "rollup-plugin-dts": "^4.2.3", + "tsd": "^0.19.1", + "typescript": "^4.6.2" + }, + "scripts": { + "build": "npm run build:cjs && npm run build:types", + "build:cjs": "rollup -c", + "build:debug": "npm run build:cjs -- -m && npm run build:types", + "build:keys": "node tools/build-keys-from-ts", + "build:types": "tsc", + "lint": "eslint .", + "prepare": "npm run build", + "release:generate:latest": "eslint-generate-release", + "release:generate:alpha": "eslint-generate-prerelease alpha", + "release:generate:beta": "eslint-generate-prerelease beta", + "release:generate:rc": "eslint-generate-prerelease rc", + "release:publish": "eslint-publish-release", + "test": "mocha tests/lib/**/*.cjs && c8 mocha tests/lib/**/*.js && npm run test:types", + "test:open-coverage": "c8 report --reporter lcov && opener coverage/lcov-report/index.html", + "test:types": "tsd" + }, + "repository": "eslint/eslint-visitor-keys", + "funding": "https://opencollective.com/eslint", + "keywords": [], + "author": "Toru Nagashima (https://github.com/mysticatea)", + "license": "Apache-2.0", + "bugs": { + "url": "https://github.com/eslint/eslint-visitor-keys/issues" + }, + "homepage": "https://github.com/eslint/eslint-visitor-keys#readme" +} diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs index 64e66666d2390e..98892f61f25753 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs @@ -697,6 +697,13 @@ const severityMap = { const validated = new WeakSet(); +// JSON schema that disallows passing any options +const noOptionsSchema = Object.freeze({ + type: "array", + minItems: 0, + maxItems: 0 +}); + //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- @@ -708,17 +715,36 @@ class ConfigValidator { /** * Gets a complete options schema for a rule. - * @param {{create: Function, schema: (Array|null)}} rule A new-style rule object - * @returns {Object} JSON Schema for the rule's options. + * @param {Rule} rule A rule object + * @throws {TypeError} If `meta.schema` is specified but is not an array, object or `false`. + * @returns {Object|null} JSON Schema for the rule's options. + * `null` if rule wasn't passed or its `meta.schema` is `false`. */ getRuleOptionsSchema(rule) { if (!rule) { return null; } - const schema = rule.schema || rule.meta && rule.meta.schema; + if (!rule.meta) { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } + + const schema = rule.meta.schema; + + if (typeof schema === "undefined") { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } - // Given a tuple of schemas, insert warning level at the beginning + // `schema:false` is an allowed explicit opt-out of options validation for the rule + if (schema === false) { + return null; + } + + if (typeof schema !== "object" || schema === null) { + throw new TypeError("Rule's `meta.schema` must be an array or object"); + } + + // ESLint-specific array form needs to be converted into a valid JSON Schema definition if (Array.isArray(schema)) { if (schema.length) { return { @@ -728,16 +754,13 @@ class ConfigValidator { maxItems: schema.length }; } - return { - type: "array", - minItems: 0, - maxItems: 0 - }; + // `schema:[]` is an explicit way to specify that the rule does not accept any options + return { ...noOptionsSchema }; } - // Given a full schema, leave it alone - return schema || null; + // `schema:` is assumed to be a valid JSON Schema definition + return schema; } /** @@ -765,10 +788,18 @@ class ConfigValidator { */ validateRuleSchema(rule, localOptions) { if (!ruleValidators.has(rule)) { - const schema = this.getRuleOptionsSchema(rule); + try { + const schema = this.getRuleOptionsSchema(rule); + + if (schema) { + ruleValidators.set(rule, ajv.compile(schema)); + } + } catch (err) { + const errorWithCode = new Error(err.message, { cause: err }); + + errorWithCode.code = "ESLINT_INVALID_RULE_OPTIONS_SCHEMA"; - if (schema) { - ruleValidators.set(rule, ajv.compile(schema)); + throw errorWithCode; } } @@ -801,13 +832,21 @@ class ConfigValidator { this.validateRuleSchema(rule, Array.isArray(options) ? options.slice(1) : []); } } catch (err) { - const enhancedMessage = `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; + let enhancedMessage = err.code === "ESLINT_INVALID_RULE_OPTIONS_SCHEMA" + ? `Error while processing options validation schema of rule '${ruleId}': ${err.message}` + : `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; if (typeof source === "string") { - throw new Error(`${source}:\n\t${enhancedMessage}`); - } else { - throw new Error(enhancedMessage); + enhancedMessage = `${source}:\n\t${enhancedMessage}`; } + + const enhancedError = new Error(enhancedMessage, { cause: err }); + + if (err.code) { + enhancedError.code = err.code; + } + + throw enhancedError; } } diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs index eb2ed8d37ffef4..f3db9dfe5091f1 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/dist/eslintrc.cjs @@ -716,31 +716,18 @@ function createConfig(instance, indices) { * @param {string} pluginId The plugin ID for prefix. * @param {Record} defs The definitions to collect. * @param {Map} map The map to output. - * @param {function(T): U} [normalize] The normalize function for each value. * @returns {void} */ -function collect(pluginId, defs, map, normalize) { +function collect(pluginId, defs, map) { if (defs) { const prefix = pluginId && `${pluginId}/`; for (const [key, value] of Object.entries(defs)) { - map.set( - `${prefix}${key}`, - normalize ? normalize(value) : value - ); + map.set(`${prefix}${key}`, value); } } } -/** - * Normalize a rule definition. - * @param {Function|Rule} rule The rule definition to normalize. - * @returns {Rule} The normalized rule definition. - */ -function normalizePluginRule(rule) { - return typeof rule === "function" ? { create: rule } : rule; -} - /** * Delete the mutation methods from a given map. * @param {Map} map The map object to delete. @@ -782,7 +769,7 @@ function initPluginMemberMaps(elements, slots) { collect(pluginId, plugin.environments, slots.envMap); collect(pluginId, plugin.processors, slots.processorMap); - collect(pluginId, plugin.rules, slots.ruleMap, normalizePluginRule); + collect(pluginId, plugin.rules, slots.ruleMap); } } @@ -1938,6 +1925,13 @@ const severityMap = { const validated = new WeakSet(); +// JSON schema that disallows passing any options +const noOptionsSchema = Object.freeze({ + type: "array", + minItems: 0, + maxItems: 0 +}); + //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- @@ -1949,17 +1943,36 @@ class ConfigValidator { /** * Gets a complete options schema for a rule. - * @param {{create: Function, schema: (Array|null)}} rule A new-style rule object - * @returns {Object} JSON Schema for the rule's options. + * @param {Rule} rule A rule object + * @throws {TypeError} If `meta.schema` is specified but is not an array, object or `false`. + * @returns {Object|null} JSON Schema for the rule's options. + * `null` if rule wasn't passed or its `meta.schema` is `false`. */ getRuleOptionsSchema(rule) { if (!rule) { return null; } - const schema = rule.schema || rule.meta && rule.meta.schema; + if (!rule.meta) { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } + + const schema = rule.meta.schema; + + if (typeof schema === "undefined") { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } + + // `schema:false` is an allowed explicit opt-out of options validation for the rule + if (schema === false) { + return null; + } + + if (typeof schema !== "object" || schema === null) { + throw new TypeError("Rule's `meta.schema` must be an array or object"); + } - // Given a tuple of schemas, insert warning level at the beginning + // ESLint-specific array form needs to be converted into a valid JSON Schema definition if (Array.isArray(schema)) { if (schema.length) { return { @@ -1969,16 +1982,13 @@ class ConfigValidator { maxItems: schema.length }; } - return { - type: "array", - minItems: 0, - maxItems: 0 - }; + // `schema:[]` is an explicit way to specify that the rule does not accept any options + return { ...noOptionsSchema }; } - // Given a full schema, leave it alone - return schema || null; + // `schema:` is assumed to be a valid JSON Schema definition + return schema; } /** @@ -2006,10 +2016,18 @@ class ConfigValidator { */ validateRuleSchema(rule, localOptions) { if (!ruleValidators.has(rule)) { - const schema = this.getRuleOptionsSchema(rule); + try { + const schema = this.getRuleOptionsSchema(rule); + + if (schema) { + ruleValidators.set(rule, ajv.compile(schema)); + } + } catch (err) { + const errorWithCode = new Error(err.message, { cause: err }); - if (schema) { - ruleValidators.set(rule, ajv.compile(schema)); + errorWithCode.code = "ESLINT_INVALID_RULE_OPTIONS_SCHEMA"; + + throw errorWithCode; } } @@ -2042,13 +2060,21 @@ class ConfigValidator { this.validateRuleSchema(rule, Array.isArray(options) ? options.slice(1) : []); } } catch (err) { - const enhancedMessage = `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; + let enhancedMessage = err.code === "ESLINT_INVALID_RULE_OPTIONS_SCHEMA" + ? `Error while processing options validation schema of rule '${ruleId}': ${err.message}` + : `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; if (typeof source === "string") { - throw new Error(`${source}:\n\t${enhancedMessage}`); - } else { - throw new Error(enhancedMessage); + enhancedMessage = `${source}:\n\t${enhancedMessage}`; + } + + const enhancedError = new Error(enhancedMessage, { cause: err }); + + if (err.code) { + enhancedError.code = err.code; } + + throw enhancedError; } } @@ -4331,6 +4357,7 @@ const Legacy = { OverrideTester, getUsedExtractedConfigs, environments, + loadConfigFile, // shared ConfigOps, diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array-factory.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array-factory.js index 58c1e808beb94c..e4b18ebd898606 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array-factory.js +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array-factory.js @@ -1148,4 +1148,8 @@ class ConfigArrayFactory { } } -export { ConfigArrayFactory, createContext }; +export { + ConfigArrayFactory, + createContext, + loadConfigFile +}; diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/config-array.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/config-array.js index 133f5a242e8613..5766fc468a6674 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/config-array.js +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/config-array/config-array.js @@ -319,31 +319,18 @@ function createConfig(instance, indices) { * @param {string} pluginId The plugin ID for prefix. * @param {Record} defs The definitions to collect. * @param {Map} map The map to output. - * @param {function(T): U} [normalize] The normalize function for each value. * @returns {void} */ -function collect(pluginId, defs, map, normalize) { +function collect(pluginId, defs, map) { if (defs) { const prefix = pluginId && `${pluginId}/`; for (const [key, value] of Object.entries(defs)) { - map.set( - `${prefix}${key}`, - normalize ? normalize(value) : value - ); + map.set(`${prefix}${key}`, value); } } } -/** - * Normalize a rule definition. - * @param {Function|Rule} rule The rule definition to normalize. - * @returns {Rule} The normalized rule definition. - */ -function normalizePluginRule(rule) { - return typeof rule === "function" ? { create: rule } : rule; -} - /** * Delete the mutation methods from a given map. * @param {Map} map The map object to delete. @@ -385,7 +372,7 @@ function initPluginMemberMaps(elements, slots) { collect(pluginId, plugin.environments, slots.envMap); collect(pluginId, plugin.processors, slots.processorMap); - collect(pluginId, plugin.rules, slots.ruleMap, normalizePluginRule); + collect(pluginId, plugin.rules, slots.ruleMap); } } diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/index.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/index.js index 9e3d13f5fd03ed..a37e57465ac062 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/index.js +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/index.js @@ -8,7 +8,8 @@ import { ConfigArrayFactory, - createContext as createConfigArrayFactoryContext + createContext as createConfigArrayFactoryContext, + loadConfigFile } from "./config-array-factory.js"; import { CascadingConfigArrayFactory } from "./cascading-config-array-factory.js"; @@ -39,6 +40,7 @@ const Legacy = { OverrideTester, getUsedExtractedConfigs, environments, + loadConfigFile, // shared ConfigOps, diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/config-validator.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/config-validator.js index 32174a56b39ae2..531ccbf7a9a0cf 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/config-validator.js +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/lib/shared/config-validator.js @@ -5,6 +5,12 @@ /* eslint class-methods-use-this: "off" */ +//------------------------------------------------------------------------------ +// Typedefs +//------------------------------------------------------------------------------ + +/** @typedef {import("../shared/types").Rule} Rule */ + //------------------------------------------------------------------------------ // Requirements //------------------------------------------------------------------------------ @@ -33,6 +39,13 @@ const severityMap = { const validated = new WeakSet(); +// JSON schema that disallows passing any options +const noOptionsSchema = Object.freeze({ + type: "array", + minItems: 0, + maxItems: 0 +}); + //----------------------------------------------------------------------------- // Exports //----------------------------------------------------------------------------- @@ -44,17 +57,36 @@ export default class ConfigValidator { /** * Gets a complete options schema for a rule. - * @param {{create: Function, schema: (Array|null)}} rule A new-style rule object - * @returns {Object} JSON Schema for the rule's options. + * @param {Rule} rule A rule object + * @throws {TypeError} If `meta.schema` is specified but is not an array, object or `false`. + * @returns {Object|null} JSON Schema for the rule's options. + * `null` if rule wasn't passed or its `meta.schema` is `false`. */ getRuleOptionsSchema(rule) { if (!rule) { return null; } - const schema = rule.schema || rule.meta && rule.meta.schema; + if (!rule.meta) { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } - // Given a tuple of schemas, insert warning level at the beginning + const schema = rule.meta.schema; + + if (typeof schema === "undefined") { + return { ...noOptionsSchema }; // default if `meta.schema` is not specified + } + + // `schema:false` is an allowed explicit opt-out of options validation for the rule + if (schema === false) { + return null; + } + + if (typeof schema !== "object" || schema === null) { + throw new TypeError("Rule's `meta.schema` must be an array or object"); + } + + // ESLint-specific array form needs to be converted into a valid JSON Schema definition if (Array.isArray(schema)) { if (schema.length) { return { @@ -64,16 +96,13 @@ export default class ConfigValidator { maxItems: schema.length }; } - return { - type: "array", - minItems: 0, - maxItems: 0 - }; + // `schema:[]` is an explicit way to specify that the rule does not accept any options + return { ...noOptionsSchema }; } - // Given a full schema, leave it alone - return schema || null; + // `schema:` is assumed to be a valid JSON Schema definition + return schema; } /** @@ -101,10 +130,18 @@ export default class ConfigValidator { */ validateRuleSchema(rule, localOptions) { if (!ruleValidators.has(rule)) { - const schema = this.getRuleOptionsSchema(rule); + try { + const schema = this.getRuleOptionsSchema(rule); + + if (schema) { + ruleValidators.set(rule, ajv.compile(schema)); + } + } catch (err) { + const errorWithCode = new Error(err.message, { cause: err }); - if (schema) { - ruleValidators.set(rule, ajv.compile(schema)); + errorWithCode.code = "ESLINT_INVALID_RULE_OPTIONS_SCHEMA"; + + throw errorWithCode; } } @@ -137,13 +174,21 @@ export default class ConfigValidator { this.validateRuleSchema(rule, Array.isArray(options) ? options.slice(1) : []); } } catch (err) { - const enhancedMessage = `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; + let enhancedMessage = err.code === "ESLINT_INVALID_RULE_OPTIONS_SCHEMA" + ? `Error while processing options validation schema of rule '${ruleId}': ${err.message}` + : `Configuration for rule "${ruleId}" is invalid:\n${err.message}`; if (typeof source === "string") { - throw new Error(`${source}:\n\t${enhancedMessage}`); - } else { - throw new Error(enhancedMessage); + enhancedMessage = `${source}:\n\t${enhancedMessage}`; } + + const enhancedError = new Error(enhancedMessage, { cause: err }); + + if (err.code) { + enhancedError.code = err.code; + } + + throw enhancedError; } } diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/globals.json b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/globals.json new file mode 100644 index 00000000000000..4e75173f051713 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/globals.json @@ -0,0 +1,1998 @@ +{ + "builtin": { + "AggregateError": false, + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "BigInt": false, + "BigInt64Array": false, + "BigUint64Array": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "FinalizationRegistry": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "globalThis": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakRef": false, + "WeakSet": false + }, + "es5": { + "Array": false, + "Boolean": false, + "constructor": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Function": false, + "hasOwnProperty": false, + "Infinity": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "propertyIsEnumerable": false, + "RangeError": false, + "ReferenceError": false, + "RegExp": false, + "String": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false + }, + "es2015": { + "Array": false, + "ArrayBuffer": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakSet": false + }, + "es2017": { + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakSet": false + }, + "es2020": { + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "BigInt": false, + "BigInt64Array": false, + "BigUint64Array": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "globalThis": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakSet": false + }, + "es2021": { + "AggregateError": false, + "Array": false, + "ArrayBuffer": false, + "Atomics": false, + "BigInt": false, + "BigInt64Array": false, + "BigUint64Array": false, + "Boolean": false, + "constructor": false, + "DataView": false, + "Date": false, + "decodeURI": false, + "decodeURIComponent": false, + "encodeURI": false, + "encodeURIComponent": false, + "Error": false, + "escape": false, + "eval": false, + "EvalError": false, + "FinalizationRegistry": false, + "Float32Array": false, + "Float64Array": false, + "Function": false, + "globalThis": false, + "hasOwnProperty": false, + "Infinity": false, + "Int16Array": false, + "Int32Array": false, + "Int8Array": false, + "isFinite": false, + "isNaN": false, + "isPrototypeOf": false, + "JSON": false, + "Map": false, + "Math": false, + "NaN": false, + "Number": false, + "Object": false, + "parseFloat": false, + "parseInt": false, + "Promise": false, + "propertyIsEnumerable": false, + "Proxy": false, + "RangeError": false, + "ReferenceError": false, + "Reflect": false, + "RegExp": false, + "Set": false, + "SharedArrayBuffer": false, + "String": false, + "Symbol": false, + "SyntaxError": false, + "toLocaleString": false, + "toString": false, + "TypeError": false, + "Uint16Array": false, + "Uint32Array": false, + "Uint8Array": false, + "Uint8ClampedArray": false, + "undefined": false, + "unescape": false, + "URIError": false, + "valueOf": false, + "WeakMap": false, + "WeakRef": false, + "WeakSet": false + }, + "browser": { + "AbortController": false, + "AbortSignal": false, + "addEventListener": false, + "alert": false, + "AnalyserNode": false, + "Animation": false, + "AnimationEffectReadOnly": false, + "AnimationEffectTiming": false, + "AnimationEffectTimingReadOnly": false, + "AnimationEvent": false, + "AnimationPlaybackEvent": false, + "AnimationTimeline": false, + "applicationCache": false, + "ApplicationCache": false, + "ApplicationCacheErrorEvent": false, + "atob": false, + "Attr": false, + "Audio": false, + "AudioBuffer": false, + "AudioBufferSourceNode": false, + "AudioContext": false, + "AudioDestinationNode": false, + "AudioListener": false, + "AudioNode": false, + "AudioParam": false, + "AudioProcessingEvent": false, + "AudioScheduledSourceNode": false, + "AudioWorkletGlobalScope": false, + "AudioWorkletNode": false, + "AudioWorkletProcessor": false, + "BarProp": false, + "BaseAudioContext": false, + "BatteryManager": false, + "BeforeUnloadEvent": false, + "BiquadFilterNode": false, + "Blob": false, + "BlobEvent": false, + "blur": false, + "BroadcastChannel": false, + "btoa": false, + "BudgetService": false, + "ByteLengthQueuingStrategy": false, + "Cache": false, + "caches": false, + "CacheStorage": false, + "cancelAnimationFrame": false, + "cancelIdleCallback": false, + "CanvasCaptureMediaStreamTrack": false, + "CanvasGradient": false, + "CanvasPattern": false, + "CanvasRenderingContext2D": false, + "ChannelMergerNode": false, + "ChannelSplitterNode": false, + "CharacterData": false, + "clearInterval": false, + "clearTimeout": false, + "clientInformation": false, + "ClipboardEvent": false, + "ClipboardItem": false, + "close": false, + "closed": false, + "CloseEvent": false, + "Comment": false, + "CompositionEvent": false, + "CompressionStream": false, + "confirm": false, + "console": false, + "ConstantSourceNode": false, + "ConvolverNode": false, + "CountQueuingStrategy": false, + "createImageBitmap": false, + "Credential": false, + "CredentialsContainer": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CSS": false, + "CSSConditionRule": false, + "CSSFontFaceRule": false, + "CSSGroupingRule": false, + "CSSImportRule": false, + "CSSKeyframeRule": false, + "CSSKeyframesRule": false, + "CSSMatrixComponent": false, + "CSSMediaRule": false, + "CSSNamespaceRule": false, + "CSSPageRule": false, + "CSSPerspective": false, + "CSSRotate": false, + "CSSRule": false, + "CSSRuleList": false, + "CSSScale": false, + "CSSSkew": false, + "CSSSkewX": false, + "CSSSkewY": false, + "CSSStyleDeclaration": false, + "CSSStyleRule": false, + "CSSStyleSheet": false, + "CSSSupportsRule": false, + "CSSTransformValue": false, + "CSSTranslate": false, + "CustomElementRegistry": false, + "customElements": false, + "CustomEvent": false, + "DataTransfer": false, + "DataTransferItem": false, + "DataTransferItemList": false, + "DecompressionStream": false, + "defaultstatus": false, + "defaultStatus": false, + "DelayNode": false, + "DeviceMotionEvent": false, + "DeviceOrientationEvent": false, + "devicePixelRatio": false, + "dispatchEvent": false, + "document": false, + "Document": false, + "DocumentFragment": false, + "DocumentType": false, + "DOMError": false, + "DOMException": false, + "DOMImplementation": false, + "DOMMatrix": false, + "DOMMatrixReadOnly": false, + "DOMParser": false, + "DOMPoint": false, + "DOMPointReadOnly": false, + "DOMQuad": false, + "DOMRect": false, + "DOMRectList": false, + "DOMRectReadOnly": false, + "DOMStringList": false, + "DOMStringMap": false, + "DOMTokenList": false, + "DragEvent": false, + "DynamicsCompressorNode": false, + "Element": false, + "ErrorEvent": false, + "event": false, + "Event": false, + "EventSource": false, + "EventTarget": false, + "external": false, + "fetch": false, + "File": false, + "FileList": false, + "FileReader": false, + "find": false, + "focus": false, + "FocusEvent": false, + "FontFace": false, + "FontFaceSetLoadEvent": false, + "FormData": false, + "FormDataEvent": false, + "frameElement": false, + "frames": false, + "GainNode": false, + "Gamepad": false, + "GamepadButton": false, + "GamepadEvent": false, + "getComputedStyle": false, + "getSelection": false, + "HashChangeEvent": false, + "Headers": false, + "history": false, + "History": false, + "HTMLAllCollection": false, + "HTMLAnchorElement": false, + "HTMLAreaElement": false, + "HTMLAudioElement": false, + "HTMLBaseElement": false, + "HTMLBodyElement": false, + "HTMLBRElement": false, + "HTMLButtonElement": false, + "HTMLCanvasElement": false, + "HTMLCollection": false, + "HTMLContentElement": false, + "HTMLDataElement": false, + "HTMLDataListElement": false, + "HTMLDetailsElement": false, + "HTMLDialogElement": false, + "HTMLDirectoryElement": false, + "HTMLDivElement": false, + "HTMLDListElement": false, + "HTMLDocument": false, + "HTMLElement": false, + "HTMLEmbedElement": false, + "HTMLFieldSetElement": false, + "HTMLFontElement": false, + "HTMLFormControlsCollection": false, + "HTMLFormElement": false, + "HTMLFrameElement": false, + "HTMLFrameSetElement": false, + "HTMLHeadElement": false, + "HTMLHeadingElement": false, + "HTMLHRElement": false, + "HTMLHtmlElement": false, + "HTMLIFrameElement": false, + "HTMLImageElement": false, + "HTMLInputElement": false, + "HTMLLabelElement": false, + "HTMLLegendElement": false, + "HTMLLIElement": false, + "HTMLLinkElement": false, + "HTMLMapElement": false, + "HTMLMarqueeElement": false, + "HTMLMediaElement": false, + "HTMLMenuElement": false, + "HTMLMetaElement": false, + "HTMLMeterElement": false, + "HTMLModElement": false, + "HTMLObjectElement": false, + "HTMLOListElement": false, + "HTMLOptGroupElement": false, + "HTMLOptionElement": false, + "HTMLOptionsCollection": false, + "HTMLOutputElement": false, + "HTMLParagraphElement": false, + "HTMLParamElement": false, + "HTMLPictureElement": false, + "HTMLPreElement": false, + "HTMLProgressElement": false, + "HTMLQuoteElement": false, + "HTMLScriptElement": false, + "HTMLSelectElement": false, + "HTMLShadowElement": false, + "HTMLSlotElement": false, + "HTMLSourceElement": false, + "HTMLSpanElement": false, + "HTMLStyleElement": false, + "HTMLTableCaptionElement": false, + "HTMLTableCellElement": false, + "HTMLTableColElement": false, + "HTMLTableElement": false, + "HTMLTableRowElement": false, + "HTMLTableSectionElement": false, + "HTMLTemplateElement": false, + "HTMLTextAreaElement": false, + "HTMLTimeElement": false, + "HTMLTitleElement": false, + "HTMLTrackElement": false, + "HTMLUListElement": false, + "HTMLUnknownElement": false, + "HTMLVideoElement": false, + "IDBCursor": false, + "IDBCursorWithValue": false, + "IDBDatabase": false, + "IDBFactory": false, + "IDBIndex": false, + "IDBKeyRange": false, + "IDBObjectStore": false, + "IDBOpenDBRequest": false, + "IDBRequest": false, + "IDBTransaction": false, + "IDBVersionChangeEvent": false, + "IdleDeadline": false, + "IIRFilterNode": false, + "Image": false, + "ImageBitmap": false, + "ImageBitmapRenderingContext": false, + "ImageCapture": false, + "ImageData": false, + "indexedDB": false, + "innerHeight": false, + "innerWidth": false, + "InputEvent": false, + "IntersectionObserver": false, + "IntersectionObserverEntry": false, + "Intl": false, + "isSecureContext": false, + "KeyboardEvent": false, + "KeyframeEffect": false, + "KeyframeEffectReadOnly": false, + "length": false, + "localStorage": false, + "location": true, + "Location": false, + "locationbar": false, + "matchMedia": false, + "MediaDeviceInfo": false, + "MediaDevices": false, + "MediaElementAudioSourceNode": false, + "MediaEncryptedEvent": false, + "MediaError": false, + "MediaKeyMessageEvent": false, + "MediaKeySession": false, + "MediaKeyStatusMap": false, + "MediaKeySystemAccess": false, + "MediaList": false, + "MediaMetadata": false, + "MediaQueryList": false, + "MediaQueryListEvent": false, + "MediaRecorder": false, + "MediaSettingsRange": false, + "MediaSource": false, + "MediaStream": false, + "MediaStreamAudioDestinationNode": false, + "MediaStreamAudioSourceNode": false, + "MediaStreamConstraints": false, + "MediaStreamEvent": false, + "MediaStreamTrack": false, + "MediaStreamTrackEvent": false, + "menubar": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "MIDIAccess": false, + "MIDIConnectionEvent": false, + "MIDIInput": false, + "MIDIInputMap": false, + "MIDIMessageEvent": false, + "MIDIOutput": false, + "MIDIOutputMap": false, + "MIDIPort": false, + "MimeType": false, + "MimeTypeArray": false, + "MouseEvent": false, + "moveBy": false, + "moveTo": false, + "MutationEvent": false, + "MutationObserver": false, + "MutationRecord": false, + "name": false, + "NamedNodeMap": false, + "NavigationPreloadManager": false, + "navigator": false, + "Navigator": false, + "NavigatorUAData": false, + "NetworkInformation": false, + "Node": false, + "NodeFilter": false, + "NodeIterator": false, + "NodeList": false, + "Notification": false, + "OfflineAudioCompletionEvent": false, + "OfflineAudioContext": false, + "offscreenBuffering": false, + "OffscreenCanvas": true, + "OffscreenCanvasRenderingContext2D": false, + "onabort": true, + "onafterprint": true, + "onanimationend": true, + "onanimationiteration": true, + "onanimationstart": true, + "onappinstalled": true, + "onauxclick": true, + "onbeforeinstallprompt": true, + "onbeforeprint": true, + "onbeforeunload": true, + "onblur": true, + "oncancel": true, + "oncanplay": true, + "oncanplaythrough": true, + "onchange": true, + "onclick": true, + "onclose": true, + "oncontextmenu": true, + "oncuechange": true, + "ondblclick": true, + "ondevicemotion": true, + "ondeviceorientation": true, + "ondeviceorientationabsolute": true, + "ondrag": true, + "ondragend": true, + "ondragenter": true, + "ondragleave": true, + "ondragover": true, + "ondragstart": true, + "ondrop": true, + "ondurationchange": true, + "onemptied": true, + "onended": true, + "onerror": true, + "onfocus": true, + "ongotpointercapture": true, + "onhashchange": true, + "oninput": true, + "oninvalid": true, + "onkeydown": true, + "onkeypress": true, + "onkeyup": true, + "onlanguagechange": true, + "onload": true, + "onloadeddata": true, + "onloadedmetadata": true, + "onloadstart": true, + "onlostpointercapture": true, + "onmessage": true, + "onmessageerror": true, + "onmousedown": true, + "onmouseenter": true, + "onmouseleave": true, + "onmousemove": true, + "onmouseout": true, + "onmouseover": true, + "onmouseup": true, + "onmousewheel": true, + "onoffline": true, + "ononline": true, + "onpagehide": true, + "onpageshow": true, + "onpause": true, + "onplay": true, + "onplaying": true, + "onpointercancel": true, + "onpointerdown": true, + "onpointerenter": true, + "onpointerleave": true, + "onpointermove": true, + "onpointerout": true, + "onpointerover": true, + "onpointerup": true, + "onpopstate": true, + "onprogress": true, + "onratechange": true, + "onrejectionhandled": true, + "onreset": true, + "onresize": true, + "onscroll": true, + "onsearch": true, + "onseeked": true, + "onseeking": true, + "onselect": true, + "onstalled": true, + "onstorage": true, + "onsubmit": true, + "onsuspend": true, + "ontimeupdate": true, + "ontoggle": true, + "ontransitionend": true, + "onunhandledrejection": true, + "onunload": true, + "onvolumechange": true, + "onwaiting": true, + "onwheel": true, + "open": false, + "openDatabase": false, + "opener": false, + "Option": false, + "origin": false, + "OscillatorNode": false, + "outerHeight": false, + "outerWidth": false, + "OverconstrainedError": false, + "PageTransitionEvent": false, + "pageXOffset": false, + "pageYOffset": false, + "PannerNode": false, + "parent": false, + "Path2D": false, + "PaymentAddress": false, + "PaymentRequest": false, + "PaymentRequestUpdateEvent": false, + "PaymentResponse": false, + "performance": false, + "Performance": false, + "PerformanceEntry": false, + "PerformanceLongTaskTiming": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceNavigation": false, + "PerformanceNavigationTiming": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformancePaintTiming": false, + "PerformanceResourceTiming": false, + "PerformanceTiming": false, + "PeriodicWave": false, + "Permissions": false, + "PermissionStatus": false, + "personalbar": false, + "PhotoCapabilities": false, + "Plugin": false, + "PluginArray": false, + "PointerEvent": false, + "PopStateEvent": false, + "postMessage": false, + "Presentation": false, + "PresentationAvailability": false, + "PresentationConnection": false, + "PresentationConnectionAvailableEvent": false, + "PresentationConnectionCloseEvent": false, + "PresentationConnectionList": false, + "PresentationReceiver": false, + "PresentationRequest": false, + "print": false, + "ProcessingInstruction": false, + "ProgressEvent": false, + "PromiseRejectionEvent": false, + "prompt": false, + "PushManager": false, + "PushSubscription": false, + "PushSubscriptionOptions": false, + "queueMicrotask": false, + "RadioNodeList": false, + "Range": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "registerProcessor": false, + "RemotePlayback": false, + "removeEventListener": false, + "reportError": false, + "Request": false, + "requestAnimationFrame": false, + "requestIdleCallback": false, + "resizeBy": false, + "ResizeObserver": false, + "ResizeObserverEntry": false, + "resizeTo": false, + "Response": false, + "RTCCertificate": false, + "RTCDataChannel": false, + "RTCDataChannelEvent": false, + "RTCDtlsTransport": false, + "RTCIceCandidate": false, + "RTCIceGatherer": false, + "RTCIceTransport": false, + "RTCPeerConnection": false, + "RTCPeerConnectionIceEvent": false, + "RTCRtpContributingSource": false, + "RTCRtpReceiver": false, + "RTCRtpSender": false, + "RTCSctpTransport": false, + "RTCSessionDescription": false, + "RTCStatsReport": false, + "RTCTrackEvent": false, + "screen": false, + "Screen": false, + "screenLeft": false, + "ScreenOrientation": false, + "screenTop": false, + "screenX": false, + "screenY": false, + "ScriptProcessorNode": false, + "scroll": false, + "scrollbars": false, + "scrollBy": false, + "scrollTo": false, + "scrollX": false, + "scrollY": false, + "SecurityPolicyViolationEvent": false, + "Selection": false, + "self": false, + "ServiceWorker": false, + "ServiceWorkerContainer": false, + "ServiceWorkerRegistration": false, + "sessionStorage": false, + "setInterval": false, + "setTimeout": false, + "ShadowRoot": false, + "SharedWorker": false, + "SourceBuffer": false, + "SourceBufferList": false, + "speechSynthesis": false, + "SpeechSynthesisEvent": false, + "SpeechSynthesisUtterance": false, + "StaticRange": false, + "status": false, + "statusbar": false, + "StereoPannerNode": false, + "stop": false, + "Storage": false, + "StorageEvent": false, + "StorageManager": false, + "structuredClone": false, + "styleMedia": false, + "StyleSheet": false, + "StyleSheetList": false, + "SubmitEvent": false, + "SubtleCrypto": false, + "SVGAElement": false, + "SVGAngle": false, + "SVGAnimatedAngle": false, + "SVGAnimatedBoolean": false, + "SVGAnimatedEnumeration": false, + "SVGAnimatedInteger": false, + "SVGAnimatedLength": false, + "SVGAnimatedLengthList": false, + "SVGAnimatedNumber": false, + "SVGAnimatedNumberList": false, + "SVGAnimatedPreserveAspectRatio": false, + "SVGAnimatedRect": false, + "SVGAnimatedString": false, + "SVGAnimatedTransformList": false, + "SVGAnimateElement": false, + "SVGAnimateMotionElement": false, + "SVGAnimateTransformElement": false, + "SVGAnimationElement": false, + "SVGCircleElement": false, + "SVGClipPathElement": false, + "SVGComponentTransferFunctionElement": false, + "SVGDefsElement": false, + "SVGDescElement": false, + "SVGDiscardElement": false, + "SVGElement": false, + "SVGEllipseElement": false, + "SVGFEBlendElement": false, + "SVGFEColorMatrixElement": false, + "SVGFEComponentTransferElement": false, + "SVGFECompositeElement": false, + "SVGFEConvolveMatrixElement": false, + "SVGFEDiffuseLightingElement": false, + "SVGFEDisplacementMapElement": false, + "SVGFEDistantLightElement": false, + "SVGFEDropShadowElement": false, + "SVGFEFloodElement": false, + "SVGFEFuncAElement": false, + "SVGFEFuncBElement": false, + "SVGFEFuncGElement": false, + "SVGFEFuncRElement": false, + "SVGFEGaussianBlurElement": false, + "SVGFEImageElement": false, + "SVGFEMergeElement": false, + "SVGFEMergeNodeElement": false, + "SVGFEMorphologyElement": false, + "SVGFEOffsetElement": false, + "SVGFEPointLightElement": false, + "SVGFESpecularLightingElement": false, + "SVGFESpotLightElement": false, + "SVGFETileElement": false, + "SVGFETurbulenceElement": false, + "SVGFilterElement": false, + "SVGForeignObjectElement": false, + "SVGGElement": false, + "SVGGeometryElement": false, + "SVGGradientElement": false, + "SVGGraphicsElement": false, + "SVGImageElement": false, + "SVGLength": false, + "SVGLengthList": false, + "SVGLinearGradientElement": false, + "SVGLineElement": false, + "SVGMarkerElement": false, + "SVGMaskElement": false, + "SVGMatrix": false, + "SVGMetadataElement": false, + "SVGMPathElement": false, + "SVGNumber": false, + "SVGNumberList": false, + "SVGPathElement": false, + "SVGPatternElement": false, + "SVGPoint": false, + "SVGPointList": false, + "SVGPolygonElement": false, + "SVGPolylineElement": false, + "SVGPreserveAspectRatio": false, + "SVGRadialGradientElement": false, + "SVGRect": false, + "SVGRectElement": false, + "SVGScriptElement": false, + "SVGSetElement": false, + "SVGStopElement": false, + "SVGStringList": false, + "SVGStyleElement": false, + "SVGSVGElement": false, + "SVGSwitchElement": false, + "SVGSymbolElement": false, + "SVGTextContentElement": false, + "SVGTextElement": false, + "SVGTextPathElement": false, + "SVGTextPositioningElement": false, + "SVGTitleElement": false, + "SVGTransform": false, + "SVGTransformList": false, + "SVGTSpanElement": false, + "SVGUnitTypes": false, + "SVGUseElement": false, + "SVGViewElement": false, + "TaskAttributionTiming": false, + "Text": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TextEvent": false, + "TextMetrics": false, + "TextTrack": false, + "TextTrackCue": false, + "TextTrackCueList": false, + "TextTrackList": false, + "TimeRanges": false, + "ToggleEvent": false, + "toolbar": false, + "top": false, + "Touch": false, + "TouchEvent": false, + "TouchList": false, + "TrackEvent": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "TransitionEvent": false, + "TreeWalker": false, + "UIEvent": false, + "URL": false, + "URLSearchParams": false, + "ValidityState": false, + "visualViewport": false, + "VisualViewport": false, + "VTTCue": false, + "WaveShaperNode": false, + "WebAssembly": false, + "WebGL2RenderingContext": false, + "WebGLActiveInfo": false, + "WebGLBuffer": false, + "WebGLContextEvent": false, + "WebGLFramebuffer": false, + "WebGLProgram": false, + "WebGLQuery": false, + "WebGLRenderbuffer": false, + "WebGLRenderingContext": false, + "WebGLSampler": false, + "WebGLShader": false, + "WebGLShaderPrecisionFormat": false, + "WebGLSync": false, + "WebGLTexture": false, + "WebGLTransformFeedback": false, + "WebGLUniformLocation": false, + "WebGLVertexArrayObject": false, + "WebSocket": false, + "WheelEvent": false, + "window": false, + "Window": false, + "Worker": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false, + "XMLDocument": false, + "XMLHttpRequest": false, + "XMLHttpRequestEventTarget": false, + "XMLHttpRequestUpload": false, + "XMLSerializer": false, + "XPathEvaluator": false, + "XPathExpression": false, + "XPathResult": false, + "XRAnchor": false, + "XRBoundedReferenceSpace": false, + "XRCPUDepthInformation": false, + "XRDepthInformation": false, + "XRFrame": false, + "XRInputSource": false, + "XRInputSourceArray": false, + "XRInputSourceEvent": false, + "XRInputSourcesChangeEvent": false, + "XRPose": false, + "XRReferenceSpace": false, + "XRReferenceSpaceEvent": false, + "XRRenderState": false, + "XRRigidTransform": false, + "XRSession": false, + "XRSessionEvent": false, + "XRSpace": false, + "XRSystem": false, + "XRView": false, + "XRViewerPose": false, + "XRViewport": false, + "XRWebGLBinding": false, + "XRWebGLDepthInformation": false, + "XRWebGLLayer": false, + "XSLTProcessor": false + }, + "worker": { + "addEventListener": false, + "applicationCache": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "ByteLengthQueuingStrategy": false, + "Cache": false, + "caches": false, + "clearInterval": false, + "clearTimeout": false, + "close": true, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "ErrorEvent": false, + "Event": false, + "fetch": false, + "File": false, + "FileReaderSync": false, + "FormData": false, + "Headers": false, + "IDBCursor": false, + "IDBCursorWithValue": false, + "IDBDatabase": false, + "IDBFactory": false, + "IDBIndex": false, + "IDBKeyRange": false, + "IDBObjectStore": false, + "IDBOpenDBRequest": false, + "IDBRequest": false, + "IDBTransaction": false, + "IDBVersionChangeEvent": false, + "ImageData": false, + "importScripts": true, + "indexedDB": false, + "location": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "name": false, + "navigator": false, + "Notification": false, + "onclose": true, + "onconnect": true, + "onerror": true, + "onlanguagechange": true, + "onmessage": true, + "onoffline": true, + "ononline": true, + "onrejectionhandled": true, + "onunhandledrejection": true, + "performance": false, + "Performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceNavigation": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "PerformanceTiming": false, + "postMessage": true, + "Promise": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "removeEventListener": false, + "reportError": false, + "Request": false, + "Response": false, + "self": true, + "ServiceWorkerRegistration": false, + "setInterval": false, + "setTimeout": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WebSocket": false, + "Worker": false, + "WorkerGlobalScope": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false, + "XMLHttpRequest": false + }, + "node": { + "__dirname": false, + "__filename": false, + "AbortController": false, + "AbortSignal": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "Buffer": false, + "ByteLengthQueuingStrategy": false, + "clearImmediate": false, + "clearInterval": false, + "clearTimeout": false, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "DOMException": false, + "Event": false, + "EventTarget": false, + "exports": true, + "fetch": false, + "File": false, + "FormData": false, + "global": false, + "Headers": false, + "Intl": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "module": false, + "performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "process": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "Request": false, + "require": false, + "Response": false, + "setImmediate": false, + "setInterval": false, + "setTimeout": false, + "structuredClone": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false + }, + "nodeBuiltin": { + "AbortController": false, + "AbortSignal": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "Buffer": false, + "ByteLengthQueuingStrategy": false, + "clearImmediate": false, + "clearInterval": false, + "clearTimeout": false, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "DOMException": false, + "Event": false, + "EventTarget": false, + "fetch": false, + "File": false, + "FormData": false, + "global": false, + "Headers": false, + "Intl": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "process": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "Request": false, + "Response": false, + "setImmediate": false, + "setInterval": false, + "setTimeout": false, + "structuredClone": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false + }, + "commonjs": { + "exports": true, + "global": false, + "module": false, + "require": false + }, + "amd": { + "define": false, + "require": false + }, + "mocha": { + "after": false, + "afterEach": false, + "before": false, + "beforeEach": false, + "context": false, + "describe": false, + "it": false, + "mocha": false, + "run": false, + "setup": false, + "specify": false, + "suite": false, + "suiteSetup": false, + "suiteTeardown": false, + "teardown": false, + "test": false, + "xcontext": false, + "xdescribe": false, + "xit": false, + "xspecify": false + }, + "jasmine": { + "afterAll": false, + "afterEach": false, + "beforeAll": false, + "beforeEach": false, + "describe": false, + "expect": false, + "expectAsync": false, + "fail": false, + "fdescribe": false, + "fit": false, + "it": false, + "jasmine": false, + "pending": false, + "runs": false, + "spyOn": false, + "spyOnAllFunctions": false, + "spyOnProperty": false, + "waits": false, + "waitsFor": false, + "xdescribe": false, + "xit": false + }, + "jest": { + "afterAll": false, + "afterEach": false, + "beforeAll": false, + "beforeEach": false, + "describe": false, + "expect": false, + "fdescribe": false, + "fit": false, + "it": false, + "jest": false, + "pit": false, + "require": false, + "test": false, + "xdescribe": false, + "xit": false, + "xtest": false + }, + "qunit": { + "asyncTest": false, + "deepEqual": false, + "equal": false, + "expect": false, + "module": false, + "notDeepEqual": false, + "notEqual": false, + "notOk": false, + "notPropEqual": false, + "notStrictEqual": false, + "ok": false, + "propEqual": false, + "QUnit": false, + "raises": false, + "start": false, + "stop": false, + "strictEqual": false, + "test": false, + "throws": false + }, + "phantomjs": { + "console": true, + "exports": true, + "phantom": true, + "require": true, + "WebPage": true + }, + "couch": { + "emit": false, + "exports": false, + "getRow": false, + "log": false, + "module": false, + "provides": false, + "require": false, + "respond": false, + "send": false, + "start": false, + "sum": false + }, + "rhino": { + "defineClass": false, + "deserialize": false, + "gc": false, + "help": false, + "importClass": false, + "importPackage": false, + "java": false, + "load": false, + "loadClass": false, + "Packages": false, + "print": false, + "quit": false, + "readFile": false, + "readUrl": false, + "runCommand": false, + "seal": false, + "serialize": false, + "spawn": false, + "sync": false, + "toint32": false, + "version": false + }, + "nashorn": { + "__DIR__": false, + "__FILE__": false, + "__LINE__": false, + "com": false, + "edu": false, + "exit": false, + "java": false, + "Java": false, + "javafx": false, + "JavaImporter": false, + "javax": false, + "JSAdapter": false, + "load": false, + "loadWithNewGlobal": false, + "org": false, + "Packages": false, + "print": false, + "quit": false + }, + "wsh": { + "ActiveXObject": false, + "CollectGarbage": false, + "Debug": false, + "Enumerator": false, + "GetObject": false, + "RuntimeObject": false, + "ScriptEngine": false, + "ScriptEngineBuildVersion": false, + "ScriptEngineMajorVersion": false, + "ScriptEngineMinorVersion": false, + "VBArray": false, + "WScript": false, + "WSH": false + }, + "jquery": { + "$": false, + "jQuery": false + }, + "yui": { + "YAHOO": false, + "YAHOO_config": false, + "YUI": false, + "YUI_config": false + }, + "shelljs": { + "cat": false, + "cd": false, + "chmod": false, + "config": false, + "cp": false, + "dirs": false, + "echo": false, + "env": false, + "error": false, + "exec": false, + "exit": false, + "find": false, + "grep": false, + "ln": false, + "ls": false, + "mkdir": false, + "mv": false, + "popd": false, + "pushd": false, + "pwd": false, + "rm": false, + "sed": false, + "set": false, + "target": false, + "tempdir": false, + "test": false, + "touch": false, + "which": false + }, + "prototypejs": { + "$": false, + "$$": false, + "$A": false, + "$break": false, + "$continue": false, + "$F": false, + "$H": false, + "$R": false, + "$w": false, + "Abstract": false, + "Ajax": false, + "Autocompleter": false, + "Builder": false, + "Class": false, + "Control": false, + "Draggable": false, + "Draggables": false, + "Droppables": false, + "Effect": false, + "Element": false, + "Enumerable": false, + "Event": false, + "Field": false, + "Form": false, + "Hash": false, + "Insertion": false, + "ObjectRange": false, + "PeriodicalExecuter": false, + "Position": false, + "Prototype": false, + "Scriptaculous": false, + "Selector": false, + "Sortable": false, + "SortableObserver": false, + "Sound": false, + "Template": false, + "Toggle": false, + "Try": false + }, + "meteor": { + "$": false, + "Accounts": false, + "AccountsClient": false, + "AccountsCommon": false, + "AccountsServer": false, + "App": false, + "Assets": false, + "Blaze": false, + "check": false, + "Cordova": false, + "DDP": false, + "DDPRateLimiter": false, + "DDPServer": false, + "Deps": false, + "EJSON": false, + "Email": false, + "HTTP": false, + "Log": false, + "Match": false, + "Meteor": false, + "Mongo": false, + "MongoInternals": false, + "Npm": false, + "Package": false, + "Plugin": false, + "process": false, + "Random": false, + "ReactiveDict": false, + "ReactiveVar": false, + "Router": false, + "ServiceConfiguration": false, + "Session": false, + "share": false, + "Spacebars": false, + "Template": false, + "Tinytest": false, + "Tracker": false, + "UI": false, + "Utils": false, + "WebApp": false, + "WebAppInternals": false + }, + "mongo": { + "_isWindows": false, + "_rand": false, + "BulkWriteResult": false, + "cat": false, + "cd": false, + "connect": false, + "db": false, + "getHostName": false, + "getMemInfo": false, + "hostname": false, + "ISODate": false, + "listFiles": false, + "load": false, + "ls": false, + "md5sumFile": false, + "mkdir": false, + "Mongo": false, + "NumberInt": false, + "NumberLong": false, + "ObjectId": false, + "PlanCache": false, + "print": false, + "printjson": false, + "pwd": false, + "quit": false, + "removeFile": false, + "rs": false, + "sh": false, + "UUID": false, + "version": false, + "WriteResult": false + }, + "applescript": { + "$": false, + "Application": false, + "Automation": false, + "console": false, + "delay": false, + "Library": false, + "ObjC": false, + "ObjectSpecifier": false, + "Path": false, + "Progress": false, + "Ref": false + }, + "serviceworker": { + "addEventListener": false, + "applicationCache": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "ByteLengthQueuingStrategy": false, + "Cache": false, + "caches": false, + "CacheStorage": false, + "clearInterval": false, + "clearTimeout": false, + "Client": false, + "clients": false, + "Clients": false, + "close": true, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "ErrorEvent": false, + "Event": false, + "ExtendableEvent": false, + "ExtendableMessageEvent": false, + "fetch": false, + "FetchEvent": false, + "File": false, + "FileReaderSync": false, + "FormData": false, + "Headers": false, + "IDBCursor": false, + "IDBCursorWithValue": false, + "IDBDatabase": false, + "IDBFactory": false, + "IDBIndex": false, + "IDBKeyRange": false, + "IDBObjectStore": false, + "IDBOpenDBRequest": false, + "IDBRequest": false, + "IDBTransaction": false, + "IDBVersionChangeEvent": false, + "ImageData": false, + "importScripts": false, + "indexedDB": false, + "location": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "name": false, + "navigator": false, + "Notification": false, + "onclose": true, + "onconnect": true, + "onerror": true, + "onfetch": true, + "oninstall": true, + "onlanguagechange": true, + "onmessage": true, + "onmessageerror": true, + "onnotificationclick": true, + "onnotificationclose": true, + "onoffline": true, + "ononline": true, + "onpush": true, + "onpushsubscriptionchange": true, + "onrejectionhandled": true, + "onsync": true, + "onunhandledrejection": true, + "performance": false, + "Performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceNavigation": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "PerformanceTiming": false, + "postMessage": true, + "Promise": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "registration": false, + "removeEventListener": false, + "Request": false, + "Response": false, + "self": false, + "ServiceWorker": false, + "ServiceWorkerContainer": false, + "ServiceWorkerGlobalScope": false, + "ServiceWorkerMessageEvent": false, + "ServiceWorkerRegistration": false, + "setInterval": false, + "setTimeout": false, + "skipWaiting": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WebSocket": false, + "WindowClient": false, + "Worker": false, + "WorkerGlobalScope": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false, + "XMLHttpRequest": false + }, + "atomtest": { + "advanceClock": false, + "atom": false, + "fakeClearInterval": false, + "fakeClearTimeout": false, + "fakeSetInterval": false, + "fakeSetTimeout": false, + "resetTimeouts": false, + "waitsForPromise": false + }, + "embertest": { + "andThen": false, + "click": false, + "currentPath": false, + "currentRouteName": false, + "currentURL": false, + "fillIn": false, + "find": false, + "findAll": false, + "findWithAssert": false, + "keyEvent": false, + "pauseTest": false, + "resumeTest": false, + "triggerEvent": false, + "visit": false, + "wait": false + }, + "protractor": { + "$": false, + "$$": false, + "browser": false, + "by": false, + "By": false, + "DartObject": false, + "element": false, + "protractor": false + }, + "shared-node-browser": { + "AbortController": false, + "AbortSignal": false, + "atob": false, + "Blob": false, + "BroadcastChannel": false, + "btoa": false, + "ByteLengthQueuingStrategy": false, + "clearInterval": false, + "clearTimeout": false, + "CompressionStream": false, + "console": false, + "CountQueuingStrategy": false, + "crypto": false, + "Crypto": false, + "CryptoKey": false, + "CustomEvent": false, + "DecompressionStream": false, + "DOMException": false, + "Event": false, + "EventTarget": false, + "fetch": false, + "File": false, + "FormData": false, + "Headers": false, + "Intl": false, + "MessageChannel": false, + "MessageEvent": false, + "MessagePort": false, + "performance": false, + "PerformanceEntry": false, + "PerformanceMark": false, + "PerformanceMeasure": false, + "PerformanceObserver": false, + "PerformanceObserverEntryList": false, + "PerformanceResourceTiming": false, + "queueMicrotask": false, + "ReadableByteStreamController": false, + "ReadableStream": false, + "ReadableStreamBYOBReader": false, + "ReadableStreamBYOBRequest": false, + "ReadableStreamDefaultController": false, + "ReadableStreamDefaultReader": false, + "Request": false, + "Response": false, + "setInterval": false, + "setTimeout": false, + "structuredClone": false, + "SubtleCrypto": false, + "TextDecoder": false, + "TextDecoderStream": false, + "TextEncoder": false, + "TextEncoderStream": false, + "TransformStream": false, + "TransformStreamDefaultController": false, + "URL": false, + "URLSearchParams": false, + "WebAssembly": false, + "WritableStream": false, + "WritableStreamDefaultController": false, + "WritableStreamDefaultWriter": false + }, + "webextensions": { + "browser": false, + "chrome": false, + "opr": false + }, + "greasemonkey": { + "cloneInto": false, + "createObjectIn": false, + "exportFunction": false, + "GM": false, + "GM_addElement": false, + "GM_addStyle": false, + "GM_addValueChangeListener": false, + "GM_deleteValue": false, + "GM_download": false, + "GM_getResourceText": false, + "GM_getResourceURL": false, + "GM_getTab": false, + "GM_getTabs": false, + "GM_getValue": false, + "GM_info": false, + "GM_listValues": false, + "GM_log": false, + "GM_notification": false, + "GM_openInTab": false, + "GM_registerMenuCommand": false, + "GM_removeValueChangeListener": false, + "GM_saveTab": false, + "GM_setClipboard": false, + "GM_setValue": false, + "GM_unregisterMenuCommand": false, + "GM_xmlhttpRequest": false, + "unsafeWindow": false + }, + "devtools": { + "$": false, + "$_": false, + "$$": false, + "$0": false, + "$1": false, + "$2": false, + "$3": false, + "$4": false, + "$x": false, + "chrome": false, + "clear": false, + "copy": false, + "debug": false, + "dir": false, + "dirxml": false, + "getEventListeners": false, + "inspect": false, + "keys": false, + "monitor": false, + "monitorEvents": false, + "profile": false, + "profileEnd": false, + "queryObjects": false, + "table": false, + "undebug": false, + "unmonitor": false, + "unmonitorEvents": false, + "values": false + } +} diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/index.js b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/index.js new file mode 100644 index 00000000000000..a951582e4176e8 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/index.js @@ -0,0 +1,2 @@ +'use strict'; +module.exports = require('./globals.json'); diff --git a/tools/node_modules/eslint/node_modules/type-fest/license b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/license similarity index 92% rename from tools/node_modules/eslint/node_modules/type-fest/license rename to tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/license index 3e4c85ab7effdc..fa7ceba3eb4a96 100644 --- a/tools/node_modules/eslint/node_modules/type-fest/license +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/license @@ -1,6 +1,6 @@ MIT License -Copyright (c) Sindre Sorhus (https:/sindresorhus.com) +Copyright (c) Sindre Sorhus (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/package.json b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/package.json new file mode 100644 index 00000000000000..fca10a52d13024 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/package.json @@ -0,0 +1,58 @@ +{ + "name": "globals", + "version": "14.0.0", + "description": "Global identifiers from different JavaScript environments", + "license": "MIT", + "repository": "sindresorhus/globals", + "funding": "https://github.com/sponsors/sindresorhus", + "author": { + "name": "Sindre Sorhus", + "email": "sindresorhus@gmail.com", + "url": "https://sindresorhus.com" + }, + "sideEffects": false, + "engines": { + "node": ">=18" + }, + "scripts": { + "test": "xo && ava && tsd", + "prepare": "npm run --silent update-types", + "update-builtin-globals": "node scripts/get-builtin-globals.mjs", + "update-types": "node scripts/generate-types.mjs > index.d.ts" + }, + "files": [ + "index.js", + "index.d.ts", + "globals.json" + ], + "keywords": [ + "globals", + "global", + "identifiers", + "variables", + "vars", + "jshint", + "eslint", + "environments" + ], + "devDependencies": { + "ava": "^2.4.0", + "cheerio": "^1.0.0-rc.12", + "tsd": "^0.30.4", + "type-fest": "^4.10.2", + "xo": "^0.36.1" + }, + "xo": { + "ignores": [ + "get-browser-globals.js" + ], + "rules": { + "node/no-unsupported-features/es-syntax": "off" + } + }, + "tsd": { + "compilerOptions": { + "resolveJsonModule": true + } + } +} diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/readme.md b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/readme.md new file mode 100644 index 00000000000000..29442a85510b95 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/node_modules/globals/readme.md @@ -0,0 +1,44 @@ +# globals + +> Global identifiers from different JavaScript environments + +It's just a [JSON file](globals.json), so use it in any environment. + +This package is used by ESLint. + +**This package [no longer accepts](https://github.com/sindresorhus/globals/issues/82) new environments. If you need it for ESLint, just [create a plugin](http://eslint.org/docs/developer-guide/working-with-plugins#environments-in-plugins).** + +## Install + +```sh +npm install globals +``` + +## Usage + +```js +const globals = require('globals'); + +console.log(globals.browser); +/* +{ + addEventListener: false, + applicationCache: false, + ArrayBuffer: false, + atob: false, + … +} +*/ +``` + +Each global is given a value of `true` or `false`. A value of `true` indicates that the variable may be overwritten. A value of `false` indicates that the variable should be considered read-only. This information is used by static analysis tools to flag incorrect behavior. We assume all variables should be `false` unless we hear otherwise. + +For Node.js this package provides two sets of globals: + +- `globals.nodeBuiltin`: Globals available to all code running in Node.js. + These will usually be available as properties on the `global` object and include `process`, `Buffer`, but not CommonJS arguments like `require`. + See: https://nodejs.org/api/globals.html +- `globals.node`: A combination of the globals from `nodeBuiltin` plus all CommonJS arguments ("CommonJS module scope"). + See: https://nodejs.org/api/modules.html#modules_the_module_scope + +When analyzing code that is known to run outside of a CommonJS wrapper, for example, JavaScript modules, `nodeBuiltin` can find accidental CommonJS references. diff --git a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json index aa43e7563bb912..fea77e2d9d39cc 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json +++ b/tools/node_modules/eslint/node_modules/@eslint/eslintrc/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/eslintrc", - "version": "2.1.4", + "version": "3.1.0", "description": "The legacy ESLintRC config file format for ESLint", "type": "module", "main": "./dist/eslintrc.cjs", @@ -61,15 +61,15 @@ "fs-teardown": "^0.1.3", "mocha": "^9.0.3", "rollup": "^2.70.1", - "shelljs": "^0.8.4", + "shelljs": "^0.8.5", "sinon": "^11.1.2", "temp-dir": "^2.0.0" }, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", - "espree": "^9.6.0", - "globals": "^13.19.0", + "espree": "^10.0.1", + "globals": "^14.0.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -77,6 +77,6 @@ "strip-json-comments": "^3.1.1" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } } diff --git a/tools/node_modules/eslint/node_modules/@eslint/js/package.json b/tools/node_modules/eslint/node_modules/@eslint/js/package.json index 8f6776fa06d046..5bd4e24613e01c 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/js/package.json +++ b/tools/node_modules/eslint/node_modules/@eslint/js/package.json @@ -1,6 +1,6 @@ { "name": "@eslint/js", - "version": "8.57.0", + "version": "9.3.0", "description": "ESLint JavaScript language implementation", "main": "./src/index.js", "scripts": {}, @@ -26,6 +26,6 @@ ], "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } } diff --git a/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-all.js b/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-all.js index f2f7a664af6cf3..e7f4e0e3a11b73 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-all.js +++ b/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-all.js @@ -6,6 +6,14 @@ /* eslint quote-props: off -- autogenerated so don't lint */ +/* + * IMPORTANT! + * + * We cannot add a "name" property to this object because it's still used in eslintrc + * which doesn't support the "name" property. If we add a "name" property, it will + * cause an error. + */ + module.exports = Object.freeze({ "rules": { "accessor-pairs": "error", @@ -36,7 +44,6 @@ module.exports = Object.freeze({ "id-length": "error", "id-match": "error", "init-declarations": "error", - "line-comment-position": "error", "logical-assignment-operators": "error", "max-classes-per-file": "error", "max-depth": "error", @@ -45,7 +52,6 @@ module.exports = Object.freeze({ "max-nested-callbacks": "error", "max-params": "error", "max-statements": "error", - "multiline-comment-style": "error", "new-cap": "error", "no-alert": "error", "no-array-constructor": "error", @@ -114,7 +120,6 @@ module.exports = Object.freeze({ "no-new": "error", "no-new-func": "error", "no-new-native-nonconstructor": "error", - "no-new-symbol": "error", "no-new-wrappers": "error", "no-nonoctal-decimal-escape": "error", "no-obj-calls": "error", @@ -163,6 +168,7 @@ module.exports = Object.freeze({ "no-unused-private-class-members": "error", "no-unused-vars": "error", "no-use-before-define": "error", + "no-useless-assignment": "error", "no-useless-backreference": "error", "no-useless-call": "error", "no-useless-catch": "error", diff --git a/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-recommended.js b/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-recommended.js index 248c613caed866..3559267efc6f1f 100644 --- a/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-recommended.js +++ b/tools/node_modules/eslint/node_modules/@eslint/js/src/configs/eslint-recommended.js @@ -8,7 +8,14 @@ /* eslint sort-keys: ["error", "asc"] -- Long, so make more readable */ -/** @type {import("../lib/shared/types").ConfigData} */ +/* + * IMPORTANT! + * + * We cannot add a "name" property to this object because it's still used in eslintrc + * which doesn't support the "name" property. If we add a "name" property, it will + * cause an error. + */ + module.exports = Object.freeze({ rules: Object.freeze({ "constructor-super": "error", @@ -20,6 +27,7 @@ module.exports = Object.freeze({ "no-compare-neg-zero": "error", "no-cond-assign": "error", "no-const-assign": "error", + "no-constant-binary-expression": "error", "no-constant-condition": "error", "no-control-regex": "error", "no-debugger": "error", @@ -32,20 +40,18 @@ module.exports = Object.freeze({ "no-empty": "error", "no-empty-character-class": "error", "no-empty-pattern": "error", + "no-empty-static-block": "error", "no-ex-assign": "error", "no-extra-boolean-cast": "error", - "no-extra-semi": "error", "no-fallthrough": "error", "no-func-assign": "error", "no-global-assign": "error", "no-import-assign": "error", - "no-inner-declarations": "error", "no-invalid-regexp": "error", "no-irregular-whitespace": "error", "no-loss-of-precision": "error", "no-misleading-character-class": "error", - "no-mixed-spaces-and-tabs": "error", - "no-new-symbol": "error", + "no-new-native-nonconstructor": "error", "no-nonoctal-decimal-escape": "error", "no-obj-calls": "error", "no-octal": "error", @@ -64,6 +70,7 @@ module.exports = Object.freeze({ "no-unsafe-negation": "error", "no-unsafe-optional-chaining": "error", "no-unused-labels": "error", + "no-unused-private-class-members": "error", "no-unused-vars": "error", "no-useless-backreference": "error", "no-useless-catch": "error", diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/api.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/api.js index eb95429c85bd95..88c961940c9d13 100644 --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/api.js +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/api.js @@ -154,8 +154,82 @@ const MINIMATCH_OPTIONS = { const CONFIG_TYPES = new Set(['array', 'function']); +/** + * Fields that are considered metadata and not part of the config object. + */ +const META_FIELDS = new Set(['name']); + const FILES_AND_IGNORES_SCHEMA = new objectSchema.ObjectSchema(filesAndIgnoresSchema); +/** + * Wrapper error for config validation errors that adds a name to the front of the + * error message. + */ +class ConfigError extends Error { + + /** + * Creates a new instance. + * @param {string} name The config object name causing the error. + * @param {number} index The index of the config object in the array. + * @param {Error} source The source error. + */ + constructor(name, index, { cause, message }) { + + + const finalMessage = message || cause.message; + + super(`Config ${name}: ${finalMessage}`, { cause }); + + // copy over custom properties that aren't represented + if (cause) { + for (const key of Object.keys(cause)) { + if (!(key in this)) { + this[key] = cause[key]; + } + } + } + + /** + * The name of the error. + * @type {string} + * @readonly + */ + this.name = 'ConfigError'; + + /** + * The index of the config object in the array. + * @type {number} + * @readonly + */ + this.index = index; + } +} + +/** + * Gets the name of a config object. + * @param {object} config The config object to get the name of. + * @returns {string} The name of the config object. + */ +function getConfigName(config) { + if (config && typeof config.name === 'string' && config.name) { + return `"${config.name}"`; + } + + return '(unnamed)'; +} + +/** + * Rethrows a config error with additional information about the config object. + * @param {object} config The config object to get the name of. + * @param {number} index The index of the config object in the array. + * @param {Error} error The error to rethrow. + * @throws {ConfigError} When the error is rethrown for a config. + */ +function rethrowConfigError(config, index, error) { + const configName = getConfigName(config); + throw new ConfigError(configName, index, error); +} + /** * Shorthand for checking if a value is a string. * @param {any} value The value to check. @@ -166,23 +240,43 @@ function isString(value) { } /** - * Asserts that the files and ignores keys of a config object are valid as per base schema. - * @param {object} config The config object to check. + * Creates a function that asserts that the config is valid + * during normalization. This checks that the config is not nullish + * and that files and ignores keys of a config object are valid as per base schema. + * @param {Object} config The config object to check. + * @param {number} index The index of the config object in the array. * @returns {void} - * @throws {TypeError} If the files and ignores keys of a config object are not valid. + * @throws {ConfigError} If the files and ignores keys of a config object are not valid. */ -function assertValidFilesAndIgnores(config) { - if (!config || typeof config !== 'object') { - return; +function assertValidBaseConfig(config, index) { + + if (config === null) { + throw new ConfigError(getConfigName(config), index, { message: 'Unexpected null config.' }); + } + + if (config === undefined) { + throw new ConfigError(getConfigName(config), index, { message: 'Unexpected undefined config.' }); + } + + if (typeof config !== 'object') { + throw new ConfigError(getConfigName(config), index, { message: 'Unexpected non-object config.' }); } + const validateConfig = { }; + if ('files' in config) { validateConfig.files = config.files; } + if ('ignores' in config) { validateConfig.ignores = config.ignores; } - FILES_AND_IGNORES_SCHEMA.validate(validateConfig); + + try { + FILES_AND_IGNORES_SCHEMA.validate(validateConfig); + } catch (validationError) { + rethrowConfigError(config, index, { cause: validationError }); + } } /** @@ -377,7 +471,7 @@ function pathMatchesIgnores(filePath, basePath, config) { */ const relativeFilePath = path.relative(basePath, filePath); - return Object.keys(config).length > 1 && + return Object.keys(config).filter(key => !META_FIELDS.has(key)).length > 1 && !shouldIgnorePath(config.ignores, filePath, relativeFilePath); } @@ -511,7 +605,7 @@ class ConfigArray extends Array { /** * Tracks if the array has been normalized. * @property isNormalized - * @type boolean + * @type {boolean} * @private */ this[ConfigArraySymbol.isNormalized] = normalized; @@ -530,7 +624,7 @@ class ConfigArray extends Array { * The path of the config file that this array was loaded from. * This is used to calculate filename matches. * @property basePath - * @type string + * @type {string} */ this.basePath = basePath; @@ -539,14 +633,14 @@ class ConfigArray extends Array { /** * The supported config types. * @property configTypes - * @type Array + * @type {Array} */ this.extraConfigTypes = Object.freeze([...extraConfigTypes]); /** * A cache to store calculated configs for faster repeat lookup. * @property configCache - * @type Map + * @type {Map} * @private */ this[ConfigArraySymbol.configCache] = new Map(); @@ -645,7 +739,7 @@ class ConfigArray extends Array { * In this case, it acts list a globally ignored pattern. If there * are additional keys, then ignores act like exclusions. */ - if (config.ignores && Object.keys(config).length === 1) { + if (config.ignores && Object.keys(config).filter(key => !META_FIELDS.has(key)).length === 1) { result.push(...config.ignores); } } @@ -677,7 +771,7 @@ class ConfigArray extends Array { const normalizedConfigs = await normalize(this, context, this.extraConfigTypes); this.length = 0; this.push(...normalizedConfigs.map(this[ConfigArraySymbol.preprocessConfig].bind(this))); - this.forEach(assertValidFilesAndIgnores); + this.forEach(assertValidBaseConfig); this[ConfigArraySymbol.isNormalized] = true; // prevent further changes @@ -699,7 +793,7 @@ class ConfigArray extends Array { const normalizedConfigs = normalizeSync(this, context, this.extraConfigTypes); this.length = 0; this.push(...normalizedConfigs.map(this[ConfigArraySymbol.preprocessConfig].bind(this))); - this.forEach(assertValidFilesAndIgnores); + this.forEach(assertValidBaseConfig); this[ConfigArraySymbol.isNormalized] = true; // prevent further changes @@ -932,7 +1026,11 @@ class ConfigArray extends Array { // otherwise construct the config finalConfig = matchingConfigIndices.reduce((result, index) => { - return this[ConfigArraySymbol.schema].merge(result, this[index]); + try { + return this[ConfigArraySymbol.schema].merge(result, this[index]); + } catch (validationError) { + rethrowConfigError(this[index], index, { cause: validationError}); + } }, {}, this); finalConfig = this[ConfigArraySymbol.finalizeConfig](finalConfig); diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/package.json b/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/package.json index 0c3beb3cf8dedc..4215d658ae1fee 100644 --- a/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/package.json +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/config-array/package.json @@ -1,11 +1,13 @@ { "name": "@humanwhocodes/config-array", - "version": "0.11.14", + "version": "0.13.0", "description": "Glob-based configuration matching.", "author": "Nicholas C. Zakas", "main": "api.js", "files": [ - "api.js" + "api.js", + "LICENSE", + "README.md" ], "repository": { "type": "git", @@ -42,7 +44,7 @@ "node": ">=10.10.0" }, "dependencies": { - "@humanwhocodes/object-schema": "^2.0.2", + "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, diff --git a/tools/node_modules/eslint/node_modules/doctrine/LICENSE.closure-compiler b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/LICENSE similarity index 99% rename from tools/node_modules/eslint/node_modules/doctrine/LICENSE.closure-compiler rename to tools/node_modules/eslint/node_modules/@humanwhocodes/retry/LICENSE index d645695673349e..261eeb9e9f8b2b 100644 --- a/tools/node_modules/eslint/node_modules/doctrine/LICENSE.closure-compiler +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/LICENSE @@ -1,4 +1,3 @@ - Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.cjs b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.cjs new file mode 100644 index 00000000000000..b14e608e6c0a8b --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.cjs @@ -0,0 +1,284 @@ +'use strict'; + +/** + * @fileoverview A utility for retrying failed async method calls. + */ + +/* global setTimeout, clearTimeout */ + +//----------------------------------------------------------------------------- +// Constants +//----------------------------------------------------------------------------- + +const MAX_TASK_TIMEOUT = 60000; +const MAX_TASK_DELAY = 100; + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +/* + * The following logic has been extracted from graceful-fs. + * + * The ISC License + * + * Copyright (c) 2011-2023 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/** + * Checks if it is time to retry a task based on the timestamp and last attempt time. + * @param {RetryTask} task The task to check. + * @param {number} maxDelay The maximum delay for the queue. + * @returns {boolean} true if it is time to retry, false otherwise. + */ +function isTimeToRetry(task, maxDelay) { + const timeSinceLastAttempt = Date.now() - task.lastAttempt; + const timeSinceStart = Math.max(task.lastAttempt - task.timestamp, 1); + const desiredDelay = Math.min(timeSinceStart * 1.2, maxDelay); + + return timeSinceLastAttempt >= desiredDelay; +} + +/** + * Checks if it is time to bail out based on the given timestamp. + * @param {RetryTask} task The task to check. + * @param {number} timeout The timeout for the queue. + * @returns {boolean} true if it is time to bail, false otherwise. + */ +function isTimeToBail(task, timeout) { + return Date.now() - task.timestamp > timeout; +} + + +/** + * A class to represent a task in the retry queue. + */ +class RetryTask { + /** + * The function to call. + * @type {Function} + */ + fn; + + /** + * The error that was thrown. + * @type {Error} + */ + error; + + /** + * The timestamp of the task. + * @type {number} + */ + timestamp = Date.now(); + + /** + * The timestamp of the last attempt. + * @type {number} + */ + lastAttempt = this.timestamp; + + /** + * The resolve function for the promise. + * @type {Function} + */ + resolve; + + /** + * The reject function for the promise. + * @type {Function} + */ + reject; + + /** + * The AbortSignal to monitor for cancellation. + * @type {AbortSignal|undefined} + */ + signal; + + /** + * Creates a new instance. + * @param {Function} fn The function to call. + * @param {Error} error The error that was thrown. + * @param {Function} resolve The resolve function for the promise. + * @param {Function} reject The reject function for the promise. + * @param {AbortSignal|undefined} signal The AbortSignal to monitor for cancellation. + */ + constructor(fn, error, resolve, reject, signal) { + this.fn = fn; + this.error = error; + this.timestamp = Date.now(); + this.lastAttempt = Date.now(); + this.resolve = resolve; + this.reject = reject; + this.signal = signal; + } + +} + +//----------------------------------------------------------------------------- +// Exports +//----------------------------------------------------------------------------- + +/** + * A class that manages a queue of retry jobs. + */ +class Retrier { + /** + * Represents the queue for processing tasks. + * @type {Array} + */ + #queue = []; + + /** + * The timeout for the queue. + * @type {number} + */ + #timeout; + + /** + * The maximum delay for the queue. + * @type {number} + */ + #maxDelay; + + /** + * The setTimeout() timer ID. + * @type {NodeJS.Timeout|undefined} + */ + #timerId; + + /** + * The function to call. + * @type {Function} + */ + #check; + + /** + * Creates a new instance. + * @param {Function} check The function to call. + * @param {object} [options] The options for the instance. + * @param {number} [options.timeout] The timeout for the queue. + * @param {number} [options.maxDelay] The maximum delay for the queue. + */ + constructor(check, { timeout = MAX_TASK_TIMEOUT, maxDelay = MAX_TASK_DELAY } = {}) { + + if (typeof check !== "function") { + throw new Error("Missing function to check errors"); + } + + this.#check = check; + this.#timeout = timeout; + this.#maxDelay = maxDelay; + } + + /** + * Adds a new retry job to the queue. + * @param {Function} fn The function to call. + * @param {object} [options] The options for the job. + * @param {AbortSignal} [options.signal] The AbortSignal to monitor for cancellation. + * @returns {Promise} A promise that resolves when the queue is + * processed. + */ + retry(fn, { signal } = {}) { + + signal?.throwIfAborted(); + + let result; + + try { + result = fn(); + } catch (/** @type {any} */ error) { + return Promise.reject(new Error(`Synchronous error: ${error.message}`, { cause: error })); + } + + // if the result is not a promise then reject an error + if (!result || typeof result.then !== "function") { + return Promise.reject(new Error("Result is not a promise.")); + } + + // call the original function and catch any ENFILE or EMFILE errors + // @ts-ignore because we know it's any + return Promise.resolve(result).catch(error => { + if (!this.#check(error)) { + throw error; + } + + return new Promise((resolve, reject) => { + this.#queue.push(new RetryTask(fn, error, resolve, reject, signal)); + + signal?.addEventListener("abort", () => { + reject(signal.reason); + }); + + this.#processQueue(); + }); + }); + } + + /** + * Processes the queue. + * @returns {void} + */ + #processQueue() { + // clear any timer because we're going to check right now + clearTimeout(this.#timerId); + this.#timerId = undefined; + + // if there's nothing in the queue, we're done + const task = this.#queue.shift(); + if (!task) { + return; + } + + // if it's time to bail, then bail + if (isTimeToBail(task, this.#timeout)) { + task.reject(task.error); + this.#processQueue(); + return; + } + + // if it's not time to retry, then wait and try again + if (!isTimeToRetry(task, this.#maxDelay)) { + this.#queue.unshift(task); + this.#timerId = setTimeout(() => this.#processQueue(), 0); + return; + } + + // otherwise, try again + task.lastAttempt = Date.now(); + + // Promise.resolve needed in case it's a thenable but not a Promise + Promise.resolve(task.fn()) + // @ts-ignore because we know it's any + .then(result => task.resolve(result)) + + // @ts-ignore because we know it's any + .catch(error => { + if (!this.#check(error)) { + task.reject(error); + return; + } + + // update the task timestamp and push to back of queue to try again + task.lastAttempt = Date.now(); + this.#queue.push(task); + + }) + .finally(() => this.#processQueue()); + } +} + +exports.Retrier = Retrier; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.d.cts b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.d.cts new file mode 100644 index 00000000000000..f152965005fc61 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.d.cts @@ -0,0 +1,28 @@ +/** + * A class that manages a queue of retry jobs. + */ +export class Retrier { + /** + * Creates a new instance. + * @param {Function} check The function to call. + * @param {object} [options] The options for the instance. + * @param {number} [options.timeout] The timeout for the queue. + * @param {number} [options.maxDelay] The maximum delay for the queue. + */ + constructor(check: Function, { timeout, maxDelay }?: { + timeout?: number | undefined; + maxDelay?: number | undefined; + } | undefined); + /** + * Adds a new retry job to the queue. + * @param {Function} fn The function to call. + * @param {object} [options] The options for the job. + * @param {AbortSignal} [options.signal] The AbortSignal to monitor for cancellation. + * @returns {Promise} A promise that resolves when the queue is + * processed. + */ + retry(fn: Function, { signal }?: { + signal?: AbortSignal | undefined; + } | undefined): Promise; + #private; +} diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.js new file mode 100644 index 00000000000000..b16166d85d028f --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.js @@ -0,0 +1,283 @@ +/// +/** + * @fileoverview A utility for retrying failed async method calls. + */ + +/* global setTimeout, clearTimeout */ + +//----------------------------------------------------------------------------- +// Constants +//----------------------------------------------------------------------------- + +const MAX_TASK_TIMEOUT = 60000; +const MAX_TASK_DELAY = 100; + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +/* + * The following logic has been extracted from graceful-fs. + * + * The ISC License + * + * Copyright (c) 2011-2023 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/** + * Checks if it is time to retry a task based on the timestamp and last attempt time. + * @param {RetryTask} task The task to check. + * @param {number} maxDelay The maximum delay for the queue. + * @returns {boolean} true if it is time to retry, false otherwise. + */ +function isTimeToRetry(task, maxDelay) { + const timeSinceLastAttempt = Date.now() - task.lastAttempt; + const timeSinceStart = Math.max(task.lastAttempt - task.timestamp, 1); + const desiredDelay = Math.min(timeSinceStart * 1.2, maxDelay); + + return timeSinceLastAttempt >= desiredDelay; +} + +/** + * Checks if it is time to bail out based on the given timestamp. + * @param {RetryTask} task The task to check. + * @param {number} timeout The timeout for the queue. + * @returns {boolean} true if it is time to bail, false otherwise. + */ +function isTimeToBail(task, timeout) { + return Date.now() - task.timestamp > timeout; +} + + +/** + * A class to represent a task in the retry queue. + */ +class RetryTask { + /** + * The function to call. + * @type {Function} + */ + fn; + + /** + * The error that was thrown. + * @type {Error} + */ + error; + + /** + * The timestamp of the task. + * @type {number} + */ + timestamp = Date.now(); + + /** + * The timestamp of the last attempt. + * @type {number} + */ + lastAttempt = this.timestamp; + + /** + * The resolve function for the promise. + * @type {Function} + */ + resolve; + + /** + * The reject function for the promise. + * @type {Function} + */ + reject; + + /** + * The AbortSignal to monitor for cancellation. + * @type {AbortSignal|undefined} + */ + signal; + + /** + * Creates a new instance. + * @param {Function} fn The function to call. + * @param {Error} error The error that was thrown. + * @param {Function} resolve The resolve function for the promise. + * @param {Function} reject The reject function for the promise. + * @param {AbortSignal|undefined} signal The AbortSignal to monitor for cancellation. + */ + constructor(fn, error, resolve, reject, signal) { + this.fn = fn; + this.error = error; + this.timestamp = Date.now(); + this.lastAttempt = Date.now(); + this.resolve = resolve; + this.reject = reject; + this.signal = signal; + } + +} + +//----------------------------------------------------------------------------- +// Exports +//----------------------------------------------------------------------------- + +/** + * A class that manages a queue of retry jobs. + */ +class Retrier { + /** + * Represents the queue for processing tasks. + * @type {Array} + */ + #queue = []; + + /** + * The timeout for the queue. + * @type {number} + */ + #timeout; + + /** + * The maximum delay for the queue. + * @type {number} + */ + #maxDelay; + + /** + * The setTimeout() timer ID. + * @type {NodeJS.Timeout|undefined} + */ + #timerId; + + /** + * The function to call. + * @type {Function} + */ + #check; + + /** + * Creates a new instance. + * @param {Function} check The function to call. + * @param {object} [options] The options for the instance. + * @param {number} [options.timeout] The timeout for the queue. + * @param {number} [options.maxDelay] The maximum delay for the queue. + */ + constructor(check, { timeout = MAX_TASK_TIMEOUT, maxDelay = MAX_TASK_DELAY } = {}) { + + if (typeof check !== "function") { + throw new Error("Missing function to check errors"); + } + + this.#check = check; + this.#timeout = timeout; + this.#maxDelay = maxDelay; + } + + /** + * Adds a new retry job to the queue. + * @param {Function} fn The function to call. + * @param {object} [options] The options for the job. + * @param {AbortSignal} [options.signal] The AbortSignal to monitor for cancellation. + * @returns {Promise} A promise that resolves when the queue is + * processed. + */ + retry(fn, { signal } = {}) { + + signal?.throwIfAborted(); + + let result; + + try { + result = fn(); + } catch (/** @type {any} */ error) { + return Promise.reject(new Error(`Synchronous error: ${error.message}`, { cause: error })); + } + + // if the result is not a promise then reject an error + if (!result || typeof result.then !== "function") { + return Promise.reject(new Error("Result is not a promise.")); + } + + // call the original function and catch any ENFILE or EMFILE errors + // @ts-ignore because we know it's any + return Promise.resolve(result).catch(error => { + if (!this.#check(error)) { + throw error; + } + + return new Promise((resolve, reject) => { + this.#queue.push(new RetryTask(fn, error, resolve, reject, signal)); + + signal?.addEventListener("abort", () => { + reject(signal.reason); + }); + + this.#processQueue(); + }); + }); + } + + /** + * Processes the queue. + * @returns {void} + */ + #processQueue() { + // clear any timer because we're going to check right now + clearTimeout(this.#timerId); + this.#timerId = undefined; + + // if there's nothing in the queue, we're done + const task = this.#queue.shift(); + if (!task) { + return; + } + + // if it's time to bail, then bail + if (isTimeToBail(task, this.#timeout)) { + task.reject(task.error); + this.#processQueue(); + return; + } + + // if it's not time to retry, then wait and try again + if (!isTimeToRetry(task, this.#maxDelay)) { + this.#queue.unshift(task); + this.#timerId = setTimeout(() => this.#processQueue(), 0); + return; + } + + // otherwise, try again + task.lastAttempt = Date.now(); + + // Promise.resolve needed in case it's a thenable but not a Promise + Promise.resolve(task.fn()) + // @ts-ignore because we know it's any + .then(result => task.resolve(result)) + + // @ts-ignore because we know it's any + .catch(error => { + if (!this.#check(error)) { + task.reject(error); + return; + } + + // update the task timestamp and push to back of queue to try again + task.lastAttempt = Date.now(); + this.#queue.push(task); + + }) + .finally(() => this.#processQueue()); + } +} + +export { Retrier }; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.min.js b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.min.js new file mode 100644 index 00000000000000..ad730c01b1bc81 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.min.js @@ -0,0 +1 @@ +class RetryTask{fn;error;timestamp=Date.now();lastAttempt=this.timestamp;resolve;reject;signal;constructor(t,e,r,s,i){this.fn=t,this.error=e,this.timestamp=Date.now(),this.lastAttempt=Date.now(),this.resolve=r,this.reject=s,this.signal=i}}class Retrier{#t=[];#e;#r;#s;#i;constructor(t,{timeout:e=6e4,maxDelay:r=100}={}){if("function"!=typeof t)throw new Error("Missing function to check errors");this.#i=t,this.#e=e,this.#r=r}retry(t,{signal:e}={}){let r;e?.throwIfAborted();try{r=t()}catch(t){return Promise.reject(new Error(`Synchronous error: ${t.message}`,{cause:t}))}return r&&"function"==typeof r.then?Promise.resolve(r).catch((r=>{if(!this.#i(r))throw r;return new Promise(((s,i)=>{this.#t.push(new RetryTask(t,r,s,i,e)),e?.addEventListener("abort",(()=>{i(e.reason)})),this.#o()}))})):Promise.reject(new Error("Result is not a promise."))}#o(){clearTimeout(this.#s),this.#s=void 0;const t=this.#t.shift();if(t){if(function(t,e){return Date.now()-t.timestamp>e}(t,this.#e))return t.reject(t.error),void this.#o();if(!function(t,e){const r=Date.now()-t.lastAttempt,s=Math.max(t.lastAttempt-t.timestamp,1);return r>=Math.min(1.2*s,e)}(t,this.#r))return this.#t.unshift(t),void(this.#s=setTimeout((()=>this.#o()),0));t.lastAttempt=Date.now(),Promise.resolve(t.fn()).then((e=>t.resolve(e))).catch((e=>{this.#i(e)?(t.lastAttempt=Date.now(),this.#t.push(t)):t.reject(e)})).finally((()=>this.#o()))}}}export{Retrier}; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.mjs b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.mjs new file mode 100644 index 00000000000000..26eb4d318b58a1 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/dist/retrier.mjs @@ -0,0 +1,282 @@ +/** + * @fileoverview A utility for retrying failed async method calls. + */ + +/* global setTimeout, clearTimeout */ + +//----------------------------------------------------------------------------- +// Constants +//----------------------------------------------------------------------------- + +const MAX_TASK_TIMEOUT = 60000; +const MAX_TASK_DELAY = 100; + +//----------------------------------------------------------------------------- +// Helpers +//----------------------------------------------------------------------------- + +/* + * The following logic has been extracted from graceful-fs. + * + * The ISC License + * + * Copyright (c) 2011-2023 Isaac Z. Schlueter, Ben Noordhuis, and Contributors + * + * Permission to use, copy, modify, and/or distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR + * IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +/** + * Checks if it is time to retry a task based on the timestamp and last attempt time. + * @param {RetryTask} task The task to check. + * @param {number} maxDelay The maximum delay for the queue. + * @returns {boolean} true if it is time to retry, false otherwise. + */ +function isTimeToRetry(task, maxDelay) { + const timeSinceLastAttempt = Date.now() - task.lastAttempt; + const timeSinceStart = Math.max(task.lastAttempt - task.timestamp, 1); + const desiredDelay = Math.min(timeSinceStart * 1.2, maxDelay); + + return timeSinceLastAttempt >= desiredDelay; +} + +/** + * Checks if it is time to bail out based on the given timestamp. + * @param {RetryTask} task The task to check. + * @param {number} timeout The timeout for the queue. + * @returns {boolean} true if it is time to bail, false otherwise. + */ +function isTimeToBail(task, timeout) { + return Date.now() - task.timestamp > timeout; +} + + +/** + * A class to represent a task in the retry queue. + */ +class RetryTask { + /** + * The function to call. + * @type {Function} + */ + fn; + + /** + * The error that was thrown. + * @type {Error} + */ + error; + + /** + * The timestamp of the task. + * @type {number} + */ + timestamp = Date.now(); + + /** + * The timestamp of the last attempt. + * @type {number} + */ + lastAttempt = this.timestamp; + + /** + * The resolve function for the promise. + * @type {Function} + */ + resolve; + + /** + * The reject function for the promise. + * @type {Function} + */ + reject; + + /** + * The AbortSignal to monitor for cancellation. + * @type {AbortSignal|undefined} + */ + signal; + + /** + * Creates a new instance. + * @param {Function} fn The function to call. + * @param {Error} error The error that was thrown. + * @param {Function} resolve The resolve function for the promise. + * @param {Function} reject The reject function for the promise. + * @param {AbortSignal|undefined} signal The AbortSignal to monitor for cancellation. + */ + constructor(fn, error, resolve, reject, signal) { + this.fn = fn; + this.error = error; + this.timestamp = Date.now(); + this.lastAttempt = Date.now(); + this.resolve = resolve; + this.reject = reject; + this.signal = signal; + } + +} + +//----------------------------------------------------------------------------- +// Exports +//----------------------------------------------------------------------------- + +/** + * A class that manages a queue of retry jobs. + */ +class Retrier { + /** + * Represents the queue for processing tasks. + * @type {Array} + */ + #queue = []; + + /** + * The timeout for the queue. + * @type {number} + */ + #timeout; + + /** + * The maximum delay for the queue. + * @type {number} + */ + #maxDelay; + + /** + * The setTimeout() timer ID. + * @type {NodeJS.Timeout|undefined} + */ + #timerId; + + /** + * The function to call. + * @type {Function} + */ + #check; + + /** + * Creates a new instance. + * @param {Function} check The function to call. + * @param {object} [options] The options for the instance. + * @param {number} [options.timeout] The timeout for the queue. + * @param {number} [options.maxDelay] The maximum delay for the queue. + */ + constructor(check, { timeout = MAX_TASK_TIMEOUT, maxDelay = MAX_TASK_DELAY } = {}) { + + if (typeof check !== "function") { + throw new Error("Missing function to check errors"); + } + + this.#check = check; + this.#timeout = timeout; + this.#maxDelay = maxDelay; + } + + /** + * Adds a new retry job to the queue. + * @param {Function} fn The function to call. + * @param {object} [options] The options for the job. + * @param {AbortSignal} [options.signal] The AbortSignal to monitor for cancellation. + * @returns {Promise} A promise that resolves when the queue is + * processed. + */ + retry(fn, { signal } = {}) { + + signal?.throwIfAborted(); + + let result; + + try { + result = fn(); + } catch (/** @type {any} */ error) { + return Promise.reject(new Error(`Synchronous error: ${error.message}`, { cause: error })); + } + + // if the result is not a promise then reject an error + if (!result || typeof result.then !== "function") { + return Promise.reject(new Error("Result is not a promise.")); + } + + // call the original function and catch any ENFILE or EMFILE errors + // @ts-ignore because we know it's any + return Promise.resolve(result).catch(error => { + if (!this.#check(error)) { + throw error; + } + + return new Promise((resolve, reject) => { + this.#queue.push(new RetryTask(fn, error, resolve, reject, signal)); + + signal?.addEventListener("abort", () => { + reject(signal.reason); + }); + + this.#processQueue(); + }); + }); + } + + /** + * Processes the queue. + * @returns {void} + */ + #processQueue() { + // clear any timer because we're going to check right now + clearTimeout(this.#timerId); + this.#timerId = undefined; + + // if there's nothing in the queue, we're done + const task = this.#queue.shift(); + if (!task) { + return; + } + + // if it's time to bail, then bail + if (isTimeToBail(task, this.#timeout)) { + task.reject(task.error); + this.#processQueue(); + return; + } + + // if it's not time to retry, then wait and try again + if (!isTimeToRetry(task, this.#maxDelay)) { + this.#queue.unshift(task); + this.#timerId = setTimeout(() => this.#processQueue(), 0); + return; + } + + // otherwise, try again + task.lastAttempt = Date.now(); + + // Promise.resolve needed in case it's a thenable but not a Promise + Promise.resolve(task.fn()) + // @ts-ignore because we know it's any + .then(result => task.resolve(result)) + + // @ts-ignore because we know it's any + .catch(error => { + if (!this.#check(error)) { + task.reject(error); + return; + } + + // update the task timestamp and push to back of queue to try again + task.lastAttempt = Date.now(); + this.#queue.push(task); + + }) + .finally(() => this.#processQueue()); + } +} + +export { Retrier }; diff --git a/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/package.json b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/package.json new file mode 100644 index 00000000000000..f5272be0cdd959 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@humanwhocodes/retry/package.json @@ -0,0 +1,76 @@ +{ + "name": "@humanwhocodes/retry", + "version": "0.3.0", + "description": "A utility to retry failed async methods.", + "type": "module", + "main": "dist/retrier.cjs", + "module": "dist/retrier.js", + "types": "dist/retrier.d.ts", + "exports": { + "require": { + "types": "./dist/retrier.d.cts", + "default": "./dist/retrier.cjs" + }, + "import": { + "types": "./dist/retrier.d.ts", + "default": "./dist/retrier.js" + } + }, + "files": [ + "dist" + ], + "engines": { + "node": ">=18.18" + }, + "publishConfig": { + "access": "public" + }, + "gitHooks": { + "pre-commit": "lint-staged" + }, + "lint-staged": { + "*.js": [ + "eslint --fix" + ] + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + }, + "scripts": { + "build:cts-types": "node -e \"fs.copyFileSync('dist/retrier.d.ts', 'dist/retrier.d.cts')\"", + "build:prepend-type-ref": "node tools/prepend-type-ref.js dist/retrier.js", + "build": "rollup -c && tsc && npm run build:prepend-type-ref && npm run build:cts-types", + "prepare": "npm run build", + "lint": "eslint src/ tests/", + "pretest": "npm run build", + "test:unit": "mocha tests/retrier.test.js", + "test:build": "node tests/pkg.test.cjs && node tests/pkg.test.mjs", + "test": "npm run test:unit && npm run test:build" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/humanwhocodes/retrier.git" + }, + "keywords": [ + "nodejs", + "retry", + "async", + "promises" + ], + "author": "Nicholas C. Zaks", + "license": "Apache-2.0", + "devDependencies": { + "@eslint/js": "^8.49.0", + "@rollup/plugin-terser": "0.4.4", + "@tsconfig/node16": "^16.1.1", + "@types/mocha": "^10.0.3", + "@types/node": "20.12.6", + "eslint": "^8.21.0", + "lint-staged": "15.2.1", + "mocha": "^10.3.0", + "rollup": "3.29.4", + "typescript": "5.4.4", + "yorkie": "2.0.0" + } +} diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/configs.js b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/configs.js index 9fcfd02624ce22..4841b0bd40b78d 100644 --- a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/configs.js +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/configs.js @@ -22,11 +22,13 @@ var indent = require('./indent.js'); var jsxQuotes = require('./jsx-quotes.js'); var keySpacing = require('./key-spacing.js'); var keywordSpacing = require('./keyword-spacing.js'); +var lineCommentPosition = require('./line-comment-position.js'); var linebreakStyle = require('./linebreak-style.js'); var linesAroundComment = require('./lines-around-comment.js'); var linesBetweenClassMembers = require('./lines-between-class-members.js'); var maxLen = require('./max-len.js'); var maxStatementsPerLine = require('./max-statements-per-line.js'); +var multilineCommentStyle = require('./multiline-comment-style.js'); var multilineTernary = require('./multiline-ternary.js'); var newParens = require('./new-parens.js'); var newlinePerChainedCall = require('./newline-per-chained-call.js'); @@ -73,7 +75,7 @@ function createAllConfigs(plugin, name, flat, filter) { Object.entries(plugin.rules).filter( ([key, rule]) => ( // Only include fixable rules - rule.meta.fixable && !rule.meta.deprecated && key === rule.meta.docs.url.split("/").pop() && (!filter || filter(key, rule)) + rule.meta.fixable && !rule.meta.deprecated && key === rule.meta.docs.url.split("/").pop() && (!filter ) ) ).map(([key]) => [`${name}/${key}`, 2]) ); @@ -116,11 +118,13 @@ var rules = { "jsx-quotes": jsxQuotes.jsxQuotes, "key-spacing": keySpacing.keySpacing, "keyword-spacing": keywordSpacing.keywordSpacing, + "line-comment-position": lineCommentPosition.lineCommentPosition, "linebreak-style": linebreakStyle.linebreakStyle, "lines-around-comment": linesAroundComment.linesAroundComment, "lines-between-class-members": linesBetweenClassMembers.linesBetweenClassMembers, "max-len": maxLen.maxLen, "max-statements-per-line": maxStatementsPerLine.maxStatementsPerLine, + "multiline-comment-style": multilineCommentStyle.multilineCommentStyle, "multiline-ternary": multilineTernary.multilineTernary, "new-parens": newParens.newParens, "newline-per-chained-call": newlinePerChainedCall.newlinePerChainedCall, @@ -191,11 +195,13 @@ const config = { "jsx-quotes": 0, "key-spacing": 0, "keyword-spacing": 0, + "line-comment-position": 0, "linebreak-style": 0, "lines-around-comment": 0, "lines-between-class-members": 0, "max-len": 0, "max-statements-per-line": 0, + "multiline-comment-style": 0, "multiline-ternary": 0, "new-parens": 0, "newline-per-chained-call": 0, diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/index.js b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/index.js index 71a66f8c5ded57..9033a5a1c464d4 100644 --- a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/index.js +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/index.js @@ -26,11 +26,13 @@ require('./indent.js'); require('./jsx-quotes.js'); require('./key-spacing.js'); require('./keyword-spacing.js'); +require('./line-comment-position.js'); require('./linebreak-style.js'); require('./lines-around-comment.js'); require('./lines-between-class-members.js'); require('./max-len.js'); require('./max-statements-per-line.js'); +require('./multiline-comment-style.js'); require('./multiline-ternary.js'); require('./new-parens.js'); require('./newline-per-chained-call.js'); @@ -65,7 +67,6 @@ require('./space-in-parens.js'); require('./space-infix-ops.js'); require('./space-unary-ops.js'); require('./spaced-comment.js'); -require('escape-string-regexp'); require('./switch-colon-spacing.js'); require('./template-curly-spacing.js'); require('./template-tag-spacing.js'); diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/line-comment-position.js b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/line-comment-position.js new file mode 100644 index 00000000000000..a66fd29c78987c --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/line-comment-position.js @@ -0,0 +1,97 @@ +'use strict'; + +var utils = require('./utils.js'); + +var lineCommentPosition = utils.createRule({ + meta: { + type: "layout", + docs: { + description: "Enforce position of line comments", + url: "https://eslint.style/rules/js/line-comment-position" + }, + schema: [ + { + oneOf: [ + { + type: "string", + enum: ["above", "beside"] + }, + { + type: "object", + properties: { + position: { + type: "string", + enum: ["above", "beside"] + }, + ignorePattern: { + type: "string" + }, + applyDefaultPatterns: { + type: "boolean" + }, + applyDefaultIgnorePatterns: { + type: "boolean" + } + }, + additionalProperties: false + } + ] + } + ], + messages: { + above: "Expected comment to be above code.", + beside: "Expected comment to be beside code." + } + }, + create(context) { + const options = context.options[0]; + let above; + let ignorePattern; + let applyDefaultIgnorePatterns = true; + let customIgnoreRegExp; + if (!options || typeof options === "string") { + above = !options || options === "above"; + } else { + above = !options.position || options.position === "above"; + ignorePattern = options.ignorePattern; + customIgnoreRegExp = new RegExp(ignorePattern, "u"); + if (Object.hasOwn(options, "applyDefaultIgnorePatterns")) + applyDefaultIgnorePatterns = options.applyDefaultIgnorePatterns; + else + applyDefaultIgnorePatterns = options.applyDefaultPatterns !== false; + } + const defaultIgnoreRegExp = utils.COMMENTS_IGNORE_PATTERN; + const fallThroughRegExp = /^\s*falls?\s?through/u; + const sourceCode = context.sourceCode; + return { + Program() { + const comments = sourceCode.getAllComments(); + comments.filter((token) => token.type === "Line").forEach((node) => { + if (applyDefaultIgnorePatterns && (defaultIgnoreRegExp.test(node.value) || fallThroughRegExp.test(node.value))) + return; + if (ignorePattern && customIgnoreRegExp.test(node.value)) + return; + const previous = sourceCode.getTokenBefore(node, { includeComments: true }); + const isOnSameLine = previous && previous.loc.end.line === node.loc.start.line; + if (above) { + if (isOnSameLine) { + context.report({ + node, + messageId: "above" + }); + } + } else { + if (!isOnSameLine) { + context.report({ + node, + messageId: "beside" + }); + } + } + }); + } + }; + } +}); + +exports.lineCommentPosition = lineCommentPosition; diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/multiline-comment-style.js b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/multiline-comment-style.js new file mode 100644 index 00000000000000..78a793e471456f --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/multiline-comment-style.js @@ -0,0 +1,290 @@ +'use strict'; + +var utils = require('./utils.js'); + +var multilineCommentStyle = utils.createRule({ + meta: { + type: "suggestion", + docs: { + description: "Enforce a particular style for multiline comments", + url: "https://eslint.style/rules/js/multiline-comment-style" + }, + fixable: "whitespace", + schema: { + anyOf: [ + { + type: "array", + items: [ + { + enum: ["starred-block", "bare-block"], + type: "string" + } + ], + additionalItems: false + }, + { + type: "array", + items: [ + { + enum: ["separate-lines"], + type: "string" + }, + { + type: "object", + properties: { + checkJSDoc: { + type: "boolean" + } + }, + additionalProperties: false + } + ], + additionalItems: false + } + ] + }, + messages: { + expectedBlock: "Expected a block comment instead of consecutive line comments.", + expectedBareBlock: "Expected a block comment without padding stars.", + startNewline: "Expected a linebreak after '/*'.", + endNewline: "Expected a linebreak before '*/'.", + missingStar: "Expected a '*' at the start of this line.", + alignment: "Expected this line to be aligned with the start of the comment.", + expectedLines: "Expected multiple line comments instead of a block comment." + } + }, + create(context) { + const sourceCode = context.sourceCode; + const option = context.options[0] || "starred-block"; + const params = context.options[1] || {}; + const checkJSDoc = !!params.checkJSDoc; + function isStarredCommentLine(line) { + return /^\s*\*/u.test(line); + } + function isStarredBlockComment([firstComment]) { + if (firstComment.type !== "Block") + return false; + const lines = firstComment.value.split(utils.LINEBREAK_MATCHER); + return lines.length > 0 && lines.every((line, i) => (i === 0 || i === lines.length - 1 ? /^\s*$/u : /^\s*\*/u).test(line)); + } + function isJSDocComment([firstComment]) { + if (firstComment.type !== "Block") + return false; + const lines = firstComment.value.split(utils.LINEBREAK_MATCHER); + return /^\*\s*$/u.test(lines[0]) && lines.slice(1, -1).every((line) => /^\s* /u.test(line)) && /^\s*$/u.test(lines.at(-1)); + } + function processSeparateLineComments(commentGroup) { + const allLinesHaveLeadingSpace = commentGroup.map(({ value }) => value).filter((line) => line.trim().length).every((line) => line.startsWith(" ")); + return commentGroup.map(({ value }) => allLinesHaveLeadingSpace ? value.replace(/^ /u, "") : value); + } + function processStarredBlockComment(comment) { + const lines = comment.value.split(utils.LINEBREAK_MATCHER).filter((line, i, linesArr) => !(i === 0 || i === linesArr.length - 1)).map((line) => line.replace(/^\s*$/u, "")); + const allLinesHaveLeadingSpace = lines.map((line) => line.replace(/\s*\*/u, "")).filter((line) => line.trim().length).every((line) => line.startsWith(" ")); + return lines.map((line) => line.replace(allLinesHaveLeadingSpace ? /\s*\* ?/u : /\s*\*/u, "")); + } + function processBareBlockComment(comment) { + const lines = comment.value.split(utils.LINEBREAK_MATCHER).map((line) => line.replace(/^\s*$/u, "")); + const leadingWhitespace = `${sourceCode.text.slice(comment.range[0] - comment.loc.start.column, comment.range[0])} `; + let offset = ""; + for (const [i, line] of lines.entries()) { + if (!line.trim().length || i === 0) + continue; + const [, lineOffset] = line.match(/^(\s*\*?\s*)/u); + if (lineOffset.length < leadingWhitespace.length) { + const newOffset = leadingWhitespace.slice(lineOffset.length - leadingWhitespace.length); + if (newOffset.length > offset.length) + offset = newOffset; + } + } + return lines.map((line) => { + const match = line.match(/^(\s*\*?\s*)(.*)/u); + const [, lineOffset, lineContents] = match; + if (lineOffset.length > leadingWhitespace.length) + return `${lineOffset.slice(leadingWhitespace.length - (offset.length + lineOffset.length))}${lineContents}`; + if (lineOffset.length < leadingWhitespace.length) + return `${lineOffset.slice(leadingWhitespace.length)}${lineContents}`; + return lineContents; + }); + } + function getCommentLines(commentGroup) { + const [firstComment] = commentGroup; + if (firstComment.type === "Line") + return processSeparateLineComments(commentGroup); + if (isStarredBlockComment(commentGroup)) + return processStarredBlockComment(firstComment); + return processBareBlockComment(firstComment); + } + function getInitialOffset(comment) { + return sourceCode.text.slice(comment.range[0] - comment.loc.start.column, comment.range[0]); + } + function convertToStarredBlock(firstComment, commentLinesList) { + const initialOffset = getInitialOffset(firstComment); + return `/* +${commentLinesList.map((line) => `${initialOffset} * ${line}`).join("\n")} +${initialOffset} */`; + } + function convertToSeparateLines(firstComment, commentLinesList) { + return commentLinesList.map((line) => `// ${line}`).join(` +${getInitialOffset(firstComment)}`); + } + function convertToBlock(firstComment, commentLinesList) { + return `/* ${commentLinesList.join(` +${getInitialOffset(firstComment)} `)} */`; + } + const commentGroupCheckers = { + "starred-block": function(commentGroup) { + const [firstComment] = commentGroup; + const commentLines = getCommentLines(commentGroup); + if (commentLines.some((value) => value.includes("*/"))) + return; + if (commentGroup.length > 1) { + context.report({ + loc: { + start: firstComment.loc.start, + end: commentGroup.at(-1).loc.end + }, + messageId: "expectedBlock", + fix(fixer) { + const range = [firstComment.range[0], commentGroup.at(-1).range[1]]; + return commentLines.some((value) => value.startsWith("/")) ? null : fixer.replaceTextRange(range, convertToStarredBlock(firstComment, commentLines)); + } + }); + } else { + const lines = firstComment.value.split(utils.LINEBREAK_MATCHER); + const expectedLeadingWhitespace = getInitialOffset(firstComment); + const expectedLinePrefix = `${expectedLeadingWhitespace} *`; + if (!/^\*?\s*$/u.test(lines[0])) { + const start = firstComment.value.startsWith("*") ? firstComment.range[0] + 1 : firstComment.range[0]; + context.report({ + loc: { + start: firstComment.loc.start, + end: { line: firstComment.loc.start.line, column: firstComment.loc.start.column + 2 } + }, + messageId: "startNewline", + fix: (fixer) => fixer.insertTextAfterRange([start, start + 2], ` +${expectedLinePrefix}`) + }); + } + if (!/^\s*$/u.test(lines.at(-1))) { + context.report({ + loc: { + start: { line: firstComment.loc.end.line, column: firstComment.loc.end.column - 2 }, + end: firstComment.loc.end + }, + messageId: "endNewline", + fix: (fixer) => fixer.replaceTextRange([firstComment.range[1] - 2, firstComment.range[1]], ` +${expectedLinePrefix}/`) + }); + } + for (let lineNumber = firstComment.loc.start.line + 1; lineNumber <= firstComment.loc.end.line; lineNumber++) { + const lineText = sourceCode.lines[lineNumber - 1]; + const errorType = isStarredCommentLine(lineText) ? "alignment" : "missingStar"; + if (!lineText.startsWith(expectedLinePrefix)) { + context.report({ + loc: { + start: { line: lineNumber, column: 0 }, + end: { line: lineNumber, column: lineText.length } + }, + messageId: errorType, + fix(fixer) { + const lineStartIndex = sourceCode.getIndexFromLoc({ line: lineNumber, column: 0 }); + if (errorType === "alignment") { + const [, commentTextPrefix2 = ""] = lineText.match(/^(\s*\*)/u) || []; + const commentTextStartIndex2 = lineStartIndex + commentTextPrefix2.length; + return fixer.replaceTextRange([lineStartIndex, commentTextStartIndex2], expectedLinePrefix); + } + const [, commentTextPrefix = ""] = lineText.match(/^(\s*)/u) || []; + const commentTextStartIndex = lineStartIndex + commentTextPrefix.length; + let offset; + for (const [idx, line] of lines.entries()) { + if (!/\S+/u.test(line)) + continue; + const lineTextToAlignWith = sourceCode.lines[firstComment.loc.start.line - 1 + idx]; + const [, prefix = "", initialOffset = ""] = lineTextToAlignWith.match(/^(\s*(?:\/?\*)?(\s*))/u) || []; + offset = `${commentTextPrefix.slice(prefix.length)}${initialOffset}`; + if (/^\s*\//u.test(lineText) && offset.length === 0) + offset += " "; + break; + } + return fixer.replaceTextRange([lineStartIndex, commentTextStartIndex], `${expectedLinePrefix}${offset}`); + } + }); + } + } + } + }, + "separate-lines": function(commentGroup) { + const [firstComment] = commentGroup; + const isJSDoc = isJSDocComment(commentGroup); + if (firstComment.type !== "Block" || !checkJSDoc && isJSDoc) + return; + let commentLines = getCommentLines(commentGroup); + if (isJSDoc) + commentLines = commentLines.slice(1, commentLines.length - 1); + const tokenAfter = sourceCode.getTokenAfter(firstComment, { includeComments: true }); + if (tokenAfter && firstComment.loc.end.line === tokenAfter.loc.start.line) + return; + context.report({ + loc: { + start: firstComment.loc.start, + end: { line: firstComment.loc.start.line, column: firstComment.loc.start.column + 2 } + }, + messageId: "expectedLines", + fix(fixer) { + return fixer.replaceText(firstComment, convertToSeparateLines(firstComment, commentLines)); + } + }); + }, + "bare-block": function(commentGroup) { + if (isJSDocComment(commentGroup)) + return; + const [firstComment] = commentGroup; + const commentLines = getCommentLines(commentGroup); + if (firstComment.type === "Line" && commentLines.length > 1 && !commentLines.some((value) => value.includes("*/"))) { + context.report({ + loc: { + start: firstComment.loc.start, + end: commentGroup.at(-1).loc.end + }, + messageId: "expectedBlock", + fix(fixer) { + return fixer.replaceTextRange( + [firstComment.range[0], commentGroup.at(-1).range[1]], + convertToBlock(firstComment, commentLines) + ); + } + }); + } + if (isStarredBlockComment(commentGroup)) { + context.report({ + loc: { + start: firstComment.loc.start, + end: { line: firstComment.loc.start.line, column: firstComment.loc.start.column + 2 } + }, + messageId: "expectedBareBlock", + fix(fixer) { + return fixer.replaceText(firstComment, convertToBlock(firstComment, commentLines)); + } + }); + } + } + }; + return { + Program() { + return sourceCode.getAllComments().filter((comment) => comment.type !== "Shebang").filter((comment) => !utils.COMMENTS_IGNORE_PATTERN.test(comment.value)).filter((comment) => { + const tokenBefore = sourceCode.getTokenBefore(comment, { includeComments: true }); + return !tokenBefore || tokenBefore.loc.end.line < comment.loc.start.line; + }).reduce((commentGroups, comment, index, commentList) => { + const tokenBefore = sourceCode.getTokenBefore(comment, { includeComments: true }); + if (comment.type === "Line" && index && commentList[index - 1].type === "Line" && tokenBefore && tokenBefore.loc.end.line === comment.loc.start.line - 1 && tokenBefore === commentList[index - 1]) + commentGroups.at(-1).push(comment); + else + commentGroups.push([comment]); + return commentGroups; + }, []).filter((commentGroup) => !(commentGroup.length === 1 && commentGroup[0].loc.start.line === commentGroup[0].loc.end.line)).forEach(commentGroupCheckers[option]); + } + }; + } +}); + +exports.multilineCommentStyle = multilineCommentStyle; diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/spaced-comment.js b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/spaced-comment.js index 65d3e35b45c86a..c6c6ed0e71d3a6 100644 --- a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/spaced-comment.js +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/spaced-comment.js @@ -1,10 +1,21 @@ 'use strict'; -var escapeRegExp = require('escape-string-regexp'); var utils = require('./utils.js'); +function escapeStringRegexp(string) { + if (typeof string !== 'string') { + throw new TypeError('Expected a string'); + } + + // Escape characters with special meaning either inside or outside character sets. + // Use a simple backslash escape when it’s always valid, and a `\xnn` escape when the simpler form would be disallowed by Unicode patterns’ stricter grammar. + return string + .replace(/[|\\{}()[\]^$+*?.]/g, '\\$&') + .replace(/-/g, '\\x2d'); +} + function escape(s) { - return `(?:${escapeRegExp(s)})`; + return `(?:${escapeStringRegexp(s)})`; } function escapeAndRepeat(s) { return `${escape(s)}+`; diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/utils.js b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/utils.js index 8e12156087e916..683587a976f07e 100644 --- a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/utils.js +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/dist/utils.js @@ -980,7 +980,7 @@ Function.call.bind(Object.hasOwnProperty); var __defProp = Object.defineProperty; var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; var __publicField = (obj, key, value) => { - __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value); + __defNormalProp(obj, key + "" , value); return value; }; class FixTracker { diff --git a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/package.json b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/package.json index fee49aef407d7c..c8d101f24cd087 100644 --- a/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/package.json +++ b/tools/node_modules/eslint/node_modules/@stylistic/eslint-plugin-js/package.json @@ -1,6 +1,6 @@ { "name": "@stylistic/eslint-plugin-js", - "version": "1.7.0", + "version": "2.1.0", "author": "Anthony Fu ", "license": "MIT", "homepage": "https://github.com/eslint-stylistic/eslint-stylistic#readme", @@ -47,11 +47,13 @@ "./rules/jsx-quotes": "./dist/jsx-quotes.js", "./rules/key-spacing": "./dist/key-spacing.js", "./rules/keyword-spacing": "./dist/keyword-spacing.js", + "./rules/line-comment-position": "./dist/line-comment-position.js", "./rules/linebreak-style": "./dist/linebreak-style.js", "./rules/lines-around-comment": "./dist/lines-around-comment.js", "./rules/lines-between-class-members": "./dist/lines-between-class-members.js", "./rules/max-len": "./dist/max-len.js", "./rules/max-statements-per-line": "./dist/max-statements-per-line.js", + "./rules/multiline-comment-style": "./dist/multiline-comment-style.js", "./rules/multiline-ternary": "./dist/multiline-ternary.js", "./rules/new-parens": "./dist/new-parens.js", "./rules/newline-per-chained-call": "./dist/newline-per-chained-call.js", @@ -101,21 +103,21 @@ "rules/**/*.d.ts" ], "engines": { - "node": "^16.0.0 || >=18.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "peerDependencies": { "eslint": ">=8.40.0" }, "dependencies": { - "@types/eslint": "^8.56.2", + "@types/eslint": "^8.56.10", "acorn": "^8.11.3", - "escape-string-regexp": "^4.0.0", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1" + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.0.1" }, "devDependencies": { "@eslint-community/eslint-utils": "^4.4.0", - "@typescript-eslint/parser": "^6.21.0" + "@typescript-eslint/parser": "^7.8.0", + "escape-string-regexp": "^5.0.0" }, "scripts": { "build": "rimraf dist && rollup --config=rollup.config.mts --configPlugin=rollup-plugin-esbuild", diff --git a/tools/node_modules/eslint/node_modules/@types/eslint/package.json b/tools/node_modules/eslint/node_modules/@types/eslint/package.json index 6a402e61c99ecf..fa6917a992ed5f 100644 --- a/tools/node_modules/eslint/node_modules/@types/eslint/package.json +++ b/tools/node_modules/eslint/node_modules/@types/eslint/package.json @@ -1,6 +1,6 @@ { "name": "@types/eslint", - "version": "8.56.9", + "version": "8.56.10", "description": "TypeScript definitions for eslint", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint", "license": "MIT", @@ -65,6 +65,6 @@ "@types/estree": "*", "@types/json-schema": "*" }, - "typesPublisherContentHash": "fca313ad4cad791fcfba0e6d32d0588e2935013152bb3b926c09b41fbbbcced8", + "typesPublisherContentHash": "522d3c76ab9a1be04075a38852c1f9c8c64f6722d17428f2cbbddc55e0477b81", "typeScriptVersion": "4.7" } \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/graphemer/LICENSE b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/LICENSE similarity index 51% rename from tools/node_modules/eslint/node_modules/graphemer/LICENSE rename to tools/node_modules/eslint/node_modules/@typescript-eslint/types/LICENSE index 51f383108a21dc..a1164108d4d603 100644 --- a/tools/node_modules/eslint/node_modules/graphemer/LICENSE +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/LICENSE @@ -1,4 +1,6 @@ -Copyright 2020 Filament (Anomalous Technologies Limited) +MIT License + +Copyright (c) 2019 typescript-eslint and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -7,12 +9,13 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -The above copyright notice and this permission notice shall be included -in all copies or substantial portions of the Software. +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, -INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A -PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT -HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE -SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js new file mode 100644 index 00000000000000..1ffa85ae6e3fec --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/generated/ast-spec.js @@ -0,0 +1,202 @@ +"use strict"; +/********************************************** + * DO NOT MODIFY THIS FILE MANUALLY * + * * + * THIS FILE HAS BEEN COPIED FROM ast-spec. * + * ANY CHANGES WILL BE LOST ON THE NEXT BUILD * + * * + * MAKE CHANGES TO ast-spec AND THEN RUN * + * yarn build * + **********************************************/ +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0; +var AST_NODE_TYPES; +(function (AST_NODE_TYPES) { + AST_NODE_TYPES["AccessorProperty"] = "AccessorProperty"; + AST_NODE_TYPES["ArrayExpression"] = "ArrayExpression"; + AST_NODE_TYPES["ArrayPattern"] = "ArrayPattern"; + AST_NODE_TYPES["ArrowFunctionExpression"] = "ArrowFunctionExpression"; + AST_NODE_TYPES["AssignmentExpression"] = "AssignmentExpression"; + AST_NODE_TYPES["AssignmentPattern"] = "AssignmentPattern"; + AST_NODE_TYPES["AwaitExpression"] = "AwaitExpression"; + AST_NODE_TYPES["BinaryExpression"] = "BinaryExpression"; + AST_NODE_TYPES["BlockStatement"] = "BlockStatement"; + AST_NODE_TYPES["BreakStatement"] = "BreakStatement"; + AST_NODE_TYPES["CallExpression"] = "CallExpression"; + AST_NODE_TYPES["CatchClause"] = "CatchClause"; + AST_NODE_TYPES["ChainExpression"] = "ChainExpression"; + AST_NODE_TYPES["ClassBody"] = "ClassBody"; + AST_NODE_TYPES["ClassDeclaration"] = "ClassDeclaration"; + AST_NODE_TYPES["ClassExpression"] = "ClassExpression"; + AST_NODE_TYPES["ConditionalExpression"] = "ConditionalExpression"; + AST_NODE_TYPES["ContinueStatement"] = "ContinueStatement"; + AST_NODE_TYPES["DebuggerStatement"] = "DebuggerStatement"; + AST_NODE_TYPES["Decorator"] = "Decorator"; + AST_NODE_TYPES["DoWhileStatement"] = "DoWhileStatement"; + AST_NODE_TYPES["EmptyStatement"] = "EmptyStatement"; + AST_NODE_TYPES["ExportAllDeclaration"] = "ExportAllDeclaration"; + AST_NODE_TYPES["ExportDefaultDeclaration"] = "ExportDefaultDeclaration"; + AST_NODE_TYPES["ExportNamedDeclaration"] = "ExportNamedDeclaration"; + AST_NODE_TYPES["ExportSpecifier"] = "ExportSpecifier"; + AST_NODE_TYPES["ExpressionStatement"] = "ExpressionStatement"; + AST_NODE_TYPES["ForInStatement"] = "ForInStatement"; + AST_NODE_TYPES["ForOfStatement"] = "ForOfStatement"; + AST_NODE_TYPES["ForStatement"] = "ForStatement"; + AST_NODE_TYPES["FunctionDeclaration"] = "FunctionDeclaration"; + AST_NODE_TYPES["FunctionExpression"] = "FunctionExpression"; + AST_NODE_TYPES["Identifier"] = "Identifier"; + AST_NODE_TYPES["IfStatement"] = "IfStatement"; + AST_NODE_TYPES["ImportAttribute"] = "ImportAttribute"; + AST_NODE_TYPES["ImportDeclaration"] = "ImportDeclaration"; + AST_NODE_TYPES["ImportDefaultSpecifier"] = "ImportDefaultSpecifier"; + AST_NODE_TYPES["ImportExpression"] = "ImportExpression"; + AST_NODE_TYPES["ImportNamespaceSpecifier"] = "ImportNamespaceSpecifier"; + AST_NODE_TYPES["ImportSpecifier"] = "ImportSpecifier"; + AST_NODE_TYPES["JSXAttribute"] = "JSXAttribute"; + AST_NODE_TYPES["JSXClosingElement"] = "JSXClosingElement"; + AST_NODE_TYPES["JSXClosingFragment"] = "JSXClosingFragment"; + AST_NODE_TYPES["JSXElement"] = "JSXElement"; + AST_NODE_TYPES["JSXEmptyExpression"] = "JSXEmptyExpression"; + AST_NODE_TYPES["JSXExpressionContainer"] = "JSXExpressionContainer"; + AST_NODE_TYPES["JSXFragment"] = "JSXFragment"; + AST_NODE_TYPES["JSXIdentifier"] = "JSXIdentifier"; + AST_NODE_TYPES["JSXMemberExpression"] = "JSXMemberExpression"; + AST_NODE_TYPES["JSXNamespacedName"] = "JSXNamespacedName"; + AST_NODE_TYPES["JSXOpeningElement"] = "JSXOpeningElement"; + AST_NODE_TYPES["JSXOpeningFragment"] = "JSXOpeningFragment"; + AST_NODE_TYPES["JSXSpreadAttribute"] = "JSXSpreadAttribute"; + AST_NODE_TYPES["JSXSpreadChild"] = "JSXSpreadChild"; + AST_NODE_TYPES["JSXText"] = "JSXText"; + AST_NODE_TYPES["LabeledStatement"] = "LabeledStatement"; + AST_NODE_TYPES["Literal"] = "Literal"; + AST_NODE_TYPES["LogicalExpression"] = "LogicalExpression"; + AST_NODE_TYPES["MemberExpression"] = "MemberExpression"; + AST_NODE_TYPES["MetaProperty"] = "MetaProperty"; + AST_NODE_TYPES["MethodDefinition"] = "MethodDefinition"; + AST_NODE_TYPES["NewExpression"] = "NewExpression"; + AST_NODE_TYPES["ObjectExpression"] = "ObjectExpression"; + AST_NODE_TYPES["ObjectPattern"] = "ObjectPattern"; + AST_NODE_TYPES["PrivateIdentifier"] = "PrivateIdentifier"; + AST_NODE_TYPES["Program"] = "Program"; + AST_NODE_TYPES["Property"] = "Property"; + AST_NODE_TYPES["PropertyDefinition"] = "PropertyDefinition"; + AST_NODE_TYPES["RestElement"] = "RestElement"; + AST_NODE_TYPES["ReturnStatement"] = "ReturnStatement"; + AST_NODE_TYPES["SequenceExpression"] = "SequenceExpression"; + AST_NODE_TYPES["SpreadElement"] = "SpreadElement"; + AST_NODE_TYPES["StaticBlock"] = "StaticBlock"; + AST_NODE_TYPES["Super"] = "Super"; + AST_NODE_TYPES["SwitchCase"] = "SwitchCase"; + AST_NODE_TYPES["SwitchStatement"] = "SwitchStatement"; + AST_NODE_TYPES["TaggedTemplateExpression"] = "TaggedTemplateExpression"; + AST_NODE_TYPES["TemplateElement"] = "TemplateElement"; + AST_NODE_TYPES["TemplateLiteral"] = "TemplateLiteral"; + AST_NODE_TYPES["ThisExpression"] = "ThisExpression"; + AST_NODE_TYPES["ThrowStatement"] = "ThrowStatement"; + AST_NODE_TYPES["TryStatement"] = "TryStatement"; + AST_NODE_TYPES["UnaryExpression"] = "UnaryExpression"; + AST_NODE_TYPES["UpdateExpression"] = "UpdateExpression"; + AST_NODE_TYPES["VariableDeclaration"] = "VariableDeclaration"; + AST_NODE_TYPES["VariableDeclarator"] = "VariableDeclarator"; + AST_NODE_TYPES["WhileStatement"] = "WhileStatement"; + AST_NODE_TYPES["WithStatement"] = "WithStatement"; + AST_NODE_TYPES["YieldExpression"] = "YieldExpression"; + /** + * TS-prefixed nodes + */ + AST_NODE_TYPES["TSAbstractAccessorProperty"] = "TSAbstractAccessorProperty"; + AST_NODE_TYPES["TSAbstractKeyword"] = "TSAbstractKeyword"; + AST_NODE_TYPES["TSAbstractMethodDefinition"] = "TSAbstractMethodDefinition"; + AST_NODE_TYPES["TSAbstractPropertyDefinition"] = "TSAbstractPropertyDefinition"; + AST_NODE_TYPES["TSAnyKeyword"] = "TSAnyKeyword"; + AST_NODE_TYPES["TSArrayType"] = "TSArrayType"; + AST_NODE_TYPES["TSAsExpression"] = "TSAsExpression"; + AST_NODE_TYPES["TSAsyncKeyword"] = "TSAsyncKeyword"; + AST_NODE_TYPES["TSBigIntKeyword"] = "TSBigIntKeyword"; + AST_NODE_TYPES["TSBooleanKeyword"] = "TSBooleanKeyword"; + AST_NODE_TYPES["TSCallSignatureDeclaration"] = "TSCallSignatureDeclaration"; + AST_NODE_TYPES["TSClassImplements"] = "TSClassImplements"; + AST_NODE_TYPES["TSConditionalType"] = "TSConditionalType"; + AST_NODE_TYPES["TSConstructorType"] = "TSConstructorType"; + AST_NODE_TYPES["TSConstructSignatureDeclaration"] = "TSConstructSignatureDeclaration"; + AST_NODE_TYPES["TSDeclareFunction"] = "TSDeclareFunction"; + AST_NODE_TYPES["TSDeclareKeyword"] = "TSDeclareKeyword"; + AST_NODE_TYPES["TSEmptyBodyFunctionExpression"] = "TSEmptyBodyFunctionExpression"; + AST_NODE_TYPES["TSEnumDeclaration"] = "TSEnumDeclaration"; + AST_NODE_TYPES["TSEnumMember"] = "TSEnumMember"; + AST_NODE_TYPES["TSExportAssignment"] = "TSExportAssignment"; + AST_NODE_TYPES["TSExportKeyword"] = "TSExportKeyword"; + AST_NODE_TYPES["TSExternalModuleReference"] = "TSExternalModuleReference"; + AST_NODE_TYPES["TSFunctionType"] = "TSFunctionType"; + AST_NODE_TYPES["TSInstantiationExpression"] = "TSInstantiationExpression"; + AST_NODE_TYPES["TSImportEqualsDeclaration"] = "TSImportEqualsDeclaration"; + AST_NODE_TYPES["TSImportType"] = "TSImportType"; + AST_NODE_TYPES["TSIndexedAccessType"] = "TSIndexedAccessType"; + AST_NODE_TYPES["TSIndexSignature"] = "TSIndexSignature"; + AST_NODE_TYPES["TSInferType"] = "TSInferType"; + AST_NODE_TYPES["TSInterfaceBody"] = "TSInterfaceBody"; + AST_NODE_TYPES["TSInterfaceDeclaration"] = "TSInterfaceDeclaration"; + AST_NODE_TYPES["TSInterfaceHeritage"] = "TSInterfaceHeritage"; + AST_NODE_TYPES["TSIntersectionType"] = "TSIntersectionType"; + AST_NODE_TYPES["TSIntrinsicKeyword"] = "TSIntrinsicKeyword"; + AST_NODE_TYPES["TSLiteralType"] = "TSLiteralType"; + AST_NODE_TYPES["TSMappedType"] = "TSMappedType"; + AST_NODE_TYPES["TSMethodSignature"] = "TSMethodSignature"; + AST_NODE_TYPES["TSModuleBlock"] = "TSModuleBlock"; + AST_NODE_TYPES["TSModuleDeclaration"] = "TSModuleDeclaration"; + AST_NODE_TYPES["TSNamedTupleMember"] = "TSNamedTupleMember"; + AST_NODE_TYPES["TSNamespaceExportDeclaration"] = "TSNamespaceExportDeclaration"; + AST_NODE_TYPES["TSNeverKeyword"] = "TSNeverKeyword"; + AST_NODE_TYPES["TSNonNullExpression"] = "TSNonNullExpression"; + AST_NODE_TYPES["TSNullKeyword"] = "TSNullKeyword"; + AST_NODE_TYPES["TSNumberKeyword"] = "TSNumberKeyword"; + AST_NODE_TYPES["TSObjectKeyword"] = "TSObjectKeyword"; + AST_NODE_TYPES["TSOptionalType"] = "TSOptionalType"; + AST_NODE_TYPES["TSParameterProperty"] = "TSParameterProperty"; + AST_NODE_TYPES["TSPrivateKeyword"] = "TSPrivateKeyword"; + AST_NODE_TYPES["TSPropertySignature"] = "TSPropertySignature"; + AST_NODE_TYPES["TSProtectedKeyword"] = "TSProtectedKeyword"; + AST_NODE_TYPES["TSPublicKeyword"] = "TSPublicKeyword"; + AST_NODE_TYPES["TSQualifiedName"] = "TSQualifiedName"; + AST_NODE_TYPES["TSReadonlyKeyword"] = "TSReadonlyKeyword"; + AST_NODE_TYPES["TSRestType"] = "TSRestType"; + AST_NODE_TYPES["TSSatisfiesExpression"] = "TSSatisfiesExpression"; + AST_NODE_TYPES["TSStaticKeyword"] = "TSStaticKeyword"; + AST_NODE_TYPES["TSStringKeyword"] = "TSStringKeyword"; + AST_NODE_TYPES["TSSymbolKeyword"] = "TSSymbolKeyword"; + AST_NODE_TYPES["TSTemplateLiteralType"] = "TSTemplateLiteralType"; + AST_NODE_TYPES["TSThisType"] = "TSThisType"; + AST_NODE_TYPES["TSTupleType"] = "TSTupleType"; + AST_NODE_TYPES["TSTypeAliasDeclaration"] = "TSTypeAliasDeclaration"; + AST_NODE_TYPES["TSTypeAnnotation"] = "TSTypeAnnotation"; + AST_NODE_TYPES["TSTypeAssertion"] = "TSTypeAssertion"; + AST_NODE_TYPES["TSTypeLiteral"] = "TSTypeLiteral"; + AST_NODE_TYPES["TSTypeOperator"] = "TSTypeOperator"; + AST_NODE_TYPES["TSTypeParameter"] = "TSTypeParameter"; + AST_NODE_TYPES["TSTypeParameterDeclaration"] = "TSTypeParameterDeclaration"; + AST_NODE_TYPES["TSTypeParameterInstantiation"] = "TSTypeParameterInstantiation"; + AST_NODE_TYPES["TSTypePredicate"] = "TSTypePredicate"; + AST_NODE_TYPES["TSTypeQuery"] = "TSTypeQuery"; + AST_NODE_TYPES["TSTypeReference"] = "TSTypeReference"; + AST_NODE_TYPES["TSUndefinedKeyword"] = "TSUndefinedKeyword"; + AST_NODE_TYPES["TSUnionType"] = "TSUnionType"; + AST_NODE_TYPES["TSUnknownKeyword"] = "TSUnknownKeyword"; + AST_NODE_TYPES["TSVoidKeyword"] = "TSVoidKeyword"; +})(AST_NODE_TYPES || (exports.AST_NODE_TYPES = AST_NODE_TYPES = {})); +var AST_TOKEN_TYPES; +(function (AST_TOKEN_TYPES) { + AST_TOKEN_TYPES["Boolean"] = "Boolean"; + AST_TOKEN_TYPES["Identifier"] = "Identifier"; + AST_TOKEN_TYPES["JSXIdentifier"] = "JSXIdentifier"; + AST_TOKEN_TYPES["JSXText"] = "JSXText"; + AST_TOKEN_TYPES["Keyword"] = "Keyword"; + AST_TOKEN_TYPES["Null"] = "Null"; + AST_TOKEN_TYPES["Numeric"] = "Numeric"; + AST_TOKEN_TYPES["Punctuator"] = "Punctuator"; + AST_TOKEN_TYPES["RegularExpression"] = "RegularExpression"; + AST_TOKEN_TYPES["String"] = "String"; + AST_TOKEN_TYPES["Template"] = "Template"; + AST_TOKEN_TYPES["Block"] = "Block"; + AST_TOKEN_TYPES["Line"] = "Line"; +})(AST_TOKEN_TYPES || (exports.AST_TOKEN_TYPES = AST_TOKEN_TYPES = {})); +//# sourceMappingURL=ast-spec.js.map \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/index.js b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/index.js new file mode 100644 index 00000000000000..00ff6a1752ea57 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/index.js @@ -0,0 +1,24 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __exportStar = (this && this.__exportStar) || function(m, exports) { + for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p); +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.AST_TOKEN_TYPES = exports.AST_NODE_TYPES = void 0; +var ast_spec_1 = require("./generated/ast-spec"); +Object.defineProperty(exports, "AST_NODE_TYPES", { enumerable: true, get: function () { return ast_spec_1.AST_NODE_TYPES; } }); +Object.defineProperty(exports, "AST_TOKEN_TYPES", { enumerable: true, get: function () { return ast_spec_1.AST_TOKEN_TYPES; } }); +__exportStar(require("./lib"), exports); +__exportStar(require("./parser-options"), exports); +__exportStar(require("./ts-estree"), exports); +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/lib.js b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/lib.js new file mode 100644 index 00000000000000..1507d2e68a9133 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/lib.js @@ -0,0 +1,7 @@ +"use strict"; +// THIS CODE WAS AUTOMATICALLY GENERATED +// DO NOT EDIT THIS CODE BY HAND +// RUN THE FOLLOWING COMMAND FROM THE WORKSPACE ROOT TO REGENERATE: +// npx nx generate-lib @typescript-eslint/repo-tools +Object.defineProperty(exports, "__esModule", { value: true }); +//# sourceMappingURL=lib.js.map \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/parser-options.js b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/parser-options.js new file mode 100644 index 00000000000000..66f40a290d71f2 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/parser-options.js @@ -0,0 +1,3 @@ +"use strict"; +Object.defineProperty(exports, "__esModule", { value: true }); +//# sourceMappingURL=parser-options.js.map \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/ts-estree.js b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/ts-estree.js new file mode 100644 index 00000000000000..e0dc7c61d3e989 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/dist/ts-estree.js @@ -0,0 +1,28 @@ +"use strict"; +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + var desc = Object.getOwnPropertyDescriptor(m, k); + if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { + desc = { enumerable: true, get: function() { return m[k]; } }; + } + Object.defineProperty(o, k2, desc); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", { value: true }); +exports.TSESTree = void 0; +exports.TSESTree = __importStar(require("./generated/ast-spec")); +//# sourceMappingURL=ts-estree.js.map \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@typescript-eslint/types/package.json b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/package.json new file mode 100644 index 00000000000000..baaa09f1e3997e --- /dev/null +++ b/tools/node_modules/eslint/node_modules/@typescript-eslint/types/package.json @@ -0,0 +1,88 @@ +{ + "name": "@typescript-eslint/types", + "version": "7.10.0", + "description": "Types for the TypeScript-ESTree AST spec", + "files": [ + "dist", + "_ts4.3", + "package.json", + "README.md", + "LICENSE" + ], + "type": "commonjs", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + }, + "./package.json": "./package.json" + }, + "types": "./dist/index.d.ts", + "engines": { + "node": "^18.18.0 || >=20.0.0" + }, + "repository": { + "type": "git", + "url": "https://github.com/typescript-eslint/typescript-eslint.git", + "directory": "packages/types" + }, + "bugs": { + "url": "https://github.com/typescript-eslint/typescript-eslint/issues" + }, + "homepage": "https://typescript-eslint.io", + "license": "MIT", + "keywords": [ + "eslint", + "typescript", + "estree" + ], + "scripts": { + "copy-ast-spec": "tsx ./tools/copy-ast-spec.ts", + "build": "tsc -b tsconfig.build.json", + "postbuild": "downlevel-dts dist _ts4.3/dist --to=4.3", + "clean": "tsc -b tsconfig.build.json --clean", + "postclean": "rimraf dist && rimraf src/generated && rimraf _ts3.4 && rimraf _ts4.3 && rimraf coverage", + "format": "prettier --write \"./**/*.{ts,mts,cts,tsx,js,mjs,cjs,jsx,json,md,css}\" --ignore-path ../../.prettierignore", + "generate-lib": "npx nx run scope-manager:generate-lib", + "lint": "npx nx lint", + "typecheck": "tsc --noEmit" + }, + "nx": { + "targets": { + "copy-ast-spec": { + "dependsOn": [ + "^build" + ], + "outputs": [ + "{projectRoot}/src/generated" + ], + "cache": true + }, + "build": { + "dependsOn": [ + "^build", + "copy-ast-spec" + ] + } + } + }, + "devDependencies": { + "@jest/types": "29.6.3", + "downlevel-dts": "*", + "prettier": "^3.2.5", + "rimraf": "*", + "tsx": "*", + "typescript": "*" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "typesVersions": { + "<4.7": { + "*": [ + "_ts4.3/*" + ] + } + } +} diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE deleted file mode 100644 index 48afbe52afb589..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -ISC License - -Copyright (c) 2021, Andrea Giammarchi, @WebReflection - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY -AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE -OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js deleted file mode 100644 index 9c0af7ddda7741..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/deserialize.js +++ /dev/null @@ -1,78 +0,0 @@ -'use strict'; -const { - VOID, PRIMITIVE, ARRAY, OBJECT, DATE, REGEXP, MAP, SET, ERROR, BIGINT -} = require('./types.js'); - -const env = typeof self === 'object' ? self : globalThis; - -const deserializer = ($, _) => { - const as = (out, index) => { - $.set(index, out); - return out; - }; - - const unpair = index => { - if ($.has(index)) - return $.get(index); - - const [type, value] = _[index]; - switch (type) { - case PRIMITIVE: - case VOID: - return as(value, index); - case ARRAY: { - const arr = as([], index); - for (const index of value) - arr.push(unpair(index)); - return arr; - } - case OBJECT: { - const object = as({}, index); - for (const [key, index] of value) - object[unpair(key)] = unpair(index); - return object; - } - case DATE: - return as(new Date(value), index); - case REGEXP: { - const {source, flags} = value; - return as(new RegExp(source, flags), index); - } - case MAP: { - const map = as(new Map, index); - for (const [key, index] of value) - map.set(unpair(key), unpair(index)); - return map; - } - case SET: { - const set = as(new Set, index); - for (const index of value) - set.add(unpair(index)); - return set; - } - case ERROR: { - const {name, message} = value; - return as(new env[name](message), index); - } - case BIGINT: - return as(BigInt(value), index); - case 'BigInt': - return as(Object(BigInt(value)), index); - } - return as(new env[type](value), index); - }; - - return unpair; -}; - -/** - * @typedef {Array} Record a type representation - */ - -/** - * Returns a deserialized value from a serialized array of Records. - * @param {Record[]} serialized a previously serialized value. - * @returns {any} - */ -const deserialize = serialized => deserializer(new Map, serialized)(0); -exports.deserialize = deserialize; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js deleted file mode 100644 index 13d747c5937db6..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/index.js +++ /dev/null @@ -1,27 +0,0 @@ -'use strict'; -const {deserialize} = require('./deserialize.js'); -const {serialize} = require('./serialize.js'); - -/** - * @typedef {Array} Record a type representation - */ - -/** - * Returns an array of serialized Records. - * @param {any} any a serializable value. - * @param {{transfer?: any[], json?: boolean, lossy?: boolean}?} options an object with - * a transfer option (ignored when polyfilled) and/or non standard fields that - * fallback to the polyfill if present. - * @returns {Record[]} - */ -Object.defineProperty(exports, '__esModule', {value: true}).default = typeof structuredClone === "function" ? - /* c8 ignore start */ - (any, options) => ( - options && ('json' in options || 'lossy' in options) ? - deserialize(serialize(any, options)) : structuredClone(any) - ) : - (any, options) => deserialize(serialize(any, options)); - /* c8 ignore stop */ - -exports.deserialize = deserialize; -exports.serialize = serialize; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js deleted file mode 100644 index 0038dcf9ca530f..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/json.js +++ /dev/null @@ -1,24 +0,0 @@ -'use strict'; -/*! (c) Andrea Giammarchi - ISC */ - -const {deserialize} = require('./deserialize.js'); -const {serialize} = require('./serialize.js'); - -const {parse: $parse, stringify: $stringify} = JSON; -const options = {json: true, lossy: true}; - -/** - * Revive a previously stringified structured clone. - * @param {string} str previously stringified data as string. - * @returns {any} whatever was previously stringified as clone. - */ -const parse = str => deserialize($parse(str)); -exports.parse = parse; - -/** - * Represent a structured clone value as string. - * @param {any} any some clone-able value to stringify. - * @returns {string} the value stringified. - */ -const stringify = any => $stringify(serialize(any, options)); -exports.stringify = stringify; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json deleted file mode 100644 index 0292b9956f2e40..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/package.json +++ /dev/null @@ -1 +0,0 @@ -{"type":"commonjs"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js deleted file mode 100644 index 0379cc6cf82b93..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/serialize.js +++ /dev/null @@ -1,160 +0,0 @@ -'use strict'; -const { - VOID, PRIMITIVE, ARRAY, OBJECT, DATE, REGEXP, MAP, SET, ERROR, BIGINT -} = require('./types.js'); - -const EMPTY = ''; - -const {toString} = {}; -const {keys} = Object; - -const typeOf = value => { - const type = typeof value; - if (type !== 'object' || !value) - return [PRIMITIVE, type]; - - const asString = toString.call(value).slice(8, -1); - switch (asString) { - case 'Array': - return [ARRAY, EMPTY]; - case 'Object': - return [OBJECT, EMPTY]; - case 'Date': - return [DATE, EMPTY]; - case 'RegExp': - return [REGEXP, EMPTY]; - case 'Map': - return [MAP, EMPTY]; - case 'Set': - return [SET, EMPTY]; - } - - if (asString.includes('Array')) - return [ARRAY, asString]; - - if (asString.includes('Error')) - return [ERROR, asString]; - - return [OBJECT, asString]; -}; - -const shouldSkip = ([TYPE, type]) => ( - TYPE === PRIMITIVE && - (type === 'function' || type === 'symbol') -); - -const serializer = (strict, json, $, _) => { - - const as = (out, value) => { - const index = _.push(out) - 1; - $.set(value, index); - return index; - }; - - const pair = value => { - if ($.has(value)) - return $.get(value); - - let [TYPE, type] = typeOf(value); - switch (TYPE) { - case PRIMITIVE: { - let entry = value; - switch (type) { - case 'bigint': - TYPE = BIGINT; - entry = value.toString(); - break; - case 'function': - case 'symbol': - if (strict) - throw new TypeError('unable to serialize ' + type); - entry = null; - break; - case 'undefined': - return as([VOID], value); - } - return as([TYPE, entry], value); - } - case ARRAY: { - if (type) - return as([type, [...value]], value); - - const arr = []; - const index = as([TYPE, arr], value); - for (const entry of value) - arr.push(pair(entry)); - return index; - } - case OBJECT: { - if (type) { - switch (type) { - case 'BigInt': - return as([type, value.toString()], value); - case 'Boolean': - case 'Number': - case 'String': - return as([type, value.valueOf()], value); - } - } - - if (json && ('toJSON' in value)) - return pair(value.toJSON()); - - const entries = []; - const index = as([TYPE, entries], value); - for (const key of keys(value)) { - if (strict || !shouldSkip(typeOf(value[key]))) - entries.push([pair(key), pair(value[key])]); - } - return index; - } - case DATE: - return as([TYPE, value.toISOString()], value); - case REGEXP: { - const {source, flags} = value; - return as([TYPE, {source, flags}], value); - } - case MAP: { - const entries = []; - const index = as([TYPE, entries], value); - for (const [key, entry] of value) { - if (strict || !(shouldSkip(typeOf(key)) || shouldSkip(typeOf(entry)))) - entries.push([pair(key), pair(entry)]); - } - return index; - } - case SET: { - const entries = []; - const index = as([TYPE, entries], value); - for (const entry of value) { - if (strict || !shouldSkip(typeOf(entry))) - entries.push(pair(entry)); - } - return index; - } - } - - const {message} = value; - return as([TYPE, {name: type, message}], value); - }; - - return pair; -}; - -/** - * @typedef {Array} Record a type representation - */ - -/** - * Returns an array of serialized Records. - * @param {any} value a serializable value. - * @param {{json?: boolean, lossy?: boolean}?} options an object with a `lossy` or `json` property that, - * if `true`, will not throw errors on incompatible types, and behave more - * like JSON stringify would behave. Symbol and Function will be discarded. - * @returns {Record[]} - */ - const serialize = (value, {json, lossy} = {}) => { - const _ = []; - return serializer(!(json || lossy), !!json, new Map, _)(value), _; -}; -exports.serialize = serialize; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js deleted file mode 100644 index 8284be3d69a407..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/cjs/types.js +++ /dev/null @@ -1,22 +0,0 @@ -'use strict'; -const VOID = -1; -exports.VOID = VOID; -const PRIMITIVE = 0; -exports.PRIMITIVE = PRIMITIVE; -const ARRAY = 1; -exports.ARRAY = ARRAY; -const OBJECT = 2; -exports.OBJECT = OBJECT; -const DATE = 3; -exports.DATE = DATE; -const REGEXP = 4; -exports.REGEXP = REGEXP; -const MAP = 5; -exports.MAP = MAP; -const SET = 6; -exports.SET = SET; -const ERROR = 7; -exports.ERROR = ERROR; -const BIGINT = 8; -exports.BIGINT = BIGINT; -// export const SYMBOL = 9; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js deleted file mode 100644 index 0fa70897dc050e..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/deserialize.js +++ /dev/null @@ -1,79 +0,0 @@ -import { - VOID, PRIMITIVE, - ARRAY, OBJECT, - DATE, REGEXP, MAP, SET, - ERROR, BIGINT -} from './types.js'; - -const env = typeof self === 'object' ? self : globalThis; - -const deserializer = ($, _) => { - const as = (out, index) => { - $.set(index, out); - return out; - }; - - const unpair = index => { - if ($.has(index)) - return $.get(index); - - const [type, value] = _[index]; - switch (type) { - case PRIMITIVE: - case VOID: - return as(value, index); - case ARRAY: { - const arr = as([], index); - for (const index of value) - arr.push(unpair(index)); - return arr; - } - case OBJECT: { - const object = as({}, index); - for (const [key, index] of value) - object[unpair(key)] = unpair(index); - return object; - } - case DATE: - return as(new Date(value), index); - case REGEXP: { - const {source, flags} = value; - return as(new RegExp(source, flags), index); - } - case MAP: { - const map = as(new Map, index); - for (const [key, index] of value) - map.set(unpair(key), unpair(index)); - return map; - } - case SET: { - const set = as(new Set, index); - for (const index of value) - set.add(unpair(index)); - return set; - } - case ERROR: { - const {name, message} = value; - return as(new env[name](message), index); - } - case BIGINT: - return as(BigInt(value), index); - case 'BigInt': - return as(Object(BigInt(value)), index); - } - return as(new env[type](value), index); - }; - - return unpair; -}; - -/** - * @typedef {Array} Record a type representation - */ - -/** - * Returns a deserialized value from a serialized array of Records. - * @param {Record[]} serialized a previously serialized value. - * @returns {any} - */ -export const deserialize = serialized => deserializer(new Map, serialized)(0); diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js deleted file mode 100644 index d3b47479adfc55..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/index.js +++ /dev/null @@ -1,25 +0,0 @@ -import {deserialize} from './deserialize.js'; -import {serialize} from './serialize.js'; - -/** - * @typedef {Array} Record a type representation - */ - -/** - * Returns an array of serialized Records. - * @param {any} any a serializable value. - * @param {{transfer?: any[], json?: boolean, lossy?: boolean}?} options an object with - * a transfer option (ignored when polyfilled) and/or non standard fields that - * fallback to the polyfill if present. - * @returns {Record[]} - */ -export default typeof structuredClone === "function" ? - /* c8 ignore start */ - (any, options) => ( - options && ('json' in options || 'lossy' in options) ? - deserialize(serialize(any, options)) : structuredClone(any) - ) : - (any, options) => deserialize(serialize(any, options)); - /* c8 ignore stop */ - -export {deserialize, serialize}; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js deleted file mode 100644 index 23eb95222d1a31..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/json.js +++ /dev/null @@ -1,21 +0,0 @@ -/*! (c) Andrea Giammarchi - ISC */ - -import {deserialize} from './deserialize.js'; -import {serialize} from './serialize.js'; - -const {parse: $parse, stringify: $stringify} = JSON; -const options = {json: true, lossy: true}; - -/** - * Revive a previously stringified structured clone. - * @param {string} str previously stringified data as string. - * @returns {any} whatever was previously stringified as clone. - */ -export const parse = str => deserialize($parse(str)); - -/** - * Represent a structured clone value as string. - * @param {any} any some clone-able value to stringify. - * @returns {string} the value stringified. - */ -export const stringify = any => $stringify(serialize(any, options)); diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js deleted file mode 100644 index 8e098ddca777a7..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/serialize.js +++ /dev/null @@ -1,161 +0,0 @@ -import { - VOID, PRIMITIVE, - ARRAY, OBJECT, - DATE, REGEXP, MAP, SET, - ERROR, BIGINT -} from './types.js'; - -const EMPTY = ''; - -const {toString} = {}; -const {keys} = Object; - -const typeOf = value => { - const type = typeof value; - if (type !== 'object' || !value) - return [PRIMITIVE, type]; - - const asString = toString.call(value).slice(8, -1); - switch (asString) { - case 'Array': - return [ARRAY, EMPTY]; - case 'Object': - return [OBJECT, EMPTY]; - case 'Date': - return [DATE, EMPTY]; - case 'RegExp': - return [REGEXP, EMPTY]; - case 'Map': - return [MAP, EMPTY]; - case 'Set': - return [SET, EMPTY]; - } - - if (asString.includes('Array')) - return [ARRAY, asString]; - - if (asString.includes('Error')) - return [ERROR, asString]; - - return [OBJECT, asString]; -}; - -const shouldSkip = ([TYPE, type]) => ( - TYPE === PRIMITIVE && - (type === 'function' || type === 'symbol') -); - -const serializer = (strict, json, $, _) => { - - const as = (out, value) => { - const index = _.push(out) - 1; - $.set(value, index); - return index; - }; - - const pair = value => { - if ($.has(value)) - return $.get(value); - - let [TYPE, type] = typeOf(value); - switch (TYPE) { - case PRIMITIVE: { - let entry = value; - switch (type) { - case 'bigint': - TYPE = BIGINT; - entry = value.toString(); - break; - case 'function': - case 'symbol': - if (strict) - throw new TypeError('unable to serialize ' + type); - entry = null; - break; - case 'undefined': - return as([VOID], value); - } - return as([TYPE, entry], value); - } - case ARRAY: { - if (type) - return as([type, [...value]], value); - - const arr = []; - const index = as([TYPE, arr], value); - for (const entry of value) - arr.push(pair(entry)); - return index; - } - case OBJECT: { - if (type) { - switch (type) { - case 'BigInt': - return as([type, value.toString()], value); - case 'Boolean': - case 'Number': - case 'String': - return as([type, value.valueOf()], value); - } - } - - if (json && ('toJSON' in value)) - return pair(value.toJSON()); - - const entries = []; - const index = as([TYPE, entries], value); - for (const key of keys(value)) { - if (strict || !shouldSkip(typeOf(value[key]))) - entries.push([pair(key), pair(value[key])]); - } - return index; - } - case DATE: - return as([TYPE, value.toISOString()], value); - case REGEXP: { - const {source, flags} = value; - return as([TYPE, {source, flags}], value); - } - case MAP: { - const entries = []; - const index = as([TYPE, entries], value); - for (const [key, entry] of value) { - if (strict || !(shouldSkip(typeOf(key)) || shouldSkip(typeOf(entry)))) - entries.push([pair(key), pair(entry)]); - } - return index; - } - case SET: { - const entries = []; - const index = as([TYPE, entries], value); - for (const entry of value) { - if (strict || !shouldSkip(typeOf(entry))) - entries.push(pair(entry)); - } - return index; - } - } - - const {message} = value; - return as([TYPE, {name: type, message}], value); - }; - - return pair; -}; - -/** - * @typedef {Array} Record a type representation - */ - -/** - * Returns an array of serialized Records. - * @param {any} value a serializable value. - * @param {{json?: boolean, lossy?: boolean}?} options an object with a `lossy` or `json` property that, - * if `true`, will not throw errors on incompatible types, and behave more - * like JSON stringify would behave. Symbol and Function will be discarded. - * @returns {Record[]} - */ - export const serialize = (value, {json, lossy} = {}) => { - const _ = []; - return serializer(!(json || lossy), !!json, new Map, _)(value), _; -}; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js deleted file mode 100644 index 50e60ca067667f..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/esm/types.js +++ /dev/null @@ -1,11 +0,0 @@ -export const VOID = -1; -export const PRIMITIVE = 0; -export const ARRAY = 1; -export const OBJECT = 2; -export const DATE = 3; -export const REGEXP = 4; -export const MAP = 5; -export const SET = 6; -export const ERROR = 7; -export const BIGINT = 8; -// export const SYMBOL = 9; diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json deleted file mode 100644 index ba9f84fa55198c..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/package.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "name": "@ungap/structured-clone", - "version": "1.2.0", - "description": "A structuredClone polyfill", - "main": "./cjs/index.js", - "scripts": { - "build": "npm run cjs && npm run rollup:json && npm run test", - "cjs": "ascjs esm cjs", - "coverage": "c8 report --reporter=text-lcov > ./coverage/lcov.info", - "rollup:json": "rollup --config rollup/json.config.js", - "test": "c8 node test/index.js" - }, - "keywords": [ - "recursion", - "structured", - "clone", - "algorithm" - ], - "author": "Andrea Giammarchi", - "license": "ISC", - "devDependencies": { - "@rollup/plugin-node-resolve": "^15.0.2", - "@rollup/plugin-terser": "^0.4.1", - "ascjs": "^5.0.1", - "c8": "^7.13.0", - "coveralls": "^3.1.1", - "rollup": "^3.21.4" - }, - "module": "./esm/index.js", - "type": "module", - "exports": { - ".": { - "import": "./esm/index.js", - "default": "./cjs/index.js" - }, - "./json": { - "import": "./esm/json.js", - "default": "./cjs/json.js" - }, - "./package.json": "./package.json" - }, - "directories": { - "test": "test" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/ungap/structured-clone.git" - }, - "bugs": { - "url": "https://github.com/ungap/structured-clone/issues" - }, - "homepage": "https://github.com/ungap/structured-clone#readme" -} diff --git a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js b/tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js deleted file mode 100644 index 44cfe596be509b..00000000000000 --- a/tools/node_modules/eslint/node_modules/@ungap/structured-clone/structured-json.js +++ /dev/null @@ -1 +0,0 @@ -var StructuredJSON=function(e){"use strict";const r="object"==typeof self?self:globalThis,t=e=>((e,t)=>{const s=(r,t)=>(e.set(t,r),r),n=c=>{if(e.has(c))return e.get(c);const[o,a]=t[c];switch(o){case 0:case-1:return s(a,c);case 1:{const e=s([],c);for(const r of a)e.push(n(r));return e}case 2:{const e=s({},c);for(const[r,t]of a)e[n(r)]=n(t);return e}case 3:return s(new Date(a),c);case 4:{const{source:e,flags:r}=a;return s(new RegExp(e,r),c)}case 5:{const e=s(new Map,c);for(const[r,t]of a)e.set(n(r),n(t));return e}case 6:{const e=s(new Set,c);for(const r of a)e.add(n(r));return e}case 7:{const{name:e,message:t}=a;return s(new r[e](t),c)}case 8:return s(BigInt(a),c);case"BigInt":return s(Object(BigInt(a)),c)}return s(new r[o](a),c)};return n})(new Map,e)(0),s="",{toString:n}={},{keys:c}=Object,o=e=>{const r=typeof e;if("object"!==r||!e)return[0,r];const t=n.call(e).slice(8,-1);switch(t){case"Array":return[1,s];case"Object":return[2,s];case"Date":return[3,s];case"RegExp":return[4,s];case"Map":return[5,s];case"Set":return[6,s]}return t.includes("Array")?[1,t]:t.includes("Error")?[7,t]:[2,t]},a=([e,r])=>0===e&&("function"===r||"symbol"===r),u=(e,{json:r,lossy:t}={})=>{const s=[];return((e,r,t,s)=>{const n=(e,r)=>{const n=s.push(e)-1;return t.set(r,n),n},u=s=>{if(t.has(s))return t.get(s);let[i,f]=o(s);switch(i){case 0:{let r=s;switch(f){case"bigint":i=8,r=s.toString();break;case"function":case"symbol":if(e)throw new TypeError("unable to serialize "+f);r=null;break;case"undefined":return n([-1],s)}return n([i,r],s)}case 1:{if(f)return n([f,[...s]],s);const e=[],r=n([i,e],s);for(const r of s)e.push(u(r));return r}case 2:{if(f)switch(f){case"BigInt":return n([f,s.toString()],s);case"Boolean":case"Number":case"String":return n([f,s.valueOf()],s)}if(r&&"toJSON"in s)return u(s.toJSON());const t=[],l=n([i,t],s);for(const r of c(s))!e&&a(o(s[r]))||t.push([u(r),u(s[r])]);return l}case 3:return n([i,s.toISOString()],s);case 4:{const{source:e,flags:r}=s;return n([i,{source:e,flags:r}],s)}case 5:{const r=[],t=n([i,r],s);for(const[t,n]of s)(e||!a(o(t))&&!a(o(n)))&&r.push([u(t),u(n)]);return t}case 6:{const r=[],t=n([i,r],s);for(const t of s)!e&&a(o(t))||r.push(u(t));return t}}const{message:l}=s;return n([i,{name:f,message:l}],s)};return u})(!(r||t),!!r,new Map,s)(e),s},{parse:i,stringify:f}=JSON,l={json:!0,lossy:!0};return e.parse=e=>t(i(e)),e.stringify=e=>f(u(e,l)),e}({}); diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/agents.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/agents.js index d002a3f69bc1f4..1b57598043c5e0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/agents.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/agents.js @@ -1 +1 @@ -module.exports={A:{A:{K:0,D:0,E:0.028588,F:0.0571761,A:0,B:0.500291,VC:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","VC","K","D","E","F","A","B","","",""],E:"IE",F:{VC:962323200,K:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{"0":0.007562,"1":0.011343,"2":0.015124,"3":0.011343,"4":0.007562,"5":0.015124,"6":0.011343,"7":0.022686,"8":0.068058,"9":0.196612,C:0,L:0,M:0,G:0,N:0,O:0.007562,P:0.034029,Q:0,H:0,R:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0.003781,a:0,b:0.011343,c:0,d:0,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0,m:0,n:0,o:0,p:0,q:0.007562,r:0.007562,s:0.068058,y:0.007562,z:0.007562,AB:3.96249,I:0.313823},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","L","M","G","N","O","P","Q","H","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","y","z","0","1","2","3","4","5","6","7","8","9","AB","I","","",""],E:"Edge",F:{"0":1680825600,"1":1683158400,"2":1685664000,"3":1689897600,"4":1692576000,"5":1694649600,"6":1697155200,"7":1698969600,"8":1701993600,"9":1706227200,C:1438128000,L:1447286400,M:1470096000,G:1491868800,N:1508198400,O:1525046400,P:1542067200,Q:1579046400,H:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,b:1626912000,c:1630627200,d:1632441600,e:1634774400,f:1637539200,g:1641427200,h:1643932800,i:1646265600,j:1649635200,k:1651190400,l:1653955200,m:1655942400,n:1659657600,o:1661990400,p:1664755200,q:1666915200,r:1670198400,s:1673481600,y:1675900800,z:1678665600,AB:1708732800,I:1711152000},D:{C:"ms",L:"ms",M:"ms",G:"ms",N:"ms",O:"ms",P:"ms"}},C:{A:{"0":0.003781,"1":0.011343,"2":0,"3":0.385662,"4":0,"5":0.011343,"6":0.079401,"7":0.007562,"8":0.015124,"9":0.018905,WC:0,"9B":0,J:0.003781,BB:0,K:0,D:0,E:0,F:0,A:0,B:0.015124,C:0,L:0,M:0,G:0,N:0,O:0,P:0,CB:0,t:0,u:0,v:0,w:0,x:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0,UB:0,VB:0.011343,WB:0.007562,XB:0.007562,YB:0,ZB:0,aB:0,bB:0,cB:0.003781,dB:0,eB:0.049153,fB:0.007562,gB:0.007562,hB:0,iB:0.018905,jB:0,kB:0,AC:0.003781,lB:0,BC:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,uB:0,vB:0,wB:0.007562,xB:0,yB:0,zB:0,"0B":0,"1B":0,"2B":0.015124,Q:0,H:0,R:0,CC:0,S:0,T:0,U:0,V:0,W:0,X:0.007562,Y:0,Z:0,a:0.003781,b:0,c:0,d:0.003781,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0.022686,m:0.03781,n:0.007562,o:0.003781,p:0,q:0,r:0.003781,s:0.007562,y:0.003781,z:0,AB:0.060496,I:1.08515,"3B":0.446158,DC:0,EC:0,XC:0,YC:0,ZC:0},B:"moz",C:["WC","9B","YC","ZC","J","BB","K","D","E","F","A","B","C","L","M","G","N","O","P","CB","t","u","v","w","x","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","AC","lB","BC","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","Q","H","R","CC","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","y","z","0","1","2","3","4","5","6","7","8","9","AB","I","3B","DC","EC","XC"],E:"Firefox",F:{"0":1681171200,"1":1683590400,"2":1686009600,"3":1688428800,"4":1690848000,"5":1693267200,"6":1695686400,"7":1698105600,"8":1700524800,"9":1702944000,WC:1161648000,"9B":1213660800,YC:1246320000,ZC:1264032000,J:1300752000,BB:1308614400,K:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,L:1335225600,M:1338854400,G:1342483200,N:1346112000,O:1349740800,P:1353628800,CB:1357603200,t:1361232000,u:1364860800,v:1368489600,w:1372118400,x:1375747200,DB:1379376000,EB:1386633600,FB:1391472000,GB:1395100800,HB:1398729600,IB:1402358400,JB:1405987200,KB:1409616000,LB:1413244800,MB:1417392000,NB:1421107200,OB:1424736000,PB:1428278400,QB:1431475200,RB:1435881600,SB:1439251200,TB:1442880000,UB:1446508800,VB:1450137600,WB:1453852800,XB:1457395200,YB:1461628800,ZB:1465257600,aB:1470096000,bB:1474329600,cB:1479168000,dB:1485216000,eB:1488844800,fB:1492560000,gB:1497312000,hB:1502150400,iB:1506556800,jB:1510617600,kB:1516665600,AC:1520985600,lB:1525824000,BC:1529971200,mB:1536105600,nB:1540252800,oB:1544486400,pB:1548720000,qB:1552953600,rB:1558396800,sB:1562630400,tB:1567468800,uB:1571788800,vB:1575331200,wB:1578355200,xB:1581379200,yB:1583798400,zB:1586304000,"0B":1588636800,"1B":1591056000,"2B":1593475200,Q:1595894400,H:1598313600,R:1600732800,CC:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,b:1630972800,c:1633392000,d:1635811200,e:1638835200,f:1641859200,g:1644364800,h:1646697600,i:1649116800,j:1651536000,k:1653955200,l:1656374400,m:1658793600,n:1661212800,o:1663632000,p:1666051200,q:1668470400,r:1670889600,s:1673913600,y:1676332800,z:1678752000,AB:1705968000,I:1708387200,"3B":1710806400,DC:null,EC:null,XC:null}},D:{A:{"0":0.041591,"1":0.083182,"2":0.094525,"3":0.03781,"4":0.219298,"5":0.124773,"6":0.105868,"7":0.181488,"8":0.446158,"9":1.68633,J:0,BB:0,K:0,D:0,E:0,F:0,A:0,B:0,C:0,L:0,M:0,G:0,N:0,O:0,P:0,CB:0,t:0,u:0,v:0,w:0,x:0,DB:0,EB:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0.003781,NB:0.003781,OB:0,PB:0,QB:0.015124,RB:0,SB:0,TB:0,UB:0,VB:0,WB:0,XB:0,YB:0,ZB:0.007562,aB:0.022686,bB:0.026467,cB:0.011343,dB:0,eB:0,fB:0.007562,gB:0,hB:0.003781,iB:0.011343,jB:0,kB:0,AC:0,lB:0.007562,BC:0.003781,mB:0,nB:0.007562,oB:0,pB:0.003781,qB:0.022686,rB:0.003781,sB:0.011343,tB:0.03781,uB:0.056715,vB:0.011343,wB:0.011343,xB:0.011343,yB:0.015124,zB:0.011343,"0B":0.011343,"1B":0.026467,"2B":0.022686,Q:0.132335,H:0.022686,R:0.030248,S:0.045372,T:0.011343,U:0.022686,V:0.105868,W:0.086963,X:0.022686,Y:0.015124,Z:0.018905,a:0.045372,b:0.022686,c:0.030248,d:0.03781,e:0.011343,f:0.011343,g:0.018905,h:0.07562,i:0.034029,j:0.090744,k:0.158802,l:0.090744,m:0.215517,n:0.166364,o:0.041591,p:0.041591,q:0.034029,r:0.052934,s:1.56912,y:0.049153,z:0.049153,AB:12.5832,I:3.50877,"3B":0.018905,DC:0.003781,EC:0},B:"webkit",C:["","","","","","","J","BB","K","D","E","F","A","B","C","L","M","G","N","O","P","CB","t","u","v","w","x","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","AC","lB","BC","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","Q","H","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","y","z","0","1","2","3","4","5","6","7","8","9","AB","I","3B","DC","EC"],E:"Chrome",F:{"0":1680566400,"1":1682985600,"2":1685404800,"3":1689724800,"4":1692057600,"5":1694476800,"6":1696896000,"7":1698710400,"8":1701993600,"9":1705968000,J:1264377600,BB:1274745600,K:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,L:1312243200,M:1316131200,G:1316131200,N:1319500800,O:1323734400,P:1328659200,CB:1332892800,t:1337040000,u:1340668800,v:1343692800,w:1348531200,x:1352246400,DB:1357862400,EB:1361404800,FB:1364428800,GB:1369094400,HB:1374105600,IB:1376956800,JB:1384214400,KB:1389657600,LB:1392940800,MB:1397001600,NB:1400544000,OB:1405468800,PB:1409011200,QB:1412640000,RB:1416268800,SB:1421798400,TB:1425513600,UB:1429401600,VB:1432080000,WB:1437523200,XB:1441152000,YB:1444780800,ZB:1449014400,aB:1453248000,bB:1456963200,cB:1460592000,dB:1464134400,eB:1469059200,fB:1472601600,gB:1476230400,hB:1480550400,iB:1485302400,jB:1489017600,kB:1492560000,AC:1496707200,lB:1500940800,BC:1504569600,mB:1508198400,nB:1512518400,oB:1516752000,pB:1520294400,qB:1523923200,rB:1527552000,sB:1532390400,tB:1536019200,uB:1539648000,vB:1543968000,wB:1548720000,xB:1552348800,yB:1555977600,zB:1559606400,"0B":1564444800,"1B":1568073600,"2B":1571702400,Q:1575936000,H:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,b:1626739200,c:1630368000,d:1632268800,e:1634601600,f:1637020800,g:1641340800,h:1643673600,i:1646092800,j:1648512000,k:1650931200,l:1653350400,m:1655769600,n:1659398400,o:1661817600,p:1664236800,q:1666656000,r:1669680000,s:1673308800,y:1675728000,z:1678147200,AB:1708387200,I:1710806400,"3B":null,DC:null,EC:null}},E:{A:{J:0,BB:0,K:0,D:0,E:0.003781,F:0.003781,A:0,B:0,C:0,L:0.007562,M:0.03781,G:0.007562,aC:0,FC:0,bC:0.003781,cC:0,dC:0,eC:0.03781,GC:0,"4B":0.007562,"5B":0.015124,fC:0.068058,gC:0.102087,hC:0.030248,HC:0.011343,IC:0.026467,"6B":0.03781,iC:0.257108,"7B":0.030248,JC:0.052934,KC:0.049153,LC:0.11343,MC:0.03781,NC:0.071839,jC:0.381881,"8B":0.045372,OC:0.124773,PC:0.279794,QC:1.11539,RC:0.219298,SC:0,kC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","aC","FC","J","BB","bC","K","cC","D","dC","E","F","eC","A","GC","B","4B","C","5B","L","fC","M","gC","G","hC","HC","IC","6B","iC","7B","JC","KC","LC","MC","NC","jC","8B","OC","PC","QC","RC","SC","kC",""],E:"Safari",F:{aC:1205798400,FC:1226534400,J:1244419200,BB:1275868800,bC:1311120000,K:1343174400,cC:1382400000,D:1382400000,dC:1410998400,E:1413417600,F:1443657600,eC:1458518400,A:1474329600,GC:1490572800,B:1505779200,"4B":1522281600,C:1537142400,"5B":1553472000,L:1568851200,fC:1585008000,M:1600214400,gC:1619395200,G:1632096000,hC:1635292800,HC:1639353600,IC:1647216000,"6B":1652745600,iC:1658275200,"7B":1662940800,JC:1666569600,KC:1670889600,LC:1674432000,MC:1679875200,NC:1684368000,jC:1690156800,"8B":1695686400,OC:1698192000,PC:1702252800,QC:1705881600,RC:1709596800,SC:null,kC:null}},F:{A:{F:0,B:0,C:0,G:0,N:0,O:0,P:0,CB:0,t:0,u:0,v:0,w:0,x:0,DB:0,EB:0,FB:0,GB:0.003781,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0.003781,PB:0,QB:0,RB:0,SB:0,TB:0,UB:0,VB:0,WB:0,XB:0,YB:0.015124,ZB:0,aB:0,bB:0,cB:0,dB:0,eB:0,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,uB:0,vB:0,wB:0,xB:0,yB:0,zB:0,"0B":0,"1B":0,"2B":0,Q:0,H:0,R:0,CC:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0,c:0,d:0,e:0.045372,f:0,g:0,h:0,i:0,j:0,k:0,l:0.045372,m:0,n:0,o:0,p:0.018905,q:0.782667,r:0.15124,s:0,lC:0,mC:0,nC:0,oC:0,"4B":0,TC:0,pC:0,"5B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","F","lC","mC","nC","oC","B","4B","TC","pC","C","5B","G","N","O","P","CB","t","u","v","w","x","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","Q","H","R","CC","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","","",""],E:"Opera",F:{F:1150761600,lC:1223424000,mC:1251763200,nC:1267488000,oC:1277942400,B:1292457600,"4B":1302566400,TC:1309219200,pC:1323129600,C:1323129600,"5B":1352073600,G:1372723200,N:1377561600,O:1381104000,P:1386288000,CB:1390867200,t:1393891200,u:1399334400,v:1401753600,w:1405987200,x:1409616000,DB:1413331200,EB:1417132800,FB:1422316800,GB:1425945600,HB:1430179200,IB:1433808000,JB:1438646400,KB:1442448000,LB:1445904000,MB:1449100800,NB:1454371200,OB:1457308800,PB:1462320000,QB:1465344000,RB:1470096000,SB:1474329600,TB:1477267200,UB:1481587200,VB:1486425600,WB:1490054400,XB:1494374400,YB:1498003200,ZB:1502236800,aB:1506470400,bB:1510099200,cB:1515024000,dB:1517961600,eB:1521676800,fB:1525910400,gB:1530144000,hB:1534982400,iB:1537833600,jB:1543363200,kB:1548201600,lB:1554768000,mB:1561593600,nB:1566259200,oB:1570406400,pB:1573689600,qB:1578441600,rB:1583971200,sB:1587513600,tB:1592956800,uB:1595894400,vB:1600128000,wB:1603238400,xB:1613520000,yB:1612224000,zB:1616544000,"0B":1619568000,"1B":1623715200,"2B":1627948800,Q:1631577600,H:1633392000,R:1635984000,CC:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600,b:1668816000,c:1668643200,d:1671062400,e:1675209600,f:1677024000,g:1679529600,h:1681948800,i:1684195200,j:1687219200,k:1690329600,l:1692748800,m:1696204800,n:1699920000,o:1699920000,p:1702944000,q:1707264000,r:1710115200,s:1711497600},D:{F:"o",B:"o",C:"o",lC:"o",mC:"o",nC:"o",oC:"o","4B":"o",TC:"o",pC:"o","5B":"o"}},G:{A:{E:0,FC:0,qC:0,UC:0.00300253,rC:0.00150127,sC:0.0090076,tC:0.0105089,uC:0.00300253,vC:0.00600507,wC:0.0375317,xC:0.00600507,yC:0.0630532,zC:0.045038,"0C":0.0165139,"1C":0.0135114,"2C":0.259719,"3C":0.0045038,"4C":0.045038,"5C":0.0135114,"6C":0.0510431,"7C":0.1186,"8C":0.153129,"9C":0.0660557,HC:0.0780659,IC:0.0915773,"6B":0.117099,AD:0.980327,"7B":0.2372,JC:0.493917,KC:0.238701,LC:0.423357,MC:0.090076,NC:0.190661,BD:1.44422,"8B":0.187658,OC:0.378319,PC:0.60501,QC:7.43127,RC:1.09142,SC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","FC","qC","UC","rC","sC","tC","E","uC","vC","wC","xC","yC","zC","0C","1C","2C","3C","4C","5C","6C","7C","8C","9C","HC","IC","6B","AD","7B","JC","KC","LC","MC","NC","BD","8B","OC","PC","QC","RC","SC","",""],E:"Safari on iOS",F:{FC:1270252800,qC:1283904000,UC:1299628800,rC:1331078400,sC:1359331200,tC:1394409600,E:1410912000,uC:1413763200,vC:1442361600,wC:1458518400,xC:1473724800,yC:1490572800,zC:1505779200,"0C":1522281600,"1C":1537142400,"2C":1553472000,"3C":1568851200,"4C":1572220800,"5C":1580169600,"6C":1585008000,"7C":1600214400,"8C":1619395200,"9C":1632096000,HC:1639353600,IC:1647216000,"6B":1652659200,AD:1658275200,"7B":1662940800,JC:1666569600,KC:1670889600,LC:1674432000,MC:1679875200,NC:1684368000,BD:1690156800,"8B":1694995200,OC:1698192000,PC:1702252800,QC:1705881600,RC:1709596800,SC:null}},H:{A:{CD:0.09},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","CD","","",""],E:"Opera Mini",F:{CD:1426464000}},I:{A:{"9B":0,J:0.0000628119,I:0.625607,DD:0,ED:0,FD:0,GD:0.0000628119,UC:0.000376871,HD:0,ID:0.00150749},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","DD","ED","FD","9B","J","GD","UC","HD","ID","I","","",""],E:"Android Browser",F:{DD:1256515200,ED:1274313600,FD:1291593600,"9B":1298332800,J:1318896000,GD:1341792000,UC:1374624000,HD:1386547200,ID:1401667200,I:1710806400}},J:{A:{D:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,H:1.25952,"4B":0,TC:0,"5B":0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","4B","TC","C","5B","H","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,"4B":1314835200,TC:1318291200,C:1330300800,"5B":1349740800,H:1709769600},D:{H:"webkit"}},L:{A:{I:42.2934},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","","",""],E:"Chrome for Android",F:{I:1710806400}},M:{A:{"3B":0.298512},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","3B","","",""],E:"Firefox for Android",F:{"3B":1710806400}},N:{A:{A:0,B:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{"6B":0.889317},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","6B","","",""],E:"UC Browser for Android",F:{"6B":1710115200},D:{"6B":"webkit"}},P:{A:{J:0.14052,t:0.0324276,u:0.0648553,v:0.0756645,w:1.08092,x:1.15659,JD:0.0108092,KD:0,LD:0.0432369,MD:0,ND:0,GC:0,OD:0.0108092,PD:0,QD:0.0108092,RD:0,SD:0,"7B":0.0108092,"8B":0.0324276,TD:0.0216184,UD:0.0324276},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","J","JD","KD","LD","MD","ND","GC","OD","PD","QD","RD","SD","7B","8B","TD","UD","t","u","v","w","x","","",""],E:"Samsung Internet",F:{J:1461024000,JD:1481846400,KD:1509408000,LD:1528329600,MD:1546128000,ND:1554163200,GC:1567900800,OD:1582588800,PD:1593475200,QD:1605657600,RD:1618531200,SD:1629072000,"7B":1640736000,"8B":1651708800,TD:1659657600,UD:1667260800,t:1677369600,u:1684454400,v:1689292800,w:1697587200,x:1711497600}},Q:{A:{VD:0.236322},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","VD","","",""],E:"QQ Browser",F:{VD:1710288000}},R:{A:{WD:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","WD","","",""],E:"Baidu Browser",F:{WD:1710201600}},S:{A:{XD:0.080847,YD:0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","XD","YD","","",""],E:"KaiOS Browser",F:{XD:1527811200,YD:1631664000}}}; +module.exports={A:{A:{K:0,D:0,E:0.0239157,F:0.0597892,A:0,B:0.55006,YC:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","YC","K","D","E","F","A","B","","",""],E:"IE",F:{YC:962323200,K:998870400,D:1161129600,E:1237420800,F:1300060800,A:1346716800,B:1381968000}},B:{A:{"0":0.007682,"1":0.007682,"2":0.015364,"3":0.015364,"4":0.007682,"5":0.007682,"6":0.011523,"7":0.011523,"8":0.019205,"9":0.042251,C:0,L:0,M:0,G:0,N:0,O:0.003841,P:0.034569,Q:0,H:0,R:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0.011523,c:0,d:0,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0,m:0,n:0,o:0,p:0,q:0.003841,r:0.007682,s:0.069138,z:0.007682,AB:0.042251,BB:0.280393,CB:3.02671,I:1.35587,t:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","L","M","G","N","O","P","Q","H","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","I","t","","",""],E:"Edge",F:{"0":1678665600,"1":1680825600,"2":1683158400,"3":1685664000,"4":1689897600,"5":1692576000,"6":1694649600,"7":1697155200,"8":1698969600,"9":1701993600,C:1438128000,L:1447286400,M:1470096000,G:1491868800,N:1508198400,O:1525046400,P:1542067200,Q:1579046400,H:1581033600,R:1586736000,S:1590019200,T:1594857600,U:1598486400,V:1602201600,W:1605830400,X:1611360000,Y:1614816000,Z:1618358400,a:1622073600,b:1626912000,c:1630627200,d:1632441600,e:1634774400,f:1637539200,g:1641427200,h:1643932800,i:1646265600,j:1649635200,k:1651190400,l:1653955200,m:1655942400,n:1659657600,o:1661990400,p:1664755200,q:1666915200,r:1670198400,s:1673481600,z:1675900800,AB:1706227200,BB:1708732800,CB:1711152000,I:1713398400,t:1715990400},D:{C:"ms",L:"ms",M:"ms",G:"ms",N:"ms",O:"ms",P:"ms"}},C:{A:{"0":0,"1":0,"2":0.007682,"3":0,"4":0.372577,"5":0,"6":0.007682,"7":0.099866,"8":0.003841,"9":0.011523,ZC:0,AC:0,J:0.007682,DB:0,K:0,D:0,E:0,F:0,A:0,B:0.011523,C:0,L:0,M:0,G:0,N:0,O:0,P:0,EB:0,u:0,v:0,w:0,x:0,y:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0,UB:0,VB:0,WB:0,XB:0.007682,YB:0.007682,ZB:0.007682,aB:0,bB:0,cB:0,dB:0,eB:0.007682,fB:0,gB:0.049933,hB:0.007682,iB:0.007682,jB:0,kB:0.019205,lB:0,mB:0,BC:0.003841,nB:0,CC:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,uB:0,vB:0,wB:0,xB:0,yB:0,zB:0,"0B":0,"1B":0,"2B":0,"3B":0,"4B":0.015364,Q:0,H:0,R:0,DC:0,S:0,T:0,U:0,V:0,W:0,X:0.007682,Y:0,Z:0,a:0,b:0,c:0,d:0.003841,e:0,f:0,g:0,h:0,i:0,j:0,k:0,l:0.026887,m:0.107548,n:0.007682,o:0,p:0,q:0,r:0.003841,s:0.007682,z:0,AB:0.011523,BB:0.019205,CB:0.049933,I:1.04475,t:0.530058,EC:0.003841,FC:0,GC:0,aC:0,bC:0,cC:0},B:"moz",C:["ZC","AC","bC","cC","J","DB","K","D","E","F","A","B","C","L","M","G","N","O","P","EB","u","v","w","x","y","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","BC","nB","CC","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","3B","4B","Q","H","R","DC","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","I","t","EC","FC","GC","aC"],E:"Firefox",F:{"0":1678752000,"1":1681171200,"2":1683590400,"3":1686009600,"4":1688428800,"5":1690848000,"6":1693267200,"7":1695686400,"8":1698105600,"9":1700524800,ZC:1161648000,AC:1213660800,bC:1246320000,cC:1264032000,J:1300752000,DB:1308614400,K:1313452800,D:1317081600,E:1317081600,F:1320710400,A:1324339200,B:1327968000,C:1331596800,L:1335225600,M:1338854400,G:1342483200,N:1346112000,O:1349740800,P:1353628800,EB:1357603200,u:1361232000,v:1364860800,w:1368489600,x:1372118400,y:1375747200,FB:1379376000,GB:1386633600,HB:1391472000,IB:1395100800,JB:1398729600,KB:1402358400,LB:1405987200,MB:1409616000,NB:1413244800,OB:1417392000,PB:1421107200,QB:1424736000,RB:1428278400,SB:1431475200,TB:1435881600,UB:1439251200,VB:1442880000,WB:1446508800,XB:1450137600,YB:1453852800,ZB:1457395200,aB:1461628800,bB:1465257600,cB:1470096000,dB:1474329600,eB:1479168000,fB:1485216000,gB:1488844800,hB:1492560000,iB:1497312000,jB:1502150400,kB:1506556800,lB:1510617600,mB:1516665600,BC:1520985600,nB:1525824000,CC:1529971200,oB:1536105600,pB:1540252800,qB:1544486400,rB:1548720000,sB:1552953600,tB:1558396800,uB:1562630400,vB:1567468800,wB:1571788800,xB:1575331200,yB:1578355200,zB:1581379200,"0B":1583798400,"1B":1586304000,"2B":1588636800,"3B":1591056000,"4B":1593475200,Q:1595894400,H:1598313600,R:1600732800,DC:1603152000,S:1605571200,T:1607990400,U:1611619200,V:1614038400,W:1616457600,X:1618790400,Y:1622505600,Z:1626134400,a:1628553600,b:1630972800,c:1633392000,d:1635811200,e:1638835200,f:1641859200,g:1644364800,h:1646697600,i:1649116800,j:1651536000,k:1653955200,l:1656374400,m:1658793600,n:1661212800,o:1663632000,p:1666051200,q:1668470400,r:1670889600,s:1673913600,z:1676332800,AB:1702944000,BB:1705968000,CB:1708387200,I:1710806400,t:1713225600,EC:1715644800,FC:null,GC:null,aC:null}},D:{A:{"0":0.03841,"1":0.03841,"2":0.07682,"3":0.092184,"4":0.053774,"5":0.203573,"6":0.119071,"7":0.103707,"8":0.134435,"9":0.257347,J:0,DB:0,K:0,D:0,E:0,F:0,A:0,B:0,C:0,L:0,M:0,G:0,N:0,O:0,P:0,EB:0,u:0,v:0,w:0,x:0,y:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0.007682,PB:0,QB:0,RB:0,SB:0.019205,TB:0,UB:0,VB:0,WB:0,XB:0,YB:0,ZB:0,aB:0,bB:0.007682,cB:0.023046,dB:0.026887,eB:0.007682,fB:0,gB:0,hB:0.007682,iB:0,jB:0,kB:0.011523,lB:0,mB:0.007682,BC:0,nB:0,CC:0.003841,oB:0,pB:0.003841,qB:0,rB:0,sB:0.026887,tB:0.003841,uB:0,vB:0.030728,wB:0.061456,xB:0.003841,yB:0.003841,zB:0.011523,"0B":0.007682,"1B":0.007682,"2B":0.007682,"3B":0.015364,"4B":0.015364,Q:0.122912,H:0.011523,R:0.023046,S:0.03841,T:0.007682,U:0.023046,V:0.149799,W:0.072979,X:0.019205,Y:0.011523,Z:0.011523,a:0.042251,b:0.015364,c:0.026887,d:0.042251,e:0.011523,f:0.011523,g:0.015364,h:0.072979,i:0.030728,j:0.145958,k:0.26887,l:0.145958,m:0.284234,n:0.184368,o:0.03841,p:0.03841,q:0.026887,r:0.046092,s:1.52488,z:0.026887,AB:0.472443,BB:1.27905,CB:12.1606,I:4.72443,t:0.030728,EC:0.007682,FC:0,GC:0},B:"webkit",C:["","","","","","","J","DB","K","D","E","F","A","B","C","L","M","G","N","O","P","EB","u","v","w","x","y","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","BC","nB","CC","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","3B","4B","Q","H","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","I","t","EC","FC","GC"],E:"Chrome",F:{"0":1678147200,"1":1680566400,"2":1682985600,"3":1685404800,"4":1689724800,"5":1692057600,"6":1694476800,"7":1696896000,"8":1698710400,"9":1701993600,J:1264377600,DB:1274745600,K:1283385600,D:1287619200,E:1291248000,F:1296777600,A:1299542400,B:1303862400,C:1307404800,L:1312243200,M:1316131200,G:1316131200,N:1319500800,O:1323734400,P:1328659200,EB:1332892800,u:1337040000,v:1340668800,w:1343692800,x:1348531200,y:1352246400,FB:1357862400,GB:1361404800,HB:1364428800,IB:1369094400,JB:1374105600,KB:1376956800,LB:1384214400,MB:1389657600,NB:1392940800,OB:1397001600,PB:1400544000,QB:1405468800,RB:1409011200,SB:1412640000,TB:1416268800,UB:1421798400,VB:1425513600,WB:1429401600,XB:1432080000,YB:1437523200,ZB:1441152000,aB:1444780800,bB:1449014400,cB:1453248000,dB:1456963200,eB:1460592000,fB:1464134400,gB:1469059200,hB:1472601600,iB:1476230400,jB:1480550400,kB:1485302400,lB:1489017600,mB:1492560000,BC:1496707200,nB:1500940800,CC:1504569600,oB:1508198400,pB:1512518400,qB:1516752000,rB:1520294400,sB:1523923200,tB:1527552000,uB:1532390400,vB:1536019200,wB:1539648000,xB:1543968000,yB:1548720000,zB:1552348800,"0B":1555977600,"1B":1559606400,"2B":1564444800,"3B":1568073600,"4B":1571702400,Q:1575936000,H:1580860800,R:1586304000,S:1589846400,T:1594684800,U:1598313600,V:1601942400,W:1605571200,X:1611014400,Y:1614556800,Z:1618272000,a:1621987200,b:1626739200,c:1630368000,d:1632268800,e:1634601600,f:1637020800,g:1641340800,h:1643673600,i:1646092800,j:1648512000,k:1650931200,l:1653350400,m:1655769600,n:1659398400,o:1661817600,p:1664236800,q:1666656000,r:1669680000,s:1673308800,z:1675728000,AB:1705968000,BB:1708387200,CB:1710806400,I:1713225600,t:1715644800,EC:null,FC:null,GC:null}},E:{A:{J:0,DB:0,K:0,D:0,E:0.007682,F:0.003841,A:0,B:0,C:0,L:0.007682,M:0.03841,G:0.007682,dC:0,HC:0,eC:0,fC:0,gC:0,hC:0.007682,IC:0,"5B":0.007682,"6B":0.015364,iC:0.065297,jC:0.096025,kC:0.034569,JC:0.011523,KC:0.026887,"7B":0.034569,lC:0.245824,"8B":0.030728,LC:0.049933,MC:0.046092,NC:0.107548,OC:0.034569,PC:0.065297,mC:0.361054,"9B":0.042251,QC:0.092184,RC:0.142117,SC:0.418669,TC:1.15614,UC:0.007682,VC:0,nC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","dC","HC","J","DB","eC","K","fC","D","gC","E","F","hC","A","IC","B","5B","C","6B","L","iC","M","jC","G","kC","JC","KC","7B","lC","8B","LC","MC","NC","OC","PC","mC","9B","QC","RC","SC","TC","UC","VC","nC",""],E:"Safari",F:{dC:1205798400,HC:1226534400,J:1244419200,DB:1275868800,eC:1311120000,K:1343174400,fC:1382400000,D:1382400000,gC:1410998400,E:1413417600,F:1443657600,hC:1458518400,A:1474329600,IC:1490572800,B:1505779200,"5B":1522281600,C:1537142400,"6B":1553472000,L:1568851200,iC:1585008000,M:1600214400,jC:1619395200,G:1632096000,kC:1635292800,JC:1639353600,KC:1647216000,"7B":1652745600,lC:1658275200,"8B":1662940800,LC:1666569600,MC:1670889600,NC:1674432000,OC:1679875200,PC:1684368000,mC:1690156800,"9B":1695686400,QC:1698192000,RC:1702252800,SC:1705881600,TC:1709596800,UC:1715558400,VC:null,nC:null}},F:{A:{F:0,B:0,C:0,G:0,N:0,O:0,P:0,EB:0,u:0,v:0,w:0,x:0,y:0,FB:0,GB:0,HB:0,IB:0,JB:0,KB:0,LB:0,MB:0,NB:0,OB:0,PB:0,QB:0,RB:0,SB:0,TB:0,UB:0.003841,VB:0,WB:0,XB:0,YB:0,ZB:0,aB:0.015364,bB:0,cB:0,dB:0,eB:0,fB:0,gB:0,hB:0,iB:0,jB:0,kB:0,lB:0,mB:0,nB:0,oB:0,pB:0,qB:0,rB:0,sB:0,tB:0,uB:0,vB:0,wB:0,xB:0,yB:0,zB:0,"0B":0,"1B":0,"2B":0,"3B":0,"4B":0,Q:0,H:0,R:0,DC:0,S:0,T:0,U:0,V:0,W:0,X:0,Y:0,Z:0,a:0,b:0,c:0,d:0,e:0.046092,f:0,g:0,h:0,i:0,j:0,k:0,l:0.03841,m:0,n:0,o:0,p:0.007682,q:0.564627,r:0.291916,s:0.11523,oC:0,pC:0,qC:0,rC:0,"5B":0,WC:0,sC:0,"6B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","F","oC","pC","qC","rC","B","5B","WC","sC","C","6B","G","N","O","P","EB","u","v","w","x","y","FB","GB","HB","IB","JB","KB","LB","MB","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","bB","cB","dB","eB","fB","gB","hB","iB","jB","kB","lB","mB","nB","oB","pB","qB","rB","sB","tB","uB","vB","wB","xB","yB","zB","0B","1B","2B","3B","4B","Q","H","R","DC","S","T","U","V","W","X","Y","Z","a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","","",""],E:"Opera",F:{F:1150761600,oC:1223424000,pC:1251763200,qC:1267488000,rC:1277942400,B:1292457600,"5B":1302566400,WC:1309219200,sC:1323129600,C:1323129600,"6B":1352073600,G:1372723200,N:1377561600,O:1381104000,P:1386288000,EB:1390867200,u:1393891200,v:1399334400,w:1401753600,x:1405987200,y:1409616000,FB:1413331200,GB:1417132800,HB:1422316800,IB:1425945600,JB:1430179200,KB:1433808000,LB:1438646400,MB:1442448000,NB:1445904000,OB:1449100800,PB:1454371200,QB:1457308800,RB:1462320000,SB:1465344000,TB:1470096000,UB:1474329600,VB:1477267200,WB:1481587200,XB:1486425600,YB:1490054400,ZB:1494374400,aB:1498003200,bB:1502236800,cB:1506470400,dB:1510099200,eB:1515024000,fB:1517961600,gB:1521676800,hB:1525910400,iB:1530144000,jB:1534982400,kB:1537833600,lB:1543363200,mB:1548201600,nB:1554768000,oB:1561593600,pB:1566259200,qB:1570406400,rB:1573689600,sB:1578441600,tB:1583971200,uB:1587513600,vB:1592956800,wB:1595894400,xB:1600128000,yB:1603238400,zB:1613520000,"0B":1612224000,"1B":1616544000,"2B":1619568000,"3B":1623715200,"4B":1627948800,Q:1631577600,H:1633392000,R:1635984000,DC:1638403200,S:1642550400,T:1644969600,U:1647993600,V:1650412800,W:1652745600,X:1654646400,Y:1657152000,Z:1660780800,a:1663113600,b:1668816000,c:1668643200,d:1671062400,e:1675209600,f:1677024000,g:1679529600,h:1681948800,i:1684195200,j:1687219200,k:1690329600,l:1692748800,m:1696204800,n:1699920000,o:1699920000,p:1702944000,q:1707264000,r:1710115200,s:1711497600},D:{F:"o",B:"o",C:"o",oC:"o",pC:"o",qC:"o",rC:"o","5B":"o",WC:"o",sC:"o","6B":"o"}},G:{A:{E:0,HC:0,tC:0,XC:0.00291444,uC:0.00291444,vC:0.0072861,wC:0.0116578,xC:0.00291444,yC:0.0072861,zC:0.0364305,"0C":0.0072861,"1C":0.0582888,"2C":0.0495455,"3C":0.0145722,"4C":0.0116578,"5C":0.237527,"6C":0.00437166,"7C":0.0480882,"8C":0.0116578,"9C":0.0451738,AD:0.112206,BD:0.135521,CD:0.0626604,JC:0.0714037,KC:0.0816043,"7B":0.102005,DD:0.902019,"8B":0.211297,LC:0.44008,MC:0.20984,NC:0.371591,OC:0.0772326,PC:0.161751,ED:1.27652,"9B":0.153008,QC:0.282701,RC:0.378877,SC:2.74249,TC:6.17424,UC:0.0568316,VC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","HC","tC","XC","uC","vC","wC","E","xC","yC","zC","0C","1C","2C","3C","4C","5C","6C","7C","8C","9C","AD","BD","CD","JC","KC","7B","DD","8B","LC","MC","NC","OC","PC","ED","9B","QC","RC","SC","TC","UC","VC","",""],E:"Safari on iOS",F:{HC:1270252800,tC:1283904000,XC:1299628800,uC:1331078400,vC:1359331200,wC:1394409600,E:1410912000,xC:1413763200,yC:1442361600,zC:1458518400,"0C":1473724800,"1C":1490572800,"2C":1505779200,"3C":1522281600,"4C":1537142400,"5C":1553472000,"6C":1568851200,"7C":1572220800,"8C":1580169600,"9C":1585008000,AD:1600214400,BD:1619395200,CD:1632096000,JC:1639353600,KC:1647216000,"7B":1652659200,DD:1658275200,"8B":1662940800,LC:1666569600,MC:1670889600,NC:1674432000,OC:1679875200,PC:1684368000,ED:1690156800,"9B":1694995200,QC:1698192000,RC:1702252800,SC:1705881600,TC:1709596800,UC:1715558400,VC:null}},H:{A:{FD:0.09},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","FD","","",""],E:"Opera Mini",F:{FD:1426464000}},I:{A:{AC:0,J:0.0000566628,I:0.564305,GD:0,HD:0,ID:0,JD:0.000113326,XC:0.000339977,KD:0,LD:0.00141657},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","GD","HD","ID","AC","J","JD","XC","KD","LD","I","","",""],E:"Android Browser",F:{GD:1256515200,HD:1274313600,ID:1291593600,AC:1298332800,J:1318896000,JD:1341792000,XC:1374624000,KD:1386547200,LD:1401667200,I:1713225600}},J:{A:{D:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","D","A","","",""],E:"Blackberry Browser",F:{D:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,H:1.23418,"5B":0,WC:0,"6B":0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","5B","WC","C","6B","H","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,"5B":1314835200,WC:1318291200,C:1330300800,"6B":1349740800,H:1709769600},D:{H:"webkit"}},L:{A:{I:41.8185},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","","",""],E:"Chrome for Android",F:{I:1713225600}},M:{A:{t:0.301791},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","t","","",""],E:"Firefox for Android",F:{t:1713225600}},N:{A:{A:0,B:0},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{"7B":0.886896},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","7B","","",""],E:"UC Browser for Android",F:{"7B":1710115200},D:{"7B":"webkit"}},P:{A:{J:0.140685,u:0.0216438,v:0.0649313,w:0.0649313,x:0.216438,y:1.88301,MD:0.0108219,ND:0,OD:0.0432875,PD:0,QD:0,IC:0,RD:0.0108219,SD:0,TD:0.0108219,UD:0,VD:0,"8B":0,"9B":0.0216438,WD:0.0108219,XD:0.0324657},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","J","MD","ND","OD","PD","QD","IC","RD","SD","TD","UD","VD","8B","9B","WD","XD","u","v","w","x","y","","",""],E:"Samsung Internet",F:{J:1461024000,MD:1481846400,ND:1509408000,OD:1528329600,PD:1546128000,QD:1554163200,IC:1567900800,RD:1582588800,SD:1593475200,TD:1605657600,UD:1618531200,VD:1629072000,"8B":1640736000,"9B":1651708800,WD:1659657600,XD:1667260800,u:1677369600,v:1684454400,w:1689292800,x:1697587200,y:1711497600}},Q:{A:{YD:0.283314},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","YD","","",""],E:"QQ Browser",F:{YD:1710288000}},R:{A:{ZD:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","ZD","","",""],E:"Baidu Browser",F:{ZD:1710201600}},S:{A:{aD:0.073908,bD:0},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","aD","bD","","",""],E:"KaiOS Browser",F:{aD:1527811200,bD:1631664000}}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/browserVersions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/browserVersions.js index fe11cbcb04a137..15d4acaf98bc02 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/browserVersions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/browserVersions.js @@ -1 +1 @@ -module.exports={"0":"112","1":"113","2":"114","3":"115","4":"116","5":"117","6":"118","7":"119","8":"120","9":"121",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"80",I:"123",J:"4",K:"6",L:"13",M:"14",N:"16",O:"17",P:"18",Q:"79",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"104",o:"105",p:"106",q:"107",r:"108",s:"109",t:"20",u:"21",v:"22",w:"23",x:"24",y:"110",z:"111",AB:"122",BB:"5",CB:"19",DB:"25",EB:"26",FB:"27",GB:"28",HB:"29",IB:"30",JB:"31",KB:"32",LB:"33",MB:"34",NB:"35",OB:"36",PB:"37",QB:"38",RB:"39",SB:"40",TB:"41",UB:"42",VB:"43",WB:"44",XB:"45",YB:"46",ZB:"47",aB:"48",bB:"49",cB:"50",dB:"51",eB:"52",fB:"53",gB:"54",hB:"55",iB:"56",jB:"57",kB:"58",lB:"60",mB:"62",nB:"63",oB:"64",pB:"65",qB:"66",rB:"67",sB:"68",tB:"69",uB:"70",vB:"71",wB:"72",xB:"73",yB:"74",zB:"75","0B":"76","1B":"77","2B":"78","3B":"124","4B":"11.1","5B":"12.1","6B":"15.5","7B":"16.0","8B":"17.0","9B":"3",AC:"59",BC:"61",CC:"82",DC:"125",EC:"126",FC:"3.2",GC:"10.1",HC:"15.2-15.3",IC:"15.4",JC:"16.1",KC:"16.2",LC:"16.3",MC:"16.4",NC:"16.5",OC:"17.1",PC:"17.2",QC:"17.3",RC:"17.4",SC:"17.5",TC:"11.5",UC:"4.2-4.3",VC:"5.5",WC:"2",XC:"127",YC:"3.5",ZC:"3.6",aC:"3.1",bC:"5.1",cC:"6.1",dC:"7.1",eC:"9.1",fC:"13.1",gC:"14.1",hC:"15.1",iC:"15.6",jC:"16.6",kC:"TP",lC:"9.5-9.6",mC:"10.0-10.1",nC:"10.5",oC:"10.6",pC:"11.6",qC:"4.0-4.1",rC:"5.0-5.1",sC:"6.0-6.1",tC:"7.0-7.1",uC:"8.1-8.4",vC:"9.0-9.2",wC:"9.3",xC:"10.0-10.2",yC:"10.3",zC:"11.0-11.2","0C":"11.3-11.4","1C":"12.0-12.1","2C":"12.2-12.5","3C":"13.0-13.1","4C":"13.2","5C":"13.3","6C":"13.4-13.7","7C":"14.0-14.4","8C":"14.5-14.8","9C":"15.0-15.1",AD:"15.6-15.8",BD:"16.6-16.7",CD:"all",DD:"2.1",ED:"2.2",FD:"2.3",GD:"4.1",HD:"4.4",ID:"4.4.3-4.4.4",JD:"5.0-5.4",KD:"6.2-6.4",LD:"7.2-7.4",MD:"8.2",ND:"9.2",OD:"11.1-11.2",PD:"12.0",QD:"13.0",RD:"14.0",SD:"15.0",TD:"18.0",UD:"19.0",VD:"14.9",WD:"13.52",XD:"2.5",YD:"3.0-3.1"}; +module.exports={"0":"111","1":"112","2":"113","3":"114","4":"115","5":"116","6":"117","7":"118","8":"119","9":"120",A:"10",B:"11",C:"12",D:"7",E:"8",F:"9",G:"15",H:"80",I:"124",J:"4",K:"6",L:"13",M:"14",N:"16",O:"17",P:"18",Q:"79",R:"81",S:"83",T:"84",U:"85",V:"86",W:"87",X:"88",Y:"89",Z:"90",a:"91",b:"92",c:"93",d:"94",e:"95",f:"96",g:"97",h:"98",i:"99",j:"100",k:"101",l:"102",m:"103",n:"104",o:"105",p:"106",q:"107",r:"108",s:"109",t:"125",u:"20",v:"21",w:"22",x:"23",y:"24",z:"110",AB:"121",BB:"122",CB:"123",DB:"5",EB:"19",FB:"25",GB:"26",HB:"27",IB:"28",JB:"29",KB:"30",LB:"31",MB:"32",NB:"33",OB:"34",PB:"35",QB:"36",RB:"37",SB:"38",TB:"39",UB:"40",VB:"41",WB:"42",XB:"43",YB:"44",ZB:"45",aB:"46",bB:"47",cB:"48",dB:"49",eB:"50",fB:"51",gB:"52",hB:"53",iB:"54",jB:"55",kB:"56",lB:"57",mB:"58",nB:"60",oB:"62",pB:"63",qB:"64",rB:"65",sB:"66",tB:"67",uB:"68",vB:"69",wB:"70",xB:"71",yB:"72",zB:"73","0B":"74","1B":"75","2B":"76","3B":"77","4B":"78","5B":"11.1","6B":"12.1","7B":"15.5","8B":"16.0","9B":"17.0",AC:"3",BC:"59",CC:"61",DC:"82",EC:"126",FC:"127",GC:"128",HC:"3.2",IC:"10.1",JC:"15.2-15.3",KC:"15.4",LC:"16.1",MC:"16.2",NC:"16.3",OC:"16.4",PC:"16.5",QC:"17.1",RC:"17.2",SC:"17.3",TC:"17.4",UC:"17.5",VC:"17.6",WC:"11.5",XC:"4.2-4.3",YC:"5.5",ZC:"2",aC:"129",bC:"3.5",cC:"3.6",dC:"3.1",eC:"5.1",fC:"6.1",gC:"7.1",hC:"9.1",iC:"13.1",jC:"14.1",kC:"15.1",lC:"15.6",mC:"16.6",nC:"TP",oC:"9.5-9.6",pC:"10.0-10.1",qC:"10.5",rC:"10.6",sC:"11.6",tC:"4.0-4.1",uC:"5.0-5.1",vC:"6.0-6.1",wC:"7.0-7.1",xC:"8.1-8.4",yC:"9.0-9.2",zC:"9.3","0C":"10.0-10.2","1C":"10.3","2C":"11.0-11.2","3C":"11.3-11.4","4C":"12.0-12.1","5C":"12.2-12.5","6C":"13.0-13.1","7C":"13.2","8C":"13.3","9C":"13.4-13.7",AD:"14.0-14.4",BD:"14.5-14.8",CD:"15.0-15.1",DD:"15.6-15.8",ED:"16.6-16.7",FD:"all",GD:"2.1",HD:"2.2",ID:"2.3",JD:"4.1",KD:"4.4",LD:"4.4.3-4.4.4",MD:"5.0-5.4",ND:"6.2-6.4",OD:"7.2-7.4",PD:"8.2",QD:"9.2",RD:"11.1-11.2",SD:"12.0",TD:"13.0",UD:"14.0",VD:"15.0",WD:"18.0",XD:"19.0",YD:"14.9",ZD:"13.52",aD:"2.5",bD:"3.0-3.1"}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js index be5285082923ab..1db47dde940383 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/aac.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC","132":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F","16":"A B"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"132":"3B"},N:{"1":"A","2":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"132":"XD YD"}},B:6,C:"AAC audio file format",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC","132":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F","16":"A B"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"132":"t"},N:{"1":"A","2":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"132":"aD bD"}},B:6,C:"AAC audio file format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js index ea05f73a1cbb06..0a25fa5da6c990 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/abortcontroller.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC","130":"C 4B"},F:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"AbortController & AbortSignal",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC","130":"C 5B"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"AbortController & AbortSignal",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js index 3758abf9c10a4d..1fe1a13124cbfe 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ac3-ec3.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC","132":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D","132":"A"},K:{"2":"A B C H 4B TC","132":"5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC","132":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D","132":"A"},K:{"2":"A B C H 5B WC","132":"6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js index 888d6c20914a32..be7de5aa64301d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/accelerometer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","194":"kB AC lB BC mB nB oB pB qB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:4,C:"Accelerometer",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","194":"mB BC nB CC oB pB qB rB sB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:4,C:"Accelerometer",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js index 01842373d99612..ad8fe027bee758 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/addeventlistener.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","130":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","257":"WC 9B J BB K YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"EventTarget.addEventListener()",D:true}; +module.exports={A:{A:{"1":"F A B","130":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","257":"ZC AC J DB K bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"EventTarget.addEventListener()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js index 29df21bdc413fe..7daa4070e28a25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/alternate-stylesheet.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"K D VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C lC mC nC oC 4B TC pC 5B","16":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"16":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"2":"H","16":"A B C 4B TC 5B"},L:{"16":"I"},M:{"16":"3B"},N:{"16":"A B"},O:{"16":"6B"},P:{"16":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"16":"WD"},S:{"1":"XD YD"}},B:1,C:"Alternate stylesheet",D:false}; +module.exports={A:{A:{"1":"E F A B","2":"K D YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C oC pC qC rC 5B WC sC 6B","16":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"16":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"2":"H","16":"A B C 5B WC 6B"},L:{"16":"I"},M:{"16":"t"},N:{"16":"A B"},O:{"16":"7B"},P:{"16":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"16":"ZD"},S:{"1":"aD bD"}},B:1,C:"Alternate stylesheet",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js index 984c64b04e7234..bfb60ce29eb771 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ambient-light.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L","132":"M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC","132":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC","194":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","322":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB lC mC nC oC 4B TC pC 5B","322":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"132":"XD YD"}},B:4,C:"Ambient Light Sensor",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L","132":"M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC","132":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC","194":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","322":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB oC pC qC rC 5B WC sC 6B","322":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"132":"aD bD"}},B:4,C:"Ambient Light Sensor",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js index d17d93e66115cb..dfb39f5af439d5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/apng.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC dC"},F:{"1":"B C YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Animated PNG (APNG)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB"},E:{"1":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC gC"},F:{"1":"B C aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Animated PNG (APNG)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js index fa2f83eb4abaa9..9644462aa759ef 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find-index.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Array.prototype.findIndex",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Array.prototype.findIndex",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js index 4b3088360414d3..33290abd7fe387 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-find.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Array.prototype.find",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Array.prototype.find",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js index 1e9f78e0dba363..c487087fd21d93 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-flat.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC 4B"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB lC mC nC oC 4B TC pC 5B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"flat & flatMap array methods",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC 5B"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB oC pC qC rC 5B WC sC 6B"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"flat & flatMap array methods",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js index 2052459018bcfb..eefba675c3fcf2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/array-includes.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Array.prototype.includes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Array.prototype.includes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js index 4ea36d1bcea534..5419d1ff3fc4ee 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/arrow-functions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Arrow functions",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Arrow functions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js index 9c690141953059..54f08d08f839d1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/asmjs.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB","132":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","132":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"132":"6B"},P:{"2":"J","132":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"132":"VD"},R:{"132":"WD"},S:{"1":"XD YD"}},B:6,C:"asm.js",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB","132":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","132":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"132":"7B"},P:{"2":"J","132":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"132":"YD"},R:{"132":"ZD"},S:{"1":"aD bD"}},B:6,C:"asm.js",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js index 5e52518eac864e..4632f86e606994 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-clipboard.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB YC ZC","132":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","66":"kB AC lB BC"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C","260":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","260":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"132":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J JD KD LD MD","260":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD","132":"YD"}},B:5,C:"Asynchronous Clipboard API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB bC cC","132":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","66":"mB BC nB CC"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","260":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","260":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"132":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J MD ND OD PD","260":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD","132":"bD"}},B:5,C:"Asynchronous Clipboard API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js index bdbf01e9a7e0db..d1c4007f9ca539 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/async-functions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L","194":"M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC","258":"GC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC","258":"yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"Async functions",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L","194":"M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC","258":"IC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C","258":"1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"Async functions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js index 8e81cead9dec1c..5f2008003b460e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/atob-btoa.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","2":"F lC mC","16":"nC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","16":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Base64 encoding and decoding",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","2":"F oC pC","16":"qC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","16":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Base64 encoding and decoding",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js index 41a6455614eb35..25ce69b1733ffd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L","33":"M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K D E F A B C L M cC dC eC GC 4B 5B fC"},F:{"1":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Web Audio API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L","33":"M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K D E F A B C L M fC gC hC IC 5B 6B iC"},F:{"1":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Web Audio API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js index f5509380b0c48d..a37e50f80dea94 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audio.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","132":"J BB K D E F A B C L M G N O P CB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F","4":"lC mC"},G:{"2":"FC","260":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","2":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Audio element",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","132":"J DB K D E F A B C L M G N O P EB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F","4":"oC pC"},G:{"260":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","2":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Audio element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js index 7207e37efce562..ce0094f4f48df5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/audiotracks.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC","194":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","322":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB lC mC nC oC 4B TC pC 5B","322":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","322":"H"},L:{"322":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"322":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"322":"VD"},R:{"322":"WD"},S:{"194":"XD YD"}},B:1,C:"Audio Tracks",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC","194":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","322":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB oC pC qC rC 5B WC sC 6B","322":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","322":"H"},L:{"322":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"322":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"322":"YD"},R:{"322":"ZD"},S:{"194":"aD bD"}},B:1,C:"Audio Tracks",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js index 5ace5cb0615f4d..53add7a3d41456 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/autofocus.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"Autofocus attribute",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"Autofocus attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js index 5371a9e414adfa..02ee4e367cb091 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/auxclick.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC","129":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"Auxclick",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC","129":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"Auxclick",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js index 68df743477ee0f..d9ab1e7212da1d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/av1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"9 AB I","2":"4 5 6 7 8 C L M G N O","194":"0 1 2 3 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB YC ZC","66":"hB iB jB kB AC lB BC mB nB oB","260":"pB","516":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB","66":"rB sB tB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC","1028":"8B OC PC QC RC SC kC"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD","1028":"8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:6,C:"AV1 video format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"AB BB CB I t","2":"5 6 7 8 9 C L M G N O","194":"0 1 2 3 4 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB bC cC","66":"jB kB lB mB BC nB CC oB pB qB","260":"rB","516":"sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB","66":"tB uB vB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC","1028":"9B QC RC SC TC UC VC nC"},F:{"1":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED","1028":"9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:6,C:"AV1 video format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js index 54245113448b74..4faa9c0004fd23 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/avif.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"9 AB I","2":"0 1 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","4162":"2 3 4 5"},C:{"1":"1 2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B YC ZC","194":"1B 2B Q H R CC S T U V W X Y Z a b","257":"c d e f g h i j k l m n o p q r s y","2049":"0 z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B","1796":"JC KC LC"},F:{"1":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD","257":"MC NC BD 8B OC PC QC RC SC","1281":"7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:6,C:"AVIF image format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"AB BB CB I t","2":"0 1 2 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","4162":"3 4 5 6"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B bC cC","194":"3B 4B Q H R DC S T U V W X Y Z a b","257":"c d e f g h i j k l m n o p q r s z","2049":"0 1"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B","1796":"LC MC NC"},F:{"1":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD","257":"OC PC ED 9B QC RC SC TC UC VC","1281":"8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:6,C:"AVIF image format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js index 34113dbfcb9ab2..1d00b323cd8bfc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-attachment.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C bC cC dC eC GC 4B 5B IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"J L aC FC fC","2050":"M G gC hC HC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","132":"F lC mC"},G:{"2":"FC qC UC","772":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C","2050":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD HD ID","132":"GD UC"},J:{"260":"D A"},K:{"1":"B C H 4B TC 5B","132":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"2":"J","1028":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS background-attachment",D:true}; +module.exports={A:{A:{"1":"F A B","132":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C eC fC gC hC IC 5B 6B KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"J L dC HC iC","2050":"M G jC kC JC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","132":"F oC pC"},G:{"2":"HC tC XC","772":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","2050":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID KD LD","132":"JD XC"},J:{"260":"D A"},K:{"1":"B C H 5B WC 6B","132":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"2":"J","1028":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS background-attachment",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js index 434a166afe52b7..35030195a62fde 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-clip-text.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"G N O P","33":"C L M","132":"8 9 AB I","164":"0 1 2 3 4 5 6 7 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"132":"8 9 AB I 3B DC EC","164":"0 1 2 3 4 5 6 7 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"16":"aC FC","132":"6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","388":"M G gC hC HC IC","420":"J BB K D E F A B C L bC cC dC eC GC 4B 5B fC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","132":"p q r s","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"16":"FC qC UC rC","132":"6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","388":"7C 8C 9C HC IC","420":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"16":"9B DD ED FD","132":"I","164":"J GD UC HD ID"},J:{"164":"D A"},K:{"16":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"164":"6B"},P:{"164":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"164":"VD"},R:{"164":"WD"},S:{"1":"XD YD"}},B:7,C:"Background-clip: text",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"G N O P","33":"C L M","132":"9 AB BB CB I t","164":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"132":"9 AB BB CB I t EC FC GC","164":"0 1 2 3 4 5 6 7 8 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"16":"dC HC","132":"7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","388":"M G jC kC JC KC","420":"J DB K D E F A B C L eC fC gC hC IC 5B 6B iC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","132":"p q r s","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"16":"HC tC XC uC","132":"7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","388":"AD BD CD JC KC","420":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"16":"AC GD HD ID","132":"I","164":"J JD XC KD LD"},J:{"164":"D A"},K:{"16":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"164":"7B"},P:{"164":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"164":"YD"},R:{"164":"ZD"},S:{"1":"aD bD"}},B:7,C:"Background-clip: text",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js index 5b647b8a7fadfa..024254b70b8709 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-img-opts.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","36":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","516":"J BB K D E F A B C L M"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","772":"J BB K aC FC bC cC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC","36":"mC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","4":"FC qC UC sC","516":"rC"},H:{"132":"CD"},I:{"1":"I HD ID","36":"DD","516":"9B J GD UC","548":"ED FD"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 Background-image options",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","36":"cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","516":"J DB K D E F A B C L M"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","772":"J DB K dC HC eC fC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC","36":"pC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","4":"HC tC XC vC","516":"uC"},H:{"132":"FD"},I:{"1":"I KD LD","36":"GD","516":"AC J JD XC","548":"HD ID"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 Background-image options",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js index b5ffbbc5f6e794..2941c6d54a5813 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-position-x-y.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:7,C:"background-position-x & background-position-y",D:true}; +module.exports={A:{A:{"1":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:7,C:"background-position-x & background-position-y",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js index 3952d187eab7f4..0432c6e12fa5d2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-repeat-round-space.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E VC","132":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"B C CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F G N O P lC mC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"CSS background-repeat round and space",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E YC","132":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"B C EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F G N O P oC pC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"CSS background-repeat round and space",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js index 6af4b95c03db1a..7f5cfc2e3f7cf3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/background-sync.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B YC ZC","16":"DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Background Sync API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC bC cC","16":"FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Background Sync API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js index 222d302befa568..6310a1d02b243c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/battery-status.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"VB WB XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","132":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","164":"A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB","66":"PB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD","2":"YD"}},B:4,C:"Battery Status API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"XB YB ZB aB bB cB dB eB fB","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","132":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","164":"A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB","66":"RB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD","2":"bD"}},B:4,C:"Battery Status API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js index 471041d408e5f4..52c045db4b2028 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beacon.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Beacon API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Beacon API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js index 7785575d6519c3..4930fc7f3ea837 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/beforeafterprint.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","16":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB lC mC nC oC 4B TC pC 5B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"16":"A B"},O:{"1":"6B"},P:{"2":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","16":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Printing Events",D:true}; +module.exports={A:{A:{"1":"K D E F A B","16":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB oC pC qC rC 5B WC sC 6B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"16":"A B"},O:{"1":"7B"},P:{"2":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","16":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Printing Events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js index 0b3afa5be5b2b5..1916d962a01ac5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bigint.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB YC ZC","194":"pB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B fC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"BigInt",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB bC cC","194":"rB sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B iC"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"BigInt",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js index a1dafad6285a8f..324ef0d7228dee 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/blobbuilder.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","36":"K D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D","36":"E F A B C L M G N O P CB"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B C lC mC nC oC 4B TC pC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"I","2":"DD ED FD","36":"9B J GD UC HD ID"},J:{"1":"A","2":"D"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Blob constructing",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","36":"K D E F A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D","36":"E F A B C L M G N O P EB"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B C oC pC qC rC 5B WC sC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"I","2":"GD HD ID","36":"AC J JD XC KD LD"},J:{"1":"A","2":"D"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Blob constructing",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js index 1a64cad11536f6..04f1eddb6ff55e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/bloburls.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D","33":"E F A B C L M G N O P CB t u v"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B DD ED FD","33":"J GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Blob URLs",D:true}; +module.exports={A:{A:{"2":"K D E F YC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D","33":"E F A B C L M G N O P EB u v w"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC GD HD ID","33":"J JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Blob URLs",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js index ba3f3c2f3ced16..f89c17e3d00632 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-image.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","260":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","804":"J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","260":"dB eB fB gB hB","388":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","1412":"G N O P CB t u v w x DB EB FB GB HB","1956":"J BB K D E F A B C L M"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","129":"A B C L M G eC GC 4B 5B fC gC hC HC","1412":"K D E F cC dC","1956":"J BB aC FC bC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC mC","260":"QB RB SB TB UB","388":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB","1796":"nC oC","1828":"B C 4B TC pC 5B"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","129":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC","1412":"E sC tC uC vC","1956":"FC qC UC rC"},H:{"1828":"CD"},I:{"1":"I","388":"HD ID","1956":"9B J DD ED FD GD UC"},J:{"1412":"A","1924":"D"},K:{"1":"H","2":"A","1828":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","260":"JD KD","388":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","260":"XD"}},B:4,C:"CSS3 Border images",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","260":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","804":"J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","260":"fB gB hB iB jB","388":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","1412":"G N O P EB u v w x y FB GB HB IB JB","1956":"J DB K D E F A B C L M"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","129":"A B C L M G hC IC 5B 6B iC jC kC JC","1412":"K D E F fC gC","1956":"J DB dC HC eC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC pC","260":"SB TB UB VB WB","388":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB","1796":"qC rC","1828":"B C 5B WC sC 6B"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","129":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC","1412":"E vC wC xC yC","1956":"HC tC XC uC"},H:{"1828":"FD"},I:{"1":"I","388":"KD LD","1956":"AC J GD HD ID JD XC"},J:{"1412":"A","1924":"D"},K:{"1":"H","2":"A","1828":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","260":"MD ND","388":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","260":"aD"}},B:4,C:"CSS3 Border images",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js index 3d9c314f0a7561..29720fbf85e3f1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/border-radius.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","257":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","289":"9B YC ZC","292":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J"},E:{"1":"BB D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"J aC FC","129":"K bC cC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"FC"},H:{"2":"CD"},I:{"1":"9B J I ED FD GD UC HD ID","33":"DD"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","257":"XD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","257":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","289":"AC bC cC","292":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J"},E:{"1":"DB D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"J dC HC","129":"K eC fC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"HC"},H:{"2":"FD"},I:{"1":"AC J I HD ID JD XC KD LD","33":"GD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","257":"aD"}},B:4,C:"CSS3 Border-radius (rounded corners)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js index c624182ce07d86..11c4f010144aae 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/broadcastchannel.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB lC mC nC oC 4B TC pC 5B"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"BroadcastChannel",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB oC pC qC rC 5B WC sC 6B"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"BroadcastChannel",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js index bf7f36530ad139..aaefdf70696216 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/brotli.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB","257":"cB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","513":"B C 4B 5B"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B","194":"OB PB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","194":"dB","257":"eB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","513":"B C 5B 6B"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B","194":"QB RB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js index 2fd4755f5628c0..0784a8664423ce 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/calc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","260":"F","516":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"J BB K D E F A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P","33":"CB t u v w x DB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"sC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","132":"HD ID"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"calc() as CSS unit value",D:true}; +module.exports={A:{A:{"2":"K D E YC","260":"F","516":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"J DB K D E F A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P","33":"EB u v w x y FB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"vC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","132":"KD LD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"calc() as CSS unit value",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js index b3557539af36c6..58066655c775d7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-blending.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Canvas blend modes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Canvas blend modes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js index 93a9df3915e5a4..7a03af9c03e549 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas-text.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","8":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","8":"F lC mC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","8":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Text API for Canvas",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","8":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","8":"F oC pC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","8":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Text API for Canvas",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js index 5709d6972f818d..89b4c502017a3c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/canvas.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","132":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"aC FC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"260":"CD"},I:{"1":"9B J I GD UC HD ID","132":"DD ED FD"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Canvas (basic support)",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","132":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"dC HC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"260":"FD"},I:{"1":"AC J I JD XC KD LD","132":"GD HD ID"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Canvas (basic support)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js index 14b557395f8538..9729b97576a1cb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ch-unit.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"ch (character) unit",D:true}; +module.exports={A:{A:{"2":"K D E YC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"ch (character) unit",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js index 286b77131f4463..a6b41caa6e5a25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/chacha20-poly1305.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB","129":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD","16":"ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB","129":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD","16":"LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js index 2c1a14f9419a36..1f0079e39356e2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/channel-messaging.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB YC ZC","194":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","2":"F lC mC","16":"nC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Channel messaging",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB bC cC","194":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","2":"F oC pC","16":"qC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Channel messaging",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js index 9e986cec02c9e0..d06419f496a713 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/childnode-remove.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","16":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"ChildNode.remove()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","16":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"ChildNode.remove()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js index 800ac406a89355..6389ea14427d00 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/classlist.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"K D E F VC","1924":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B YC","516":"x DB","772":"J BB K D E F A B C L M G N O P CB t u v w ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J BB K D","516":"x DB EB FB","772":"w","900":"E F A B C L M G N O P CB t u v"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB aC FC","900":"K bC cC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B lC mC nC oC 4B","900":"C TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC","900":"rC sC"},H:{"900":"CD"},I:{"1":"I HD ID","8":"DD ED FD","900":"9B J GD UC"},J:{"1":"A","900":"D"},K:{"1":"H","8":"A B","900":"C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"900":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"classList (DOMTokenList)",D:true}; +module.exports={A:{A:{"8":"K D E F YC","1924":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC bC","516":"y FB","772":"J DB K D E F A B C L M G N O P EB u v w x cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J DB K D","516":"y FB GB HB","772":"x","900":"E F A B C L M G N O P EB u v w"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB dC HC","900":"K eC fC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B oC pC qC rC 5B","900":"C WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC","900":"uC vC"},H:{"900":"FD"},I:{"1":"I KD LD","8":"GD HD ID","900":"AC J JD XC"},J:{"1":"A","900":"D"},K:{"1":"H","8":"A B","900":"C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"900":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"classList (DOMTokenList)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js index 0a9227f523f456..b4e38ecfbccffa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js index e718fe9d14b9e4..7390cc61f67ef2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/clipboard.js @@ -1 +1 @@ -module.exports={A:{A:{"2436":"K D E F A B VC"},B:{"260":"O P","2436":"C L M G N","8196":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC","772":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","4100":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C","2564":"L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","8196":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","10244":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC","2308":"A B GC 4B","2820":"J BB K D E F bC cC dC eC"},F:{"2":"F B lC mC nC oC 4B TC pC","16":"C","516":"5B","2564":"G N O P CB t u v w x DB EB FB GB HB","8196":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","10244":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","2820":"E rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","260":"I","2308":"HD ID"},J:{"2":"D","2308":"A"},K:{"2":"A B C 4B TC","16":"5B","8196":"H"},L:{"8196":"I"},M:{"1028":"3B"},N:{"2":"A B"},O:{"8196":"6B"},P:{"2052":"JD KD","2308":"J","8196":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"8196":"VD"},R:{"8196":"WD"},S:{"4100":"XD YD"}},B:5,C:"Synchronous Clipboard API",D:true}; +module.exports={A:{A:{"2436":"K D E F A B YC"},B:{"260":"O P","2436":"C L M G N","8196":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC","772":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","4100":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C","2564":"L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","8196":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","10244":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC","2308":"A B IC 5B","2820":"J DB K D E F eC fC gC hC"},F:{"2":"F B oC pC qC rC 5B WC sC","16":"C","516":"6B","2564":"G N O P EB u v w x y FB GB HB IB JB","8196":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","10244":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","2820":"E uC vC wC xC yC zC 0C 1C 2C 3C"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","260":"I","2308":"KD LD"},J:{"2":"D","2308":"A"},K:{"2":"A B C 5B WC","16":"6B","8196":"H"},L:{"8196":"I"},M:{"1028":"t"},N:{"2":"A B"},O:{"8196":"7B"},P:{"2052":"MD ND","2308":"J","8196":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"8196":"YD"},R:{"8196":"ZD"},S:{"4100":"aD bD"}},B:5,C:"Synchronous Clipboard API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js index 47d83471b0926b..44975630f92517 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr-v1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g YC ZC","258":"h i j k l m n","578":"o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"16":"A B"},O:{"1":"6B"},P:{"1":"t u v w x TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g bC cC","258":"h i j k l m n","578":"o p"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y","194":"Z a b c d e f g"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"16":"A B"},O:{"1":"7B"},P:{"1":"u v w x y WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"COLR/CPAL(v1) Font Formats",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js index 1ec498fb38ec1b..a3973f7c54361f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/colr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","257":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P y z AB I","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB","513":"vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","129":"B C L 4B 5B fC","1026":"8B OC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB lC mC nC oC 4B TC pC 5B","513":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC","1026":"8B OC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"16":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true}; +module.exports={A:{A:{"2":"K D E YC","257":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P z AB BB CB I t","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB","513":"xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","129":"B C L 5B 6B iC","1026":"9B QC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB oC pC qC rC 5B WC sC 6B","513":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C","1026":"9B QC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"16":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"COLR/CPAL(v0) Font Formats",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js index 2887e893643ecc..aae1a3807cded0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/comparedocumentposition.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","132":"G N O P CB t u v w x DB EB FB GB HB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB K aC FC","132":"D E F cC dC eC","260":"bC"},F:{"1":"C O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","16":"F B lC mC nC oC 4B TC","132":"G N"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC","132":"E qC UC rC sC tC uC vC wC"},H:{"1":"CD"},I:{"1":"I HD ID","16":"DD ED","132":"9B J FD GD UC"},J:{"132":"D A"},K:{"1":"C H 5B","16":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Node.compareDocumentPosition()",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","132":"G N O P EB u v w x y FB GB HB IB JB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB K dC HC","132":"D E F fC gC hC","260":"eC"},F:{"1":"C O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","16":"F B oC pC qC rC 5B WC","132":"G N"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC","132":"E tC XC uC vC wC xC yC zC"},H:{"1":"FD"},I:{"1":"I KD LD","16":"GD HD","132":"AC J ID JD XC"},J:{"132":"D A"},K:{"1":"C H 6B","16":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Node.compareDocumentPosition()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js index ac37ddf3c1e3c0..3204fbd8fac413 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-basic.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D VC","132":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F lC mC nC oC"},G:{"1":"FC qC UC rC","513":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"4097":"CD"},I:{"1025":"9B J I DD ED FD GD UC HD ID"},J:{"258":"D A"},K:{"2":"A","258":"B C 4B TC 5B","1025":"H"},L:{"1025":"I"},M:{"2049":"3B"},N:{"258":"A B"},O:{"258":"6B"},P:{"1025":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1025":"WD"},S:{"1":"XD YD"}},B:1,C:"Basic console logging functions",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D YC","132":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F oC pC qC rC"},G:{"1":"HC tC XC uC","513":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"4097":"FD"},I:{"1025":"AC J I GD HD ID JD XC KD LD"},J:{"258":"D A"},K:{"2":"A","258":"B C 5B WC 6B","1025":"H"},L:{"1025":"I"},M:{"2049":"t"},N:{"258":"A B"},O:{"258":"7B"},P:{"1025":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1025":"ZD"},S:{"1":"aD bD"}},B:1,C:"Basic console logging functions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js index bdc1595dc5e490..7a068a489ceede 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/console-time.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F lC mC nC oC","16":"B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"H","16":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"console.time and console.timeEnd",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F oC pC qC rC","16":"B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"H","16":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"console.time and console.timeEnd",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js index f97ffbe98f57b7..9c4e89d1b2e7a1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/const.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"WC 9B J BB K D E F A B C YC ZC","260":"L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","260":"J BB K D E F A B C L M G N O P CB t","772":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","1028":"TB UB VB WB XB YB ZB aB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","260":"J BB A aC FC GC","772":"K D E F bC cC dC eC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC","132":"B mC nC oC 4B TC","644":"C pC 5B","772":"G N O P CB t u v w x DB EB FB","1028":"GB HB IB JB KB LB MB NB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","260":"FC qC UC xC yC","772":"E rC sC tC uC vC wC"},H:{"644":"CD"},I:{"1":"I","16":"DD ED","260":"FD","772":"9B J GD UC HD ID"},J:{"772":"D A"},K:{"1":"H","132":"A B 4B TC","644":"C 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","1028":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"const",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"ZC AC J DB K D E F A B C bC cC","260":"L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","260":"J DB K D E F A B C L M G N O P EB u","772":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","1028":"VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","260":"J DB A dC HC IC","772":"K D E F eC fC gC hC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC","132":"B pC qC rC 5B WC","644":"C sC 6B","772":"G N O P EB u v w x y FB GB HB","1028":"IB JB KB LB MB NB OB PB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","260":"HC tC XC 0C 1C","772":"E uC vC wC xC yC zC"},H:{"644":"FD"},I:{"1":"I","16":"GD HD","260":"ID","772":"AC J JD XC KD LD"},J:{"772":"D A"},K:{"1":"H","132":"A B 5B WC","644":"C 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","1028":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"const",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js index b07a026ea38e4d..b091d9558631d7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/constraint-validation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","900":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","388":"M G N","900":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","260":"bB cB","388":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","900":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","388":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","900":"G N O P CB t u v w x"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC","388":"E F dC eC","900":"K D bC cC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B lC mC nC oC 4B TC","388":"G N O P CB t u v w x DB EB","900":"C pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC","388":"E tC uC vC wC","900":"rC sC"},H:{"2":"CD"},I:{"1":"I","16":"9B DD ED FD","388":"HD ID","900":"J GD UC"},J:{"16":"D","388":"A"},K:{"1":"H","16":"A B 4B TC","900":"C 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"900":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","388":"XD"}},B:1,C:"Constraint Validation API",D:true}; +module.exports={A:{A:{"2":"K D E F YC","900":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","388":"M G N","900":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","260":"dB eB","388":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","900":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","388":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","900":"G N O P EB u v w x y"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC","388":"E F gC hC","900":"K D eC fC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B oC pC qC rC 5B WC","388":"G N O P EB u v w x y FB GB","900":"C sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC","388":"E wC xC yC zC","900":"uC vC"},H:{"2":"FD"},I:{"1":"I","16":"AC GD HD ID","388":"KD LD","900":"J JD XC"},J:{"16":"D","388":"A"},K:{"1":"H","16":"A B 5B WC","900":"C 6B"},L:{"1":"I"},M:{"1":"t"},N:{"900":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","388":"aD"}},B:1,C:"Constraint Validation API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js index 81697d8b302e95..6b1500906c2ab3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contenteditable.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC","4":"9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"contenteditable attribute (basic support)",D:true}; +module.exports={A:{A:{"1":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC","4":"AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"contenteditable attribute (basic support)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js index de5413f2c100d5..cf81cf44ae2ab3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","129":"J BB K D E F A B C L M G N O P CB t u v"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L","257":"M G N O P CB t u v w x"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","257":"K cC","260":"bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","257":"sC","260":"rC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D","257":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Content Security Policy 1.0",D:true}; +module.exports={A:{A:{"2":"K D E F YC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","129":"J DB K D E F A B C L M G N O P EB u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L","257":"M G N O P EB u v w x y"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","257":"K fC","260":"eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","257":"vC","260":"uC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D","257":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Content Security Policy 1.0",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js index 310c4da2d18b98..db75b3ec341df6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","4100":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC","132":"JB KB LB MB","260":"NB","516":"OB PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB","1028":"OB PB QB","2052":"RB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v lC mC nC oC 4B TC pC 5B","1028":"w x DB","2052":"EB"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Content Security Policy Level 2",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","4100":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC","132":"LB MB NB OB","260":"PB","516":"QB RB SB TB UB VB WB XB YB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB","1028":"QB RB SB","2052":"TB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w oC pC qC rC 5B WC sC 6B","1028":"x y FB","2052":"GB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Content Security Policy Level 2",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js index d2ff7a141087d6..f925d8b1eb41ff 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cookie-store-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","194":"Q H R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB","194":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB lC mC nC oC 4B TC pC 5B","194":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Cookie Store API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","194":"Q H R S T U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB","194":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB oC pC qC rC 5B WC sC 6B","194":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Cookie Store API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js index 73ba82a61726b4..45b27ebabf86d7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cors.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D VC","132":"A","260":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B","1025":"BC mB nB oB pB qB rB sB tB uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C"},E:{"2":"aC FC","513":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","644":"J BB bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC"},G:{"513":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","644":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"I HD ID","132":"9B J DD ED FD GD UC"},J:{"1":"A","132":"D"},K:{"1":"C H 5B","2":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","132":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Cross-Origin Resource Sharing",D:true}; +module.exports={A:{A:{"1":"B","2":"K D YC","132":"A","260":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC","1025":"CC oB pB qB rB sB tB uB vB wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C"},E:{"2":"dC HC","513":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","644":"J DB eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC"},G:{"513":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","644":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"I KD LD","132":"AC J GD HD ID JD XC"},J:{"1":"A","132":"D"},K:{"1":"C H 6B","2":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","132":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Cross-Origin Resource Sharing",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js index ffe7095f4054ef..9840dc264868e9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/createimagebitmap.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB YC ZC","1028":"c d e f g","3076":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b","8196":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","132":"cB dB","260":"eB fB","516":"gB hB iB jB kB"},E:{"2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC","4100":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB lC mC nC oC 4B TC pC 5B","132":"PB QB","260":"RB SB","516":"TB UB VB WB XB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C","4100":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"8196":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","16":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"3076":"XD YD"}},B:1,C:"createImageBitmap",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB bC cC","1028":"c d e f g","3076":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b","8196":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","132":"eB fB","260":"gB hB","516":"iB jB kB lB mB"},E:{"2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC","4100":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB oC pC qC rC 5B WC sC 6B","132":"RB SB","260":"TB UB","516":"VB WB XB YB ZB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD","4100":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"8196":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","16":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"3076":"aD bD"}},B:1,C:"createImageBitmap",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js index b76672092c50c2..7402ac20287926 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/credential-management.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","66":"aB bB cB","129":"dB eB fB gB hB iB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB lC mC nC oC 4B TC pC 5B"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"Credential Management API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","66":"cB dB eB","129":"fB gB hB iB jB kB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB oC pC qC rC 5B WC sC 6B"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"Credential Management API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js index 1c0d5707acca11..23d72084e86336 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/cryptography.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E F A","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","513":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB YC ZC","66":"KB LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB K D aC FC bC cC","289":"E F A dC eC GC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC rC sC tC","289":"E uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","8":"9B J DD ED FD GD UC HD ID"},J:{"8":"D A"},K:{"1":"H","8":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A","164":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Web Cryptography",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E F A","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","513":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB bC cC","66":"MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB K D dC HC eC fC","289":"E F A gC hC IC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC uC vC wC","289":"E xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","8":"AC J GD HD ID JD XC KD LD"},J:{"8":"D A"},K:{"1":"H","8":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A","164":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Web Cryptography",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js index aade69ad0dc1e9..9e1f6dcad70741 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-all.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC"},H:{"2":"CD"},I:{"1":"I ID","2":"9B J DD ED FD GD UC HD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS all property",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC"},H:{"2":"FD"},I:{"1":"I LD","2":"AC J GD HD ID JD XC KD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS all property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js index 07ef329eb4a573..ed9031876aedf0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-anchor-positioning.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"5 6 7 8 9 AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"DC EC","2":"0 1 2 3 4 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"5 6 7 8 9 AB I 3B"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l lC mC nC oC 4B TC pC 5B","194":"m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"194":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Anchor Positioning",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"6 7 8 9 AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"t EC FC GC","2":"0 1 2 3 4 5 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"6 7 8 9 AB BB CB I"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l oC pC qC rC 5B WC sC 6B","194":"m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"194":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Anchor Positioning",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-animation.js index b53a5cceb0a368..146f65f5fb2c8e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-animation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-animation.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J YC ZC","33":"BB K D E F A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC","33":"K D E bC cC dC","292":"J BB"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC","33":"C G N O P CB t u v w x DB EB FB GB HB"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E sC tC uC","164":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"I","33":"J GD UC HD ID","164":"9B DD ED FD"},J:{"33":"D A"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS Animation",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J bC cC","33":"DB K D E F A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC","33":"K D E eC fC gC","292":"J DB"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC","33":"C G N O P EB u v w x y FB GB HB IB JB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E vC wC xC","164":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"I","33":"J JD XC KD LD","164":"AC GD HD ID"},J:{"33":"D A"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS Animation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js index d94cf0093b1d9e..210bcfcd1b93b7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-any-link.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC","33":"9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB K aC FC bC","33":"D E cC dC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC","33":"E sC tC uC"},H:{"2":"CD"},I:{"1":"I","16":"9B J DD ED FD GD UC","33":"HD ID"},J:{"16":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","16":"J","33":"JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:5,C:"CSS :any-link selector",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC","33":"AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB K dC HC eC","33":"D E fC gC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC","33":"E vC wC xC"},H:{"2":"FD"},I:{"1":"I","16":"AC J GD HD ID JD XC","33":"KD LD"},J:{"16":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","16":"J","33":"MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:5,C:"CSS :any-link selector",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js index 33e0c6730b4902..76263fdb786e8c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-appearance.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","33":"S","164":"Q H R","388":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","164":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","676":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"S","164":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","164":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"uB vB wB","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","164":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","164":"9B J DD ED FD GD UC HD ID"},J:{"164":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A","388":"B"},O:{"1":"6B"},P:{"164":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"164":"VD"},R:{"1":"WD"},S:{"1":"YD","164":"XD"}},B:5,C:"CSS Appearance",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","33":"S","164":"Q H R","388":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","164":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","676":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"S","164":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","164":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"wB xB yB","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","164":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","164":"AC J GD HD ID JD XC KD LD"},J:{"164":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A","388":"B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","164":"J MD ND OD PD QD IC RD SD TD"},Q:{"164":"YD"},R:{"1":"ZD"},S:{"1":"bD","164":"aD"}},B:5,C:"CSS Appearance",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js index 54afd6c47811ff..bb6b3820f03a3d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-at-counter-style.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z","132":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC","132":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z","132":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC","4":"8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B lC mC nC oC 4B TC pC 5B","132":"1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD","4":"8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","132":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"132":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J JD KD LD MD ND GC OD PD QD RD SD","132":"t u v w x 7B 8B TD UD"},Q:{"2":"VD"},R:{"132":"WD"},S:{"132":"XD YD"}},B:4,C:"CSS Counter Styles",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z","132":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC","132":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z","132":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC","4":"9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B oC pC qC rC 5B WC sC 6B","132":"3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED","4":"9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","132":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"132":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J MD ND OD PD QD IC RD SD TD UD VD","132":"u v w x y 8B 9B WD XD"},Q:{"2":"YD"},R:{"132":"ZD"},S:{"132":"aD bD"}},B:4,C:"CSS Counter Styles",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js index d3be356e0079f5..281822e822dd37 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-autofill.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB I","2":"C L M G N O P","33":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U YC ZC"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"kC","33":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},P:{"1":"u v w x","33":"J t JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},I:{"1":"I","2":"9B J DD ED FD GD UC","33":"HD ID"}},B:6,C:":autofill CSS pseudo-class",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t","2":"C L M G N O P","33":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},C:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U bC cC"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"nC","33":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},P:{"1":"v w x y","33":"J u MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},I:{"1":"I","2":"AC J GD HD ID JD XC","33":"KD LD"}},B:6,C:":autofill CSS pseudo-class",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js index 66e50325c636de..e74c338120b4df 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backdrop-filter.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N","257":"O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB YC ZC","578":"uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","194":"ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"2":"J BB K D E aC FC bC cC dC","33":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB lC mC nC oC 4B TC pC 5B","194":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"2":"E FC qC UC rC sC tC uC","33":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x PD QD RD SD 7B 8B TD UD","2":"J","194":"JD KD LD MD ND GC OD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS Backdrop Filter",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N","257":"O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB bC cC","578":"wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l"},D:{"1":"0 1 2 3 4 5 6 7 8 9 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},E:{"2":"J DB K D E dC HC eC fC gC","33":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB oC pC qC rC 5B WC sC 6B","194":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"2":"E HC tC XC uC vC wC xC","33":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y SD TD UD VD 8B 9B WD XD","2":"J","194":"MD ND OD PD QD IC RD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS Backdrop Filter",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js index 49760be0191c38..43bd4da8ac4e60 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-background-offsets.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS background-position edge offsets",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS background-position edge offsets",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js index c41fd9e8968e55..31016456da3a98 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB","260":"YB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC","132":"E F A dC eC"},F:{"1":"v w x DB EB FB GB HB IB JB KB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u lC mC nC oC 4B TC pC 5B","260":"LB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","132":"E uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS background-blend-mode",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB","260":"aB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC","132":"E F A gC hC"},F:{"1":"w x y FB GB HB IB JB KB LB MB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v oC pC qC rC 5B WC sC 6B","260":"NB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","132":"E xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS background-blend-mode",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js index 3905ecbb16aa8e..900494ca346831 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","164":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u","164":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K aC FC bC","164":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F lC mC nC oC","129":"B C 4B TC pC 5B","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"FC qC UC rC sC","164":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"132":"CD"},I:{"2":"9B J DD ED FD GD UC","164":"I HD ID"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C 4B TC 5B","164":"H"},L:{"164":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"164":"6B"},P:{"164":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"164":"VD"},R:{"164":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS box-decoration-break",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","164":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v","164":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K dC HC eC","164":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F oC pC qC rC","129":"B C 5B WC sC 6B","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"HC tC XC uC vC","164":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"132":"FD"},I:{"2":"AC J GD HD ID JD XC","164":"I KD LD"},J:{"2":"D","164":"A"},K:{"2":"A","129":"B C 5B WC 6B","164":"H"},L:{"164":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"164":"7B"},P:{"164":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"164":"YD"},R:{"164":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS box-decoration-break",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js index 538336d7f6f9d4..235419e8dfc7f9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-boxshadow.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","33":"YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"BB","164":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"qC UC","164":"FC"},H:{"2":"CD"},I:{"1":"J I GD UC HD ID","164":"9B DD ED FD"},J:{"1":"A","33":"D"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 Box-shadow",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","33":"bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"DB","164":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"tC XC","164":"HC"},H:{"2":"FD"},I:{"1":"J I JD XC KD LD","164":"AC GD HD ID"},J:{"1":"A","33":"D"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 Box-shadow",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js index 3a9402b0b6c619..d489bc4f5470dc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-canvas.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"2":"aC FC","33":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB"},G:{"33":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"I","33":"9B J DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","33":"J"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS Canvas Drawings",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"2":"dC HC","33":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB"},G:{"33":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"I","33":"AC J GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS Canvas Drawings",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js index 574e4875812158..015b96eb6145d4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-caret-color.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:2,C:"CSS caret-color",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:2,C:"CSS caret-color",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js index eff94dd6b50286..dce5ba86ce9c12 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-layers.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e","322":"f g h"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c YC ZC","194":"d e f"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e","322":"f g h"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U lC mC nC oC 4B TC pC 5B"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"CSS Cascade Layers",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e","322":"f g h"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c bC cC","194":"d e f"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e","322":"f g h"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U oC pC qC rC 5B WC sC 6B"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"CSS Cascade Layers",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js index 875108d8bbfa9c..56486e92399e68 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cascade-scope.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"6 7 8 9 AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 4 5 n o p q r s y z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"6 7 8 9 AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 4 5 n o p q r s y z"},E:{"1":"RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC"},F:{"1":"p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y lC mC nC oC 4B TC pC 5B","194":"Z a b c d e f g h i j k l m n o"},G:{"1":"RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"Scoped Styles: the @scope rule",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"7 8 9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 4 5 6 n o p q r s z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m","194":"0 1 2 3 4 5 6 n o p q r s z"},E:{"1":"TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC"},F:{"1":"p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y oC pC qC rC 5B WC sC 6B","194":"Z a b c d e f g h i j k l m n o"},G:{"1":"TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"Scoped Styles: the @scope rule",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js index 16718f37cb66fc..e071833b161fdc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-case-insensitive.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Case-insensitive CSS attribute selectors",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Case-insensitive CSS attribute selectors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js index a256b350c8bd37..fea93a41bb3a4e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-clip-path.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O","260":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","3138":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC","644":"ZB aB bB cB dB eB fB"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w","260":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","292":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"2":"J BB K aC FC bC cC","260":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","292":"D E F A B C L dC eC GC 4B 5B"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","260":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","292":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"2":"FC qC UC rC sC","260":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","292":"E tC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","260":"I","292":"HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","260":"H"},L:{"260":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"260":"6B"},P:{"292":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"260":"VD"},R:{"260":"WD"},S:{"1":"YD","644":"XD"}},B:4,C:"CSS clip-path property (for HTML)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O","260":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","3138":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC","644":"bB cB dB eB fB gB hB"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x","260":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","292":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"2":"J DB K dC HC eC fC","260":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","292":"D E F A B C L gC hC IC 5B 6B"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","260":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","292":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"2":"HC tC XC uC vC","260":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","292":"E wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","260":"I","292":"KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","260":"H"},L:{"260":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"260":"7B"},P:{"260":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","292":"J MD"},Q:{"260":"YD"},R:{"260":"ZD"},S:{"1":"bD","644":"aD"}},B:4,C:"CSS clip-path property (for HTML)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js index 68fbc80392f1b7..98f2a8da759c27 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-adjust.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC"},D:{"16":"J BB K D E F A B C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"16":"9B J DD ED FD GD UC HD ID","33":"I"},J:{"16":"D A"},K:{"2":"A B C 4B TC 5B","33":"H"},L:{"16":"I"},M:{"1":"3B"},N:{"16":"A B"},O:{"16":"6B"},P:{"16":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"33":"VD"},R:{"16":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS print-color-adjust",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC"},D:{"16":"J DB K D E F A B C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"16":"AC J GD HD ID JD XC KD LD","33":"I"},J:{"16":"D A"},K:{"2":"A B C 5B WC 6B","33":"H"},L:{"16":"I"},M:{"1":"t"},N:{"16":"A B"},O:{"16":"7B"},P:{"16":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"33":"YD"},R:{"16":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS print-color-adjust",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js index dd71dd083abb40..b900a9dbe09fa7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-color-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q","322":"r s y"},C:{"1":"1 2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y YC ZC","578":"0 z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q","322":"r s y"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC","132":"B C L M GC 4B 5B fC gC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d lC mC nC oC 4B TC pC 5B","322":"e f g"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC","132":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"v w x","2":"J t u JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"CSS color() function",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q","322":"r s z"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC","578":"0 1"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q","322":"r s z"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC","132":"B C L M IC 5B 6B iC jC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d oC pC qC rC 5B WC sC 6B","322":"e f g"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C","132":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"w x y","2":"J u v MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"CSS color() function",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js index 54643747f1339a..7b4a8352670b55 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-conic-gradients.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB YC ZC","578":"zB 0B 1B 2B Q H R CC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","257":"tB uB","450":"AC lB BC mB nB oB pB qB rB sB"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB lC mC nC oC 4B TC pC 5B","257":"iB jB","450":"YB ZB aB bB cB dB eB fB gB hB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS Conical Gradients",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B bC cC","578":"1B 2B 3B 4B Q H R DC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","257":"vB wB","450":"BC nB CC oB pB qB rB sB tB uB"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB oC pC qC rC 5B WC sC 6B","257":"kB lB","450":"aB bB cB dB eB fB gB hB iB jB"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS Conical Gradients",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js index 7b4310222ac7ff..7ce7bcae275f42 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries-style.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","194":"q r s y","260":"0 1 2 3 4 5 6 7 8 9 z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","194":"q r s y","260":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","260":"kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b lC mC nC oC 4B TC pC 5B","194":"c d e f g","260":"h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","260":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","260":"H"},L:{"260":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","260":"v w x"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Container Style Queries",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","194":"q r s z","260":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","194":"q r s z","260":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","260":"nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b oC pC qC rC 5B WC sC 6B","194":"c d e f g","260":"h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","260":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","260":"H"},L:{"260":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","260":"w x y"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Container Style Queries",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries.js index 15bf48e72dc0d7..2ed05344453705 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-queries.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","516":"o"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a","194":"c d e f g h i j k l m n","450":"b","516":"o"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B lC mC nC oC 4B TC pC 5B","194":"Q H R CC S T U V W X Y Z","516":"a b c"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Container Queries (Size)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","516":"o"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a","194":"c d e f g h i j k l m n","450":"b","516":"o"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B oC pC qC rC 5B WC sC 6B","194":"Q H R DC S T U V W X Y Z","516":"a b c"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Container Queries (Size)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js index adc6e3cb320227..6af43354925800 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-container-query-units.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b","194":"k l m n","450":"c d e f g h i j"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B lC mC nC oC 4B TC pC 5B","194":"Q H R CC S T U V W X Y Z"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Container Query Units",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b","194":"k l m n","450":"c d e f g h i j"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B oC pC qC rC 5B WC sC 6B","194":"Q H R DC S T U V W X Y Z"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Container Query Units",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js index 042e0804b3c50b..9229729ba4c2f3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-containment.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB YC ZC","194":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","66":"dB"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB lC mC nC oC 4B TC pC 5B","66":"QB RB"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","194":"XD"}},B:2,C:"CSS Containment",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB bC cC","194":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","66":"fB"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB oC pC qC rC 5B WC sC 6B","66":"SB TB"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","194":"aD"}},B:2,C:"CSS Containment",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js index 988f1b64008122..1553a49e85db41 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-content-visibility.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T"},C:{"1":"3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r YC ZC","194":"0 1 2 3 4 5 6 7 8 9 s y z AB I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T"},E:{"1":"kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},F:{"1":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS content-visibility",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T"},C:{"1":"I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r bC cC","194":"0 1 2 3 4 5 6 7 8 9 s z AB BB CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T"},E:{"1":"nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},F:{"1":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS content-visibility",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js index c47f94a0a72fa9..c72fa254407163 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-counters.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"K D VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS Counters",D:true}; +module.exports={A:{A:{"1":"E F A B","2":"K D YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS Counters",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js index 3e618fa1676527..8276397fd0fd2e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-crisp-edges.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K VC","2340":"D E F A B"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","513":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b","545":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","1025":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","164":"K","4644":"D E F cC dC eC"},F:{"2":"F B G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC","545":"C pC 5B","1025":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","4260":"rC sC","4644":"E tC uC vC wC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","1025":"I"},J:{"2":"D","4260":"A"},K:{"2":"A B 4B TC","545":"C 5B","1025":"H"},L:{"1025":"I"},M:{"1":"3B"},N:{"2340":"A B"},O:{"1025":"6B"},P:{"1025":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1025":"VD"},R:{"1025":"WD"},S:{"1":"YD","4097":"XD"}},B:4,C:"Crisp edges/pixelated images",D:true}; +module.exports={A:{A:{"2":"K YC","2340":"D E F A B"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","513":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b","545":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","1025":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","164":"K","4644":"D E F fC gC hC"},F:{"2":"F B G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC","545":"C sC 6B","1025":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","4260":"uC vC","4644":"E wC xC yC zC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","1025":"I"},J:{"2":"D","4260":"A"},K:{"2":"A B 5B WC","545":"C 6B","1025":"H"},L:{"1025":"I"},M:{"1":"t"},N:{"2340":"A B"},O:{"1025":"7B"},P:{"1025":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1025":"YD"},R:{"1025":"ZD"},S:{"1":"bD","4097":"aD"}},B:4,C:"Crisp edges/pixelated images",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js index c7f27812404099..ed89c1e4ccff94 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-cross-fade.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N","33":"0 1 2 3 4 5 6 7 8 9 O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","33":"K D E F bC cC dC eC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","33":"E rC sC tC uC vC wC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","33":"I HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","33":"H"},L:{"33":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"33":"6B"},P:{"33":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"33":"VD"},R:{"33":"WD"},S:{"2":"XD YD"}},B:4,C:"CSS Cross-Fade Function",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N","33":"0 1 2 3 4 5 6 7 8 9 O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","33":"K D E F eC fC gC hC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","33":"E uC vC wC xC yC zC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","33":"I KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","33":"H"},L:{"33":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"33":"7B"},P:{"33":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"33":"YD"},R:{"33":"ZD"},S:{"2":"aD bD"}},B:4,C:"CSS Cross-Fade Function",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js index 3708cd0df5cc91..b8fd86927c8a36 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-default-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC","132":"K D E F A bC cC dC eC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B lC mC nC oC 4B TC","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB","260":"C pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC sC","132":"E tC uC vC wC xC"},H:{"260":"CD"},I:{"1":"I","16":"9B DD ED FD","132":"J GD UC HD ID"},J:{"16":"D","132":"A"},K:{"1":"H","16":"A B C 4B TC","260":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","132":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:":default CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC","132":"K D E F A eC fC gC hC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B oC pC qC rC 5B WC","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB","260":"C sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC vC","132":"E wC xC yC zC 0C"},H:{"260":"FD"},I:{"1":"I","16":"AC GD HD ID","132":"J JD XC KD LD"},J:{"16":"D","132":"A"},K:{"1":"H","16":"A B C 5B WC","260":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:":default CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js index f5811ca56b927d..fe965cc4cf345b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"Q"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"B","2":"J BB K D E F A C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Explicit descendant combinator >>",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"Q"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"B","2":"J DB K D E F A C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Explicit descendant combinator >>",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js index 3491531a4ca45e..8c7e09f102d0d1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-deviceadaptation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","164":"A B"},B:{"66":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","164":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB","66":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB lC mC nC oC 4B TC pC 5B","66":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"292":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A H","292":"B C 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"164":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"66":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Device Adaptation",D:true}; +module.exports={A:{A:{"2":"K D E F YC","164":"A B"},B:{"66":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","164":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB","66":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB oC pC qC rC 5B WC sC 6B","66":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"292":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A H","292":"B C 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"164":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"66":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Device Adaptation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js index fdac8ebba6cd74..ee3dbe2a0c73e4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-dir-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"8 9 AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","194":"0 1 2 3 4 5 6 7 o p q r s y z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N YC ZC","33":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"8 9 AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z","194":"0 1 2 3 4 5 6 7 a b c d e f g h i j k l m n o p q r s y z"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z lC mC nC oC 4B TC pC 5B","194":"a b c d e f g h i j k l m n o"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"YD","33":"XD"}},B:5,C:":dir() CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","194":"0 1 2 3 4 5 6 7 8 o p q r s z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N bC cC","33":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},D:{"1":"9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z","194":"0 1 2 3 4 5 6 7 8 a b c d e f g h i j k l m n o p q r s z"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z oC pC qC rC 5B WC sC 6B","194":"a b c d e f g h i j k l m n o"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"bD","33":"aD"}},B:5,C:":dir() CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js index 05105a841e5e5f..e63a7e570378fe 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-display-contents.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","132":"Q H R S T U V W X","260":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB YC ZC","132":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC","260":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","132":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X","194":"kB AC lB BC mB nB oB","260":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B aC FC bC cC dC eC GC","132":"C L M G 4B 5B fC gC hC HC IC 6B iC","260":"8B OC PC QC RC SC kC","772":"7B JC KC LC MC NC jC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB lC mC nC oC 4B TC pC 5B","132":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","260":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC","132":"0C 1C 2C 3C 4C 5C","260":"6C 7C 8C 9C HC IC 6B AD","516":"JC KC LC MC NC BD","772":"7B"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","260":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","260":"H"},L:{"260":"I"},M:{"260":"3B"},N:{"2":"A B"},O:{"132":"6B"},P:{"2":"J JD KD LD MD","132":"ND GC OD PD QD RD","260":"t u v w x SD 7B 8B TD UD"},Q:{"132":"VD"},R:{"260":"WD"},S:{"132":"XD","260":"YD"}},B:4,C:"CSS display: contents",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","132":"Q H R S T U V W X","260":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB bC cC","132":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC","260":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","132":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X","194":"mB BC nB CC oB pB qB","260":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B dC HC eC fC gC hC IC","132":"C L M G 5B 6B iC jC kC JC KC 7B lC","260":"9B QC RC SC TC UC VC nC","772":"8B LC MC NC OC PC mC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB oC pC qC rC 5B WC sC 6B","132":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","260":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C","132":"3C 4C 5C 6C 7C 8C","260":"9C AD BD CD JC KC 7B DD","516":"LC MC NC OC PC ED","772":"8B"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","260":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","260":"H"},L:{"260":"I"},M:{"260":"t"},N:{"2":"A B"},O:{"132":"7B"},P:{"2":"J MD ND OD PD","132":"QD IC RD SD TD UD","260":"u v w x y VD 8B 9B WD XD"},Q:{"132":"YD"},R:{"260":"ZD"},S:{"132":"aD","260":"bD"}},B:4,C:"CSS display: contents",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js index 56417eb4e3c93f..864c54e86daebd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-element-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"33":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","164":"WC 9B YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"33":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"33":"XD YD"}},B:5,C:"CSS element() function",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"33":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","164":"ZC AC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"33":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"33":"aD bD"}},B:5,C:"CSS element() function",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js index 45c12c6f1b6c0b..d467dc88979de7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-env-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","132":"B"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC","132":"zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:7,C:"CSS Environment Variables env()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","132":"B"},F:{"1":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C","132":"2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:7,C:"CSS Environment Variables env()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js index 9466386707ba98..1fa608ad8bec05 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-exclusions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","33":"A B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","33":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"33":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Exclusions Level 1",D:true}; +module.exports={A:{A:{"2":"K D E F YC","33":"A B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","33":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"33":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Exclusions Level 1",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js index e8126bbfe0d703..2b7b9246f5c36a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-featurequeries.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B C lC mC nC oC 4B TC pC"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Feature Queries",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B C oC pC qC rC 5B WC sC"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Feature Queries",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js index 4fda7afdbc3596..e588882d0eb0db 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-file-selector-button.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","33":"C L M G N O P Q H R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R YC ZC"},M:{"1":"3B"},A:{"2":"K D E F VC","33":"A B"},F:{"1":"zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"kC","33":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},P:{"1":"t u v w x SD 7B 8B TD UD","33":"J JD KD LD MD ND GC OD PD QD RD"},I:{"1":"I","2":"9B J DD ED FD GD UC","33":"HD ID"}},B:6,C:"::file-selector-button CSS pseudo-element",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","33":"C L M G N O P Q H R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R bC cC"},M:{"1":"t"},A:{"2":"K D E F YC","33":"A B"},F:{"1":"1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"nC","33":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},P:{"1":"u v w x y VD 8B 9B WD XD","33":"J MD ND OD PD QD IC RD SD TD UD"},I:{"1":"I","2":"AC J GD HD ID JD XC","33":"KD LD"}},B:6,C:"::file-selector-button CSS pseudo-element",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js index cacd8f7b226775..fd18a2808d8e2a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filter-function.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC","33":"F"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC","33":"vC wC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS filter() function",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC","33":"F"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC","33":"yC zC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS filter() function",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js index 7e46d6879e9486..ab4e1977b0cec7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-filters.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","1028":"L M G N O P","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","196":"MB","516":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O","33":"P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K D E F cC dC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"E sC tC uC vC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","33":"HD ID"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","33":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS Filter Effects",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","1028":"L M G N O P","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","196":"OB","516":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O","33":"P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K D E F fC gC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"E vC wC xC yC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","33":"KD LD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS Filter Effects",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js index 8132666754c090..20573c30e5cfe6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-letter.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","16":"VC","516":"E","1540":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","132":"9B","260":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"BB K D E","132":"J"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"BB aC","132":"J FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","16":"F lC","260":"B mC nC oC 4B TC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"1":"CD"},I:{"1":"9B J I GD UC HD ID","16":"DD ED","132":"FD"},J:{"1":"D A"},K:{"1":"C H 5B","260":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"::first-letter CSS pseudo-element selector",D:true}; +module.exports={A:{A:{"1":"F A B","16":"YC","516":"E","1540":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","132":"AC","260":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"DB K D E","132":"J"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"DB dC","132":"J HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","16":"F oC","260":"B pC qC rC 5B WC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"1":"FD"},I:{"1":"AC J I JD XC KD LD","16":"GD HD","132":"ID"},J:{"1":"D A"},K:{"1":"C H 6B","260":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"::first-letter CSS pseudo-element selector",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js index 560f74233f9b4d..8b943fd28d610a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-first-line.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS first-line pseudo-element",D:true}; +module.exports={A:{A:{"1":"F A B","132":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS first-line pseudo-element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js index 95b0c71e274ccc..036030a6132986 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-fixed.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","2":"VC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","1025":"eC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","132":"rC sC tC"},H:{"2":"CD"},I:{"1":"9B I HD ID","260":"DD ED FD","513":"J GD UC"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS position:fixed",D:true}; +module.exports={A:{A:{"1":"D E F A B","2":"YC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","1025":"hC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","132":"uC vC wC"},H:{"2":"FD"},I:{"1":"AC I KD LD","260":"GD HD ID","513":"J JD XC"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS position:fixed",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js index 04abe73b29d924..82f4c8532ed9c9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-visible.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","328":"Q H R S T U"},C:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","161":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T"},D:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB","328":"rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC","578":"G hC HC"},F:{"1":"wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB lC mC nC oC 4B TC pC 5B","328":"qB rB sB tB uB vB"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C","578":"9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"161":"XD YD"}},B:5,C:":focus-visible CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","328":"Q H R S T U"},C:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","161":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T"},D:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB","328":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC","578":"G kC JC"},F:{"1":"yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB oC pC qC rC 5B WC sC 6B","328":"sB tB uB vB wB xB"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD","578":"CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"161":"aD bD"}},B:5,C:":focus-visible CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js index a922804abf7ee1..fdd8e07574929c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-focus-within.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","194":"AC"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB lC mC nC oC 4B TC pC 5B","194":"YB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:7,C:":focus-within CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","194":"BC"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB oC pC qC rC 5B WC sC 6B","194":"aB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:7,C:":focus-within CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js index 865636c8711f91..8881b9cea14758 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-palette.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V lC mC nC oC 4B TC pC 5B"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS font-palette",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V oC pC qC rC 5B WC sC 6B"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS font-palette",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js index f5f3577cd63410..a65485f1ffc1da 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YC ZC","194":"YB ZB aB bB cB dB eB fB gB hB iB jB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","66":"bB cB dB eB fB gB hB iB jB kB AC"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B","66":"OB PB QB RB SB TB UB VB WB XB YB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","66":"JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","194":"XD"}},B:5,C:"CSS font-display",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB bC cC","194":"aB bB cB dB eB fB gB hB iB jB kB lB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","66":"dB eB fB gB hB iB jB kB lB mB BC"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B","66":"QB RB SB TB UB VB WB XB YB ZB aB"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","66":"MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","194":"aD"}},B:5,C:"CSS font-display",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js index c47c12131ed1f4..6f3854802c5476 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-font-stretch.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS font-stretch",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS font-stretch",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js index be39f2291acb8a..8c7ea7de0e4474 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gencontent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D VC","132":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS Generated content for pseudo-elements",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D YC","132":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS Generated content for pseudo-elements",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js index 5d47d924231b5b..f50a00fac57b09 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-gradients.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","260":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB","292":"J BB K D E F A B C L M G ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"A B C L M G N O P CB t u v w x DB","548":"J BB K D E F"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC","260":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC","292":"K bC","804":"J BB"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC","33":"C pC","164":"4B TC"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","260":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC","292":"rC sC","804":"FC qC UC"},H:{"2":"CD"},I:{"1":"I HD ID","33":"J GD UC","548":"9B DD ED FD"},J:{"1":"A","548":"D"},K:{"1":"H 5B","2":"A B","33":"C","164":"4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Gradients",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","260":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB","292":"J DB K D E F A B C L M G cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"A B C L M G N O P EB u v w x y FB","548":"J DB K D E F"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC","260":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC","292":"K eC","804":"J DB"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC","33":"C sC","164":"5B WC"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","260":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC","292":"uC vC","804":"HC tC XC"},H:{"2":"FD"},I:{"1":"I KD LD","33":"J JD XC","548":"AC GD HD ID"},J:{"1":"A","548":"D"},K:{"1":"H 6B","2":"A B","33":"C","164":"5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Gradients",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js index 54aa462e0d591c..cc11f0d0bbd940 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid-animation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"CSS Grid animation",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"CSS Grid animation",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js index ef3e7685ab268e..277ac8cffedbba 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-grid.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","8":"F","292":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","292":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P YC ZC","8":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","584":"SB TB UB VB WB XB YB ZB aB bB cB dB","1025":"eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x","8":"DB EB FB GB","200":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","1025":"jB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","8":"K D E F A cC dC eC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B","200":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","8":"E sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD","8":"UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"292":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"JD","8":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Grid Layout (level 1)",D:true}; +module.exports={A:{A:{"2":"K D E YC","8":"F","292":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","292":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P bC cC","8":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","584":"UB VB WB XB YB ZB aB bB cB dB eB fB","1025":"gB hB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y","8":"FB GB HB IB","200":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","1025":"lB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","8":"K D E F A fC gC hC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B","200":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","8":"E vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD","8":"XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"292":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"MD","8":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Grid Layout (level 1)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js index c99a346b1ba9d7..e60d0c727b26e8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"CSS hanging-punctuation",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"CSS hanging-punctuation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js index 71912eda32a753..816be202fc0cf2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-has.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l YC ZC","322":"0 1 2 3 4 5 6 7 8 m n o p q r s y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j","194":"k l m n"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z lC mC nC oC 4B TC pC 5B"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:":has() CSS relational pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n"},C:{"1":"AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l bC cC","322":"0 1 2 3 4 5 6 7 8 9 m n o p q r s z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j","194":"k l m n"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z oC pC qC rC 5B WC sC 6B"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:":has() CSS relational pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js index 78489dc4aed3f4..d8f14d00be5e8f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-hyphens.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I","33":"C L M G N O P","132":"Q H R S T U V W","260":"X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","33":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","132":"hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W"},E:{"1":"8B OC PC QC RC SC kC","2":"J BB aC FC","33":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB lC mC nC oC 4B TC pC 5B","132":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z"},G:{"1":"8B OC PC QC RC SC","2":"FC qC","33":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","132":"JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Hyphenation",D:true}; +module.exports={A:{A:{"2":"K D E F YC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t","33":"C L M G N O P","132":"Q H R S T U V W","260":"X Y Z a b c d e f g h i j k l m n"},C:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","33":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","132":"jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W"},E:{"1":"9B QC RC SC TC UC VC nC","2":"J DB dC HC","33":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB oC pC qC rC 5B WC sC 6B","132":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z"},G:{"1":"9B QC RC SC TC UC VC","2":"HC tC","33":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","132":"MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Hyphenation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js index b664831329ee33..e14f071b4fd433 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-orientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H","257":"R S T U V W X"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B"},F:{"1":"1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB lC mC nC oC 4B TC pC 5B","257":"sB tB uB vB wB xB yB zB 0B"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD","257":"QD RD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 image-orientation",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H","257":"R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H","257":"R S T U V W X"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B"},F:{"1":"3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB oC pC qC rC 5B WC sC 6B","257":"uB vB wB xB yB zB 0B 1B 2B"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD","257":"TD UD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 image-orientation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js index 556ad7176a353a..caf335baa9957b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-image-set.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"2 3 4 5 6 7 8 9 AB I","2":"C L M G N O P","164":"0 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","2049":"1"},C:{"1":"1 2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U YC ZC","66":"V W","2305":"0 Y Z a b c d e f g h i j k l m n o p q r s y z","2820":"X"},D:{"1":"2 3 4 5 6 7 8 9 AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t","164":"0 u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","2049":"1"},E:{"1":"8B OC PC QC RC SC kC","2":"J BB aC FC bC","132":"A B C L GC 4B 5B fC","164":"K D E F cC dC eC","1540":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC"},F:{"1":"j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h","2049":"i"},G:{"1":"8B OC PC QC RC SC","2":"FC qC UC rC","132":"xC yC zC 0C 1C 2C 3C 4C 5C 6C","164":"E sC tC uC vC wC","1540":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","164":"HD ID"},J:{"2":"D","164":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"164":"6B"},P:{"164":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"164":"VD"},R:{"164":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS image-set",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P","164":"0 1 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","2049":"2"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U bC cC","66":"V W","2305":"0 1 Y Z a b c d e f g h i j k l m n o p q r s z","2820":"X"},D:{"1":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u","164":"0 1 v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","2049":"2"},E:{"1":"9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","132":"A B C L IC 5B 6B iC","164":"K D E F fC gC hC","1540":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC"},F:{"1":"j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h","2049":"i"},G:{"1":"9B QC RC SC TC UC VC","2":"HC tC XC uC","132":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","164":"E vC wC xC yC zC","1540":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","164":"KD LD"},J:{"2":"D","164":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"164":"7B"},P:{"1":"x y","164":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"164":"YD"},R:{"164":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS image-set",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js index d6f61cdb392d2b..e4a3dbd3cc0da6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-in-out-of-range.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C","260":"L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC","516":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J","16":"BB K D E F A B C L M","260":"eB","772":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB","772":"K D E F A bC cC dC eC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F lC","260":"B C RB mC nC oC 4B TC pC 5B","772":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","772":"E rC sC tC uC vC wC xC"},H:{"132":"CD"},I:{"1":"I","2":"9B DD ED FD","260":"J GD UC HD ID"},J:{"2":"D","260":"A"},K:{"1":"H","260":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","260":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","516":"XD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C","260":"L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC","516":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J","16":"DB K D E F A B C L M","260":"gB","772":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB","772":"K D E F A eC fC gC hC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F oC","260":"B C TB pC qC rC 5B WC sC 6B","772":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","772":"E uC vC wC xC yC zC 0C"},H:{"132":"FD"},I:{"1":"I","2":"AC GD HD ID","260":"J JD XC KD LD"},J:{"2":"D","260":"A"},K:{"1":"H","260":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","260":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","516":"aD"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js index 648b7f8b45bff1..d8de519520c30a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","132":"A B","388":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC 9B YC ZC","132":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","388":"J BB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB K aC FC","132":"D E F A cC dC eC","388":"bC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B lC mC nC oC 4B TC","132":"G N O P CB t u v w x DB","516":"C pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC sC","132":"E tC uC vC wC xC"},H:{"516":"CD"},I:{"1":"I","16":"9B DD ED FD ID","132":"HD","388":"J GD UC"},J:{"16":"D","132":"A"},K:{"1":"H","16":"A B C 4B TC","516":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","132":"XD"}},B:5,C:":indeterminate CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E YC","132":"A B","388":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC AC bC cC","132":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","388":"J DB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB K dC HC","132":"D E F A fC gC hC","388":"eC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B oC pC qC rC 5B WC","132":"G N O P EB u v w x y FB","516":"C sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC vC","132":"E wC xC yC zC 0C"},H:{"516":"FD"},I:{"1":"I","16":"AC GD HD ID LD","132":"KD","388":"J JD XC"},J:{"16":"D","132":"A"},K:{"1":"H","16":"A B C 5B WC","516":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","132":"aD"}},B:5,C:":indeterminate CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js index 6ee1b3b12be1c0..39da23425a93c9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-letter.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"0 1 2 3 4 5 6 7 8 9 y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"0 1 2 3 4 5 6 7 8 9 y z AB I 3B DC EC"},E:{"2":"J BB K D E aC FC bC cC dC","4":"F","164":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g lC mC nC oC 4B TC pC 5B","260":"h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC","164":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","260":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","260":"H"},L:{"260":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"u v w x","2":"J t JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Initial Letter",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E dC HC eC fC gC","260":"F","420":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g oC pC qC rC 5B WC sC 6B","260":"h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC","420":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","260":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","260":"H"},L:{"260":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","260":"v w x y"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Initial Letter",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js index 80fee16eedfa02..eacb247194a3c9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-initial-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"J BB K D E F A B C L M G N O P YC ZC","164":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS initial value",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"J DB K D E F A B C L M G N O P bC cC","164":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS initial value",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js index e6c1f7be64e0ff..d59ec2321077cc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-lch-lab.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"y"},C:{"1":"1 2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y YC ZC","194":"0 z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"y"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g lC mC nC oC 4B TC pC 5B"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"v w x","2":"J t u JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"LCH and Lab color values",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"z"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC","194":"0 1"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"z"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g oC pC qC rC 5B WC sC 6B"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"w x y","2":"J u v MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"LCH and Lab color values",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js index 9b1b5875771c17..84aed48af956e4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-letter-spacing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","16":"VC","132":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC","132":"J BB K FC bC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F lC","132":"B C G N mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"2":"CD"},I:{"1":"I HD ID","16":"DD ED","132":"9B J FD GD UC"},J:{"132":"D A"},K:{"1":"H","132":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"letter-spacing CSS property",D:true}; +module.exports={A:{A:{"1":"F A B","16":"YC","132":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC","132":"J DB K HC eC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F oC","132":"B C G N pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"2":"FD"},I:{"1":"I KD LD","16":"GD HD","132":"AC J ID JD XC"},J:{"132":"D A"},K:{"1":"H","132":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"letter-spacing CSS property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js index 0cd608d8832fe6..6452cdef34abf9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-line-clamp.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB YC ZC","33":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"16":"J BB K D E F A B C L","33":"0 1 2 3 4 5 6 7 8 9 M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J aC FC","33":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"FC qC UC","33":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"16":"DD ED","33":"9B J I FD GD UC HD ID"},J:{"33":"D A"},K:{"2":"A B C 4B TC 5B","33":"H"},L:{"33":"I"},M:{"33":"3B"},N:{"2":"A B"},O:{"33":"6B"},P:{"33":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"33":"VD"},R:{"33":"WD"},S:{"2":"XD","33":"YD"}},B:5,C:"CSS line-clamp",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB bC cC","33":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"16":"J DB K D E F A B C L","33":"0 1 2 3 4 5 6 7 8 9 M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J dC HC","33":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"HC tC XC","33":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"16":"GD HD","33":"AC J I ID JD XC KD LD"},J:{"33":"D A"},K:{"2":"A B C 5B WC 6B","33":"H"},L:{"33":"I"},M:{"33":"t"},N:{"2":"A B"},O:{"33":"7B"},P:{"33":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"33":"YD"},R:{"33":"ZD"},S:{"2":"aD","33":"bD"}},B:5,C:"CSS line-clamp",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js index 6be504d6cfa3e4..cfa136629c3c8d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-logical-props.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","1028":"W X","1540":"Q H R S T U V"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC","164":"9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB YC ZC","1540":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","292":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB","1028":"W X","1540":"tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","292":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","1540":"L M 5B fC","3076":"gC"},F:{"1":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","292":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","1028":"yB zB","1540":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","292":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C","1540":"2C 3C 4C 5C 6C 7C","3076":"8C"},H:{"2":"CD"},I:{"1":"I","292":"9B J DD ED FD GD UC HD ID"},J:{"292":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","292":"J JD KD LD MD ND","1540":"GC OD PD QD RD"},Q:{"1540":"VD"},R:{"1":"WD"},S:{"1":"YD","1540":"XD"}},B:5,C:"CSS Logical Properties",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","1028":"W X","1540":"Q H R S T U V"},C:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC","164":"AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB bC cC","1540":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","292":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB","1028":"W X","1540":"vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","292":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","1540":"L M 6B iC","3076":"jC"},F:{"1":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","292":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","1028":"0B 1B","1540":"kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","292":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C","1540":"5C 6C 7C 8C 9C AD","3076":"BD"},H:{"2":"FD"},I:{"1":"I","292":"AC J GD HD ID JD XC KD LD"},J:{"292":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","292":"J MD ND OD PD QD","1540":"IC RD SD TD UD"},Q:{"1540":"YD"},R:{"1":"ZD"},S:{"1":"bD","1540":"aD"}},B:5,C:"CSS Logical Properties",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js index 517d1147926aca..b082db73f47cde 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-marker-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U"},C:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U"},E:{"1":"kC","2":"J BB K D E F A B aC FC bC cC dC eC GC","129":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},F:{"1":"wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS ::marker pseudo-element",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U"},E:{"1":"nC","2":"J DB K D E F A B dC HC eC fC gC hC IC","129":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},F:{"1":"yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS ::marker pseudo-element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js index e4da1a7e52d923..07de5aa043e872 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-masks.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"8 9 AB I","2":"C L M G N","164":"0 1 2 3 4 5 6 7 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","3138":"O","12292":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","260":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC"},D:{"1":"8 9 AB I 3B DC EC","164":"0 1 2 3 4 5 6 7 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC","164":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","164":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","164":"HD ID","676":"9B J DD ED FD GD UC"},J:{"164":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"164":"6B"},P:{"164":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"164":"VD"},R:{"164":"WD"},S:{"1":"YD","260":"XD"}},B:4,C:"CSS Masks",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"9 AB BB CB I t","2":"C L M G N","164":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","3138":"O","12292":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","260":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC"},D:{"1":"9 AB BB CB I t EC FC GC","164":"0 1 2 3 4 5 6 7 8 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC","164":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","164":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","164":"KD LD","676":"AC J GD HD ID JD XC"},J:{"164":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"164":"7B"},P:{"164":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"164":"YD"},R:{"164":"ZD"},S:{"1":"bD","260":"aD"}},B:4,C:"CSS Masks",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js index cb87c40b5e2a21..4a83d91ee42187 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-matches-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","1220":"Q H R S T U V W"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","548":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB","196":"pB qB rB","1220":"sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB","164":"K D E bC cC dC","260":"F A B C L eC GC 4B 5B fC"},F:{"1":"zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","196":"eB fB gB","1220":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC sC","164":"E tC uC","260":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"1":"I","16":"9B DD ED FD","164":"J GD UC HD ID"},J:{"16":"D","164":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","164":"J JD KD LD MD ND GC OD PD QD RD"},Q:{"1220":"VD"},R:{"1":"WD"},S:{"1":"YD","548":"XD"}},B:5,C:":is() CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","1220":"Q H R S T U V W"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","548":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB","196":"rB sB tB","1220":"uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB","164":"K D E eC fC gC","260":"F A B C L hC IC 5B 6B iC"},F:{"1":"1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","196":"gB hB iB","1220":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC vC","164":"E wC xC","260":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"1":"I","16":"AC GD HD ID","164":"J JD XC KD LD"},J:{"16":"D","164":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","164":"J MD ND OD PD QD IC RD SD TD UD"},Q:{"1220":"YD"},R:{"1":"ZD"},S:{"1":"bD","548":"aD"}},B:5,C:":is() CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js index 3392b21bef661e..b2e1bc000af4c3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-math-functions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC","132":"C L 4B 5B"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB lC mC nC oC 4B TC pC 5B"},G:{"1":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC","132":"0C 1C 2C 3C 4C 5C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS math functions min(), max() and clamp()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC","132":"C L 5B 6B"},F:{"1":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB oC pC qC rC 5B WC sC 6B"},G:{"1":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C","132":"3C 4C 5C 6C 7C 8C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS math functions min(), max() and clamp()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js index f2be1e2bfa59ec..d054e3d89f429c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-interaction.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"Media Queries: interaction media features",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"Media Queries: interaction media features",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js index fd7a5112b22bf1..eab1c198c1e234 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-range-syntax.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z lC mC nC oC 4B TC pC 5B"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"Media Queries: Range Syntax",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z oC pC qC rC 5B WC sC 6B"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"Media Queries: Range Syntax",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js index 48b64ed0a9dc7d..c3b14e0bbdb1c5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-resolution.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","1028":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","260":"J BB K D E F A B C L M G YC ZC","1028":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","548":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB","1028":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC","548":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F","548":"B C lC mC nC oC 4B TC pC","1028":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC","548":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"132":"CD"},I:{"1":"I","16":"DD ED","548":"9B J FD GD UC","1028":"HD ID"},J:{"548":"D A"},K:{"1":"H 5B","548":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","1028":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Media Queries: resolution feature",D:true}; +module.exports={A:{A:{"2":"K D E YC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","1028":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","260":"J DB K D E F A B C L M G bC cC","1028":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","548":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB","1028":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC","548":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F","548":"B C oC pC qC rC 5B WC sC","1028":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC","548":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"132":"FD"},I:{"1":"I","16":"GD HD","548":"AC J ID JD XC","1028":"KD LD"},J:{"548":"D A"},K:{"1":"H 6B","548":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","1028":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Media Queries: resolution feature",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js index 9aad69ed472e97..1c685b05521102 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-media-scripting.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"Media Queries: scripting media feature",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"Media Queries: scripting media feature",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js index c68f22f3565c7f..8d8414228ea361 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mediaqueries.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"K D E VC","129":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","129":"J BB K D E F A B C L M G N O P CB t u v w x DB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","129":"J BB K bC","388":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","129":"FC qC UC rC sC"},H:{"1":"CD"},I:{"1":"I HD ID","129":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"129":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS3 Media Queries",D:true}; +module.exports={A:{A:{"8":"K D E YC","129":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","129":"J DB K D E F A B C L M G N O P EB u v w x y FB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","129":"J DB K eC","388":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","129":"HC tC XC uC vC"},H:{"1":"FD"},I:{"1":"I KD LD","129":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"129":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS3 Media Queries",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js index 4231519e55ee88..4dea3de9a9aafe 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-mixblendmode.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB","194":"HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"2":"J BB K D aC FC bC cC","260":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC rC sC tC","260":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Blending of HTML/SVG elements",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB","194":"JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"J DB K D dC HC eC fC","260":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC uC vC wC","260":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Blending of HTML/SVG elements",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-module-scripts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-module-scripts.js index da890307c58e42..a811612e22a9bc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-module-scripts.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-module-scripts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"I","2":"C L M G N O P Q H R S T U V W X Y Z a b","132":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s y z AB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b","132":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s y z AB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"16":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"194":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:1,C:"CSS Module Scripts",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b","132":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s z AB BB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b","132":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s z AB BB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"16":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"194":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:1,C:"CSS Module Scripts",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-motion-paths.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-motion-paths.js index ebb62bd8968fca..5dd895447bd289 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-motion-paths.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-motion-paths.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"VB WB XB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB lC mC nC oC 4B TC pC 5B","194":"IB JB KB"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS Motion Path",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","194":"XB YB ZB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB oC pC qC rC 5B WC sC 6B","194":"KB LB MB"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS Motion Path",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js index 2fa65e111521c3..b8c8da99b83784 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-namespaces.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS namespaces",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS namespaces",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js index 2b8204b1d76cd2..571a8337612e92 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nesting.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"8 9 AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r","194":"s y z","516":"0 1 2 3 4 5 6 7"},C:{"1":"5 6 7 8 9 AB I 3B DC EC XC","2":"0 1 2 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC","322":"3 4"},D:{"1":"8 9 AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r","194":"s y z","516":"0 1 2 3 4 5 6 7"},E:{"1":"PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC","516":"NC jC 8B OC"},F:{"1":"p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d lC mC nC oC 4B TC pC 5B","194":"e f g","516":"h i j k l m n o"},G:{"1":"PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC","516":"NC BD 8B OC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Nesting",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r","194":"0 s z","516":"1 2 3 4 5 6 7 8"},C:{"1":"6 7 8 9 AB BB CB I t EC FC GC aC","2":"0 1 2 3 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC","322":"4 5"},D:{"1":"9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r","194":"0 s z","516":"1 2 3 4 5 6 7 8"},E:{"1":"RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC","516":"PC mC 9B QC"},F:{"1":"p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d oC pC qC rC 5B WC sC 6B","194":"e f g","516":"h i j k l m n o"},G:{"1":"RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC","516":"PC ED 9B QC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","516":"x y"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Nesting",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js index 323ace6220829e..72f2ec6d3aa358 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-not-sel-list.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P H R S T U V W","16":"Q"},C:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"selector list argument of :not()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P H R S T U V W","16":"Q"},C:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD UD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"selector list argument of :not()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js index 56d979c38e1e92..bb57ffb3cada59 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-nth-child-of.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y"},C:{"1":"1 2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"0 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"v w x","2":"J t u JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"0 1 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"w x y","2":"J u v MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js index 477f384f75896e..348b975d027234 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-opacity.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","4":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS3 Opacity",D:true}; +module.exports={A:{A:{"1":"F A B","4":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS3 Opacity",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js index 82936de8b47a3d..3881344954f0e5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-optional-pseudo.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F lC","132":"B C mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"132":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H","132":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:":optional CSS pseudo-class",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F oC","132":"B C pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"132":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H","132":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:":optional CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js index ac0c5aea03a7c7..08ebbd154a3024 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-anchor.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js index 7d02ddc182bdec..e1793011d30ebd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow-overlay.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","2":"C L M G N O P","130":"2 3 4 5 6 7 8 9 AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","16":"J BB K D E F A B C L M","130":"2 3 4 5 6 7 8 9 AB I 3B DC EC"},E:{"1":"J BB K D E F A B bC cC dC eC GC 4B","16":"aC FC","130":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i","2":"F B C lC mC nC oC 4B TC pC 5B","130":"j k l m n o p q r s"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C","16":"FC","130":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J DD ED FD GD UC HD ID","130":"I"},J:{"16":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"130":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS overflow: overlay",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","2":"C L M G N O P","130":"3 4 5 6 7 8 9 AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","16":"J DB K D E F A B C L M","130":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B eC fC gC hC IC 5B","16":"dC HC","130":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i","2":"F B C oC pC qC rC 5B WC sC 6B","130":"j k l m n o p q r s"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C","16":"HC","130":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J GD HD ID JD XC KD LD","130":"I"},J:{"16":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"130":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS overflow: overlay",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js index 68af7ea0a0433c..6a9d1f04d86d2f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overflow.js @@ -1 +1 @@ -module.exports={A:{A:{"388":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"Q H R S T U V W X Y","388":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","260":"BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H","388":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","260":"sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y","388":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","260":"M G fC gC hC HC IC 6B iC","388":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B"},F:{"1":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB","388":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB lC mC nC oC 4B TC pC 5B"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","260":"6C 7C 8C 9C HC IC 6B AD","388":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"388":"CD"},I:{"1":"I","388":"9B J DD ED FD GD UC HD ID"},J:{"388":"D A"},K:{"1":"H","388":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"388":"A B"},O:{"388":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","388":"J JD KD LD MD ND GC OD PD QD RD"},Q:{"388":"VD"},R:{"1":"WD"},S:{"1":"YD","388":"XD"}},B:5,C:"CSS overflow property",D:true}; +module.exports={A:{A:{"388":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"Q H R S T U V W X Y","388":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","260":"CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H","388":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","260":"uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y","388":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","260":"M G iC jC kC JC KC 7B lC","388":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B"},F:{"1":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","388":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB oC pC qC rC 5B WC sC 6B"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","260":"9C AD BD CD JC KC 7B DD","388":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"388":"FD"},I:{"1":"I","388":"AC J GD HD ID JD XC KD LD"},J:{"388":"D A"},K:{"1":"H","388":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"388":"A B"},O:{"388":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","388":"J MD ND OD PD QD IC RD SD TD UD"},Q:{"388":"YD"},R:{"1":"ZD"},S:{"1":"bD","388":"aD"}},B:5,C:"CSS overflow property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js index 34baf07f44b1f0..d3ae4604f946c6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O","516":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB","260":"nB oB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC","1090":"G gC hC HC IC 6B iC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB lC mC nC oC 4B TC pC 5B","260":"cB dB"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C","1090":"8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS overscroll-behavior",D:true}; +module.exports={A:{A:{"2":"K D E F YC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O","516":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB","260":"pB qB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC","1090":"G jC kC JC KC 7B lC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB oC pC qC rC 5B WC sC 6B","260":"eB fB"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD","1090":"BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS overscroll-behavior",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js index b1b1f6f8a3ffdb..4ec19b86f51aa0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-page-break.js @@ -1 +1 @@ -module.exports={A:{A:{"388":"A B","900":"K D E F VC"},B:{"388":"C L M G N O P","900":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"772":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","900":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB YC ZC"},D:{"900":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"772":"A","900":"J BB K D E F B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"16":"F lC","129":"B C mC nC oC 4B TC pC 5B","900":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"900":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"129":"CD"},I:{"900":"9B J I DD ED FD GD UC HD ID"},J:{"900":"D A"},K:{"129":"A B C 4B TC 5B","900":"H"},L:{"900":"I"},M:{"772":"3B"},N:{"388":"A B"},O:{"900":"6B"},P:{"900":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"900":"VD"},R:{"900":"WD"},S:{"772":"YD","900":"XD"}},B:2,C:"CSS page-break properties",D:true}; +module.exports={A:{A:{"388":"A B","900":"K D E F YC"},B:{"388":"C L M G N O P","641":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t","900":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},C:{"772":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","900":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB bC cC"},D:{"641":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t EC FC GC","900":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},E:{"772":"A","900":"J DB K D E F B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"16":"F oC","129":"B C pC qC rC 5B WC sC 6B","641":"d e f g h i j k l m n o p q r s","900":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c"},G:{"900":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"129":"FD"},I:{"641":"I","900":"AC J GD HD ID JD XC KD LD"},J:{"900":"D A"},K:{"129":"A B C 5B WC 6B","641":"H"},L:{"900":"I"},M:{"772":"t"},N:{"388":"A B"},O:{"900":"7B"},P:{"641":"v w x y","900":"J u MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"900":"YD"},R:{"900":"ZD"},S:{"772":"bD","900":"aD"}},B:2,C:"CSS page-break properties",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js index c3c1ef9a594549..56e7cbaa495260 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paged-media.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","132":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P YC ZC","132":"0 1 2 3 4 5 6 7 8 9 CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","132":"F B C lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"16":"CD"},I:{"16":"9B J I DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","16":"A B C 4B TC 5B"},L:{"1":"I"},M:{"132":"3B"},N:{"258":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"132":"XD YD"}},B:5,C:"CSS Paged Media (@page)",D:true}; +module.exports={A:{A:{"2":"K D YC","132":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P bC cC","132":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","132":"F B C oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"16":"FD"},I:{"16":"AC J I GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","16":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"258":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"132":"aD bD"}},B:5,C:"CSS Paged Media (@page)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js index 9bb3e20380f6c9..a6198ae0fd0d79 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-paint-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB"},E:{"2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","194":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:4,C:"CSS Painting API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB"},E:{"2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","194":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:4,C:"CSS Painting API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js index b2fef95663f185..142e89dc529dfd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder-shown.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","292":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","164":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","164":"XD"}},B:5,C:":placeholder-shown CSS pseudo-class",D:true}; +module.exports={A:{A:{"2":"K D E F YC","292":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","164":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","164":"aD"}},B:5,C:":placeholder-shown CSS pseudo-class",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js index 06b3cd53b7d0ee..6fae753d5e8a9f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-placeholder.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","36":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","130":"WC 9B J BB K D E F A B C L M G N O P YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","36":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","36":"BB K D E F A bC cC dC eC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","36":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC","36":"E UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","36":"9B J DD ED FD GD UC HD ID"},J:{"36":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"36":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","36":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:5,C:"::placeholder CSS pseudo-element",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","36":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","130":"ZC AC J DB K D E F A B C L M G N O P bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","36":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","36":"DB K D E F A eC fC gC hC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","36":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC","36":"E XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","36":"AC J GD HD ID JD XC KD LD"},J:{"36":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"36":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","36":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:5,C:"::placeholder CSS pseudo-element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js index c63ac778fb649b..13d86f80385919 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-print-color-adjust.js @@ -1 +1 @@ -module.exports={A:{D:{"2":"J BB K D E F A B C L M G N","33":"0 1 2 3 4 5 6 7 8 9 O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},L:{"33":"I"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC","33":"aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},K:{"2":"A B C 4B TC 5B","33":"H"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB aC FC bC kC","33":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},P:{"33":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},I:{"2":"9B J DD ED FD GD UC","33":"I HD ID"}},B:6,C:"print-color-adjust property",D:undefined}; +module.exports={A:{D:{"2":"J DB K D E F A B C L M G N","33":"0 1 2 3 4 5 6 7 8 9 O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},L:{"33":"I"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC","33":"cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},K:{"2":"A B C 5B WC 6B","33":"H"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB dC HC eC nC","33":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},P:{"33":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},I:{"2":"AC J GD HD ID JD XC","33":"I KD LD"}},B:6,C:"print-color-adjust property",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js index 5c034fff956770..074f47fd89677b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-read-only-write.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC","33":"9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC","132":"J BB K D E bC cC dC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B lC mC nC oC 4B","132":"C G N O P CB t u v TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC","132":"E UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","16":"DD ED","132":"9B J FD GD UC HD ID"},J:{"1":"A","132":"D"},K:{"1":"H","2":"A B 4B","132":"C TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:1,C:"CSS :read-only and :read-write selectors",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC","33":"AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC","132":"J DB K D E eC fC gC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B oC pC qC rC 5B","132":"C G N O P EB u v w WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC","132":"E XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","16":"GD HD","132":"AC J ID JD XC KD LD"},J:{"1":"A","132":"D"},K:{"1":"H","2":"A B 5B","132":"C WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:1,C:"CSS :read-only and :read-write selectors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js index 6fec8dacb8f797..7eb29aab0caed2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rebeccapurple.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC","16":"cC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Rebeccapurple color",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC","16":"fC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Rebeccapurple color",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js index b56600108a74fe..1ac75d4e83b40d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-reflections.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"aC FC","33":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"33":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"33":"9B J I DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"2":"A B C 4B TC 5B","33":"H"},L:{"33":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"33":"6B"},P:{"33":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"33":"VD"},R:{"33":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS Reflections",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"33":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"dC HC","33":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"33":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"33":"AC J I GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"2":"A B C 5B WC 6B","33":"H"},L:{"33":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"33":"7B"},P:{"33":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"33":"YD"},R:{"33":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS Reflections",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js index 895f208acfe8ff..ee756d33d3b8a7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-regions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","420":"A B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","420":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","36":"G N O P","66":"CB t u v w x DB EB FB GB HB IB JB KB LB MB"},E:{"2":"J BB K C L M G aC FC bC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"D E F A B cC dC eC GC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC rC sC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"420":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Regions",D:true}; +module.exports={A:{A:{"2":"K D E F YC","420":"A B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","420":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","36":"G N O P","66":"EB u v w x y FB GB HB IB JB KB LB MB NB OB"},E:{"2":"J DB K C L M G dC HC eC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"D E F A B fC gC hC IC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC uC vC 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"420":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Regions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js index 94a4f4ecadf4cc..442315c9dd5047 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-relative-colors.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"7 8 9 AB I","2":"0 1 2 3 4 5 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"6"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"7 8 9 AB I 3B DC EC","2":"0 1 2 3 4 5 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"6"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m lC mC nC oC 4B TC pC 5B","194":"n o"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Relative colors",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"8 9 AB BB CB I t","2":"0 1 2 3 4 5 6 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"7"},C:{"1":"GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC bC cC"},D:{"1":"8 9 AB BB CB I t EC FC GC","2":"0 1 2 3 4 5 6 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"7"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m oC pC qC rC 5B WC sC 6B","194":"n o"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Relative colors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js index cef3d18aede48e..2576d5e5a601e2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-repeating-gradients.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","33":"J BB K D E F A B C L M G ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F","33":"A B C L M G N O P CB t u v w x DB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","33":"K bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC","33":"C pC","36":"4B TC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","33":"rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B DD ED FD","33":"J GD UC"},J:{"1":"A","2":"D"},K:{"1":"H 5B","2":"A B","33":"C","36":"4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Repeating Gradients",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","33":"J DB K D E F A B C L M G cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F","33":"A B C L M G N O P EB u v w x y FB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","33":"K eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC","33":"C sC","36":"5B WC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","33":"uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC GD HD ID","33":"J JD XC"},J:{"1":"A","2":"D"},K:{"1":"H 6B","2":"A B","33":"C","36":"5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Repeating Gradients",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js index 9fbf021a5e9b60..0171dacc2c47e1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-resize.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"J"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC","132":"5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:2,C:"CSS resize property",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"J"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC","132":"6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:2,C:"CSS resize property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js index 0bf23b49e6d04f..3899a8f1865e96 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-revert-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC"},F:{"1":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB lC mC nC oC 4B TC pC 5B"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"CSS revert value",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC"},F:{"1":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB oC pC qC rC 5B WC sC 6B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"CSS revert value",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js index db945477c70eb2..7098456eec1615 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-rrggbbaa.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","194":"eB fB gB hB iB jB kB AC lB BC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB lC mC nC oC 4B TC pC 5B","194":"RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","194":"JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"#rrggbbaa hex color notation",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","194":"gB hB iB jB kB lB mB BC nB CC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB oC pC qC rC 5B WC sC 6B","194":"TB UB VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","194":"MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"#rrggbbaa hex color notation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js index ae805f698e706d..26e5135179257b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-behavior.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","129":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","450":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B fC","578":"M G gC hC HC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B","129":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","450":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C","578":"8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"129":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"129":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"CSS Scroll-behavior",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","129":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","450":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B iC","578":"M G jC kC JC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B","129":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","450":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD","578":"BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"129":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"129":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"CSS Scroll-behavior",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js index f406b59f64b512..7e9b6d61d22305 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scroll-timeline.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T U V W X Y","194":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T","194":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","322":"U V W"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB lC mC nC oC 4B TC pC 5B","194":"zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"xB yB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS @scroll-timeline",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T U V W X Y","194":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T","194":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","322":"U V W"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB oC pC qC rC 5B WC sC 6B","194":"1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","322":"zB 0B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS @scroll-timeline",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js index 53f33d397df78d..5e81cd19d249c5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-scrollbar.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"K D E F A B VC"},B:{"1":"9 AB I","2":"C L M G N O P","292":"0 1 2 3 4 5 6 7 8 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB YC ZC","3138":"nB"},D:{"1":"9 AB I 3B DC EC","292":"0 1 2 3 4 5 6 7 8 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"16":"J BB aC FC","292":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","292":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC sC","292":"tC","804":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"16":"DD ED","292":"9B J I FD GD UC HD ID"},J:{"292":"D A"},K:{"2":"A B C 4B TC 5B","292":"H"},L:{"292":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"292":"6B"},P:{"292":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"292":"VD"},R:{"292":"WD"},S:{"2":"XD YD"}},B:4,C:"CSS scrollbar styling",D:true}; +module.exports={A:{A:{"132":"K D E F A B YC"},B:{"1":"AB BB CB I t","2":"C L M G N O P","292":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB bC cC","3138":"pB"},D:{"1":"AB BB CB I t EC FC GC","292":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"16":"J DB dC HC","292":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","292":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC vC","292":"wC","804":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"16":"GD HD","292":"AC J I ID JD XC KD LD"},J:{"292":"D A"},K:{"2":"A B C 5B WC 6B","292":"H"},L:{"292":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"292":"7B"},P:{"292":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"292":"YD"},R:{"292":"ZD"},S:{"2":"aD bD"}},B:4,C:"CSS scrollbar styling",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js index 4ea5bf8d513ab0..def4a0523c01b0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","2":"VC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS 2.1 selectors",D:true}; +module.exports={A:{A:{"1":"D E F A B","2":"YC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS 2.1 selectors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js index 96d98cdea840da..13ad48e00bfec3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sel3.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K","132":"D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS3 selectors",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K","132":"D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS3 selectors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js index c8cd7fd366ff38..0705f1879c2a79 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-selection.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"C H TC 5B","16":"A B 4B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:5,C:"::selection CSS pseudo-element",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"C H WC 6B","16":"A B 5B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:5,C:"::selection CSS pseudo-element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js index b36099cc659fb0..b99c49b20381fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-shapes.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB YC ZC","322":"dB eB fB gB hB iB jB kB AC lB BC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB","194":"MB NB OB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC","33":"E F A dC eC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","33":"E uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"CSS Shapes Level 1",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB bC cC","322":"fB gB hB iB jB kB lB mB BC nB CC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB","194":"OB PB QB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC","33":"E F A gC hC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","33":"E xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"CSS Shapes Level 1",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js index 3f0af93b7d2326..e1333246dcc754 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-snappoints.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","6308":"A","6436":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","6436":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB YC ZC","2052":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB","8258":"qB rB sB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC","3108":"F A eC GC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B","8258":"gB hB iB jB kB lB mB nB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC","3108":"vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2052":"XD"}},B:4,C:"CSS Scroll Snap",D:true}; +module.exports={A:{A:{"2":"K D E F YC","6308":"A","6436":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","6436":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB bC cC","2052":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB","8258":"sB tB uB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC","3108":"F A hC IC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B","8258":"iB jB kB lB mB nB oB pB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC","3108":"yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2052":"aD"}},B:4,C:"CSS Scroll Snap",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js index c4063c2a29eb05..0c710496d89b99 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-sticky.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G","1028":"Q H R S T U V W X Y Z","4100":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB YC ZC","194":"EB FB GB HB IB JB","516":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","322":"w x DB EB FB GB HB IB JB KB LB MB NB OB eB fB gB hB","1028":"iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC","33":"E F A B C dC eC GC 4B 5B","2084":"D cC"},F:{"1":"2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB lC mC nC oC 4B TC pC 5B","322":"RB SB TB","1028":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"E uC vC wC xC yC zC 0C 1C 2C","2084":"sC tC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1028":"VD"},R:{"1":"WD"},S:{"1":"YD","516":"XD"}},B:5,C:"CSS position:sticky",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G","1028":"Q H R S T U V W X Y Z","4100":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB bC cC","194":"GB HB IB JB KB LB","516":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","322":"x y FB GB HB IB JB KB LB MB NB OB PB QB gB hB iB jB","1028":"kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC","33":"E F A B C gC hC IC 5B 6B","2084":"D fC"},F:{"1":"4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB oC pC qC rC 5B WC sC 6B","322":"TB UB VB","1028":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"E xC yC zC 0C 1C 2C 3C 4C 5C","2084":"vC wC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1028":"YD"},R:{"1":"ZD"},S:{"1":"bD","516":"aD"}},B:5,C:"CSS position:sticky",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js index 13393f47e9a02b..e8d5137d6dfe74 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-subgrid.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"5 6 7 8 9 AB I","2":"0 1 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"2 3 4"},C:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB YC ZC"},D:{"1":"5 6 7 8 9 AB I 3B DC EC","2":"0 1 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"2 3 4"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i lC mC nC oC 4B TC pC 5B","194":"j k l"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"x","2":"J t u v w JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"CSS Subgrid",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"6 7 8 9 AB BB CB I t","2":"0 1 2 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"3 4 5"},C:{"1":"0 1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB bC cC"},D:{"1":"6 7 8 9 AB BB CB I t EC FC GC","2":"0 1 2 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"3 4 5"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i oC pC qC rC 5B WC sC 6B","194":"j k l"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"y","2":"J u v w x MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"CSS Subgrid",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js index d5989996e10121..46d1a1491e8dc2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-supports-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB YC ZC","66":"t u","260":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB","260":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC","132":"5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"132":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC","132":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS.supports() API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB bC cC","66":"u v","260":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB","260":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC","132":"6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"132":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC","132":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS.supports() API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js index 1de37bcbffa507..807e43e5b667dc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-table.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"K D VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","132":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS Table display",D:true}; +module.exports={A:{A:{"1":"E F A B","2":"K D YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","132":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS Table display",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js index 04793f6738cb6e..69dfd3f172ba00 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-align-last.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","4":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B YC ZC","33":"C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB","322":"NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u lC mC nC oC 4B TC pC 5B","578":"v w x DB EB FB GB HB IB JB KB LB"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:4,C:"CSS3 text-align-last",D:true}; +module.exports={A:{A:{"132":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","4":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B bC cC","33":"C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB","322":"PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v oC pC qC rC 5B WC sC 6B","578":"w x y FB GB HB IB JB KB LB MB NB"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:4,C:"CSS3 text-align-last",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js index 6b1f79527d40f9..c74896cfc7da47 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-box-trim.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC","194":"MC NC jC 8B OC PC QC RC SC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC","194":"MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS text-box-trim & text-box-edge",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC","194":"OC PC mC 9B QC RC SC TC UC VC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC","194":"OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS text-box-trim & text-box-edge",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-indent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-indent.js index 2552037846a2e4..a90f9883e611c3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-indent.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-indent.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"K D E F A B VC"},B:{"132":"C L M G N O P","388":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"9 AB I 3B DC EC XC","132":"0 1 2 3 4 5 6 7 8 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB","388":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"132":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B","388":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"132":"CD"},I:{"132":"9B J DD ED FD GD UC HD ID","388":"I"},J:{"132":"D A"},K:{"132":"A B C 4B TC 5B","388":"H"},L:{"388":"I"},M:{"132":"3B"},N:{"132":"A B"},O:{"388":"6B"},P:{"132":"J","388":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"388":"VD"},R:{"388":"WD"},S:{"132":"XD YD"}},B:4,C:"CSS text-indent",D:true}; +module.exports={A:{A:{"132":"K D E F A B YC"},B:{"132":"C L M G N O P","388":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"AB BB CB I t EC FC GC aC","132":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB","388":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"132":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B","388":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"132":"FD"},I:{"132":"AC J GD HD ID JD XC KD LD","388":"I"},J:{"132":"D A"},K:{"132":"A B C 5B WC 6B","388":"H"},L:{"388":"I"},M:{"132":"t"},N:{"132":"A B"},O:{"388":"7B"},P:{"132":"J","388":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"388":"YD"},R:{"388":"ZD"},S:{"132":"aD bD"}},B:4,C:"CSS text-indent",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js index 336559b4e9a96d..5185dc82f3374c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-justify.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"K D VC","132":"E F A B"},B:{"132":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB YC ZC","1025":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","1602":"gB"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","322":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB lC mC nC oC 4B TC pC 5B","322":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","322":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","322":"H"},L:{"322":"I"},M:{"1025":"3B"},N:{"132":"A B"},O:{"322":"6B"},P:{"2":"J","322":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"322":"VD"},R:{"322":"WD"},S:{"2":"XD","1025":"YD"}},B:4,C:"CSS text-justify",D:true}; +module.exports={A:{A:{"16":"K D YC","132":"E F A B"},B:{"132":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB bC cC","1025":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","1602":"iB"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","322":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB oC pC qC rC 5B WC sC 6B","322":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","322":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","322":"H"},L:{"322":"I"},M:{"1025":"t"},N:{"132":"A B"},O:{"322":"7B"},P:{"2":"J","322":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"322":"YD"},R:{"322":"ZD"},S:{"2":"aD","1025":"bD"}},B:4,C:"CSS text-justify",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js index 72e0c2ed7f41b3..46aa90479b4118 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-orientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB YC ZC","194":"QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC","16":"A","33":"B C L GC 4B 5B fC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS text-orientation",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC","194":"SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC","16":"A","33":"B C L IC 5B 6B iC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS text-orientation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js index 55adb0da8cbe08..5aba05882a461b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-spacing.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","161":"E F A B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","161":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"16":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS Text 4 text-spacing",D:false}; +module.exports={A:{A:{"2":"K D YC","161":"E F A B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","161":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"16":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS Text 4 text-spacing",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js index bb12b26ba44459..9b233e9120ae03 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-text-wrap-balance.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","132":"2 3 4 5 6 7 8 9 AB I"},C:{"1":"9 AB I 3B DC EC XC","2":"0 1 2 3 4 5 6 7 8 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"2":"0 1 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","132":"2 3 4 5 6 7 8 9 AB I 3B DC EC"},E:{"1":"SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h lC mC nC oC 4B TC pC 5B","132":"i j k l m n o p q r s"},G:{"1":"SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","132":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS text-wrap: balance",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","132":"3 4 5 6 7 8 9 AB BB CB I t"},C:{"1":"AB BB CB I t EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"2":"0 1 2 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","132":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC"},E:{"1":"UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h oC pC qC rC 5B WC sC 6B","132":"i j k l m n o p q r s"},G:{"1":"UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","132":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"x y"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS text-wrap: balance",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js index 0e1e19542ba067..bf356f61a56954 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-textshadow.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","260":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"4":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"A","4":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"129":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 Text-shadow",D:true}; +module.exports={A:{A:{"2":"K D E F YC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","260":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"4":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"A","4":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"129":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 Text-shadow",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js index 47e917d4fe63dc..651306f9dd9a97 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-touch-action.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F VC","289":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC","194":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","1025":"eB fB gB hB iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v lC mC nC oC 4B TC pC 5B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC","516":"wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","289":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","194":"XD"}},B:2,C:"CSS touch-action property",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F YC","289":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC","194":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","1025":"gB hB iB jB kB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w oC pC qC rC 5B WC sC 6B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC","516":"zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","289":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","194":"aD"}},B:2,C:"CSS touch-action property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js index 2048fcc2533047..11e7d3bb41cf7d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-transitions.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"BB K D E F A B C L M G","164":"J"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"K bC","164":"J BB aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F lC mC","33":"C","164":"B nC oC 4B TC pC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"sC","164":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"I HD ID","33":"9B J DD ED FD GD UC"},J:{"1":"A","33":"D"},K:{"1":"H 5B","33":"C","164":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS3 Transitions",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"DB K D E F A B C L M G","164":"J"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"K eC","164":"J DB dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F oC pC","33":"C","164":"B qC rC 5B WC sC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"vC","164":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"I KD LD","33":"AC J GD HD ID JD XC"},J:{"1":"A","33":"D"},K:{"1":"H 6B","33":"C","164":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS3 Transitions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js index aa92dc6a5693f3..480ecddbceed06 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unicode-bidi.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","132":"WC 9B J BB K D E F YC ZC","292":"A B C L M G N"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N","548":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"132":"J BB K D E aC FC bC cC dC","548":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"132":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"132":"E FC qC UC rC sC tC uC","548":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"16":"CD"},I:{"1":"I","16":"9B J DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","16":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","16":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:4,C:"CSS unicode-bidi property",D:false}; +module.exports={A:{A:{"132":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","132":"ZC AC J DB K D E F bC cC","292":"A B C L M G N"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N","548":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"132":"J DB K D E dC HC eC fC gC","548":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"132":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"132":"E HC tC XC uC vC wC xC","548":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"16":"FD"},I:{"1":"I","16":"AC J GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","16":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","16":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:4,C:"CSS unicode-bidi property",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js index 45d75c55e0128b..ea843694babb7f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-unset-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS unset value",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS unset value",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js index ce3fcb72f7b88f..04434fa94544d9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-variables.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","260":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","194":"aB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC","260":"eC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B","194":"NB"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC","260":"wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Variables (Custom Properties)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","260":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","194":"cB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC","260":"hC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B","194":"PB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC","260":"zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Variables (Custom Properties)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js index 50a39137864f27..6e0d2cfb6d35cb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-when-else.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"CSS @when / @else conditional rules",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"CSS @when / @else conditional rules",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js index 2e5b3003ee2944..4521ea21f1e2f7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-widows-orphans.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D VC","129":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","129":"F B lC mC nC oC 4B TC pC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:2,C:"CSS widows & orphans",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D YC","129":"E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","129":"F B oC pC qC rC 5B WC sC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:2,C:"CSS widows & orphans",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js index 6de9e902e02cc3..0f1857d09cdb67 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-width-stretch.js @@ -1 +1 @@ -module.exports={A:{D:{"2":"J BB K D E F A B C L M G N O P CB t u","33":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},L:{"33":"I"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC","33":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},M:{"33":"3B"},A:{"2":"K D E F A B VC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},K:{"2":"A B C 4B TC 5B","33":"H"},E:{"2":"J BB K aC FC bC cC kC","33":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},G:{"2":"FC qC UC rC sC","33":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},P:{"2":"J","33":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},I:{"2":"9B J DD ED FD GD UC","33":"I HD ID"}},B:6,C:"width: stretch property",D:undefined}; +module.exports={A:{D:{"2":"J DB K D E F A B C L M G N O P EB u v","33":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},L:{"33":"I"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC","33":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},M:{"33":"t"},A:{"2":"K D E F A B YC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},K:{"2":"A B C 5B WC 6B","33":"H"},E:{"2":"J DB K dC HC eC fC nC","33":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},G:{"2":"HC tC XC uC vC","33":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},P:{"2":"J","33":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},I:{"2":"AC J GD HD ID JD XC","33":"I KD LD"}},B:6,C:"width: stretch property",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js index d4820d2ce44f58..604acfa30cb952 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-writing-mode.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC","322":"OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K","16":"D","33":"E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB","33":"K D E F A bC cC dC eC GC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC","33":"E rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"DD ED FD","33":"9B J GD UC HD ID"},J:{"33":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"36":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","33":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS writing-mode property",D:true}; +module.exports={A:{A:{"132":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC","322":"QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K","16":"D","33":"E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB","33":"K D E F A eC fC gC hC IC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC","33":"E uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"GD HD ID","33":"AC J JD XC KD LD"},J:{"33":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"36":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS writing-mode property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js index 7646a6e9670b0c..6d17ef481e49e8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css-zoom.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D VC","129":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"129":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS zoom",D:true}; +module.exports={A:{A:{"1":"K D YC","129":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"129":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS zoom",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js index a8ad6fcd0528d1..90225912ccac8c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS3 attr() function for all properties",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS3 attr() function for all properties",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js index 86fbffa0d1c0e6..ea2fa30837de36 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-boxsizing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","8":"K D VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"J BB aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"FC qC UC"},H:{"1":"CD"},I:{"1":"J I GD UC HD ID","33":"9B DD ED FD"},J:{"1":"A","33":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS3 Box-sizing",D:true}; +module.exports={A:{A:{"1":"E F A B","8":"K D YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"J DB dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"HC tC XC"},H:{"1":"FD"},I:{"1":"J I JD XC KD LD","33":"AC GD HD ID"},J:{"1":"A","33":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS3 Box-sizing",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js index c124b5636891d6..b6ecafa0189229 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-colors.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","4":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","2":"F","4":"lC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS3 Colors",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","4":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","2":"F","4":"oC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS3 Colors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js index 0ce1cdb6a490d4..84909f97b74705 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-grab.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"C hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:2,C:"CSS grab & grabbing cursors",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"C jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:2,C:"CSS grab & grabbing cursors",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js index 7ac4543e2ed2c5..0f9fdfb708405c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors-newer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"WC 9B J BB K D E F A B C L M G N O P CB t u v w YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"J BB K D E aC FC bC cC dC"},F:{"1":"C x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC","33":"G N O P CB t u v w"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"ZC AC J DB K D E F A B C L M G N O P EB u v w x bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"J DB K D E dC HC eC fC gC"},F:{"1":"C y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC","33":"G N O P EB u v w x"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:2,C:"CSS3 Cursors: zoom-in & zoom-out",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js index f3254317b3d13b..84d662102a1306 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-cursors.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","4":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","4":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"F B C lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:2,C:"CSS3 Cursors (original values)",D:true}; +module.exports={A:{A:{"1":"F A B","132":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","4":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","4":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","260":"F B C oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:2,C:"CSS3 Cursors (original values)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js index 24d1bae095aace..5a39aa6a89e3ea 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/css3-tabsize.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z","164":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t","132":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC","132":"D E F A B C L cC dC eC GC 4B 5B"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC mC nC","132":"G N O P CB t u v w x DB EB FB GB","164":"B C oC 4B TC pC 5B"},G:{"1":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC","132":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"164":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","132":"HD ID"},J:{"132":"D A"},K:{"1":"H","2":"A","164":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"164":"XD YD"}},B:4,C:"CSS3 tab-size",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z","164":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u","132":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC","132":"D E F A B C L fC gC hC IC 5B 6B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC pC qC","132":"G N O P EB u v w x y FB GB HB IB","164":"B C rC 5B WC sC 6B"},G:{"1":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC","132":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"164":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","132":"KD LD"},J:{"132":"D A"},K:{"1":"H","2":"A","164":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"164":"aD bD"}},B:4,C:"CSS3 tab-size",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js index f42c35067714bb..b8f9605db23375 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/currentcolor.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS currentColor value",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS currentColor value",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js index b88e5017b5f454..25f25b8f041f55 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elements.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","8":"A B"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","8":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","66":"w x DB EB FB GB HB","72":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","66":"FB GB HB IB JB KB"},E:{"2":"J BB aC FC bC","8":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","2":"F B C rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","66":"G N O P CB"},G:{"2":"FC qC UC rC sC","8":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"ID","2":"9B J I DD ED FD GD UC HD"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J JD KD LD MD ND GC OD PD","2":"t u v w x QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"2":"YD","72":"XD"}},B:7,C:"Custom Elements (deprecated V0 spec)",D:true}; +module.exports={A:{A:{"2":"K D E F YC","8":"A B"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","8":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","66":"x y FB GB HB IB JB","72":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","66":"HB IB JB KB LB MB"},E:{"2":"J DB dC HC eC","8":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","2":"F B C tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","66":"G N O P EB"},G:{"2":"HC tC XC uC vC","8":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"LD","2":"AC J I GD HD ID JD XC KD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J MD ND OD PD QD IC RD SD","2":"u v w x y TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"2":"bD","72":"aD"}},B:7,C:"Custom Elements (deprecated V0 spec)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js index f07da28373f4ba..8b075c4ed11d63 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/custom-elementsv1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB YC ZC","8":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","456":"cB dB eB fB gB hB iB jB kB","712":"AC lB BC mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","8":"eB fB","132":"gB hB iB jB kB AC lB BC mB nB oB pB qB"},E:{"2":"J BB K D aC FC bC cC dC","8":"E F A eC","132":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB lC mC nC oC 4B TC pC 5B","132":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC","132":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","132":"JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","8":"XD"}},B:1,C:"Custom Elements (V1)",D:true}; +module.exports={A:{A:{"2":"K D E F YC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB bC cC","8":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","456":"eB fB gB hB iB jB kB lB mB","712":"BC nB CC oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","8":"gB hB","132":"iB jB kB lB mB BC nB CC oB pB qB rB sB"},E:{"2":"J DB K D dC HC eC fC gC","8":"E F A hC","132":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB oC pC qC rC 5B WC sC 6B","132":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C","132":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","132":"MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","8":"aD"}},B:1,C:"Custom Elements (V1)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js index 2718c4e12e2f22..95c2d027f19489 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/customevent.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","132":"K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J","16":"BB K D E L M","388":"F A B C"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB K","388":"bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F lC mC nC oC","132":"B 4B TC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"qC","16":"FC UC","388":"rC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"DD ED FD","388":"9B J GD UC"},J:{"1":"A","388":"D"},K:{"1":"C H 5B","2":"A","132":"B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"CustomEvent",D:true}; +module.exports={A:{A:{"2":"K D E YC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","132":"K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J","16":"DB K D E L M","388":"F A B C"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB K","388":"eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F oC pC qC rC","132":"B 5B WC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"tC","16":"HC XC","388":"uC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"GD HD ID","388":"AC J JD XC"},J:{"1":"A","388":"D"},K:{"1":"C H 6B","2":"A","132":"B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"CustomEvent",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js index 4da5f4aa4adc97..91608644e66da0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datalist.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G","1284":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB I 3B DC EC XC","8":"WC 9B YC ZC","516":"l m n o p q r s","4612":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J BB K D E F A B C L M G N O P CB","132":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB K D E F A B C aC FC bC cC dC eC GC 4B"},F:{"1":"F B C oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"8":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C","2049":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I ID","8":"9B J DD ED FD GD UC HD"},J:{"1":"A","8":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:1,C:"Datalist element",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G","1284":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB I t EC FC GC aC","8":"ZC AC bC cC","516":"l m n o p q r s","4612":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J DB K D E F A B C L M G N O P EB","132":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB K D E F A B C dC HC eC fC gC hC IC 5B"},F:{"1":"F B C qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"8":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C","2049":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I LD","8":"AC J GD HD ID JD XC KD"},J:{"1":"A","8":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:1,C:"Datalist element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js index d21fe624584847..2b01919cfa255b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dataset.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","4":"K D E F A VC"},B:{"1":"C L M G N","129":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","4":"WC 9B J BB YC ZC","129":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"XB YB ZB aB bB cB dB eB fB gB","4":"J BB K","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"4":"J BB aC FC","129":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"C KB LB MB NB OB PB QB RB SB TB 4B TC pC 5B","4":"F B lC mC nC oC","129":"G N O P CB t u v w x DB EB FB GB HB IB JB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"4":"FC qC UC","129":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"4":"CD"},I:{"4":"DD ED FD","129":"9B J I GD UC HD ID"},J:{"129":"D A"},K:{"1":"C 4B TC 5B","4":"A B","129":"H"},L:{"129":"I"},M:{"129":"3B"},N:{"1":"B","4":"A"},O:{"129":"6B"},P:{"129":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"129":"VD"},R:{"129":"WD"},S:{"1":"XD","129":"YD"}},B:1,C:"dataset & data-* attributes",D:true}; +module.exports={A:{A:{"1":"B","4":"K D E F A YC"},B:{"1":"C L M G N","129":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","4":"ZC AC J DB bC cC","129":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"ZB aB bB cB dB eB fB gB hB iB","4":"J DB K","129":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"4":"J DB dC HC","129":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"C MB NB OB PB QB RB SB TB UB VB 5B WC sC 6B","4":"F B oC pC qC rC","129":"G N O P EB u v w x y FB GB HB IB JB KB LB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"4":"HC tC XC","129":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"4":"FD"},I:{"4":"GD HD ID","129":"AC J I JD XC KD LD"},J:{"129":"D A"},K:{"1":"C 5B WC 6B","4":"A B","129":"H"},L:{"129":"I"},M:{"129":"t"},N:{"1":"B","4":"A"},O:{"129":"7B"},P:{"129":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"129":"YD"},R:{"129":"ZD"},S:{"1":"aD","129":"bD"}},B:1,C:"dataset & data-* attributes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js index 3ebe87eb99d703..67f2b04ee39a3b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/datauri.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","132":"E","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L G N O P","772":"M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"260":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Data URIs",D:true}; +module.exports={A:{A:{"2":"K D YC","132":"E","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L G N O P","772":"M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"260":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Data URIs",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js index c656e042e41416..61697c7d0f35f0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"VC","132":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC","260":"eB fB gB hB","772":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w","260":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB","772":"x DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC","132":"K D E F A bC cC dC eC","260":"B GC 4B"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B C lC mC nC oC 4B TC pC","132":"5B","260":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","772":"G N O P CB t u v w x"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC","132":"E sC tC uC vC wC xC"},H:{"132":"CD"},I:{"1":"I","16":"9B DD ED FD","132":"J GD UC","772":"HD ID"},J:{"132":"D A"},K:{"1":"H","16":"A B C 4B TC","132":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","260":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","132":"XD"}},B:6,C:"Date.prototype.toLocaleDateString",D:true}; +module.exports={A:{A:{"16":"YC","132":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC","260":"gB hB iB jB","772":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x","260":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB","772":"y FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC","132":"K D E F A eC fC gC hC","260":"B IC 5B"},F:{"1":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B C oC pC qC rC 5B WC sC","132":"6B","260":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","772":"G N O P EB u v w x y"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC","132":"E vC wC xC yC zC 0C"},H:{"132":"FD"},I:{"1":"I","16":"AC GD HD ID","132":"J JD XC","772":"KD LD"},J:{"132":"D A"},K:{"1":"H","16":"A B C 5B WC","132":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","260":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","132":"aD"}},B:6,C:"Date.prototype.toLocaleDateString",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js index c2d27ec9e8074c..558f32ab5b63c8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/declarative-shadow-dom.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y"},C:{"1":"I 3B DC EC XC","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T","66":"U V W X Y"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B lC mC nC oC 4B TC pC 5B"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Declarative Shadow DOM",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z","132":"a b c d e f g h i j k l m n o p q r s z"},C:{"1":"CB I t EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T","66":"U V W X Y","132":"Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B oC pC qC rC 5B WC sC 6B","132":"3B 4B Q H R DC S T U V W X Y Z a b c d e f"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"w x y","2":"J MD ND OD PD QD IC RD SD TD UD","16":"VD","132":"u v 8B 9B WD XD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:1,C:"Declarative Shadow DOM",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js index 3fadb58b92939e..0472a250904abd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/decorators.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Decorators",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Decorators",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js index 6ebd9aada58b29..95c0c1a1271d3c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/details.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B VC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC","8":"9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC","194":"ZB aB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J BB K D E F A B","257":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB","769":"C L M G N O P"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB aC FC bC","257":"K D E F A cC dC eC","1025":"B GC 4B"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"C 4B TC pC 5B","8":"F B lC mC nC oC"},G:{"1":"E sC tC uC vC wC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC rC","1025":"xC yC zC"},H:{"8":"CD"},I:{"1":"J I GD UC HD ID","8":"9B DD ED FD"},J:{"1":"A","8":"D"},K:{"1":"H","8":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Details & Summary elements",D:true}; +module.exports={A:{A:{"2":"F A B YC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC","8":"AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC","194":"bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J DB K D E F A B","257":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB","769":"C L M G N O P"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB dC HC eC","257":"K D E F A fC gC hC","1025":"B IC 5B"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"C 5B WC sC 6B","8":"F B oC pC qC rC"},G:{"1":"E vC wC xC yC zC 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC uC","1025":"0C 1C 2C"},H:{"8":"FD"},I:{"1":"J I JD XC KD LD","8":"AC GD HD ID"},J:{"1":"A","8":"D"},K:{"1":"H","8":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Details & Summary elements",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js index e2c989ba1c4af6..ded5f2c83bab5d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/deviceorientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"C L M G N O P","4":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B YC","4":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"J BB ZC"},D:{"2":"J BB K","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","4":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"FC qC","4":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"DD ED FD","4":"9B J I GD UC HD ID"},J:{"2":"D","4":"A"},K:{"1":"C 5B","2":"A B 4B TC","4":"H"},L:{"4":"I"},M:{"4":"3B"},N:{"1":"B","2":"A"},O:{"4":"6B"},P:{"4":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"4":"VD"},R:{"4":"WD"},S:{"4":"XD YD"}},B:4,C:"DeviceOrientation & DeviceMotion events",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"C L M G N O P","4":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC bC","4":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"J DB cC"},D:{"2":"J DB K","4":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","4":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"HC tC","4":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"GD HD ID","4":"AC J I JD XC KD LD"},J:{"2":"D","4":"A"},K:{"1":"C 6B","2":"A B 5B WC","4":"H"},L:{"4":"I"},M:{"4":"t"},N:{"1":"B","2":"A"},O:{"4":"7B"},P:{"4":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"4":"YD"},R:{"4":"ZD"},S:{"4":"aD bD"}},B:4,C:"DeviceOrientation & DeviceMotion events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js index 461aea2a45ca33..523cf25fbc4202 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/devicepixelratio.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"C H 5B","2":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Window.devicePixelRatio",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"C H 6B","2":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Window.devicePixelRatio",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js index d2ef6325dcf9c1..8dc2feea8ae007 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dialog.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC","194":"fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","1218":"H R CC S T U V W X Y Z a b c d e f g"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB","322":"KB LB MB NB OB"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P lC mC nC oC 4B TC pC 5B","578":"CB t u v w"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:1,C:"Dialog element",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC","194":"hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","1218":"H R DC S T U V W X Y Z a b c d e f g"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB","322":"MB NB OB PB QB"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P oC pC qC rC 5B WC sC 6B","578":"EB u v w x"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:1,C:"Dialog element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js index 7a5124cb47f0f7..e413d7bd9db4d8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dispatchevent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","16":"VC","129":"F A","130":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","129":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"EventTarget.dispatchEvent",D:true}; +module.exports={A:{A:{"1":"B","16":"YC","129":"F A","130":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","129":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"EventTarget.dispatchEvent",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js index 4849bb212b29bc..524edd0bdb5f38 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dnssec.js @@ -1 +1 @@ -module.exports={A:{A:{"132":"K D E F A B VC"},B:{"132":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"132":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"132":"0 1 2 3 4 5 6 7 8 9 J BB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","388":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB"},E:{"132":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"132":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"132":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"132":"CD"},I:{"132":"9B J I DD ED FD GD UC HD ID"},J:{"132":"D A"},K:{"132":"A B C H 4B TC 5B"},L:{"132":"I"},M:{"132":"3B"},N:{"132":"A B"},O:{"132":"6B"},P:{"132":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"132":"VD"},R:{"132":"WD"},S:{"132":"XD YD"}},B:6,C:"DNSSEC and DANE",D:true}; +module.exports={A:{A:{"132":"K D E F A B YC"},B:{"132":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"132":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"132":"0 1 2 3 4 5 6 7 8 9 J DB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","388":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB"},E:{"132":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"132":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"132":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"132":"FD"},I:{"132":"AC J I GD HD ID JD XC KD LD"},J:{"132":"D A"},K:{"132":"A B C H 5B WC 6B"},L:{"132":"I"},M:{"132":"t"},N:{"132":"A B"},O:{"132":"7B"},P:{"132":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"132":"YD"},R:{"132":"ZD"},S:{"132":"aD bD"}},B:6,C:"DNSSEC and DANE",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js index ae7539ee717269..ce11ecb1f39604 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/do-not-track.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","164":"F A","260":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E YC ZC","516":"F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v"},E:{"1":"K A B C bC eC GC 4B","2":"J BB L M G aC FC 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","1028":"D E F cC dC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC"},G:{"1":"vC wC xC yC zC 0C 1C","2":"FC qC UC rC sC 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","1028":"E tC uC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"16":"D","1028":"A"},K:{"1":"H 5B","16":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"164":"A","260":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:7,C:"Do Not Track API",D:true}; +module.exports={A:{A:{"2":"K D E YC","164":"F A","260":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E bC cC","516":"F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w"},E:{"1":"K A B C eC hC IC 5B","2":"J DB L M G dC HC 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","1028":"D E F fC gC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC"},G:{"1":"yC zC 0C 1C 2C 3C 4C","2":"HC tC XC uC vC 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","1028":"E wC xC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"16":"D","1028":"A"},K:{"1":"H 6B","16":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"164":"A","260":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:7,C:"Do Not Track API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js index a92dfc99f6b737..ab4e4599699d25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-currentscript.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB"},E:{"1":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC dC"},F:{"1":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"document.currentScript",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB"},E:{"1":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC gC"},F:{"1":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"document.currentScript",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js index 03af66a24d2b58..50bf06af63c308 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","16":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:7,C:"document.evaluate & XPath",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","16":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:7,C:"document.evaluate & XPath",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js index 951f7db99f8131..80ce4f837d84ed 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-execcommand.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC bC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","16":"F lC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC","16":"UC rC sC"},H:{"2":"CD"},I:{"1":"I GD UC HD ID","2":"9B J DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:7,C:"Document.execCommand()",D:true}; +module.exports={A:{A:{"1":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC eC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","16":"F oC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC","16":"XC uC vC"},H:{"2":"FD"},I:{"1":"I JD XC KD LD","2":"AC J GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:7,C:"Document.execCommand()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js index afb0dd14437ece..b66864bee55f6d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T","132":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T","132":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB lC mC nC oC 4B TC pC 5B","132":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","132":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"132":"WD"},S:{"2":"XD YD"}},B:7,C:"Document Policy",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T","132":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T","132":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB oC pC qC rC 5B WC sC 6B","132":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","132":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"132":"ZD"},S:{"2":"aD bD"}},B:7,C:"Document Policy",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js index 0990a1d81c4c51..fc37522d3e3e3a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/document-scrollingelement.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"document.scrollingElement",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"document.scrollingElement",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js index 99f002de537f74..d7ee91c4d81c58 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/documenthead.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F lC mC nC oC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"document.head",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F oC pC qC rC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"document.head",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js index c0e0fafb0f5069..6b5e7c4d0a042e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-manip-convenience.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","194":"eB fB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB lC mC nC oC 4B TC pC 5B","194":"SB"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"DOM manipulation convenience methods",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","194":"gB hB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB oC pC qC rC 5B WC sC 6B","194":"UB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"DOM manipulation convenience methods",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js index 88d29ef9397bac..00e9660cfaa7f4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dom-range.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Document Object Model Range",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Document Object Model Range",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js index 6b0ebc35a2bc4d..ff403c9997682b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/domcontentloaded.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"DOMContentLoaded",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"DOMContentLoaded",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js index 2bbea7d299be0e..12edab46114041 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dommatrix.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","132":"A B"},B:{"132":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC","1028":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2564":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","3076":"bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB"},D:{"16":"J BB K D","132":"F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB","388":"E","1028":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"16":"J aC FC","132":"BB K D E F A bC cC dC eC GC","1028":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","1028":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"16":"FC qC UC","132":"E rC sC tC uC vC wC xC yC","1028":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"132":"J GD UC HD ID","292":"9B DD ED FD","1028":"I"},J:{"16":"D","132":"A"},K:{"2":"A B C 4B TC 5B","1028":"H"},L:{"1028":"I"},M:{"1028":"3B"},N:{"132":"A B"},O:{"1028":"6B"},P:{"132":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1028":"VD"},R:{"1028":"WD"},S:{"1028":"YD","2564":"XD"}},B:4,C:"DOMMatrix",D:true}; +module.exports={A:{A:{"2":"K D E F YC","132":"A B"},B:{"132":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC","1028":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2564":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","3076":"dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB"},D:{"16":"J DB K D","132":"F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB","388":"E","1028":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"16":"J dC HC","132":"DB K D E F A eC fC gC hC IC","1028":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","1028":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"16":"HC tC XC","132":"E uC vC wC xC yC zC 0C 1C","1028":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"132":"J JD XC KD LD","292":"AC GD HD ID","1028":"I"},J:{"16":"D","132":"A"},K:{"2":"A B C 5B WC 6B","1028":"H"},L:{"1028":"I"},M:{"1028":"t"},N:{"132":"A B"},O:{"1028":"7B"},P:{"132":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1028":"YD"},R:{"1028":"ZD"},S:{"1028":"bD","2564":"aD"}},B:4,C:"DOMMatrix",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js index 3301c9f739322b..aa11dc0551fac4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/download.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Download attribute",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Download attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js index d43c81d0a35f8a..dc46d7e95533f4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/dragndrop.js @@ -1 +1 @@ -module.exports={A:{A:{"644":"K D E F VC","772":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","8":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","8":"F B lC mC nC oC 4B TC pC"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","1025":"I"},J:{"2":"D A"},K:{"1":"5B","8":"A B C 4B TC","1025":"H"},L:{"1025":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"1025":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:1,C:"Drag and Drop",D:true}; +module.exports={A:{A:{"644":"K D E F YC","772":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","8":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","8":"F B oC pC qC rC 5B WC sC"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","1025":"I"},J:{"2":"D A"},K:{"1":"6B","8":"A B C 5B WC","1025":"H"},L:{"1025":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"1025":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:1,C:"Drag and Drop",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js index 6be2dbc44a17d4..4bf08b4ec3a178 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-closest.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Element.closest()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Element.closest()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js index 105100d68b33df..48cf8bd888d46d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-from-point.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","16":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","16":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","16":"F lC mC nC oC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"C H 5B","16":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"document.elementFromPoint()",D:true}; +module.exports={A:{A:{"1":"K D E F A B","16":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","16":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","16":"F oC pC qC rC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"C H 6B","16":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"document.elementFromPoint()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js index a735b2052b45e4..bbfb59a5f810d2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/element-scroll-methods.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC","132":"A B C L GC 4B 5B fC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB lC mC nC oC 4B TC pC 5B"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC","132":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC","132":"A B C L IC 5B 6B iC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB oC pC qC rC 5B WC sC 6B"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC","132":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js index d6d42096c7dca9..002de9aceaf9df 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eme.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB","132":"NB OB PB QB RB SB TB"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC","164":"D E F A B dC eC GC 4B"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u lC mC nC oC 4B TC pC 5B","132":"v w x DB EB FB GB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Encrypted Media Extensions",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB","132":"PB QB RB SB TB UB VB"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC","164":"D E F A B gC hC IC 5B"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v oC pC qC rC 5B WC sC 6B","132":"w x y FB GB HB IB"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Encrypted Media Extensions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js index afe6cb1b4192ff..02e715fb64d442 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eot.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","2":"VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"EOT - Embedded OpenType fonts",D:true}; +module.exports={A:{A:{"1":"K D E F A B","2":"YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"EOT - Embedded OpenType fonts",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js index fc2dea2827276d..2f522ae048a6cf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es5.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D VC","260":"F","1026":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","4":"WC 9B YC ZC","132":"J BB K D E F A B C L M G N O P CB t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J BB K D E F A B C L M G N O P","132":"CB t u v"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","4":"J BB aC FC bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","4":"F B C lC mC nC oC 4B TC pC","132":"5B"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","4":"FC qC UC rC"},H:{"132":"CD"},I:{"1":"I HD ID","4":"9B DD ED FD","132":"GD UC","900":"J"},J:{"1":"A","4":"D"},K:{"1":"H","4":"A B C 4B TC","132":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ECMAScript 5",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D YC","260":"F","1026":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","4":"ZC AC bC cC","132":"J DB K D E F A B C L M G N O P EB u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J DB K D E F A B C L M G N O P","132":"EB u v w"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","4":"J DB dC HC eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","4":"F B C oC pC qC rC 5B WC sC","132":"6B"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","4":"HC tC XC uC"},H:{"132":"FD"},I:{"1":"I KD LD","4":"AC GD HD ID","132":"JD XC","900":"J"},J:{"1":"A","4":"D"},K:{"1":"H","4":"A B C 5B WC","132":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ECMAScript 5",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js index c496bacf640f53..74845185c0bf03 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-class.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","132":"UB VB WB XB YB ZB aB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB lC mC nC oC 4B TC pC 5B","132":"HB IB JB KB LB MB NB"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ES6 classes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","132":"WB XB YB ZB aB bB cB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB oC pC qC rC 5B WC sC 6B","132":"JB KB LB MB NB OB PB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ES6 classes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js index b70ec925731227..c629ae2843319d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-generators.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ES6 Generators",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ES6 Generators",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js index 512fe34a267bde..9a8a14b894c0bd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB YC ZC","194":"qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"JavaScript modules: dynamic import()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB bC cC","194":"sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"JavaScript modules: dynamic import()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js index ca11b48f45d6c2..164bed15f0565d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-module.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","2049":"N O P","2242":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB YC ZC","322":"gB hB iB jB kB AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC","194":"lB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC","1540":"GC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB lC mC nC oC 4B TC pC 5B","194":"ZB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC","1540":"yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"JavaScript modules via script tag",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","2049":"N O P","2242":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB bC cC","322":"iB jB kB lB mB BC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC","194":"nB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC","1540":"IC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB oC pC qC rC 5B WC sC 6B","194":"bB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C","1540":"1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"JavaScript modules via script tag",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js index 0a7a9852b4ed4c..f713e81278f78b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-number.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G YC ZC","132":"N O P CB t u v w x","260":"DB EB FB GB HB IB","516":"JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P","1028":"CB t u v w x DB EB FB GB HB IB JB KB LB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","1028":"G N O P CB t"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD","1028":"GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ES6 Number",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G bC cC","132":"N O P EB u v w x y","260":"FB GB HB IB JB KB","516":"LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P","1028":"EB u v w x y FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","1028":"G N O P EB u"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID","1028":"JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ES6 Number",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js index 6fa956d1a0e46a..b080d770a6f49d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6-string-includes.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"String.prototype.includes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"String.prototype.includes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js index 62677ed3101f46..34915dcd63155b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/es6.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","388":"B"},B:{"257":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M","769":"G N O P"},C:{"2":"WC 9B J BB YC ZC","4":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","257":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t","4":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","257":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC","4":"E F dC eC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","4":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB","257":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC","4":"E tC uC vC wC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","4":"HD ID","257":"I"},J:{"2":"D","4":"A"},K:{"2":"A B C 4B TC 5B","257":"H"},L:{"257":"I"},M:{"257":"3B"},N:{"2":"A","388":"B"},O:{"257":"6B"},P:{"4":"J","257":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"257":"VD"},R:{"257":"WD"},S:{"4":"XD","257":"YD"}},B:6,C:"ECMAScript 2015 (ES6)",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","388":"B"},B:{"257":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M","769":"G N O P"},C:{"2":"ZC AC J DB bC cC","4":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","257":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u","4":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","257":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC","4":"E F gC hC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","4":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB","257":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC","4":"E wC xC yC zC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","4":"KD LD","257":"I"},J:{"2":"D","4":"A"},K:{"2":"A B C 5B WC 6B","257":"H"},L:{"257":"I"},M:{"257":"t"},N:{"2":"A","388":"B"},O:{"257":"7B"},P:{"4":"J","257":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"257":"YD"},R:{"257":"ZD"},S:{"4":"aD","257":"bD"}},B:6,C:"ECMAScript 2015 (ES6)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js index 8ed4b3a00b6f3f..9cd1a6898d80d0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/eventsource.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","4":"F lC mC nC oC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"C H 4B TC 5B","4":"A B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Server-sent events",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","4":"F oC pC qC rC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"C H 5B WC 6B","4":"A B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Server-sent events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js index cec42a64036e03..ee09074d134d69 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/extended-system-fonts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js index ebc775c1f38bf0..308118b2a22b26 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/feature-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"Q H R S T U V W","2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB YC ZC","260":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"yB zB 0B 1B 2B Q H R S T U V W","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC","132":"lB BC mB nB oB pB qB rB sB tB uB vB wB xB","1025":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B aC FC bC cC dC eC GC","772":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB lC mC nC oC 4B TC pC 5B","132":"ZB aB bB cB dB eB fB gB hB iB jB kB lB","1025":"zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC","772":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","1025":"H"},L:{"1025":"I"},M:{"260":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD","132":"MD ND GC"},Q:{"132":"VD"},R:{"1025":"WD"},S:{"2":"XD","260":"YD"}},B:7,C:"Feature Policy",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"Q H R S T U V W","2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB bC cC","260":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0B 1B 2B 3B 4B Q H R S T U V W","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC","132":"nB CC oB pB qB rB sB tB uB vB wB xB yB zB","1025":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B dC HC eC fC gC hC IC","772":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB oC pC qC rC 5B WC sC 6B","132":"bB cB dB eB fB gB hB iB jB kB lB mB nB","1025":"1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C","772":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","1025":"H"},L:{"1025":"I"},M:{"260":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD","132":"PD QD IC"},Q:{"132":"YD"},R:{"1025":"ZD"},S:{"2":"aD","260":"bD"}},B:7,C:"Feature Policy",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js index 96482716071434..50713c2ebbf410 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fetch.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB YC ZC","1025":"RB","1218":"MB NB OB PB QB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","260":"SB","772":"TB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB lC mC nC oC 4B TC pC 5B","260":"FB","772":"GB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Fetch",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB bC cC","1025":"TB","1218":"OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","260":"UB","772":"VB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB oC pC qC rC 5B WC sC 6B","260":"HB","772":"IB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Fetch",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js index 8ab55d4edb00c9..c7f7c613e7bcf8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fieldset-disabled.js @@ -1 +1 @@ -module.exports={A:{A:{"16":"VC","132":"E F","388":"K D A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G","16":"N O P CB"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","16":"F lC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"388":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A","260":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"disabled attribute of the fieldset element",D:true}; +module.exports={A:{A:{"16":"YC","132":"E F","388":"K D A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G","16":"N O P EB"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","16":"F oC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"388":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A","260":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"disabled attribute of the fieldset element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js index ff56cad18203e9..62f2dd60552522 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fileapi.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","260":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB","260":"L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB","388":"K D E F A B C"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","260":"K D E F cC dC eC","388":"bC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B lC mC nC oC","260":"C G N O P CB t u v w x 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","260":"E sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I ID","2":"DD ED FD","260":"HD","388":"9B J GD UC"},J:{"260":"A","388":"D"},K:{"1":"H","2":"A B","260":"C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A","260":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"File API",D:true}; +module.exports={A:{A:{"2":"K D E F YC","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","260":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB","260":"L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB","388":"K D E F A B C"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","260":"K D E F fC gC hC","388":"eC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B oC pC qC rC","260":"C G N O P EB u v w x y 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","260":"E vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I LD","2":"GD HD ID","260":"KD","388":"AC J JD XC"},J:{"260":"A","388":"D"},K:{"1":"H","2":"A B","260":"C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A","260":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"File API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js index 321e8f8e2b8f36..964a3ba88d27d9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereader.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F B lC mC nC oC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"C H 4B TC 5B","2":"A B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"FileReader API",D:true}; +module.exports={A:{A:{"2":"K D E F YC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F B oC pC qC rC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"C H 5B WC 6B","2":"A B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"FileReader API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js index af2a7711139ea4..bce3137f18be82 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filereadersync.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F lC mC","16":"B nC oC 4B TC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"C H TC 5B","2":"A","16":"B 4B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"FileReaderSync",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F oC pC","16":"B qC rC 5B WC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"C H WC 6B","2":"A","16":"B 5B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"FileReaderSync",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js index 8274eb2eb590cc..dfe50cfe922589 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/filesystem.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D","33":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","36":"E F A B C"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D","33":"A"},K:{"2":"A B C 4B TC 5B","33":"H"},L:{"33":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"33":"6B"},P:{"2":"J","33":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"33":"WD"},S:{"2":"XD YD"}},B:7,C:"Filesystem & FileWriter API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D","33":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","36":"E F A B C"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D","33":"A"},K:{"2":"A B C 5B WC 6B","33":"H"},L:{"33":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"33":"7B"},P:{"2":"J","33":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"33":"ZD"},S:{"2":"aD bD"}},B:7,C:"Filesystem & FileWriter API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js index e3e7bf4ffb5f83..2b1d50d123bbd7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flac.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","16":"WB XB YB","388":"ZB aB bB cB dB eB fB gB hB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","516":"B C 4B 5B"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"DD ED FD","16":"9B J GD UC HD ID"},J:{"1":"A","2":"D"},K:{"1":"H 5B","16":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","129":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"FLAC audio format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","16":"YB ZB aB","388":"bB cB dB eB fB gB hB iB jB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","516":"B C 5B 6B"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"GD HD ID","16":"AC J JD XC KD LD"},J:{"1":"A","2":"D"},K:{"1":"H 6B","16":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","129":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"FLAC audio format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js index f0e4be8cddb11e..09c40e5e78bedf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox-gap.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC"},F:{"1":"uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB lC mC nC oC 4B TC pC 5B"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"gap property for Flexbox",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC"},F:{"1":"wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB oC pC qC rC 5B WC sC 6B"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"gap property for Flexbox",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js index f8381dec129ccc..468af6a0abb680 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flexbox.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","1028":"B","1316":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","164":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC","516":"v w x DB EB FB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"u v w x DB EB FB GB","164":"J BB K D E F A B C L M G N O P CB t"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"D E cC dC","164":"J BB K aC FC bC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B C lC mC nC oC 4B TC pC","33":"G N"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E tC uC","164":"FC qC UC rC sC"},H:{"1":"CD"},I:{"1":"I HD ID","164":"9B J DD ED FD GD UC"},J:{"1":"A","164":"D"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","292":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS Flexible Box Layout Module",D:true}; +module.exports={A:{A:{"2":"K D E F YC","1028":"B","1316":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","164":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC","516":"w x y FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"v w x y FB GB HB IB","164":"J DB K D E F A B C L M G N O P EB u"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"D E fC gC","164":"J DB K dC HC eC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B C oC pC qC rC 5B WC sC","33":"G N"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E wC xC","164":"HC tC XC uC vC"},H:{"1":"FD"},I:{"1":"I KD LD","164":"AC J GD HD ID JD XC"},J:{"1":"A","164":"D"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","292":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS Flexible Box Layout Module",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js index d35632b35ae8a7..593544f8e84dc8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/flow-root.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB lC mC nC oC 4B TC pC 5B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"display: flow-root",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB oC pC qC rC 5B WC sC 6B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"display: flow-root",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js index 5e924a4eb1dfb5..c317e3995b04e8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/focusin-focusout-events.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","2":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F lC mC nC oC","16":"B 4B TC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"J I GD UC HD ID","2":"DD ED FD","16":"9B"},J:{"1":"D A"},K:{"1":"C H 5B","2":"A","16":"B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"focusin & focusout events",D:true}; +module.exports={A:{A:{"1":"K D E F A B","2":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F oC pC qC rC","16":"B 5B WC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"J I JD XC KD LD","2":"GD HD ID","16":"AC"},J:{"1":"D A"},K:{"1":"C H 6B","2":"A","16":"B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"focusin & focusout events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js index 82669bcae99f37..70d5f69f8442b9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-family-system-ui.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB YC ZC","132":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","260":"fB gB hB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC","16":"F","132":"A eC GC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC","132":"vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"132":"XD YD"}},B:5,C:"system-ui value for font-family",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC","132":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","260":"hB iB jB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC","16":"F","132":"A hC IC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC","132":"yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"132":"aD bD"}},B:5,C:"system-ui value for font-family",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js index 3c3674475da042..72530b7bd05e3a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-feature.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB","164":"J BB K D E F A B C L M"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G","33":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","292":"N O P CB t"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"D E F aC FC cC dC","4":"J BB K bC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E tC uC vC","4":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","33":"HD ID"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","33":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS font-feature-settings",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB","164":"J DB K D E F A B C L M"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G","33":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","292":"N O P EB u"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"D E F dC HC fC gC","4":"J DB K eC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E wC xC yC","4":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","33":"KD LD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS font-feature-settings",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js index 6bb33fb419457b..98557a498c3f22 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-kerning.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w YC ZC","194":"x DB EB FB GB HB IB JB KB LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB","33":"HB IB JB KB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC","33":"D E F dC"},F:{"1":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G lC mC nC oC 4B TC pC 5B","33":"N O P CB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","33":"E uC vC wC xC yC zC 0C"},H:{"2":"CD"},I:{"1":"I ID","2":"9B J DD ED FD GD UC","33":"HD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 font-kerning",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x bC cC","194":"y FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB","33":"JB KB LB MB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC","33":"D E F gC"},F:{"1":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G oC pC qC rC 5B WC sC 6B","33":"N O P EB"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","33":"E xC yC zC 0C 1C 2C 3C"},H:{"2":"FD"},I:{"1":"I LD","2":"AC J GD HD ID JD XC","33":"KD"},J:{"2":"D","33":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 font-kerning",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js index 11650bf8801c81..00528a11be27cf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-loading.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB YC ZC","194":"NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS Font Loading",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB bC cC","194":"PB QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS Font Loading",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js index baa2b157749888..1a4204c0b3b50a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-size-adjust.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","194":"5 6 7 8 9 AB I","962":"0 1 2 3 4 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"6 7 8 9 AB I 3B DC EC XC","2":"WC","516":"0 1 2 3 4 5 b c d e f g h i j k l m n o p q r s y z","772":"9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","194":"8 9 AB I 3B DC EC","962":"0 1 2 3 4 5 6 7 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"1":"8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC","772":"MC NC jC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB lC mC nC oC 4B TC pC 5B","194":"l m n o p q r s","962":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k"},G:{"1":"8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC","772":"MC NC BD"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"194":"VD"},R:{"2":"WD"},S:{"2":"XD","516":"YD"}},B:2,C:"CSS font-size-adjust",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","194":"6 7 8 9 AB BB CB I t","962":"0 1 2 3 4 5 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"7 8 9 AB BB CB I t EC FC GC aC","2":"ZC","516":"0 1 2 3 4 5 6 b c d e f g h i j k l m n o p q r s z","772":"AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","194":"9 AB BB CB I t EC FC GC","962":"0 1 2 3 4 5 6 7 8 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC","772":"OC PC mC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB oC pC qC rC 5B WC sC 6B","194":"l m n o p q r s","962":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k"},G:{"1":"9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC","772":"OC PC ED"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"194":"YD"},R:{"2":"ZD"},S:{"2":"aD","516":"bD"}},B:2,C:"CSS font-size-adjust",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js index ccf8787d2fef5d..2a1f8cc0d4eb9e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-smooth.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","676":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC","804":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J","676":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"aC FC","676":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","676":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"804":"XD YD"}},B:7,C:"CSS font-smooth",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","676":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC","804":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J","676":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"dC HC","676":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","676":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"804":"aD bD"}},B:7,C:"CSS font-smooth",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js index 77ec1df91e2828..9d4b1ad528c92b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-unicode-range.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","4":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","4":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC","194":"OB PB QB RB SB TB UB VB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","4":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","4":"G N O P CB t u v"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","4":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","4":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","4":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"4":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","4":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Font unicode-range subsetting",D:true}; +module.exports={A:{A:{"2":"K D E YC","4":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","4":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC","194":"QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","4":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","4":"G N O P EB u v w"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","4":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","4":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","4":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"4":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","4":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Font unicode-range subsetting",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js index c32260caf08e0b..70f91aba11a7a0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-alternates.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","130":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I","130":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","130":"J BB K D E F A B C L M G N O P CB t u v w","322":"x DB EB FB GB HB IB JB KB LB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC","2":"J BB K D E F A B C L M G","130":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"D E F aC FC cC dC","130":"J BB K bC"},F:{"1":"h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","130":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC tC uC vC","130":"qC UC rC sC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","130":"HD ID"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"130":"6B"},P:{"1":"v w x","130":"J t u JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"130":"VD"},R:{"130":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS font-variant-alternates",D:true}; +module.exports={A:{A:{"2":"K D E F YC","130":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t","130":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","130":"J DB K D E F A B C L M G N O P EB u v w x","322":"y FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G","130":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"D E F dC HC fC gC","130":"J DB K eC"},F:{"1":"h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","130":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC wC xC yC","130":"tC XC uC vC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","130":"KD LD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"130":"7B"},P:{"1":"w x y","130":"J u v MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"130":"YD"},R:{"130":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS font-variant-alternates",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js index d7b49046a4f682..685aef79dcd3e4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/font-variant-numeric.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB lC mC nC oC 4B TC pC 5B"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS font-variant-numeric",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB oC pC qC rC 5B WC sC 6B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS font-variant-numeric",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js index 47e7bf8395ceab..fbee67bc4dee7a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fontface.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","132":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","2":"F lC"},G:{"1":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","260":"FC qC"},H:{"2":"CD"},I:{"1":"J I GD UC HD ID","2":"DD","4":"9B ED FD"},J:{"1":"A","4":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"@font-face Web fonts",D:true}; +module.exports={A:{A:{"1":"F A B","132":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","2":"F oC"},G:{"1":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","260":"HC tC"},H:{"2":"FD"},I:{"1":"J I JD XC KD LD","2":"GD","4":"AC HD ID"},J:{"1":"A","4":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"@font-face Web fonts",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js index b1781b250bcd4a..b85c55fb868710 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Form attribute",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Form attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js index 4cfd67645dc63f..8da86fc6d3a987 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-submit-attributes.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","2":"F lC","16":"mC nC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"J I GD UC HD ID","2":"DD ED FD","16":"9B"},J:{"1":"A","2":"D"},K:{"1":"B C H 4B TC 5B","16":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Attributes for form submission",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","2":"F oC","16":"pC qC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"J I JD XC KD LD","2":"GD HD ID","16":"AC"},J:{"1":"A","2":"D"},K:{"1":"B C H 5B WC 6B","16":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Attributes for form submission",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js index 19571d25ab2f70..edb855e335c82a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/form-validation.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","132":"BB K D E F A bC cC dC eC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","2":"F lC"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC","132":"E qC UC rC sC tC uC vC wC xC"},H:{"516":"CD"},I:{"1":"I ID","2":"9B DD ED FD","132":"J GD UC HD"},J:{"1":"A","132":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"260":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","132":"XD"}},B:1,C:"Form validation",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","132":"DB K D E F A eC fC gC hC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","2":"F oC"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC","132":"E tC XC uC vC wC xC yC zC 0C"},H:{"516":"FD"},I:{"1":"I LD","2":"AC GD HD ID","132":"J JD XC KD"},J:{"1":"A","132":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"260":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","132":"aD"}},B:1,C:"Form validation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js index db8ef62123fcd6..030f672bc2f399 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/forms.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","4":"A B","8":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","4":"C L M G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},E:{"4":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"aC FC"},F:{"1":"F B C eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","4":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"2":"FC","4":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","4":"HD ID"},J:{"2":"D","4":"A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"4":"3B"},N:{"4":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","4":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"4":"XD YD"}},B:1,C:"HTML5 form features",D:false}; +module.exports={A:{A:{"2":"YC","4":"A B","8":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","4":"C L M G"},C:{"4":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},E:{"4":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"dC HC"},F:{"1":"F B C gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","4":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},G:{"2":"HC","4":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","4":"KD LD"},J:{"2":"D","4":"A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"4":"t"},N:{"4":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","4":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"4":"aD bD"}},B:1,C:"HTML5 form features",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js index b1fa5688836c92..dcb117fd9e0838 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/fullscreen.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","548":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","516":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F YC ZC","676":"A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","1700":"ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M","676":"G N O P CB","804":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","548":"IC 6B iC 7B JC KC LC","676":"bC","804":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B C lC mC nC oC 4B TC pC","804":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C","2052":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D","292":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A","548":"B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","804":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Fullscreen API",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","548":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","516":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F bC cC","676":"A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","1700":"bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M","676":"G N O P EB","804":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","548":"KC 7B lC 8B LC MC NC","676":"eC","804":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B C oC pC qC rC 5B WC sC","804":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C","2052":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D","292":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A","548":"B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","804":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Fullscreen API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js index eb944285031e9a..55cbc296c9e347 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gamepad.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t","33":"u v w x"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"Gamepad API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u","33":"v w x y"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"Gamepad API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js index 003aa7a9a5ccaa..45bd5e92ca8429 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/geolocation.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K D E"},B:{"1":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB YC ZC","8":"WC 9B","129":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","4":"J","129":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J aC FC","129":"A"},F:{"1":"B C N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB oC 4B TC pC 5B","2":"F G lC","8":"mC nC","129":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E FC qC UC rC sC tC uC vC wC","129":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J DD ED FD GD UC HD ID","129":"I"},J:{"1":"D A"},K:{"1":"B C 4B TC 5B","8":"A","129":"H"},L:{"129":"I"},M:{"129":"3B"},N:{"1":"A B"},O:{"129":"6B"},P:{"1":"J","129":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"129":"VD"},R:{"129":"WD"},S:{"1":"XD","129":"YD"}},B:2,C:"Geolocation",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K D E"},B:{"1":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB bC cC","8":"ZC AC","129":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","4":"J","129":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J dC HC","129":"A"},F:{"1":"B C N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB rC 5B WC sC 6B","2":"F G oC","8":"pC qC","129":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E HC tC XC uC vC wC xC yC zC","129":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J GD HD ID JD XC KD LD","129":"I"},J:{"1":"D A"},K:{"1":"B C 5B WC 6B","8":"A","129":"H"},L:{"129":"I"},M:{"129":"t"},N:{"1":"A B"},O:{"129":"7B"},P:{"1":"J","129":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"129":"YD"},R:{"129":"ZD"},S:{"1":"aD","129":"bD"}},B:2,C:"Geolocation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js index f40cc38661fd39..85fe0d3de8d4c3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getboundingclientrect.js @@ -1 +1 @@ -module.exports={A:{A:{"644":"K D VC","2049":"F A B","2692":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2049":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC","260":"J BB K D E F A B","1156":"9B","1284":"YC","1796":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","16":"F lC","132":"mC nC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","132":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"2049":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Element.getBoundingClientRect()",D:true}; +module.exports={A:{A:{"644":"K D YC","2049":"F A B","2692":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2049":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC","260":"J DB K D E F A B","1156":"AC","1284":"bC","1796":"cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","16":"F oC","132":"pC qC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","132":"A"},L:{"1":"I"},M:{"1":"t"},N:{"2049":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Element.getBoundingClientRect()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js index 03836f35ecd8c4..d45cb9f0437896 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getcomputedstyle.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC","132":"9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","260":"J BB K D E F A"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","260":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","260":"F lC mC nC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","260":"FC qC UC"},H:{"260":"CD"},I:{"1":"J I GD UC HD ID","260":"9B DD ED FD"},J:{"1":"A","260":"D"},K:{"1":"B C H 4B TC 5B","260":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"getComputedStyle",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC","132":"AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","260":"J DB K D E F A"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","260":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","260":"F oC pC qC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","260":"HC tC XC"},H:{"260":"FD"},I:{"1":"J I JD XC KD LD","260":"AC GD HD ID"},J:{"1":"A","260":"D"},K:{"1":"B C H 5B WC 6B","260":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"getComputedStyle",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js index 5b35e287c5028c..405a6fe0b6ea33 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getelementsbyclassname.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","8":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"getElementsByClassName",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","8":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"getElementsByClassName",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js index c9aba1b34b8ce0..6d6cfc426d216e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/getrandomvalues.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","33":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A","33":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"crypto.getRandomValues()",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","33":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A","33":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"crypto.getRandomValues()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js index e7e2772b1c41ef..c60ebefca7a020 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/gyroscope.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","194":"kB AC lB BC mB nB oB pB qB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:4,C:"Gyroscope",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","194":"mB BC nB CC oB pB qB rB sB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:4,C:"Gyroscope",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js index 7ba842dfd6b099..064bd600f15942 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hardwareconcurrency.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"2":"J BB K D aC FC bC cC dC","129":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","194":"E F A eC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC rC sC tC","129":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","194":"E uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"navigator.hardwareConcurrency",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"J DB K D dC HC eC fC gC","129":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","194":"E F A hC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC uC vC wC","129":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","194":"E xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"navigator.hardwareConcurrency",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js index bc8d32e1c91d19..b8db1ff1eccd53 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hashchange.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","8":"K D VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","8":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","8":"F lC mC nC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"2":"CD"},I:{"1":"9B J I ED FD GD UC HD ID","2":"DD"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","8":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Hashchange event",D:true}; +module.exports={A:{A:{"1":"E F A B","8":"K D YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","8":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","8":"F oC pC qC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"2":"FD"},I:{"1":"AC J I HD ID JD XC KD LD","2":"GD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","8":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Hashchange event",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js index 295e8a162857fc..2233cca7b0c900 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/heif.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","130":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC BD","130":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"HEIF/HEIC image format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","130":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C ED","130":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"HEIF/HEIC image format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js index 2e0fb9896250cc..60f4873913d569 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hevc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"132":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC","4098":"8","8258":"9 AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","2052":"0 1 2 3 4 5 6 7 8 9 q r s y z AB I 3B DC EC"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","516":"B C 4B 5B"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c lC mC nC oC 4B TC pC 5B","2052":"d e f g h i j k l m n o p q r s"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","2052":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","258":"H"},L:{"2052":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"u v w x","2":"J","258":"t JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:6,C:"HEVC/H.265 video format",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"132":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC","4098":"9","8258":"AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p","2052":"0 1 2 3 4 5 6 7 8 9 q r s z AB BB CB I t EC FC GC"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","516":"B C 5B 6B"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c oC pC qC rC 5B WC sC 6B","2052":"d e f g h i j k l m n o p q r s"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","2052":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","258":"H"},L:{"2052":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"v w x y","2":"J","258":"u MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:6,C:"HEVC/H.265 video format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js index dc31ce5339dd6e..ff2ae319fef609 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/hidden.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F B lC mC nC oC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"J I GD UC HD ID","2":"9B DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"C H 4B TC 5B","2":"A B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"hidden attribute",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F B oC pC qC rC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"J I JD XC KD LD","2":"AC GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"C H 5B WC 6B","2":"A B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"hidden attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js index 80b09b4a63117f..01ce35d8ad0c85 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/high-resolution-time.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","2":"WC 9B J BB K D E F A B C L M YC ZC","129":"hB iB jB","769":"kB AC","1281":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB","33":"t u v w"},E:{"1":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC dC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"High Resolution Time API",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","2":"ZC AC J DB K D E F A B C L M bC cC","129":"jB kB lB","769":"mB BC","1281":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB","33":"u v w x"},E:{"1":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC gC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"High Resolution Time API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js index 52cb39f607c691..70e16423b74cad 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/history.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","4":"BB bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s TC pC 5B","2":"F B lC mC nC oC 4B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC","4":"UC"},H:{"2":"CD"},I:{"1":"I ED FD UC HD ID","2":"9B J DD GD"},J:{"1":"D A"},K:{"1":"C H 4B TC 5B","2":"A B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Session history management",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","4":"DB eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s WC sC 6B","2":"F B oC pC qC rC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC","4":"XC"},H:{"2":"FD"},I:{"1":"I HD ID XC KD LD","2":"AC J GD JD"},J:{"1":"D A"},K:{"1":"C H 5B WC 6B","2":"A B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Session history management",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js index 82bb963e0f60cd..87af53c5bbc8fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html-media-capture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC rC","129":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD","257":"ED FD"},J:{"1":"A","16":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"516":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:2,C:"HTML Media Capture",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC uC","129":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD","257":"HD ID"},J:{"1":"A","16":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"516":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:2,C:"HTML Media Capture",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js index d4b2a56ba08a90..88bce26fda6b01 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/html5semantic.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC","132":"9B YC ZC","260":"J BB K D E F A B C L M G N O P CB t"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB","260":"K D E F A B C L M G N O P CB t u v w x DB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"J aC FC","260":"BB K bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","132":"F B lC mC nC oC","260":"C 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"FC","260":"qC UC rC sC"},H:{"132":"CD"},I:{"1":"I HD ID","132":"DD","260":"9B J ED FD GD UC"},J:{"260":"D A"},K:{"1":"H","132":"A","260":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"260":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"HTML5 semantic elements",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC","132":"AC bC cC","260":"J DB K D E F A B C L M G N O P EB u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB","260":"K D E F A B C L M G N O P EB u v w x y FB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"J dC HC","260":"DB K eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","132":"F B oC pC qC rC","260":"C 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"HC","260":"tC XC uC vC"},H:{"132":"FD"},I:{"1":"I KD LD","132":"GD","260":"AC J HD ID JD XC"},J:{"260":"D A"},K:{"1":"H","132":"A","260":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"260":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"HTML5 semantic elements",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js index 991f46fbf0043b..9aaa06407ac54d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http-live-streaming.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"HTTP Live Streaming (HLS)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"HTTP Live Streaming (HLS)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js index bea0839ffde2b1..1ac75971e4ae7b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"C L M G N O P","513":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC","513":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"TB UB VB WB XB YB ZB aB bB cB","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","513":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC","260":"F A eC GC"},F:{"1":"GB HB IB JB KB LB MB NB OB PB","2":"F B C G N O P CB t u v w x DB EB FB lC mC nC oC 4B TC pC 5B","513":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","513":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","513":"H"},L:{"513":"I"},M:{"513":"3B"},N:{"2":"A B"},O:{"513":"6B"},P:{"1":"J","513":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"513":"VD"},R:{"513":"WD"},S:{"1":"XD","513":"YD"}},B:6,C:"HTTP/2 protocol",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"C L M G N O P","513":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC","513":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"VB WB XB YB ZB aB bB cB dB eB","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","513":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC","260":"F A hC IC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB","2":"F B C G N O P EB u v w x y FB GB HB oC pC qC rC 5B WC sC 6B","513":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","513":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","513":"H"},L:{"513":"I"},M:{"513":"t"},N:{"2":"A B"},O:{"513":"7B"},P:{"1":"J","513":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"513":"YD"},R:{"513":"ZD"},S:{"1":"aD","513":"bD"}},B:6,C:"HTTP/2 protocol",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js index 8e4849687478c7..c61754be37e721 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/http3.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","322":"Q H R S T","578":"U V"},C:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB YC ZC","194":"wB xB yB zB 0B 1B 2B Q H R CC S T U V W"},D:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B","322":"Q H R S T","578":"U V"},E:{"2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B fC","2052":"MC NC jC 8B OC PC QC RC SC kC","2116":"7B JC KC LC","3140":"M G gC hC HC IC 6B iC"},F:{"1":"yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB lC mC nC oC 4B TC pC 5B","578":"xB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C","2052":"MC NC BD 8B OC PC QC RC SC","2116":"7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:6,C:"HTTP/3 protocol",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","322":"Q H R S T","578":"U V"},C:{"1":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB bC cC","194":"yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W"},D:{"1":"0 1 2 3 4 5 6 7 8 9 W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","322":"Q H R S T","578":"U V"},E:{"2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B iC","2052":"OC PC mC 9B QC RC SC TC UC VC nC","2116":"8B LC MC NC","3140":"M G jC kC JC KC 7B lC"},F:{"1":"0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB oC pC qC rC 5B WC sC 6B","578":"zB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","2052":"OC PC ED 9B QC RC SC TC UC VC","2116":"AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:6,C:"HTTP/3 protocol",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js index df9fa0e138652d..8b26d82c3d518d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-sandbox.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N YC ZC","4":"O P CB t u v w x DB EB FB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC"},H:{"2":"CD"},I:{"1":"9B J I ED FD GD UC HD ID","2":"DD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"sandbox attribute for iframes",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N bC cC","4":"O P EB u v w x y FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC"},H:{"2":"FD"},I:{"1":"AC J I HD ID JD XC KD LD","2":"GD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"sandbox attribute for iframes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js index c0204fdac37ebb..258a3828f51f93 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-seamless.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","66":"t u v w x DB EB"},E:{"2":"J BB K E F A B C L M G aC FC bC cC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","130":"D dC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","130":"tC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"seamless attribute for iframes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","66":"u v w x y FB GB"},E:{"2":"J DB K E F A B C L M G dC HC eC fC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","130":"D gC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","130":"wC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"seamless attribute for iframes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js index f2c9b8cd4e918d..34d49bcd27256e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/iframe-srcdoc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC","8":"9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L","8":"M G N O P CB"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC","8":"J BB bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B lC mC nC oC","8":"C 4B TC pC 5B"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC","8":"qC UC rC"},H:{"2":"CD"},I:{"1":"I HD ID","8":"9B J DD ED FD GD UC"},J:{"1":"A","8":"D"},K:{"1":"H","2":"A B","8":"C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"srcdoc attribute for iframes",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC","8":"AC J DB K D E F A B C L M G N O P EB u v w x y bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L","8":"M G N O P EB"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC","8":"J DB eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B oC pC qC rC","8":"C 5B WC sC 6B"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC","8":"tC XC uC"},H:{"2":"FD"},I:{"1":"I KD LD","8":"AC J GD HD ID JD XC"},J:{"1":"A","8":"D"},K:{"1":"H","2":"A B","8":"C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"srcdoc attribute for iframes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js index c97a2320fd78a7..5e6ee46ca4c7fb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imagecapture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB YC ZC","194":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","322":"fB gB hB iB jB kB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB lC mC nC oC 4B TC pC 5B","322":"SB TB UB VB WB XB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"194":"XD YD"}},B:5,C:"ImageCapture API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB bC cC","194":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","322":"hB iB jB kB lB mB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB oC pC qC rC 5B WC sC 6B","322":"UB VB WB XB YB ZB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"194":"aD bD"}},B:5,C:"ImageCapture API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js index 2de7f09ce62c97..edc7d2f550d561 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ime.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","161":"B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","161":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A","161":"B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Input Method Editor API",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","161":"B"},B:{"2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","161":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A","161":"B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Input Method Editor API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js index d5a349ced4e04c..d6a62db6bb07aa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"naturalWidth & naturalHeight image properties",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"naturalWidth & naturalHeight image properties",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js index 6989c446976aea..e43551d12b18d9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/import-maps.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","194":"Q H R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k YC ZC","322":"l m n o p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB","194":"yB zB 0B 1B 2B Q H R S T U V W X"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B","194":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Import maps",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","194":"Q H R S T U V W X"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k bC cC","322":"l m n o p q"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB","194":"0B 1B 2B 3B 4B Q H R S T U V W X"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B","194":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD UD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Import maps",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js index 5bd88e6cced520..771cede67e42f7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/imports.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","8":"A B"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","8":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB YC ZC","8":"0 1 2 3 4 5 6 7 8 9 IB JB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","72":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","66":"IB JB KB LB MB","72":"NB"},E:{"2":"J BB aC FC bC","8":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","2":"F B C G N rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","66":"O P CB t u","72":"v"},G:{"2":"FC qC UC rC sC","8":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"8":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J JD KD LD MD ND GC OD PD","2":"t u v w x QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"1":"XD","8":"YD"}},B:5,C:"HTML Imports",D:true}; +module.exports={A:{A:{"2":"K D E F YC","8":"A B"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","8":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB bC cC","8":"0 1 2 3 4 5 6 7 8 9 KB LB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","72":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","66":"KB LB MB NB OB","72":"PB"},E:{"2":"J DB dC HC eC","8":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","2":"F B C G N tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","66":"O P EB u v","72":"w"},G:{"2":"HC tC XC uC vC","8":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"8":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J MD ND OD PD QD IC RD SD","2":"u v w x y TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"1":"aD","8":"bD"}},B:5,C:"HTML Imports",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js index 44954fe05154be..8f6bdcd5a61937 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","16":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B","16":"YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"indeterminate checkbox",D:true}; +module.exports={A:{A:{"1":"K D E F A B","16":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC","16":"bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"indeterminate checkbox",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js index 1a1a01f699da15..a609d6c655a71d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"A B C L M G","36":"J BB K D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"A","8":"J BB K D E F","33":"w","36":"B C L M G N O P CB t u v"},E:{"1":"A B C L M G GC 4B 5B fC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB K D aC FC bC cC","260":"E F dC eC","516":"gC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC mC","8":"B C nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC rC sC tC","260":"E uC vC wC","516":"8C"},H:{"2":"CD"},I:{"1":"I HD ID","8":"9B J DD ED FD GD UC"},J:{"1":"A","8":"D"},K:{"1":"H","2":"A","8":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"IndexedDB",D:true}; +module.exports={A:{A:{"2":"K D E F YC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"A B C L M G","36":"J DB K D E F"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"A","8":"J DB K D E F","33":"x","36":"B C L M G N O P EB u v w"},E:{"1":"A B C L M G IC 5B 6B iC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB K D dC HC eC fC","260":"E F gC hC","516":"jC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC pC","8":"B C qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC uC vC wC","260":"E xC yC zC","516":"BD"},H:{"2":"FD"},I:{"1":"I KD LD","8":"AC J GD HD ID JD XC"},J:{"1":"A","8":"D"},K:{"1":"H","2":"A","8":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"IndexedDB",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js index d3c8e7872e3976..cfe490cc080b10 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/indexeddb2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB YC ZC","132":"WB XB YB","260":"ZB aB bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","132":"aB bB cB dB","260":"eB fB gB hB iB jB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B","132":"NB OB PB QB","260":"RB SB TB UB VB WB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC","16":"xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","260":"JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","260":"XD"}},B:2,C:"IndexedDB 2.0",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB bC cC","132":"YB ZB aB","260":"bB cB dB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","132":"cB dB eB fB","260":"gB hB iB jB kB lB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B","132":"PB QB RB SB","260":"TB UB VB WB XB YB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC","16":"0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","260":"MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","260":"aD"}},B:2,C:"IndexedDB 2.0",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js index 0acbad9d6b28c6..c038f3cb5fbe37 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/inline-block.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","4":"VC","132":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","36":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS inline-block",D:true}; +module.exports={A:{A:{"1":"E F A B","4":"YC","132":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","36":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS inline-block",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js index 040ddaf031a97f..e6aaa9f902607c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/innertext.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","16":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"HTMLElement.innerText",D:true}; +module.exports={A:{A:{"1":"K D E F A B","16":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"HTMLElement.innerText",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js index 4b184184c6e5bd..9472e3f3bc0072 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-autocomplete-onoff.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A VC","132":"B"},B:{"132":"C L M G N O P","260":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB YC ZC","516":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"O P CB t u v w x DB EB","2":"J BB K D E F A B C L M G N","132":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB","260":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K bC cC","2":"J BB aC FC","2052":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC","1025":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1025":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2052":"A B"},O:{"1025":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"260":"VD"},R:{"1":"WD"},S:{"516":"XD YD"}},B:1,C:"autocomplete attribute: on & off values",D:true}; +module.exports={A:{A:{"1":"K D E F A YC","132":"B"},B:{"132":"C L M G N O P","260":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB bC cC","516":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"O P EB u v w x y FB GB","2":"J DB K D E F A B C L M G N","132":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB","260":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K eC fC","2":"J DB dC HC","2052":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC","1025":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1025":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2052":"A B"},O:{"1025":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"260":"YD"},R:{"1":"ZD"},S:{"516":"aD bD"}},B:1,C:"autocomplete attribute: on & off values",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js index 87ade0958e6b96..3509069ea34023 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-color.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B"},F:{"1":"B C O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F G N lC mC nC oC"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C","129":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"Color input type",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B"},F:{"1":"B C O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F G N oC pC qC rC"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C","129":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"Color input type",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js index 25b3404b63ca29..8af7442f8a5183 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-datetime.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC","1090":"fB gB hB iB","2052":"jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b","4100":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB","2052":"t u v w x"},E:{"2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC","4100":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC","260":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B DD ED FD","514":"J GD UC"},J:{"1":"A","2":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"4100":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2052":"XD YD"}},B:1,C:"Date and time input types",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC","1090":"hB iB jB kB","2052":"lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b","4100":"0 1 2 3 4 5 6 7 8 9 c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB","2052":"u v w x y"},E:{"2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC","4100":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC","260":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC GD HD ID","514":"J JD XC"},J:{"1":"A","2":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"4100":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2052":"aD bD"}},B:1,C:"Date and time input types",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js index edecf9235d8000..b2ab5da0b5fb8c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-email-tel-url.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","132":"DD ED FD"},J:{"1":"A","132":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Email, telephone & URL input types",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","132":"GD HD ID"},J:{"1":"A","132":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Email, telephone & URL input types",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js index 55e02be7b1d6d0..270ecb57238479 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-event.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","2561":"A B","2692":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2561":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC","1537":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB ZC","1796":"9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M","1025":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB","1537":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB K aC FC","1025":"D E F A B C cC dC eC GC 4B","1537":"bC","4097":"L 5B"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","16":"F B C lC mC nC oC 4B TC","260":"pC","1025":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","1537":"G N O P CB t u"},G:{"1":"4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC","1025":"E uC vC wC xC yC zC 0C 1C","1537":"rC sC tC","4097":"2C 3C"},H:{"2":"CD"},I:{"16":"DD ED","1025":"I ID","1537":"9B J FD GD UC HD"},J:{"1025":"A","1537":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2561":"A B"},O:{"1":"6B"},P:{"1025":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","1537":"XD"}},B:1,C:"input event",D:true}; +module.exports={A:{A:{"2":"K D E YC","2561":"A B","2692":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2561":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC","1537":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB cC","1796":"AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M","1025":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB","1537":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB K dC HC","1025":"D E F A B C fC gC hC IC 5B","1537":"eC","4097":"L 6B"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","16":"F B C oC pC qC rC 5B WC","260":"sC","1025":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","1537":"G N O P EB u v"},G:{"1":"7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC","1025":"E xC yC zC 0C 1C 2C 3C 4C","1537":"uC vC wC","4097":"5C 6C"},H:{"2":"FD"},I:{"16":"GD HD","1025":"I LD","1537":"AC J ID JD XC KD"},J:{"1025":"A","1537":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2561":"A B"},O:{"1":"7B"},P:{"1025":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","1537":"aD"}},B:1,C:"input event",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js index a4d3bbc234257f..5ad7726e310024 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-accept.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J","16":"BB K D E u v w x DB","132":"F A B C L M G N O P CB t"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","132":"K D E F A B cC dC eC GC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"2":"sC tC","132":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","514":"FC qC UC rC"},H:{"2":"CD"},I:{"2":"DD ED FD","260":"9B J GD UC","514":"I HD ID"},J:{"132":"A","260":"D"},K:{"2":"A B C 4B TC 5B","514":"H"},L:{"260":"I"},M:{"2":"3B"},N:{"514":"A","1028":"B"},O:{"2":"6B"},P:{"260":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"260":"VD"},R:{"260":"WD"},S:{"1":"XD YD"}},B:1,C:"accept attribute for file input",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J","16":"DB K D E v w x y FB","132":"F A B C L M G N O P EB u"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","132":"K D E F A B fC gC hC IC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"2":"vC wC","132":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","514":"HC tC XC uC"},H:{"2":"FD"},I:{"2":"GD HD ID","260":"AC J JD XC","514":"I KD LD"},J:{"132":"A","260":"D"},K:{"2":"A B C 5B WC 6B","514":"H"},L:{"260":"I"},M:{"2":"t"},N:{"514":"A","1028":"B"},O:{"2":"7B"},P:{"260":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"260":"YD"},R:{"260":"ZD"},S:{"1":"aD bD"}},B:1,C:"accept attribute for file input",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js index 576f926f70a52e..5cf7c0f80048fa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-directory.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Directory selection from file input",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Directory selection from file input",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js index de91b89bec42ad..ebff171f24eef7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-file-multiple.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","2":"F lC mC nC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"130":"CD"},I:{"130":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","130":"A B C 4B TC 5B"},L:{"132":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"130":"6B"},P:{"130":"J","132":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"132":"VD"},R:{"132":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"Multiple file selection",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","2":"F oC pC qC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"130":"FD"},I:{"130":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","130":"A B C 5B WC 6B"},L:{"132":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"130":"7B"},P:{"130":"J","132":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"132":"YD"},R:{"132":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"Multiple file selection",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js index 1ee9b3e42a2c8a..5048fb10078efa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-inputmode.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N YC ZC","4":"O P CB t","194":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","66":"iB jB kB AC lB BC mB nB oB pB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB lC mC nC oC 4B TC pC 5B","66":"VB WB XB YB ZB aB bB cB dB eB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"194":"XD YD"}},B:1,C:"inputmode attribute",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N bC cC","4":"O P EB u","194":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","66":"kB lB mB BC nB CC oB pB qB rB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB oC pC qC rC 5B WC sC 6B","66":"XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"194":"aD bD"}},B:1,C:"inputmode attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js index eb8671708f4b9b..267dcb78b1f595 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-minlength.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"Minimum length attribute for input fields",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"Minimum length attribute for input fields",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js index 3d8dd89bf0fd71..52633aea6234b9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-number.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L","1025":"M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC","513":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"388":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B DD ED FD","388":"J I GD UC HD ID"},J:{"2":"D","388":"A"},K:{"1":"A B C 4B TC 5B","388":"H"},L:{"388":"I"},M:{"641":"3B"},N:{"388":"A B"},O:{"388":"6B"},P:{"388":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"388":"VD"},R:{"388":"WD"},S:{"513":"XD YD"}},B:1,C:"Number input type",D:true}; +module.exports={A:{A:{"2":"K D E F YC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L","1025":"M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC","513":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"388":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC GD HD ID","388":"J I JD XC KD LD"},J:{"2":"D","388":"A"},K:{"1":"A B C 5B WC 6B","388":"H"},L:{"388":"I"},M:{"641":"t"},N:{"388":"A B"},O:{"388":"7B"},P:{"388":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"388":"YD"},R:{"388":"ZD"},S:{"513":"aD bD"}},B:1,C:"Number input type",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js index f780c3e77d7460..fcf3554b52be35 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-pattern.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB","388":"K D E F A bC cC dC eC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC","388":"E rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I ID","2":"9B J DD ED FD GD UC HD"},J:{"1":"A","2":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Pattern attribute for input fields",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB","388":"K D E F A eC fC gC hC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC","388":"E uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I LD","2":"AC J GD HD ID JD XC KD"},J:{"1":"A","2":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Pattern attribute for input fields",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js index bcc5121e0e0946..5d80f47c29deab 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-placeholder.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"J aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s TC pC 5B","2":"F lC mC nC oC","132":"B 4B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B I DD ED FD UC HD ID","4":"J GD"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"input placeholder attribute",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"J dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s WC sC 6B","2":"F oC pC qC rC","132":"B 5B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC I GD HD ID XC KD LD","4":"J JD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"input placeholder attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js index c7986a10d3d3ec..a17fdea32b026f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-range.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"I UC HD ID","4":"9B J DD ED FD GD"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Range input type",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"I XC KD LD","4":"AC J GD HD ID JD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Range input type",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js index 852dd5f187519b..824f8e20fa97a2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-search.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L M G N O P"},C:{"2":"WC 9B YC ZC","129":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M u v w x DB","129":"G N O P CB t"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F lC mC nC oC","16":"B 4B TC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"129":"CD"},I:{"1":"I HD ID","16":"DD ED","129":"9B J FD GD UC"},J:{"1":"D","129":"A"},K:{"1":"C H","2":"A","16":"B 4B TC","129":"5B"},L:{"1":"I"},M:{"129":"3B"},N:{"129":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"129":"XD YD"}},B:1,C:"Search input type",D:true}; +module.exports={A:{A:{"2":"K D E F YC","129":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L M G N O P"},C:{"2":"ZC AC bC cC","129":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M v w x y FB","129":"G N O P EB u"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F oC pC qC rC","16":"B 5B WC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"129":"FD"},I:{"1":"I KD LD","16":"GD HD","129":"AC J ID JD XC"},J:{"1":"D","129":"A"},K:{"1":"C H","2":"A","16":"B 5B WC","129":"6B"},L:{"1":"I"},M:{"129":"t"},N:{"129":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"129":"aD bD"}},B:1,C:"Search input type",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js index 5f13fa764f2da3..906fd4b428e0d6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/input-selection.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","16":"F lC mC nC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Selection controls for input & textarea",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","16":"F oC pC qC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Selection controls for input & textarea",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js index 1c2651484145e7..cc87a74b37de33 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insert-adjacent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","16":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()",D:true}; +module.exports={A:{A:{"1":"K D E F A B","16":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Element.insertAdjacentElement() & Element.insertAdjacentText()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js index ffa8f95138f1f7..8d4c4e4518e3fa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/insertadjacenthtml.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","16":"VC","132":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","16":"F lC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Element.insertAdjacentHTML()",D:true}; +module.exports={A:{A:{"1":"A B","16":"YC","132":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","16":"F oC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Element.insertAdjacentHTML()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js index 7070cc31387aa2..eb9ae780b378dd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/internationalization.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"Internationalization API",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"Internationalization API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js index 5bc6ecc1dc4bfa..5c914758bad81a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver-v2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"IntersectionObserver V2",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"IntersectionObserver V2",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js index fed6eb7bcf906b..124a24be563480 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intersectionobserver.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"N O P","2":"C L M","260":"G","513":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC","194":"eB fB gB"},D:{"1":"kB AC lB BC mB nB oB","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","260":"dB eB fB gB hB iB jB","513":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB lC mC nC oC 4B TC pC 5B","260":"QB RB SB TB UB VB WB","513":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","513":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","513":"H"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","260":"JD KD"},Q:{"513":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"IntersectionObserver",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"N O P","2":"C L M","260":"G","513":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC","194":"gB hB iB"},D:{"1":"mB BC nB CC oB pB qB","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","260":"fB gB hB iB jB kB lB","513":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB oC pC qC rC 5B WC sC 6B","260":"SB TB UB VB WB XB YB","513":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","513":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","513":"H"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","260":"MD ND"},Q:{"513":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"IntersectionObserver",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js index eedd9694b255b4..08b06160397eeb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intl-pluralrules.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O","130":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB lC mC nC oC 4B TC pC 5B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"Intl.PluralRules API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O","130":"P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB oC pC qC rC 5B WC sC 6B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"Intl.PluralRules API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js index 82e31c5dfd199d..81f7a2ef01e274 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/intrinsic-width.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s y z AB I","1537":"Q H R S T U V W X Y Z a b c"},C:{"2":"WC","932":"9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB YC ZC","2308":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u","545":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","1025":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s y z AB I 3B DC EC","1537":"YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC","516":"B C L M G 4B 5B fC gC hC HC IC 6B iC","548":"F A eC GC","676":"D E cC dC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","513":"MB","545":"G N O P CB t u v w x DB EB FB GB HB IB JB KB","1025":"e f g h i j k l m n o p q r s","1537":"LB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC","516":"7C 8C 9C HC IC 6B AD","548":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C","676":"E tC uC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","545":"HD ID","1025":"I"},J:{"2":"D","545":"A"},K:{"2":"A B C 4B TC 5B","1025":"H"},L:{"1025":"I"},M:{"2308":"3B"},N:{"2":"A B"},O:{"1537":"6B"},P:{"545":"J","1025":"t u v w x 8B TD UD","1537":"JD KD LD MD ND GC OD PD QD RD SD 7B"},Q:{"1537":"VD"},R:{"1537":"WD"},S:{"932":"XD","2308":"YD"}},B:5,C:"Intrinsic & Extrinsic Sizing",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s z AB BB CB I t","1537":"Q H R S T U V W X Y Z a b c"},C:{"2":"ZC","932":"AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB bC cC","2308":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v","545":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB","1025":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","1537":"aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC","516":"B C L M G 5B 6B iC jC kC JC KC 7B lC","548":"F A hC IC","676":"D E fC gC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","513":"OB","545":"G N O P EB u v w x y FB GB HB IB JB KB LB MB","1025":"e f g h i j k l m n o p q r s","1537":"NB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC","516":"AD BD CD JC KC 7B DD","548":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","676":"E wC xC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","545":"KD LD","1025":"I"},J:{"2":"D","545":"A"},K:{"2":"A B C 5B WC 6B","1025":"H"},L:{"1025":"I"},M:{"2308":"t"},N:{"2":"A B"},O:{"1537":"7B"},P:{"545":"J","1025":"u v w x y 9B WD XD","1537":"MD ND OD PD QD IC RD SD TD UD VD 8B"},Q:{"1537":"YD"},R:{"1537":"ZD"},S:{"932":"aD","2308":"bD"}},B:5,C:"Intrinsic & Extrinsic Sizing",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js index 75f449a13e3b6b..a60d02d0a0f874 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpeg2000.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","129":"BB bC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"JPEG 2000 image format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","129":"DB eC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"JPEG 2000 image format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js index 2d75c205679010..807d713aad09e0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxl.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z y z AB I","578":"a b c d e f g h i j k l m n o p q r s"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y YC ZC","322":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z y z AB I 3B DC EC","194":"a b c d e f g h i j k l m n o p q r s"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC","1025":"8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B lC mC nC oC 4B TC pC 5B","194":"1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD","1025":"8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"JPEG XL image format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z z AB BB CB I t","578":"a b c d e f g h i j k l m n o p q r s"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y bC cC","322":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z z AB BB CB I t EC FC GC","194":"a b c d e f g h i j k l m n o p q r s"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC","1025":"9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B oC pC qC rC 5B WC sC 6B","194":"3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED","1025":"9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"JPEG XL image format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js index e6a1b8580be8b5..4bf1a2ee70d5bd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/jpegxr.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"JPEG XR image format",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"JPEG XR image format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js index 16f04b1d06e24a..64e8b2dc762528 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/js-regexp-lookbehind.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB lC mC nC oC 4B TC pC 5B"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"Lookbehind in JS regular expressions",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB oC pC qC rC 5B WC sC 6B"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"Lookbehind in JS regular expressions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js index bc07cc4d2ad9a1..3a2d4452a35168 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/json.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D VC","129":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"JSON parsing",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D YC","129":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"JSON parsing",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js index edb88631fdb434..a50f2a3a77038f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/justify-content-space-evenly.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G","132":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","132":"jB kB AC"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC","132":"GC"},F:{"1":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B","132":"WB XB YB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC","132":"yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD","132":"LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","132":"XD"}},B:5,C:"CSS justify-content: space-evenly",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G","132":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","132":"lB mB BC"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC","132":"IC"},F:{"1":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B","132":"YB ZB aB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C","132":"1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND","132":"OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","132":"aD"}},B:5,C:"CSS justify-content: space-evenly",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js index 9e0f8a649b3333..4186669e6e8db8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/kerning-pairs-ligatures.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"DD ED FD","132":"9B J GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:7,C:"High-quality kerning pairs & ligatures",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"GD HD ID","132":"AC J JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:7,C:"High-quality kerning pairs & ligatures",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js index 1bb0ff63bfaa14..cbb17e2420a731 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-charcode.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","16":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC","16":"C"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H 5B","2":"A B 4B TC","16":"C"},L:{"1":"I"},M:{"130":"3B"},N:{"130":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:7,C:"KeyboardEvent.charCode",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","16":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC","16":"C"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H 6B","2":"A B 5B WC","16":"C"},L:{"1":"I"},M:{"130":"t"},N:{"130":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:7,C:"KeyboardEvent.charCode",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js index a02c019215b6ab..3a7bf30f28b25b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-code.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","194":"UB VB WB XB YB ZB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB lC mC nC oC 4B TC pC 5B","194":"HB IB JB KB LB MB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"194":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J","194":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"194":"WD"},S:{"1":"XD YD"}},B:5,C:"KeyboardEvent.code",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","194":"WB XB YB ZB aB bB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB oC pC qC rC 5B WC sC 6B","194":"JB KB LB MB NB OB"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"194":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J","194":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"194":"ZD"},S:{"1":"aD bD"}},B:5,C:"KeyboardEvent.code",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js index 19819ea7acf9d5..b77db82814d46a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-getmodifierstate.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B G N lC mC nC oC 4B TC pC","16":"C"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H 5B","2":"A B 4B TC","16":"C"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"KeyboardEvent.getModifierState()",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B G N oC pC qC rC 5B WC sC","16":"C"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H 6B","2":"A B 5B WC","16":"C"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"KeyboardEvent.getModifierState()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js index 1d0b5f59383221..980b04380dc2cb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-key.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v YC ZC","132":"w x DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB lC mC nC oC 4B TC pC","16":"C"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"1":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H 5B","2":"A B 4B TC","16":"C"},L:{"1":"I"},M:{"1":"3B"},N:{"260":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"KeyboardEvent.key",D:true}; +module.exports={A:{A:{"2":"K D E YC","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w bC cC","132":"x y FB GB HB IB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB oC pC qC rC 5B WC sC","16":"C"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"1":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H 6B","2":"A B 5B WC","16":"C"},L:{"1":"I"},M:{"1":"t"},N:{"260":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"KeyboardEvent.key",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js index 4e4a889036b332..1c7aa5b19c2f1a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-location.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"K aC FC","132":"J BB bC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC","16":"C","132":"G N"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC","132":"rC sC tC"},H:{"2":"CD"},I:{"1":"I HD ID","16":"DD ED","132":"9B J FD GD UC"},J:{"132":"D A"},K:{"1":"H 5B","2":"A B 4B TC","16":"C"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"KeyboardEvent.location",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"K dC HC","132":"J DB eC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC","16":"C","132":"G N"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC","132":"uC vC wC"},H:{"2":"FD"},I:{"1":"I KD LD","16":"GD HD","132":"AC J ID JD XC"},J:{"132":"D A"},K:{"1":"H 6B","2":"A B 5B WC","16":"C"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"KeyboardEvent.location",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js index f858cafae86798..b5affa455fe0fe 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/keyboardevent-which.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","16":"BB"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","16":"F lC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC","16":"DD ED","132":"HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"132":"I"},M:{"132":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"2":"J","132":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"132":"WD"},S:{"1":"XD YD"}},B:7,C:"KeyboardEvent.which",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","16":"DB"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","16":"F oC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC","16":"GD HD","132":"KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"132":"I"},M:{"132":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"2":"J","132":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"132":"ZD"},S:{"1":"aD bD"}},B:7,C:"KeyboardEvent.which",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js index eaad79383d4172..7100396d9cb6f2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/lazyload.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"1":"B","2":"A"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Resource Hints: Lazyload",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"1":"B","2":"A"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Resource Hints: Lazyload",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js index 86a87ba0715759..efc0e199cf2afb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/let.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","194":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P","322":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","516":"TB UB VB WB XB YB ZB aB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC","1028":"A GC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","322":"G N O P CB t u v w x DB EB FB","516":"GB HB IB JB KB LB MB NB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC","1028":"xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","516":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"let",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","2052":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","194":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P","322":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","516":"VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC","1028":"A IC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","322":"G N O P EB u v w x y FB GB HB","516":"IB JB KB LB MB NB OB PB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC","1028":"0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","516":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"let",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js index e81a70baa47205..34678d8e408f02 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-png.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","130":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C"},H:{"130":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D","130":"A"},K:{"1":"H","130":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"130":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"PNG favicons",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","130":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C"},H:{"130":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D","130":"A"},K:{"1":"H","130":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"130":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"PNG favicons",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js index dd76da5ea2b8cd..37d3bd2dae73e5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-icon-svg.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q","1537":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B YC ZC","260":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","513":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","1537":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB gB hB iB jB kB lB mB nB oB pB qB lC mC nC oC 4B TC pC 5B","1537":"rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","130":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C"},H:{"130":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D","130":"A"},K:{"130":"A B C 4B TC 5B","1537":"H"},L:{"1537":"I"},M:{"2":"3B"},N:{"130":"A B"},O:{"2":"6B"},P:{"2":"J JD KD LD MD ND GC OD PD","1537":"t u v w x QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"1537":"WD"},S:{"513":"XD YD"}},B:1,C:"SVG favicons",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q","1537":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC bC cC","260":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","513":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","1537":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB iB jB kB lB mB nB oB pB qB rB sB oC pC qC rC 5B WC sC 6B","1537":"tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","130":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C"},H:{"130":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D","130":"A"},K:{"130":"A B C 5B WC 6B","1537":"H"},L:{"1537":"I"},M:{"2":"t"},N:{"130":"A B"},O:{"2":"7B"},P:{"2":"J MD ND OD PD QD IC RD SD","1537":"u v w x y TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"1537":"ZD"},S:{"513":"aD bD"}},B:1,C:"SVG favicons",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js index 6cfc95422141a5..fe0b973d278491 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-dns-prefetch.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E VC","132":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B","260":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"16":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"16":"9B J I DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","16":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","16":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Resource Hints: dns-prefetch",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E YC","132":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC","260":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"16":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"16":"AC J I GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","16":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","16":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Resource Hints: dns-prefetch",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js index 57907180f44356..5dfbf7975fab65 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-modulepreload.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"0 1 2 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB"},E:{"1":"8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC"},F:{"1":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB lC mC nC oC 4B TC pC 5B"},G:{"1":"8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:1,C:"Resource Hints: modulepreload",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"0 1 2 3 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB"},E:{"1":"9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB oC pC qC rC 5B WC sC 6B"},G:{"1":"9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:1,C:"Resource Hints: modulepreload",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js index dc3f41ed7e3733..e6cda444a7a50f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preconnect.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","260":"G N O P"},C:{"1":"3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB YC ZC","129":"RB","514":"0 1 2 vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Resource Hints: preconnect",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","260":"G N O P"},C:{"1":"4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB bC cC","129":"TB","514":"0 1 2 3 xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Resource Hints: preconnect",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js index a415b97d77915e..d398c56ba3726a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prefetch.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D"},E:{"2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B","194":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","194":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"J I HD ID","2":"9B DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Resource Hints: prefetch",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D"},E:{"2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B","194":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C","194":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"J I KD LD","2":"AC GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Resource Hints: prefetch",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js index 47fdd05a36f8d8..505cc5b952e10f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-preload.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N","1028":"O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB YC ZC","132":"iB","578":"jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","322":"B"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC","322":"zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:4,C:"Resource Hints: preload",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N","1028":"O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB bC cC","132":"kB","578":"lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T"},D:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","322":"B"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C","322":"2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:4,C:"Resource Hints: preload",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js index 71fbf0d7ec7c75..bb3f74d4979c29 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/link-rel-prerender.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"Resource Hints: prerender",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"Resource Hints: prerender",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js index b785e24587e8cf..d6c8fb08d84d05 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/loading-lazy-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB YC ZC","132":"0 1 2 3 4 5 6 7 8 zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB","66":"zB 0B"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B","322":"M G fC gC hC HC","580":"IC 6B iC 7B JC KC LC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B","66":"mB nB"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","322":"6C 7C 8C 9C HC","580":"IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"132":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD","132":"YD"}},B:1,C:"Lazy loading via attribute for images & iframes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B bC cC","132":"0 1 2 3 4 5 6 7 8 9 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B","66":"1B 2B"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B","322":"M G iC jC kC JC","580":"KC 7B lC 8B LC MC NC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B","66":"oB pB"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C","322":"9C AD BD CD JC","580":"KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"132":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD","132":"bD"}},B:1,C:"Lazy loading via attribute for images & iframes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js index b429c4e33c3668..775fbda9f7a482 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/localecompare.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","16":"VC","132":"K D E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B C lC mC nC oC 4B TC pC","132":"5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"E FC qC UC rC sC tC uC vC wC"},H:{"132":"CD"},I:{"1":"I HD ID","132":"9B J DD ED FD GD UC"},J:{"132":"D A"},K:{"1":"H","16":"A B C 4B TC","132":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","132":"A"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","132":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","4":"XD"}},B:6,C:"localeCompare()",D:true}; +module.exports={A:{A:{"1":"B","16":"YC","132":"K D E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F B C oC pC qC rC 5B WC sC","132":"6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"E HC tC XC uC vC wC xC yC zC"},H:{"132":"FD"},I:{"1":"I KD LD","132":"AC J GD HD ID JD XC"},J:{"132":"D A"},K:{"1":"H","16":"A B C 5B WC","132":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","132":"A"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","4":"aD"}},B:6,C:"localeCompare()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js index c3f420708a9776..6a6d158be24786 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/magnetometer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","194":"kB AC lB BC mB nB oB pB qB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"194":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"Magnetometer",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","194":"mB BC nB CC oB pB qB rB sB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"194":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"Magnetometer",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js index 52f47c507f13b1..70e727075ed5d7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchesselector.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","36":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","36":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC","36":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","36":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","36":"BB K D bC cC"},F:{"1":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B lC mC nC oC 4B","36":"C G N O P CB t TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC","36":"qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I","2":"DD","36":"9B J ED FD GD UC HD ID"},J:{"36":"D A"},K:{"1":"H","2":"A B","36":"C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"36":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","36":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"matches() DOM method",D:true}; +module.exports={A:{A:{"2":"K D E YC","36":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","36":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC","36":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","36":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","36":"DB K D eC fC"},F:{"1":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B oC pC qC rC 5B","36":"C G N O P EB u WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC","36":"tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I","2":"GD","36":"AC J HD ID JD XC KD LD"},J:{"36":"D A"},K:{"1":"H","2":"A B","36":"C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"36":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","36":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"matches() DOM method",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js index 67109bcfc6f083..fde51de0869776 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/matchmedia.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B C lC mC nC oC 4B TC pC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"matchMedia",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B C oC pC qC rC 5B WC sC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"matchMedia",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js index cd81ae2b7cf12a..872c0a756320e1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mathml.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B VC","8":"K D E"},B:{"2":"C L M G N O P","8":"Q H R S T U V W X Y Z a b c d e f","584":"g h i j k l m n o p q r","1025":"0 1 2 3 4 5 6 7 8 9 s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","129":"WC 9B YC ZC"},D:{"1":"x","8":"J BB K D E F A B C L M G N O P CB t u v w DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f","584":"g h i j k l m n o p q r","1025":"0 1 2 3 4 5 6 7 8 9 s y z AB I 3B DC EC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","260":"J BB K D E F aC FC bC cC dC eC"},F:{"2":"F","8":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC","584":"S T U V W X Y Z a b c d","1025":"e f g h i j k l m n o p q r s","2052":"B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC"},H:{"8":"CD"},I:{"8":"9B J DD ED FD GD UC HD ID","1025":"I"},J:{"1":"A","8":"D"},K:{"8":"A B C 4B TC 5B","1025":"H"},L:{"1025":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"8":"6B"},P:{"1":"u v w x","8":"J t JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"8":"VD"},R:{"8":"WD"},S:{"1":"XD YD"}},B:2,C:"MathML",D:true}; +module.exports={A:{A:{"2":"F A B YC","8":"K D E"},B:{"2":"C L M G N O P","8":"Q H R S T U V W X Y Z a b c d e f","584":"g h i j k l m n o p q r","1025":"0 1 2 3 4 5 6 7 8 9 s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","129":"ZC AC bC cC"},D:{"1":"y","8":"J DB K D E F A B C L M G N O P EB u v w x FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f","584":"g h i j k l m n o p q r","1025":"0 1 2 3 4 5 6 7 8 9 s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","260":"J DB K D E F dC HC eC fC gC hC"},F:{"2":"F","8":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC","584":"S T U V W X Y Z a b c d","1025":"e f g h i j k l m n o p q r s","2052":"B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC"},H:{"8":"FD"},I:{"8":"AC J GD HD ID JD XC KD LD","1025":"I"},J:{"1":"A","8":"D"},K:{"8":"A B C 5B WC 6B","1025":"H"},L:{"1025":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"8":"7B"},P:{"1":"v w x y","8":"J u MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"8":"YD"},R:{"8":"ZD"},S:{"1":"aD bD"}},B:2,C:"MathML",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js index 903398b46912af..3efc2f976f3ef0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/maxlength.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","16":"VC","900":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","1025":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","900":"WC 9B YC ZC","1025":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"BB aC","900":"J FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F","132":"B C lC mC nC oC 4B TC pC 5B"},G:{"1":"qC UC rC sC tC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC","2052":"E uC"},H:{"132":"CD"},I:{"1":"9B J FD GD UC HD ID","16":"DD ED","4097":"I"},J:{"1":"D A"},K:{"132":"A B C 4B TC 5B","4097":"H"},L:{"4097":"I"},M:{"4097":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"4097":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1025":"XD YD"}},B:1,C:"maxlength attribute for input and textarea elements",D:true}; +module.exports={A:{A:{"1":"A B","16":"YC","900":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","1025":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","900":"ZC AC bC cC","1025":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"DB dC","900":"J HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F","132":"B C oC pC qC rC 5B WC sC 6B"},G:{"1":"tC XC uC vC wC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC","2052":"E xC"},H:{"132":"FD"},I:{"1":"AC J ID JD XC KD LD","16":"GD HD","4097":"I"},J:{"1":"D A"},K:{"132":"A B C 5B WC 6B","4097":"H"},L:{"4097":"I"},M:{"4097":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"4097":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1025":"aD bD"}},B:1,C:"maxlength attribute for input and textarea elements",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js index 249964f0036a06..79c12e3c7378a3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-backdrop-pseudo-element.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB","33":"KB LB MB NB OB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","33":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC"},M:{"1":"3B"},A:{"2":"K D E F A VC","33":"B"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P lC mC nC oC 4B TC pC 5B","33":"CB t u v w"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC kC"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},I:{"1":"I","2":"9B J DD ED FD GD UC","33":"HD ID"}},B:6,C:"CSS ::backdrop pseudo-element",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB","33":"MB NB OB PB QB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","33":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC"},M:{"1":"t"},A:{"2":"K D E F A YC","33":"B"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P oC pC qC rC 5B WC sC 6B","33":"EB u v w x"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC nC"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},I:{"1":"I","2":"AC J GD HD ID JD XC","33":"KD LD"}},B:6,C:"CSS ::backdrop pseudo-element",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js index 2eeecea4ad26e1..246590e8189fa4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate-override.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N YC ZC","33":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB K aC FC bC cC kC","33":"D E F A dC eC GC"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC","33":"E tC uC vC wC xC yC"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"isolate-override from unicode-bidi",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N bC cC","33":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB K dC HC eC fC nC","33":"D E F A gC hC IC"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC","33":"E wC xC yC zC 0C 1C"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"isolate-override from unicode-bidi",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js index 633a21ccaaa357..527f4ec6a02188 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-isolate.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G","33":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F YC ZC","33":"A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB aC FC bC kC","33":"K D E F A cC dC eC GC"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"E sC tC uC vC wC xC yC"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"isolate from unicode-bidi",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G","33":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F bC cC","33":"A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB dC HC eC nC","33":"K D E F A fC gC hC IC"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"E vC wC xC yC zC 0C 1C"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"isolate from unicode-bidi",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js index d53f266f43679e..59c79f3707c58d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-css-unicode-bidi-plaintext.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F YC ZC","33":"A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB aC FC bC kC","33":"K D E F A cC dC eC GC"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"E sC tC uC vC wC xC yC"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"plaintext from unicode-bidi",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F bC cC","33":"A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB dC HC eC nC","33":"K D E F A fC gC hC IC"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"E vC wC xC yC zC 0C 1C"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"plaintext from unicode-bidi",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js index a96121e9d6c582..b9da76246c55fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-color.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","33":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB K D aC FC bC cC dC kC","33":"E F A B C eC GC 4B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","33":"E uC vC wC xC yC zC 0C 1C"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"text-decoration-color property",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","33":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB K D dC HC eC fC gC nC","33":"E F A B C hC IC 5B"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","33":"E xC yC zC 0C 1C 2C 3C 4C"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"text-decoration-color property",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js index e9380fc50e5008..b49d8b9d25834b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-line.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","33":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB K D aC FC bC cC dC kC","33":"E F A B C eC GC 4B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","33":"E uC vC wC xC yC zC 0C 1C"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"text-decoration-line property",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","33":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB K D dC HC eC fC gC nC","33":"E F A B C hC IC 5B"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","33":"E xC yC zC 0C 1C 2C 3C 4C"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"text-decoration-line property",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js index 9dde00abfc9492..ffa90cd490540a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-shorthand.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"2":"J BB K D aC FC bC cC dC kC","33":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},G:{"2":"FC qC UC rC sC tC","33":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"text-decoration shorthand property",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"2":"J DB K D dC HC eC fC gC nC","33":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},G:{"2":"HC tC XC uC vC wC","33":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"text-decoration shorthand property",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js index 7869c48ad9d885..e0a1ea8bb00bf9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mdn-text-decoration-style.js @@ -1 +1 @@ -module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","33":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},M:{"1":"3B"},A:{"2":"K D E F A B VC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B"},K:{"1":"H","2":"A B C 4B TC 5B"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","2":"J BB K D aC FC bC cC dC kC","33":"E F A B C eC GC 4B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","33":"E uC vC wC xC yC zC 0C 1C"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"}},B:6,C:"text-decoration-style property",D:undefined}; +module.exports={A:{D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},L:{"1":"I"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","33":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},M:{"1":"t"},A:{"2":"K D E F A B YC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B"},K:{"1":"H","2":"A B C 5B WC 6B"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","2":"J DB K D dC HC eC fC gC nC","33":"E F A B C hC IC 5B"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","33":"E xC yC zC 0C 1C 2C 3C 4C"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"}},B:6,C:"text-decoration-style property",D:undefined}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js index 9b36b311a93b0e..b73266beaea1e7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/media-fragments.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB YC ZC","132":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O","132":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB aC FC bC","132":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"FC qC UC rC sC tC","132":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","132":"I HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"132":"3B"},N:{"132":"A B"},O:{"132":"6B"},P:{"2":"J JD","132":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"132":"VD"},R:{"132":"WD"},S:{"132":"XD YD"}},B:2,C:"Media Fragments",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB bC cC","132":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O","132":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB dC HC eC","132":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"HC tC XC uC vC wC","132":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","132":"I KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"132":"t"},N:{"132":"A B"},O:{"132":"7B"},P:{"2":"J MD","132":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"132":"YD"},R:{"132":"ZD"},S:{"132":"aD bD"}},B:2,C:"Media Fragments",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js index e8a9e95671470c..f43fbee977579b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediacapture-fromelement.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB YC ZC","260":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","324":"dB eB fB gB hB iB jB kB AC lB BC"},E:{"2":"J BB K D E F A aC FC bC cC dC eC GC","132":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B","324":"OB PB QB RB SB TB UB VB WB XB YB ZB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"260":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","132":"JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"260":"XD YD"}},B:5,C:"Media Capture from DOM Elements API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC","260":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","324":"fB gB hB iB jB kB lB mB BC nB CC"},E:{"2":"J DB K D E F A dC HC eC fC gC hC IC","132":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B","324":"QB RB SB TB UB VB WB XB YB ZB aB bB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"260":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","132":"MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"260":"aD bD"}},B:5,C:"Media Capture from DOM Elements API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js index 20ddc371340372..b0fa7afbe253be 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediarecorder.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","194":"ZB aB"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","322":"L M 5B fC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB lC mC nC oC 4B TC pC 5B","194":"MB NB"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C","578":"1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"MediaRecorder API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","194":"bB cB"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","322":"L M 6B iC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB oC pC qC rC 5B WC sC 6B","194":"OB PB"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C","578":"4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"MediaRecorder API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js index 4e0a6b6c694d9f..46e7da94a9e135 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mediasource.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC","66":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N","33":"w x DB EB FB GB HB IB","66":"O P CB t u v"},E:{"1":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC dC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C","260":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I ID","2":"9B J DD ED FD GD UC HD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Media Source Extensions",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC","66":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N","33":"x y FB GB HB IB JB KB","66":"O P EB u v w"},E:{"1":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC gC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","260":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I LD","2":"AC J GD HD ID JD XC KD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Media Source Extensions",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js index 06f08ed16a2f31..635c4442deb626 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/menu.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D YC ZC","132":"E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T","450":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","66":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","66":"NB OB PB QB RB SB TB UB VB WB XB YB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"450":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Context menu item (menuitem element)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D bC cC","132":"E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T","450":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","66":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","66":"PB QB RB SB TB UB VB WB XB YB ZB aB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"450":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Context menu item (menuitem element)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js index 9e1d563ce89a46..7d979cc3fb2007 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meta-theme-color.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB","132":"0 1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","258":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"513":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","16":"JD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:1,C:"theme-color Meta Tag",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB","132":"0 1 2 3 4 5 6 7 8 9 zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","258":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"513":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","16":"MD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:1,C:"theme-color Meta Tag",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js index 3efaa4488e24b6..0a727ec0707c1f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/meter.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F lC mC nC oC"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"meter element",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F oC pC qC rC"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"meter element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js index c770383fee3798..90420ae81506d7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/midi.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"Web MIDI API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"Web MIDI API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js index f29ace164d2970..8a576eac0adce0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/minmaxwh.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","8":"K VC","129":"D","257":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS min/max-width/height",D:true}; +module.exports={A:{A:{"1":"F A B","8":"K YC","129":"D","257":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS min/max-width/height",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js index 81655651df58bb..91054e80c6fc94 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mp3.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","132":"J BB K D E F A B C L M G N O P CB t u YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","2":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"MP3 audio format",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","132":"J DB K D E F A B C L M G N O P EB u v bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","2":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"MP3 audio format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js index ba3439848c8ad6..aa2a3b524a1841 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg-dash.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","386":"u v"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","386":"v w"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"Dynamic Adaptive Streaming over HTTP (MPEG-DASH)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js index 58bbad06cf4167..c47f2893472f25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mpeg4.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t YC ZC","4":"u v w x DB EB FB GB HB IB JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I HD ID","4":"9B J DD ED GD UC","132":"FD"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"260":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"MPEG-4/H.264 video format",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u bC cC","4":"v w x y FB GB HB IB JB KB LB MB NB OB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I KD LD","4":"AC J GD HD JD XC","132":"ID"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"260":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"MPEG-4/H.264 video format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js index b01ba27fc78e01..369a6ed8f8eb9f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multibackgrounds.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 Multiple backgrounds",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 Multiple backgrounds",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js index 676cc8a6a65e01..0211f10739b50a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/multicolumn.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"C L M G N O P","516":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"132":"eB fB gB hB iB jB kB AC lB BC mB nB oB","164":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC","516":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a","1028":"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"420":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","516":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"F eC","164":"D E dC","420":"J BB K aC FC bC cC"},F:{"1":"C 4B TC pC 5B","2":"F B lC mC nC oC","420":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB","516":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"vC wC","164":"E tC uC","420":"FC qC UC rC sC"},H:{"1":"CD"},I:{"420":"9B J DD ED FD GD UC HD ID","516":"I"},J:{"420":"D A"},K:{"1":"C 4B TC 5B","2":"A B","516":"H"},L:{"516":"I"},M:{"1028":"3B"},N:{"1":"A B"},O:{"516":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","420":"J"},Q:{"516":"VD"},R:{"516":"WD"},S:{"164":"XD YD"}},B:4,C:"CSS3 Multiple column layout",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"C L M G N O P","516":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"132":"gB hB iB jB kB lB mB BC nB CC oB pB qB","164":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC","516":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a","1028":"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"420":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","516":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"F hC","164":"D E gC","420":"J DB K dC HC eC fC"},F:{"1":"C 5B WC sC 6B","2":"F B oC pC qC rC","420":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB","516":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"yC zC","164":"E wC xC","420":"HC tC XC uC vC"},H:{"1":"FD"},I:{"420":"AC J GD HD ID JD XC KD LD","516":"I"},J:{"420":"D A"},K:{"1":"C 5B WC 6B","2":"A B","516":"H"},L:{"516":"I"},M:{"1028":"t"},N:{"1":"A B"},O:{"516":"7B"},P:{"420":"J","516":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"516":"YD"},R:{"516":"ZD"},S:{"164":"aD bD"}},B:4,C:"CSS3 Multiple column layout",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js index 0432af51ed500f..a5fc96766cea3b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutation-events.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","260":"F A B"},B:{"132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N O P"},C:{"2":"WC 9B J BB YC ZC","260":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"16":"J BB K D E F A B C L M","132":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"16":"aC FC","132":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"C pC 5B","2":"F lC mC nC oC","16":"B 4B TC","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"16":"FC qC","132":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"16":"DD ED","132":"9B J I FD GD UC HD ID"},J:{"132":"D A"},K:{"1":"C 5B","2":"A","16":"B 4B TC","132":"H"},L:{"132":"I"},M:{"260":"3B"},N:{"260":"A B"},O:{"132":"6B"},P:{"132":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"132":"VD"},R:{"132":"WD"},S:{"260":"XD YD"}},B:5,C:"Mutation events",D:true}; +module.exports={A:{A:{"2":"K D E YC","260":"F A B"},B:{"132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N O P"},C:{"2":"ZC AC J DB bC cC","260":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"16":"J DB K D E F A B C L M","132":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"16":"dC HC","132":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"C sC 6B","2":"F oC pC qC rC","16":"B 5B WC","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"16":"HC tC","132":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"16":"GD HD","132":"AC J I ID JD XC KD LD"},J:{"132":"D A"},K:{"1":"C 6B","2":"A","16":"B 5B WC","132":"H"},L:{"132":"I"},M:{"260":"t"},N:{"260":"A B"},O:{"132":"7B"},P:{"132":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"132":"YD"},R:{"132":"ZD"},S:{"260":"aD bD"}},B:5,C:"Mutation events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js index 2b71ecf85c0151..05468e9e68beae 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/mutationobserver.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E VC","8":"F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O","33":"P CB t u v w x DB EB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B DD ED FD","8":"J GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","8":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Mutation Observer",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E YC","8":"F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O","33":"P EB u v w x y FB GB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC GD HD ID","8":"J JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","8":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Mutation Observer",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js index 1ca7d70c3575fc..5c0b9b0959d3c9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/namevalue-storage.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"VC","8":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","4":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Web Storage - name/value pairs",D:true}; +module.exports={A:{A:{"1":"E F A B","2":"YC","8":"K D"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","4":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Web Storage - name/value pairs",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js index 4b774b7db24418..1915ea7372cc57 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/native-filesystem-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","194":"Q H R S T U","260":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y YC ZC","516":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB","194":"yB zB 0B 1B 2B Q H R S T U","260":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC","516":"HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B","194":"mB nB oB pB qB rB sB tB uB vB","260":"wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","516":"HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","516":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","260":"H"},L:{"516":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"File System Access API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","194":"Q H R S T U","260":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC","516":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB","194":"0B 1B 2B 3B 4B Q H R S T U","260":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC","516":"JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B","194":"oB pB qB rB sB tB uB vB wB xB","260":"yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD","516":"JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","516":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","260":"H"},L:{"516":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"File System Access API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js index 32dcfe0fd11d91..64977a12af62e5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/nav-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB","33":"K D E F A B C"},E:{"1":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC dC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"J I GD UC HD ID","2":"9B DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Navigation Timing API",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB","33":"K D E F A B C"},E:{"1":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC gC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"J I JD XC KD LD","2":"AC GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Navigation Timing API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js index aa4537da861ca7..e9a0d2ee7f3534 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/netinfo.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB","1028":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB lC mC nC oC 4B TC pC 5B","1028":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"DD HD ID","132":"9B J ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","132":"J","516":"JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"YD","260":"XD"}},B:7,C:"Network Information API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","1028":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB","1028":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB oC pC qC rC 5B WC sC 6B","1028":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"GD KD LD","132":"AC J HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"J","516":"MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"bD","260":"aD"}},B:7,C:"Network Information API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js index 87c38e86ab1132..830955d2b192bd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/notifications.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J","36":"BB K D E F A B C L M G N O P CB t u"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC","516":"MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","36":"I HD ID"},J:{"1":"A","2":"D"},K:{"2":"A B C 4B TC 5B","36":"H"},L:{"257":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"36":"J","130":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"130":"WD"},S:{"1":"XD YD"}},B:1,C:"Web Notifications",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J","36":"DB K D E F A B C L M G N O P EB u v"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC","516":"OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","36":"I KD LD"},J:{"1":"A","2":"D"},K:{"2":"A B C 5B WC 6B","36":"H"},L:{"257":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"36":"J","130":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"130":"ZD"},S:{"1":"aD bD"}},B:1,C:"Web Notifications",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js index 674e79b0102d85..e5e5e4568e3eb1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-entries.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Object.entries",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","16":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Object.entries",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js index 52d682af1e7d34..d606f8ff6e7c6d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-fit.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G","260":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC","132":"E F dC eC"},F:{"1":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F G N O P lC mC nC","33":"B C oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","132":"E uC vC wC"},H:{"33":"CD"},I:{"1":"I ID","2":"9B J DD ED FD GD UC HD"},J:{"2":"D A"},K:{"1":"H","2":"A","33":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 object-fit/object-position",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G","260":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC","132":"E F gC hC"},F:{"1":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F G N O P oC pC qC","33":"B C rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","132":"E xC yC zC"},H:{"33":"FD"},I:{"1":"I LD","2":"AC J GD HD ID JD XC KD"},J:{"2":"D A"},K:{"1":"H","2":"A","33":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 object-fit/object-position",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js index 9ffdcb3b8ab88f..8b739de96e1dff 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-observe.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB","2":"F B C G N O P CB t u v PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"J","2":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Object.observe data binding",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB","2":"F B C G N O P EB u v w RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"J","2":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Object.observe data binding",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js index ed2e4d11428c6a..8d2a5b08cfd343 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/object-values.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"E FC qC UC rC sC tC uC vC wC xC"},H:{"8":"CD"},I:{"1":"I","8":"9B J DD ED FD GD UC HD ID"},J:{"8":"D A"},K:{"1":"H","8":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","8":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Object.values method",D:true}; +module.exports={A:{A:{"8":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"8":"FD"},I:{"1":"I","8":"AC J GD HD ID JD XC KD LD"},J:{"8":"D A"},K:{"1":"H","8":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","8":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Object.values method",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js index 92ff7cb9c4a672..df74f418380827 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/objectrtc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 C Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"Object RTC (ORTC) API for WebRTC",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 C Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"Object RTC (ORTC) API for WebRTC",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js index 3b4aceef91e3e1..65e5b65ab7dd84 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offline-apps.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"F VC","8":"K D E"},B:{"1":"C L M G N O P Q H R S T","2":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S YC ZC","2":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","4":"9B","8":"WC"},D:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T","2":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB oC 4B TC pC 5B","2":"F xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC","8":"mC nC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J DD ED FD GD UC HD ID","2":"I"},J:{"1":"D A"},K:{"1":"B C 4B TC 5B","2":"A H"},L:{"2":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"1":"XD","2":"YD"}},B:7,C:"Offline web applications",D:true}; +module.exports={A:{A:{"1":"A B","2":"F YC","8":"K D E"},B:{"1":"C L M G N O P Q H R S T","2":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S bC cC","2":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","4":"AC","8":"ZC"},D:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T","2":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB rC 5B WC sC 6B","2":"F zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC","8":"pC qC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J GD HD ID JD XC KD LD","2":"I"},J:{"1":"D A"},K:{"1":"B C 5B WC 6B","2":"A H"},L:{"2":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"1":"aD","2":"bD"}},B:7,C:"Offline web applications",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js index d1184301f526d1..1ed7c86893f286 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/offscreencanvas.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB YC ZC","194":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","322":"kB AC lB BC mB nB oB pB qB rB sB"},E:{"1":"8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC","516":"KC LC MC NC jC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB lC mC nC oC 4B TC pC 5B","322":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB"},G:{"1":"8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC","516":"KC LC MC NC BD"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"194":"XD YD"}},B:1,C:"OffscreenCanvas",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB bC cC","194":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n"},D:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","322":"mB BC nB CC oB pB qB rB sB tB uB"},E:{"1":"9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC","516":"MC NC OC PC mC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB oC pC qC rC 5B WC sC 6B","322":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"1":"9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC","516":"MC NC OC PC ED"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"194":"aD bD"}},B:1,C:"OffscreenCanvas",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js index 20dd653a2c5e17..57eab1669a96fe 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogg-vorbis.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC","260":"8B OC PC QC RC SC kC","388":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC","260":"RC SC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"A","2":"D"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Ogg Vorbis audio format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC","260":"9B QC RC SC TC UC VC nC","388":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC","260":"TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"A","2":"D"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Ogg Vorbis audio format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js index 90a9baf382491d..153bdb003f83d2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ogv.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","8":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","8":"C L M G N","194":"AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"8 9 AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"1":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"1":"XD YD"}},B:6,C:"Ogg/Theora video format",D:true}; +module.exports={A:{A:{"2":"K D E YC","8":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB","8":"C L M G N","194":"BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"9 AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"1":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"1":"aD bD"}},B:6,C:"Ogg/Theora video format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js index 7168e93e2f2f15..ea142fdd8520ce 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ol-reversed.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G","16":"N O P CB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","16":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC","16":"C"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Reversed attribute of ordered lists",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G","16":"N O P EB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","16":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC","16":"C"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Reversed attribute of ordered lists",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js index 883ec5e88dcd10..d928da7ff7dd90 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/once-event-listener.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"\"once\" event listener option",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"\"once\" event listener option",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js index ca7cbe94216fae..cf63accf4f39dd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/online-status.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D VC","260":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B","516":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L"},E:{"1":"BB K E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","1025":"D"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC","4":"5B"},G:{"1":"E UC rC sC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC","1025":"tC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"A","132":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Online/offline status",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D YC","260":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC","516":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L"},E:{"1":"DB K E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","1025":"D"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC","4":"6B"},G:{"1":"E XC uC vC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC","1025":"wC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"A","132":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Online/offline status",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js index b4506694b8823f..60c11f8b163c9a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/opus.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB"},E:{"2":"J BB K D E F A aC FC bC cC dC eC GC","132":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC","132":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Opus audio format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB"},E:{"2":"J DB K D E F A dC HC eC fC gC hC IC","132":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C","132":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Opus audio format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/orientation-sensor.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/orientation-sensor.js index 96b44e86145efb..c8451481eb29b5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/orientation-sensor.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/orientation-sensor.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB","194":"kB AC lB BC mB nB oB pB qB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:4,C:"Orientation Sensor",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB","194":"mB BC nB CC oB pB qB rB sB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:4,C:"Orientation Sensor",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js index 10db1935cc9e0d..2a058033cae4b4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/outline.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","260":"E","388":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","388":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC","129":"5B","260":"F B lC mC nC oC 4B TC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"C H 5B","260":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"388":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS outline properties",D:true}; +module.exports={A:{A:{"2":"K D YC","260":"E","388":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","388":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC","129":"6B","260":"F B oC pC qC rC 5B WC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"C H 6B","260":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"388":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS outline properties",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js index ee3bb0d7ac0991..bfec4c589c47d3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pad-start-end.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"String.prototype.padStart(), String.prototype.padEnd()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js index 2deb4fba2140c0..bb2283869b3891 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/page-transition-events.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"PageTransitionEvent",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"PageTransitionEvent",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js index 7f1701003f396d..2e5d695017a2f3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pagevisibility.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F YC ZC","33":"A B C L M G N O"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L","33":"M G N O P CB t u v w x DB EB FB GB HB IB JB KB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC"},F:{"1":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B C lC mC nC oC 4B TC pC","33":"G N O P CB"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","33":"HD ID"},J:{"1":"A","2":"D"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","33":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Page Visibility",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F bC cC","33":"A B C L M G N O"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L","33":"M G N O P EB u v w x y FB GB HB IB JB KB LB MB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC"},F:{"1":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B C oC pC qC rC 5B WC sC","33":"G N O P EB"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","33":"KD LD"},J:{"1":"A","2":"D"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Page Visibility",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js index 4c646434e939cd..752e4c19b39b2a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passive-event-listener.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"Passive event listeners",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"Passive event listeners",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js index 7bbaf31422e211..2abaeabab965c1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passkeys.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},C:{"1":"AB I 3B DC EC XC","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},E:{"1":"JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B"},F:{"1":"g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f lC mC nC oC 4B TC pC 5B"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"u v w x","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","16":"t"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"Passkeys",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},C:{"1":"BB CB I t EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q"},E:{"1":"LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B"},F:{"1":"g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f oC pC qC rC 5B WC sC 6B"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"v w x y","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","16":"u"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"Passkeys",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js index 6e5706dbb2664b..42249af7efc77a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/passwordrules.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","16":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B YC ZC","16":"DC EC XC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"3B DC EC"},E:{"1":"C L 5B","2":"J BB K D E F A B aC FC bC cC dC eC GC 4B","16":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB lC mC nC oC 4B TC pC 5B","16":"fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"16":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","16":"I"},J:{"2":"D","16":"A"},K:{"2":"A B C 4B TC 5B","16":"H"},L:{"16":"I"},M:{"16":"3B"},N:{"2":"A","16":"B"},O:{"16":"6B"},P:{"2":"J JD KD","16":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD YD"}},B:1,C:"Password Rules",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","16":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC bC cC","16":"FC GC aC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"EC FC GC"},E:{"1":"C L 6B","2":"J DB K D E F A B dC HC eC fC gC hC IC 5B","16":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB oC pC qC rC 5B WC sC 6B","16":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"16":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","16":"I"},J:{"2":"D","16":"A"},K:{"2":"A B C 5B WC 6B","16":"H"},L:{"16":"I"},M:{"16":"t"},N:{"2":"A","16":"B"},O:{"16":"7B"},P:{"2":"J MD ND","16":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD bD"}},B:1,C:"Password Rules",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js index c80c3a27cb0990..3f062729b2853b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/path2d.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L","132":"M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC cC","132":"E F dC"},F:{"1":"hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v lC mC nC oC 4B TC pC 5B","132":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","16":"E","132":"uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","132":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Path2D",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L","132":"M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC","132":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC fC","132":"E F gC"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w oC pC qC rC 5B WC sC 6B","132":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","16":"E","132":"xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","132":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Path2D",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js index 2d8f8b29f63714..8f06ba41a85382 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/payment-request.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L","322":"M","8196":"G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB YC ZC","4162":"hB iB jB kB AC lB BC mB nB oB pB","16452":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","194":"fB gB hB iB jB kB","1090":"AC lB","8196":"BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC","514":"A B GC","8196":"C 4B"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB lC mC nC oC 4B TC pC 5B","194":"SB TB UB VB WB XB YB ZB","8196":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC","514":"xC yC zC","8196":"0C 1C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"2049":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x PD QD RD SD 7B 8B TD UD","2":"J","8196":"JD KD LD MD ND GC OD"},Q:{"8196":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:2,C:"Payment Request API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L","322":"M","8196":"G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB bC cC","4162":"jB kB lB mB BC nB CC oB pB qB rB","16452":"0 1 2 3 4 5 6 7 8 9 sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","194":"hB iB jB kB lB mB","1090":"BC nB","8196":"CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC","514":"A B IC","8196":"C 5B"},F:{"1":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB oC pC qC rC 5B WC sC 6B","194":"UB VB WB XB YB ZB aB bB","8196":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC","514":"0C 1C 2C","8196":"3C 4C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"2049":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y SD TD UD VD 8B 9B WD XD","2":"J","8196":"MD ND OD PD QD IC RD"},Q:{"8196":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:2,C:"Payment Request API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js index 4f617ce5a9448a..16e3ab15dff2fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pdf-viewer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"16":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"Built-in PDF viewer",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"16":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"Built-in PDF viewer",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js index 51d47af820a953..d2484dbdd256b0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB lC mC nC oC 4B TC pC 5B"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Permissions API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB oC pC qC rC 5B WC sC 6B"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Permissions API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js index 30bb937f075492..e3ce5051d5b055 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/permissions-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","258":"Q H R S T U","322":"V W","388":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB YC ZC","258":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC","258":"lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U","322":"V W","388":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B aC FC bC cC dC eC GC","258":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB lC mC nC oC 4B TC pC 5B","258":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB","322":"wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d","388":"e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC","258":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","258":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","388":"H"},L:{"388":"I"},M:{"258":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J JD KD LD","258":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"258":"VD"},R:{"388":"WD"},S:{"2":"XD","258":"YD"}},B:5,C:"Permissions Policy",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","258":"Q H R S T U","322":"V W","388":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB bC cC","258":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC","258":"nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U","322":"V W","388":"0 1 2 3 4 5 6 7 8 9 X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B dC HC eC fC gC hC IC","258":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB oC pC qC rC 5B WC sC 6B","258":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB","322":"yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d","388":"e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C","258":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","258":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","388":"H"},L:{"388":"I"},M:{"258":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J MD ND OD","258":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"258":"YD"},R:{"388":"ZD"},S:{"2":"aD","258":"bD"}},B:5,C:"Permissions Policy",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js index 87b26b165fd3ad..d01d5a96b51200 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture-in-picture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB YC ZC","132":"0 1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","1090":"rB","1412":"vB","1668":"sB tB uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB","2114":"tB"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC","4100":"A B C L GC 4B 5B"},F:{"1":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB lC mC nC oC 4B TC pC 5B","8196":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC","4100":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"16388":"I"},M:{"16388":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"Picture-in-Picture",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB bC cC","132":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","1090":"tB","1412":"xB","1668":"uB vB wB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB","2114":"vB"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC","4100":"A B C L IC 5B 6B"},F:{"1":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB oC pC qC rC 5B WC sC 6B","8196":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC","4100":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"16388":"I"},M:{"16388":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"Picture-in-Picture",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js index 850d51c31285cf..66380f090ba309 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/picture.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB YC ZC","578":"MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB","194":"PB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B","322":"x"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Picture element",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB bC cC","578":"OB PB QB RB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB","194":"RB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B","322":"y"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Picture element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js index 23bc6462a79603..8b2ecee1dd483c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ping.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"2":"WC","194":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"194":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"194":"XD YD"}},B:1,C:"Ping attribute",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"2":"ZC","194":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"194":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"194":"aD bD"}},B:1,C:"Ping attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js index 927dbe22822f68..3915dfaa1a358a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/png-alpha.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","2":"VC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"PNG alpha transparency",D:true}; +module.exports={A:{A:{"1":"D E F A B","2":"YC","8":"K"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"PNG alpha transparency",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js index 3c7eb6d355db71..ec89945934d790 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer-events.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:7,C:"CSS pointer-events (for HTML)",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:7,C:"CSS pointer-events (for HTML)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js index 2afbd674278475..814c6f7b320167 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointer.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F VC","164":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC","8":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB","328":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u","8":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","584":"eB fB gB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC","8":"D E F A B C cC dC eC GC 4B","1096":"5B"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","8":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB","584":"RB SB TB"},G:{"1":"4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C","6148":"3C"},H:{"2":"CD"},I:{"1":"I","8":"9B J DD ED FD GD UC HD ID"},J:{"8":"D A"},K:{"1":"H","2":"A","8":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","36":"A"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"JD","8":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","328":"XD"}},B:2,C:"Pointer events",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F YC","164":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC","8":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","328":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v","8":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","584":"gB hB iB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC","8":"D E F A B C fC gC hC IC 5B","1096":"6B"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","8":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB","584":"TB UB VB"},G:{"1":"7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","6148":"6C"},H:{"2":"FD"},I:{"1":"I","8":"AC J GD HD ID JD XC KD LD"},J:{"8":"D A"},K:{"1":"H","2":"A","8":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","36":"A"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"MD","8":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","328":"aD"}},B:2,C:"Pointer events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js index d67ebf2f1b95e5..794e217a6adf4c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/pointerlock.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L YC ZC","33":"M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G","33":"v w x DB EB FB GB HB IB JB KB LB MB NB OB","66":"N O P CB t u"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Pointer Lock API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L bC cC","33":"M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G","33":"w x y FB GB HB IB JB KB LB MB NB OB PB QB","66":"N O P EB u v"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Pointer Lock API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js index e2b50e20e971f8..d89f6e64b59b10 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/portals.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T","322":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB","194":"zB 0B 1B 2B Q H R S T","322":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","450":"U"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B","194":"mB nB oB pB qB rB sB tB uB vB wB","322":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"450":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Portals",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T","322":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","450":"U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B","194":"1B 2B 3B 4B Q H R S T","322":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","450":"U"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B","194":"oB pB qB rB sB tB uB vB wB xB yB","322":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"450":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Portals",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js index 5991641a27e42a..b292f5f55aa0ce 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-color-scheme.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"prefers-color-scheme media query",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},E:{"1":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"prefers-color-scheme media query",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js index 4028207797a7e0..cd7d9a090212c8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/prefers-reduced-motion.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"prefers-reduced-motion media query",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"prefers-reduced-motion media query",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js index 6812728c998f36..8dd406b5bddc7c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/progress.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F lC mC nC oC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC","132":"tC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"progress element",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F oC pC qC rC"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC","132":"wC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"progress element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js index 1c9726d109e74b..400677609cc694 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promise-finally.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"Promise.prototype.finally",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"Promise.prototype.finally",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js index d67e54e9832eb8..286c7a3cf4bab8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/promises.js @@ -1 +1 @@ -module.exports={A:{A:{"8":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","4":"FB GB","8":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"KB","8":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB K D aC FC bC cC"},F:{"1":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","4":"CB","8":"F B C G N O P lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC rC sC tC"},H:{"8":"CD"},I:{"1":"I ID","8":"9B J DD ED FD GD UC HD"},J:{"8":"D A"},K:{"1":"H","8":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Promises",D:true}; +module.exports={A:{A:{"8":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","4":"HB IB","8":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"MB","8":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB K D dC HC eC fC"},F:{"1":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","4":"EB","8":"F B C G N O P oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC uC vC wC"},H:{"8":"FD"},I:{"1":"I LD","8":"AC J GD HD ID JD XC KD"},J:{"8":"D A"},K:{"1":"H","8":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Promises",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js index 5de066135a99e8..7a2d0fafcba829 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proximity.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"XD YD"}},B:4,C:"Proximity API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"aD bD"}},B:4,C:"Proximity API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js index 045e4114392576..68b0bb9c44cb96 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/proxy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P QB RB SB TB UB VB WB XB YB ZB aB","66":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B","66":"G N O P CB t u v w x"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Proxy object",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P SB TB UB VB WB XB YB ZB aB bB cB","66":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B","66":"G N O P EB u v w x y"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Proxy object",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js index 7d050888f36e8f..c0a5016cf26dec 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/publickeypinning.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB","2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","2":"F B C G N O P CB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","4":"w","16":"t u v x"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"J JD KD LD MD ND GC","2":"t u v w x OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"XD","2":"YD"}},B:6,C:"HTTP Public Key Pinning",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB","2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB","2":"F B C G N O P EB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","4":"x","16":"u v w y"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"J MD ND OD PD QD IC","2":"u v w x y RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"aD","2":"bD"}},B:6,C:"HTTP Public Key Pinning",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js index 0254c6716f8954..87448aba3ff3e6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/push-api.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"O P","2":"C L M G N","257":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB YC ZC","257":"0 1 2 3 4 5 6 7 8 9 WB YB ZB aB bB cB dB fB gB hB iB jB kB AC BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","1281":"XB eB lB"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","257":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","388":"WB XB YB ZB aB bB"},E:{"2":"J BB K aC FC bC cC","514":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B","2564":"JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB lC mC nC oC 4B TC pC 5B","16":"PB QB RB SB TB","257":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC","4100":"MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"2":"WD"},S:{"257":"XD YD"}},B:5,C:"Push API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"O P","2":"C L M G N","257":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB bC cC","257":"0 1 2 3 4 5 6 7 8 9 YB aB bB cB dB eB fB hB iB jB kB lB mB BC CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","1281":"ZB gB nB"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","257":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","388":"YB ZB aB bB cB dB"},E:{"2":"J DB K dC HC eC fC","514":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B","2564":"LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB oC pC qC rC 5B WC sC 6B","16":"RB SB TB UB VB","257":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC","4100":"OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"257":"aD bD"}},B:5,C:"Push API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js index 052376ad1037aa..3a7c47d8cd1f1f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/queryselector.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"VC","8":"K D","132":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","8":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","8":"F lC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"querySelector/querySelectorAll",D:true}; +module.exports={A:{A:{"1":"F A B","2":"YC","8":"K D","132":"E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","8":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","8":"F oC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"querySelector/querySelectorAll",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js index b2c90e4c8dc905..2d8a0e951ef654 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/readonly-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","16":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M G N O P CB t u v w x DB"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F lC","132":"B C mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC sC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H","132":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"257":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"readonly attribute of input and textarea elements",D:true}; +module.exports={A:{A:{"1":"K D E F A B","16":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M G N O P EB u v w x y FB"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F oC","132":"B C pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC vC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H","132":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"257":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"readonly attribute of input and textarea elements",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js index f2a7cd2507cd63..f7a38239294e48 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/referrer-policy.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O P","516":"Q H R S T"},C:{"1":"W X Y Z a","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC","516":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V","2049":"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t","260":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB","516":"BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T"},E:{"2":"J BB K D aC FC bC cC","132":"E F A B dC eC GC","516":"C 4B 5B","1025":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","1540":"L M fC gC"},F:{"1":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","516":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},G:{"2":"FC qC UC rC sC tC","132":"E uC vC wC xC yC zC 0C","516":"1C 2C 3C 4C","1025":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","1540":"5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2049":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J","516":"JD KD LD MD ND GC OD PD QD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"516":"XD YD"}},B:4,C:"Referrer Policy",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O P","516":"Q H R S T"},C:{"1":"W X Y Z a","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC","516":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V","2049":"0 1 2 3 4 5 6 7 8 9 b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u","260":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB","516":"CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T"},E:{"2":"J DB K D dC HC eC fC","132":"E F A B gC hC IC","516":"C 5B 6B","1025":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","1540":"L M iC jC"},F:{"1":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","516":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB"},G:{"2":"HC tC XC uC vC wC","132":"E xC yC zC 0C 1C 2C 3C","516":"4C 5C 6C 7C","1025":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","1540":"8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2049":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J","516":"MD ND OD PD QD IC RD SD TD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"516":"aD bD"}},B:4,C:"Referrer Policy",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js index 93f0c15eca3d6e..710ac532ec4a25 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/registerprotocolhandler.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC"},D:{"2":"J BB K D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B lC mC nC oC 4B TC","129":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D","129":"A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:1,C:"Custom protocol handling",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","129":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC"},D:{"2":"J DB K D E F A B C","129":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B oC pC qC rC 5B WC","129":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D","129":"A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:1,C:"Custom protocol handling",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js index e2bc5d9778b94d..77211eee369171 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noopener.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"rel=noopener",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"rel=noopener",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js index a7b30114abdf33..adab262b435e0d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rel-noreferrer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M G"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Link type \"noreferrer\"",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","132":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M G"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Link type \"noreferrer\"",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js index c52e6a5017cbfb..6721e899013658 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rellist.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N","132":"O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","132":"cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E aC FC bC cC dC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB lC mC nC oC 4B TC pC 5B","132":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","132":"JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"relList (DOMTokenList)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N","132":"O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","132":"eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E dC HC eC fC gC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB oC pC qC rC 5B WC sC 6B","132":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","132":"MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"relList (DOMTokenList)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js index cd34fec1938c27..9cdc9ebbe8ca6a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rem.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E VC","132":"F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC"},G:{"1":"E qC UC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC","260":"rC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"C H 5B","2":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"rem (root em) units",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E YC","132":"F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC"},G:{"1":"E tC XC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC","260":"uC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"C H 6B","2":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"rem (root em) units",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js index 25944ac098e50e..670c914312c35f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestanimationframe.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","33":"B C L M G N O P CB t u v","164":"J BB K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F","33":"v w","164":"P CB t u","420":"A B C L M G N O"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","33":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","33":"sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"requestAnimationFrame",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","33":"B C L M G N O P EB u v w","164":"J DB K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F","33":"w x","164":"P EB u v","420":"A B C L M G N O"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","33":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","33":"vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"requestAnimationFrame",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js index 1cbe17c3db12ba..3772d4ddd84e5d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/requestidlecallback.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC","194":"fB gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B","322":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","322":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"requestIdleCallback",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC","194":"hB iB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B","322":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C","322":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"requestIdleCallback",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js index 9e75264d20df66..9c0cb1f07bed37 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resizeobserver.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","194":"gB hB iB jB kB AC lB BC mB nB"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B","66":"L"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB lC mC nC oC 4B TC pC 5B","194":"TB UB VB WB XB YB ZB aB bB cB dB"},G:{"1":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"Resize Observer",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","194":"iB jB kB lB mB BC nB CC oB pB"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B","66":"L"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB oC pC qC rC 5B WC sC 6B","194":"VB WB XB YB ZB aB bB cB dB eB fB"},G:{"1":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"Resize Observer",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js index 127525287896fd..6d6487787efd92 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/resource-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC","194":"JB KB LB MB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","260":"B"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Resource Timing (basic support)",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC","194":"LB MB NB OB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","260":"B"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Resource Timing (basic support)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js index 744d829dd71cc6..fac98ca4af4437 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rest-parameters.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","194":"WB XB YB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB lC mC nC oC 4B TC pC 5B","194":"JB KB LB"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Rest parameters",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB","194":"YB ZB aB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB oC pC qC rC 5B WC sC 6B","194":"LB MB NB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Rest parameters",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js index 532a70a2ff7e40..114ba04a68aac3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/rtcpeerconnection.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","260":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC","33":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v","33":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O lC mC nC oC 4B TC pC 5B","33":"P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"33":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"WebRTC Peer-to-peer connections",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","260":"G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC","33":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w","33":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O oC pC qC rC 5B WC sC 6B","33":"P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"WebRTC Peer-to-peer connections",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js index ce46b1e2c82ccc..2cada1d9c28467 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ruby.js @@ -1 +1 @@ -module.exports={A:{A:{"4":"K D E VC","132":"F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB YC ZC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J"},E:{"4":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J aC FC"},F:{"4":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B C lC mC nC oC 4B TC pC 5B"},G:{"4":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC"},H:{"8":"CD"},I:{"4":"9B J I GD UC HD ID","8":"DD ED FD"},J:{"4":"A","8":"D"},K:{"4":"H","8":"A B C 4B TC 5B"},L:{"4":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"4":"6B"},P:{"4":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"4":"VD"},R:{"4":"WD"},S:{"1":"XD YD"}},B:1,C:"Ruby annotation",D:true}; +module.exports={A:{A:{"4":"K D E YC","132":"F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J"},E:{"4":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J dC HC"},F:{"4":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","8":"F B C oC pC qC rC 5B WC sC 6B"},G:{"4":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC"},H:{"8":"FD"},I:{"4":"AC J I JD XC KD LD","8":"GD HD ID"},J:{"4":"A","8":"D"},K:{"4":"H","8":"A B C 5B WC 6B"},L:{"4":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"4":"7B"},P:{"4":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"4":"YD"},R:{"4":"ZD"},S:{"1":"aD bD"}},B:1,C:"Ruby annotation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js index f947be5c7f57fd..107f2e722761db 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/run-in.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"K D VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB","2":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K bC","2":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"cC","129":"J aC FC"},F:{"1":"F B C G N O P lC mC nC oC 4B TC pC 5B","2":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"qC UC rC sC tC","2":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","129":"FC"},H:{"1":"CD"},I:{"1":"9B J DD ED FD GD UC HD","2":"I ID"},J:{"1":"D A"},K:{"1":"A B C 4B TC 5B","2":"H"},L:{"2":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"display: run-in",D:true}; +module.exports={A:{A:{"1":"E F A B","2":"K D YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB","2":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K eC","2":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"fC","129":"J dC HC"},F:{"1":"F B C G N O P oC pC qC rC 5B WC sC 6B","2":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"tC XC uC vC wC","2":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","129":"HC"},H:{"1":"FD"},I:{"1":"AC J GD HD ID JD XC KD","2":"I LD"},J:{"1":"D A"},K:{"1":"A B C 5B WC 6B","2":"H"},L:{"2":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"display: run-in",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js index 6ec8862011e266..a4834548de7798 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/same-site-cookie-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","388":"B"},B:{"1":"P Q H R S T U","2":"C L M G","129":"N O","513":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC YC ZC"},D:{"1":"dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","513":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC 4B","2052":"M gC","3076":"C L 5B fC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB lC mC nC oC 4B TC pC 5B","513":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C","2052":"1C 2C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","513":"H"},L:{"513":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"16":"VD"},R:{"513":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"'SameSite' cookie attribute",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","388":"B"},B:{"1":"P Q H R S T U","2":"C L M G","129":"N O","513":"0 1 2 3 4 5 6 7 8 9 V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC bC cC"},D:{"1":"fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","513":"0 1 2 3 4 5 6 7 8 9 H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC 5B","2052":"M jC","3076":"C L 6B iC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB oC pC qC rC 5B WC sC 6B","513":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C","2052":"4C 5C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","513":"H"},L:{"513":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"16":"YD"},R:{"513":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"'SameSite' cookie attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js index f2e8d638c84246..9542aeafeceddb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/screen-orientation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","36":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O YC ZC","36":"P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A","36":"B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","16":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"Screen Orientation",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","164":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","36":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O bC cC","36":"P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A","36":"B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","16":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"Screen Orientation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js index c50b56ef934568..59af6bfb48311d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-async.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","132":"BB"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"async attribute for external scripts",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","132":"DB"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"async attribute for external scripts",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js index 28acb65568803b..8ca579ecad1e89 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/script-defer.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","132":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","257":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"defer attribute for external scripts",D:true}; +module.exports={A:{A:{"1":"A B","132":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","257":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"defer attribute for external scripts",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js index 4edca04f675d97..07b69721dd1e28 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoview.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","132":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","132":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC mC nC oC","16":"B 4B TC","132":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB pC 5B"},G:{"1":"7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC","132":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"1":"I","16":"DD ED","132":"9B J FD GD UC HD ID"},J:{"132":"D A"},K:{"1":"H","132":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"132":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"scrollIntoView",D:true}; +module.exports={A:{A:{"2":"K D YC","132":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","132":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","132":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC pC qC rC","16":"B 5B WC","132":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB sC 6B"},G:{"1":"8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC","132":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"1":"I","16":"GD HD","132":"AC J ID JD XC KD LD"},J:{"132":"D A"},K:{"1":"H","132":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"J MD ND OD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"scrollIntoView",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js index 942d926f22f248..e7d8871773228a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/scrollintoviewifneeded.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Element.scrollIntoViewIfNeeded()",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Element.scrollIntoViewIfNeeded()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js index 49ca9b33be7a5c..21e33cae2bd035 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sdch.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","2":"0 1 2 3 4 5 6 7 8 9 AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB","2":"F B C xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","2":"0 1 2 3 4 5 6 7 8 9 BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB","2":"F B C zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"SDCH Accept-Encoding/Content-Encoding",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js index 6a7114e13f33a8..85e8977ce75826 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selection-api.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","16":"VC","260":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB YC ZC","2180":"VB WB XB YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","132":"F B C lC mC nC oC 4B TC pC 5B"},G:{"16":"UC","132":"FC qC","516":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I HD ID","16":"9B J DD ED FD GD","1025":"UC"},J:{"1":"A","16":"D"},K:{"1":"H","16":"A B C 4B TC","132":"5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","16":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2180":"XD"}},B:5,C:"Selection API",D:true}; +module.exports={A:{A:{"1":"F A B","16":"YC","260":"K D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC","2180":"XB YB ZB aB bB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","132":"F B C oC pC qC rC 5B WC sC 6B"},G:{"16":"XC","132":"HC tC","516":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I KD LD","16":"AC J GD HD ID JD","1025":"XC"},J:{"1":"A","16":"D"},K:{"1":"H","16":"A B C 5B WC","132":"6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","16":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2180":"aD"}},B:5,C:"Selection API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selectlist.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selectlist.js index 9f84df85bec5af..bccaf74c44cf08 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selectlist.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/selectlist.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f","194":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f","194":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC lC mC nC oC 4B TC pC 5B","194":"S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","194":"H"},L:{"194":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Selectlist - Customizable select element",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f","194":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f","194":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC oC pC qC rC 5B WC sC 6B","194":"S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","194":"H"},L:{"194":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Selectlist - Customizable select element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js index 6bbd35ae172a25..ad4ba6e52414fd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/server-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC","196":"lB BC mB nB","324":"oB"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","516":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB lC mC nC oC 4B TC pC 5B"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"Server Timing",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC","196":"nB CC oB pB","324":"qB"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","516":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB oC pC qC rC 5B WC sC 6B"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"Server Timing",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js index 5b6f6a512e912f..a20842c1465fe8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/serviceworkers.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","322":"G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB YB ZB aB bB cB dB fB gB hB iB jB kB AC BC mB nB oB pB qB rB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC","194":"LB MB NB OB PB QB RB SB TB UB VB","513":"XB eB lB sB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB","4":"SB TB UB VB WB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB lC mC nC oC 4B TC pC 5B","4":"FB GB HB IB JB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","4":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"Service Workers",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","322":"G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB aB bB cB dB eB fB hB iB jB kB lB mB BC CC oB pB qB rB sB tB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC","194":"NB OB PB QB RB SB TB UB VB WB XB","513":"ZB gB nB uB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","4":"UB VB WB XB YB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB oC pC qC rC 5B WC sC 6B","4":"HB IB JB KB LB"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","4":"I"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"Service Workers",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js index fc950738e76142..72b8d7089506fb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/setimmediate.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"1":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Efficient Script Yielding: setImmediate()",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"C L M G N O P","2":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"1":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Efficient Script Yielding: setImmediate()",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js index aee44bf35017a6..2521911936227f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdom.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","66":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"DB EB FB GB HB IB JB KB LB MB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB","2":"F B C rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC","33":"HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"JD KD LD MD ND GC OD PD","2":"t u v w x QD RD SD 7B 8B TD UD","33":"J"},Q:{"1":"VD"},R:{"2":"WD"},S:{"1":"XD","2":"YD"}},B:7,C:"Shadow DOM (deprecated V0 spec)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"Q","2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","66":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"FB GB HB IB JB KB LB MB NB OB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB","2":"F B C tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC","33":"KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"MD ND OD PD QD IC RD SD","2":"u v w x y TD UD VD 8B 9B WD XD","33":"J"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"1":"aD","2":"bD"}},B:7,C:"Shadow DOM (deprecated V0 spec)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js index 255096f64cdbd6..e61b9651d373b3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/shadowdomv1.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB YC ZC","322":"kB","578":"AC lB BC mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"A B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC","132":"xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","4":"JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"Shadow DOM (V1)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB bC cC","322":"mB","578":"BC nB CC oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"A B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC","132":"0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","4":"MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"Shadow DOM (V1)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js index 74bc54db11379f..50bf36734f8719 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedarraybuffer.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"Q H R S T U V W X Y Z","2":"C L M G","194":"N O P","513":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB YC ZC","194":"jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB","450":"yB zB 0B 1B 2B","513":"0 1 2 3 4 5 6 7 8 9 Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC","194":"lB BC mB nB oB pB qB rB","513":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A aC FC bC cC dC eC","194":"B C L M G GC 4B 5B fC gC hC","513":"HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB lC mC nC oC 4B TC pC 5B","194":"ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","513":"2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC","194":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C","513":"HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","513":"H"},L:{"513":"I"},M:{"513":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J JD KD LD MD ND GC OD PD QD RD","513":"t u v w x SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"513":"WD"},S:{"2":"XD","513":"YD"}},B:6,C:"Shared Array Buffer",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"Q H R S T U V W X Y Z","2":"C L M G","194":"N O P","513":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC","194":"lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB","450":"0B 1B 2B 3B 4B","513":"0 1 2 3 4 5 6 7 8 9 Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC","194":"nB CC oB pB qB rB sB tB","513":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A dC HC eC fC gC hC","194":"B C L M G IC 5B 6B iC jC kC","513":"JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB oC pC qC rC 5B WC sC 6B","194":"bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","513":"4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C","194":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD","513":"JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","513":"H"},L:{"513":"I"},M:{"513":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J MD ND OD PD QD IC RD SD TD UD","513":"u v w x y VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"513":"ZD"},S:{"2":"aD","513":"bD"}},B:6,C:"Shared Array Buffer",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js index ed277f2ade0e91..79f91c75805378 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sharedworkers.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"BB K bC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J D E F A B C L M G aC FC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","2":"F lC mC nC"},G:{"1":"rC sC 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"B C 4B TC 5B","2":"H","16":"A"},L:{"2":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"J","2":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"XD YD"}},B:1,C:"Shared Web Workers",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"DB K eC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J D E F A B C L M G dC HC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","2":"F oC pC qC"},G:{"1":"uC vC 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"B C 5B WC 6B","2":"H","16":"A"},L:{"2":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"J","2":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"aD bD"}},B:1,C:"Shared Web Workers",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js index afcafa43dfabe1..983ba89cd0f8b7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sni.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K VC","132":"D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC"},H:{"1":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Server Name Indication",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K YC","132":"D E"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC"},H:{"1":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Server Name Indication",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js index c33966e0c485b8..165d108b047aa4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spdy.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F A VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","2":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"E F A B C eC GC 4B","2":"J BB K D aC FC bC cC dC","129":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB UB WB 5B","2":"F B C SB TB VB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC"},G:{"1":"E uC vC wC xC yC zC 0C 1C","2":"FC qC UC rC sC tC","257":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J GD UC HD ID","2":"I DD ED FD"},J:{"2":"D A"},K:{"1":"5B","2":"A B C H 4B TC"},L:{"2":"I"},M:{"2":"3B"},N:{"1":"B","2":"A"},O:{"2":"6B"},P:{"1":"J","2":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"XD","2":"YD"}},B:7,C:"SPDY protocol",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F A YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","2":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"E F A B C hC IC 5B","2":"J DB K D dC HC eC fC gC","129":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB WB YB 6B","2":"F B C UB VB XB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C","2":"HC tC XC uC vC wC","257":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J JD XC KD LD","2":"I GD HD ID"},J:{"2":"D A"},K:{"1":"6B","2":"A B C H 5B WC"},L:{"2":"I"},M:{"2":"t"},N:{"1":"B","2":"A"},O:{"2":"7B"},P:{"1":"J","2":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"aD","2":"bD"}},B:7,C:"SPDY protocol",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js index 26aeec52cdbbf9..edf399804939c6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-recognition.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","514":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC","322":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x","164":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC","1060":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB lC mC nC oC 4B TC pC 5B","514":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C","1060":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","164":"H"},L:{"164":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"164":"6B"},P:{"164":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"164":"VD"},R:{"164":"WD"},S:{"322":"XD YD"}},B:7,C:"Speech Recognition API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","514":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC","322":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y","164":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC","1060":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB oC pC qC rC 5B WC sC 6B","514":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD","1060":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","164":"H"},L:{"164":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"164":"7B"},P:{"164":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"164":"YD"},R:{"164":"ZD"},S:{"322":"aD bD"}},B:7,C:"Speech Recognition API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js index bac5b2af3f2830..1b94dce3958dfd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/speech-synthesis.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"M G N O P","2":"C L","257":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB YC ZC","194":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},D:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB","257":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB","2":"F B C G N O P CB t u v w x DB EB lC mC nC oC 4B TC pC 5B","257":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"2":"WD"},S:{"1":"XD YD"}},B:7,C:"Speech Synthesis API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"M G N O P","2":"C L","257":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB bC cC","194":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB","257":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB","2":"F B C G N O P EB u v w x y FB GB oC pC qC rC 5B WC sC 6B","257":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"2":"ZD"},S:{"1":"aD bD"}},B:7,C:"Speech Synthesis API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js index 261587180bdc20..5c73f2ecf578ff 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/spellcheck-attribute.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"4":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"4":"CD"},I:{"4":"9B J I DD ED FD GD UC HD ID"},J:{"1":"A","4":"D"},K:{"4":"A B C H 4B TC 5B"},L:{"4":"I"},M:{"4":"3B"},N:{"4":"A B"},O:{"4":"6B"},P:{"4":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"4":"WD"},S:{"2":"XD YD"}},B:1,C:"Spellcheck attribute",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"4":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"4":"FD"},I:{"4":"AC J I GD HD ID JD XC KD LD"},J:{"1":"A","4":"D"},K:{"4":"A B C H 5B WC 6B"},L:{"4":"I"},M:{"4":"t"},N:{"4":"A B"},O:{"4":"7B"},P:{"4":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"4":"ZD"},S:{"2":"aD bD"}},B:1,C:"Spellcheck attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js index 230c23d0ac3233..be6e17fb7835a5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sql-storage.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"Q H R S T U V W X Y Z a b c d e f g h i j","2":"C L M G N O P","129":"k l m n o p q r s","385":"0 1 2 3 4 5 6 7 8 9 y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j","2":"3B DC EC","129":"k l m n o p q r s","385":"0 1 2 3 4 5 6 y z","897":"7 8 9 AB I"},E:{"1":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B","2":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z nC oC 4B TC pC 5B","2":"F lC mC","257":"a b c d e f g h i j k l m n o p q r s"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C","2":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J DD ED FD GD UC HD ID","257":"I"},J:{"1":"D A"},K:{"1":"B C 4B TC 5B","2":"A","257":"H"},L:{"257":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Web SQL Database",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"Q H R S T U V W X Y Z a b c d e f g h i j","2":"C L M G N O P I t","129":"k l m n o p q r s","385":"0 1 2 3 4 5 6 7 8 9 z AB BB CB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j","2":"I t EC FC GC","129":"k l m n o p q r s","385":"0 1 2 3 4 5 6 7 z","897":"8 9 AB BB CB"},E:{"1":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B","2":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z qC rC 5B WC sC 6B","2":"F oC pC","257":"a b c d e f g h i j k l m n o p q r s"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C","2":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J GD HD ID JD XC KD LD","2":"I"},J:{"1":"D A"},K:{"1":"B C 5B WC 6B","2":"A","257":"H"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Web SQL Database",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js index 632b0d7421fbf3..700189e9013ae0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/srcset.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C","514":"L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB YC ZC","194":"KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB","260":"MB NB OB PB"},E:{"2":"J BB K D aC FC bC cC","260":"E dC","1028":"F A eC GC","3076":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t lC mC nC oC 4B TC pC 5B","260":"u v w x"},G:{"2":"FC qC UC rC sC tC","260":"E uC","1028":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Srcset and sizes attributes",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C","514":"L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB bC cC","194":"MB NB OB PB QB RB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB","260":"OB PB QB RB"},E:{"2":"J DB K D dC HC eC fC","260":"E gC","1028":"F A hC IC","3076":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u oC pC qC rC 5B WC sC 6B","260":"v w x y"},G:{"2":"HC tC XC uC vC wC","260":"E xC","1028":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Srcset and sizes attributes",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js index cb47f931981938..b7cf0ff7b54c41 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stream.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N YC ZC","129":"OB PB QB RB SB TB","420":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t","420":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B G N O lC mC nC oC 4B TC pC","420":"C P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC","513":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","1537":"zC 0C 1C 2C 3C 4C 5C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","420":"A"},K:{"1":"H","2":"A B 4B TC","420":"C 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","420":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:4,C:"getUserMedia/Stream API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N bC cC","129":"QB RB SB TB UB VB","420":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u","420":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B G N O oC pC qC rC 5B WC sC","420":"C P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C","513":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","1537":"2C 3C 4C 5C 6C 7C 8C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","420":"A"},K:{"1":"H","2":"A B 5B WC","420":"C 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","420":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:4,C:"getUserMedia/Stream API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js index 380b2e6821510a..f4dbd2893b5f45 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/streams.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","130":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C L","260":"M G","1028":"Q H R S T U V W X","5124":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB YC ZC","5124":"j k","7172":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i","7746":"jB kB AC lB BC mB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","260":"eB fB gB hB iB jB kB","1028":"AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X"},E:{"2":"J BB K D E F aC FC bC cC dC eC","1028":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","3076":"A B C L M GC 4B 5B fC"},F:{"1":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB lC mC nC oC 4B TC pC 5B","260":"RB SB TB UB VB WB XB","1028":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB"},G:{"2":"E FC qC UC rC sC tC uC vC wC","16":"xC","1028":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x SD 7B 8B TD UD","2":"J JD KD","1028":"LD MD ND GC OD PD QD RD"},Q:{"1028":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:1,C:"Streams",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","130":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C L","260":"M G","1028":"Q H R S T U V W X","5124":"N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB bC cC","5124":"j k","7172":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i","7746":"lB mB BC nB CC oB pB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","260":"gB hB iB jB kB lB mB","1028":"BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X"},E:{"2":"J DB K D E F dC HC eC fC gC hC","1028":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","3076":"A B C L M IC 5B 6B iC"},F:{"1":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB oC pC qC rC 5B WC sC 6B","260":"TB UB VB WB XB YB ZB","1028":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B"},G:{"2":"E HC tC XC uC vC wC xC yC zC","16":"0C","1028":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y VD 8B 9B WD XD","2":"J MD ND","1028":"OD PD QD IC RD SD TD UD"},Q:{"1028":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:1,C:"Streams",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js index db51c05f3c96c9..2091889f34a922 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/stricttransportsecurity.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A VC","129":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F B lC mC nC oC 4B TC pC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Strict Transport Security",D:true}; +module.exports={A:{A:{"2":"K D E F A YC","129":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F B oC pC qC rC 5B WC sC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Strict Transport Security",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js index a28832485f9f9e..f864a0176b65fc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/style-scoped.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","322":"hB iB jB kB AC lB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","194":"t u v w x DB EB FB GB HB IB JB KB LB MB NB OB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"XD","2":"YD"}},B:7,C:"Scoped attribute",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","322":"jB kB lB mB BC nB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","194":"u v w x y FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"aD","2":"bD"}},B:7,C:"Scoped attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js index 3fc68556064a8c..d720008bee6912 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-bundling.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Subresource Loading with Web Bundles",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Subresource Loading with Web Bundles",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js index 06f5a416c330c8..d3da114760bca7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/subresource-integrity.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC","194":"zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Subresource Integrity",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C","194":"2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Subresource Integrity",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js index 0680686d160b5a..3bb90b5f457409 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-css.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","516":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","260":"J BB K D E F A B C L M G N O P CB t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J"},E:{"1":"BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC","132":"J FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"FC qC"},H:{"260":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"H","260":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"SVG in CSS backgrounds",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","516":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","260":"J DB K D E F A B C L M G N O P EB u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J"},E:{"1":"DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC","132":"J HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"HC tC"},H:{"260":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"H","260":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"SVG in CSS backgrounds",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js index 4ab77a7c444553..20a7e9b5f05c6c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-filters.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J","4":"BB K D"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"SVG filters",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J","4":"DB K D"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"SVG filters",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js index a90c161728b742..d8aa8e09fefe49 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fonts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B VC","8":"K D E"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB","2":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","130":"QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC"},F:{"1":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B","2":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","130":"DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"258":"CD"},I:{"1":"9B J GD UC HD ID","2":"I DD ED FD"},J:{"1":"D A"},K:{"1":"A B C 4B TC 5B","2":"H"},L:{"130":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"J","130":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"130":"WD"},S:{"2":"XD YD"}},B:2,C:"SVG fonts",D:true}; +module.exports={A:{A:{"2":"F A B YC","8":"K D E"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB","2":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","130":"SB TB UB VB WB XB YB ZB aB bB cB dB eB"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC"},F:{"1":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B","2":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","130":"FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"258":"FD"},I:{"1":"AC J JD XC KD LD","2":"I GD HD ID"},J:{"1":"D A"},K:{"1":"A B C 5B WC 6B","2":"H"},L:{"130":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"J","130":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"130":"ZD"},S:{"2":"aD bD"}},B:2,C:"SVG fonts",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js index 1b1f2028721404..f086fab9ff72fa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-fragment.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D F A B aC FC bC cC eC GC","132":"E dC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"G N O P CB t u v","4":"B C mC nC oC 4B TC pC","16":"F lC","132":"w x DB EB FB GB HB IB JB KB LB MB NB OB"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC vC wC xC yC zC","132":"E uC"},H:{"1":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D","132":"A"},K:{"1":"H 5B","4":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","132":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"SVG fragment identifiers",D:true}; +module.exports={A:{A:{"2":"K D E YC","260":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D F A B dC HC eC fC hC IC","132":"E gC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"G N O P EB u v w","4":"B C pC qC rC 5B WC sC","16":"F oC","132":"x y FB GB HB IB JB KB LB MB NB OB PB QB"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC yC zC 0C 1C 2C","132":"E xC"},H:{"1":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D","132":"A"},K:{"1":"H 6B","4":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"SVG fragment identifiers",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js index cf082b5a403a1e..ac00aa08bcff02 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","388":"F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC","4":"9B"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"aC FC","4":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"4":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"4":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC","4":"I HD ID"},J:{"1":"A","2":"D"},K:{"4":"A B C H 4B TC 5B"},L:{"4":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"4":"6B"},P:{"4":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"4":"VD"},R:{"4":"WD"},S:{"1":"XD YD"}},B:2,C:"SVG effects for HTML",D:true}; +module.exports={A:{A:{"2":"K D E YC","388":"F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC","4":"AC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"dC HC","4":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"4":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"4":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC","4":"I KD LD"},J:{"1":"A","2":"D"},K:{"4":"A B C H 5B WC 6B"},L:{"4":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"4":"7B"},P:{"4":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"4":"YD"},R:{"4":"ZD"},S:{"1":"aD bD"}},B:2,C:"SVG effects for HTML",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js index a9c4abb02622d7..97b634a8ccce8c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-html5.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E","129":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","8":"J BB K"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"J BB aC FC","129":"K D E bC cC dC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"B oC 4B TC","8":"F lC mC nC"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","8":"FC qC UC","129":"E rC sC tC uC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"DD ED FD","129":"9B J GD UC"},J:{"1":"A","129":"D"},K:{"1":"C H 5B","8":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"129":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Inline SVG in HTML5",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E","129":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","8":"J DB K"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"J DB dC HC","129":"K D E eC fC gC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"B rC 5B WC","8":"F oC pC qC"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","8":"HC tC XC","129":"E uC vC wC xC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"GD HD ID","129":"AC J JD XC"},J:{"1":"A","129":"D"},K:{"1":"C H 6B","8":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"129":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Inline SVG in HTML5",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js index a648560428d701..022f5c0ebccbbe 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-img.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC","4":"FC","132":"J BB K D E bC cC dC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"E FC qC UC rC sC tC uC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"DD ED FD","132":"9B J GD UC"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"SVG in HTML img element",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC","4":"HC","132":"J DB K D E eC fC gC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"E HC tC XC uC vC wC xC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"GD HD ID","132":"AC J JD XC"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"SVG in HTML img element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js index d16e81905b988d..e2904516be81dc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg-smil.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"aC FC","132":"J BB bC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"FC qC UC rC"},H:{"2":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"SVG SMIL animation",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","8":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"dC HC","132":"J DB eC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"HC tC XC uC"},H:{"2":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"SVG SMIL animation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js index 9a00656b259ad6..96faac89db5f53 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/svg.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E","772":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","513":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","4":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","4":"aC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"I HD ID","2":"DD ED FD","132":"9B J GD UC"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"257":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"SVG (basic support)",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E","772":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","513":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","4":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","4":"dC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"I KD LD","2":"GD HD ID","132":"AC J JD XC"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"257":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"SVG (basic support)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js index 796dd7e1feda53..f5c51457b388a4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/sxg.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB","132":"vB wB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:6,C:"Signed HTTP Exchanges (SXG)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB","132":"xB yB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:6,C:"Signed HTTP Exchanges (SXG)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js index ae9d4d27d310bb..faf0149f462867 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tabindex-attr.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"D E F A B","16":"K VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"16":"WC 9B YC ZC","129":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"16":"J BB aC FC","257":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"769":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"16":"CD"},I:{"16":"9B J I DD ED FD GD UC HD ID"},J:{"16":"D A"},K:{"1":"H","16":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"16":"A B"},O:{"1":"6B"},P:{"16":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"129":"XD YD"}},B:1,C:"tabindex global attribute",D:true}; +module.exports={A:{A:{"1":"D E F A B","16":"K YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"16":"ZC AC bC cC","129":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"16":"J DB dC HC","257":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"769":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"16":"FD"},I:{"16":"AC J I GD HD ID JD XC KD LD"},J:{"16":"D A"},K:{"1":"H","16":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"16":"A B"},O:{"1":"7B"},P:{"16":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"129":"aD bD"}},B:1,C:"tabindex global attribute",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js index 5c2a96cb890c01..5e3f94a7f69f90 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template-literals.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"1":"A B L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC","129":"C"},F:{"1":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB lC mC nC oC 4B TC pC 5B"},G:{"1":"vC wC xC yC zC 0C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC","129":"1C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ES6 Template Literals (Template Strings)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"A B L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC","129":"C"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB oC pC qC rC 5B WC sC 6B"},G:{"1":"yC zC 0C 1C 2C 3C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC","129":"4C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ES6 Template Literals (Template Strings)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js index 091f548a98a550..5c0e518935bb49 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/template.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C","388":"L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB","132":"EB FB GB HB IB JB KB LB MB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D aC FC bC","388":"E dC","514":"cC"},F:{"1":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","132":"G N O P CB t u"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC","388":"E uC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"HTML templates",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C","388":"L M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB","132":"GB HB IB JB KB LB MB NB OB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D dC HC eC","388":"E gC","514":"fC"},F:{"1":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","132":"G N O P EB u v"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC","388":"E xC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"HTML templates",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js index a097e6e6c998be..2c332f01972a17 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/temporal.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"Temporal",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"Temporal",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js index 53f98286ecdfa5..06242daa871a5a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/testfeat.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E A B VC","16":"F"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","16":"J BB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"B C"},E:{"2":"J K aC FC bC","16":"BB D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC TC pC 5B","16":"4B"},G:{"2":"FC qC UC rC sC","16":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED GD UC HD ID","16":"FD"},J:{"2":"A","16":"D"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Test feature - updated",D:false}; +module.exports={A:{A:{"2":"K D E A B YC","16":"F"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","16":"J DB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"B C"},E:{"2":"J K dC HC eC","16":"DB D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC WC sC 6B","16":"5B"},G:{"2":"HC tC XC uC vC","16":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD JD XC KD LD","16":"ID"},J:{"2":"A","16":"D"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Test feature - updated",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js index cba8fe032063b3..79634028d06aa8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-decoration.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","2052":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB YC ZC","1028":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","1060":"K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB","226":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","2052":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D aC FC bC cC","772":"L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","804":"E F A B C eC GC 4B","1316":"dC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB lC mC nC oC 4B TC pC 5B","226":"NB OB PB QB RB SB TB UB VB","2052":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"FC qC UC rC sC tC","292":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","2052":"H"},L:{"2052":"I"},M:{"1028":"3B"},N:{"2":"A B"},O:{"2052":"6B"},P:{"2":"J JD KD","2052":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2052":"VD"},R:{"2052":"WD"},S:{"1028":"XD YD"}},B:4,C:"text-decoration styling",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","2052":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB bC cC","1028":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","1060":"K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB","226":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","2052":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D dC HC eC fC","772":"L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","804":"E F A B C hC IC 5B","1316":"gC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB oC pC qC rC 5B WC sC 6B","226":"PB QB RB SB TB UB VB WB XB","2052":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"HC tC XC uC vC wC","292":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","2052":"H"},L:{"2052":"I"},M:{"1028":"t"},N:{"2":"A B"},O:{"2052":"7B"},P:{"2":"J MD ND","2052":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2052":"YD"},R:{"2052":"ZD"},S:{"1028":"aD bD"}},B:4,C:"text-decoration styling",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js index d727d83e7fd265..4dfe4193d2b15c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-emphasis.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s y z AB I","2":"C L M G N O P","164":"Q H R S T U V W X Y Z a b c d e f g h"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB YC ZC","322":"XB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x","164":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC","164":"D cC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","164":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC","164":"HD ID"},J:{"2":"D","164":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x TD UD","164":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B"},Q:{"164":"VD"},R:{"164":"WD"},S:{"1":"XD YD"}},B:4,C:"text-emphasis styling",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","164":"Q H R S T U V W X Y Z a b c d e f g h"},C:{"1":"0 1 2 3 4 5 6 7 8 9 aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB bC cC","322":"ZB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y","164":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC","164":"D fC"},F:{"1":"V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","164":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC","164":"KD LD"},J:{"2":"D","164":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y WD XD","164":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B"},Q:{"164":"YD"},R:{"164":"ZD"},S:{"1":"aD bD"}},B:4,C:"text-emphasis styling",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js index d7949f37061d65..c0f48b59de818a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-overflow.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B","2":"VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","8":"WC 9B J BB K YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","33":"F lC mC nC oC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"H 5B","33":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"CSS3 Text-overflow",D:true}; +module.exports={A:{A:{"1":"K D E F A B","2":"YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","8":"ZC AC J DB K bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","33":"F oC pC qC rC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"H 6B","33":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"CSS3 Text-overflow",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js index 47ea81abd096fd..ba9b13d97238f9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-size-adjust.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","33":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","258":"EB"},E:{"2":"J BB K D E F A B C L M G aC FC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","258":"bC"},F:{"1":"VB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB WB lC mC nC oC 4B TC pC 5B"},G:{"2":"FC qC UC","33":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"33":"3B"},N:{"161":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS text-size-adjust",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","33":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","258":"GB"},E:{"2":"J DB K D E F A B C L M G dC HC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","258":"eC"},F:{"1":"XB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB YB oC pC qC rC 5B WC sC 6B"},G:{"2":"HC tC XC","33":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"33":"t"},N:{"161":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS text-size-adjust",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js index 6d3082db20ed31..d93d8ed00ac750 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/text-stroke.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","161":"G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB YC ZC","161":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","450":"aB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"33":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"33":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","36":"FC"},H:{"2":"CD"},I:{"2":"9B","33":"J I DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"2":"A B C 4B TC 5B","33":"H"},L:{"33":"I"},M:{"161":"3B"},N:{"2":"A B"},O:{"33":"6B"},P:{"33":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"33":"VD"},R:{"33":"WD"},S:{"161":"XD YD"}},B:7,C:"CSS text-stroke and text-fill",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M","33":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","161":"G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB bC cC","161":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","450":"cB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"33":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"33":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","36":"HC"},H:{"2":"FD"},I:{"2":"AC","33":"J I GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"2":"A B C 5B WC 6B","33":"H"},L:{"33":"I"},M:{"161":"t"},N:{"2":"A B"},O:{"33":"7B"},P:{"33":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"33":"YD"},R:{"33":"ZD"},S:{"161":"aD bD"}},B:7,C:"CSS text-stroke and text-fill",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js index 52a626ca6c9cda..5ff65b2af0947b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textcontent.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"1":"E qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Node.textContent",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"1":"E tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Node.textContent",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js index 9b6e0e3555314e..5b28e7afb87a1d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/textencoder.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P YC ZC","132":"CB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"TextEncoder & TextDecoder",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P bC cC","132":"EB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"TextEncoder & TextDecoder",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js index 5c8756e0ace76a..936dec34e05a75 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-1.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D VC","66":"E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v YC ZC","66":"w","129":"sB tB uB vB wB xB yB zB 0B 1B","388":"0 1 2 3 4 5 6 7 8 9 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T","2":"J BB K D E F A B C L M G N O P CB t u","1540":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"D E F A B C L dC eC GC 4B 5B","2":"J BB K aC FC bC cC","513":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB 5B","2":"F B C lC mC nC oC 4B TC pC","1540":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"1":"A","2":"D"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"129":"3B"},N:{"1":"B","66":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"TLS 1.1",D:true}; +module.exports={A:{A:{"1":"B","2":"K D YC","66":"E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w bC cC","66":"x","129":"uB vB wB xB yB zB 0B 1B 2B 3B","388":"0 1 2 3 4 5 6 7 8 9 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T","2":"J DB K D E F A B C L M G N O P EB u v","1540":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"D E F A B C L gC hC IC 5B 6B","2":"J DB K dC HC eC fC","513":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB 6B","2":"F B C oC pC qC rC 5B WC sC","1540":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"1":"A","2":"D"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"129":"t"},N:{"1":"B","66":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"TLS 1.1",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js index d7984bdb18e0af..fd48f7f7e2fa80 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-2.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D VC","66":"E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w YC ZC","66":"x DB EB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC"},F:{"1":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F G lC","66":"B C mC nC oC 4B TC pC 5B"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"1":"A","2":"D"},K:{"1":"H 5B","2":"A B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","66":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"TLS 1.2",D:true}; +module.exports={A:{A:{"1":"B","2":"K D YC","66":"E F A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x bC cC","66":"y FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC"},F:{"1":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F G oC","66":"B C pC qC rC 5B WC sC 6B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"1":"A","2":"D"},K:{"1":"H 6B","2":"A B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","66":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"TLS 1.2",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js index 2e8efab1802fe1..d5cac14b1843fa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/tls1-3.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB YC ZC","132":"lB BC mB","450":"dB eB fB gB hB iB jB kB AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","706":"gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","1028":"L 5B fC"},F:{"1":"jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B","706":"gB hB iB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:6,C:"TLS 1.3",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB bC cC","132":"nB CC oB","450":"fB gB hB iB jB kB lB mB BC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","706":"iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","1028":"L 6B iC"},F:{"1":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B","706":"iB jB kB"},G:{"1":"5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:6,C:"TLS 1.3",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js index aa05db3a6403c0..2ef78542c8f274 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/touch.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","578":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","4":"J BB K D E F A B C L M G N O","194":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A","260":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:2,C:"Touch events",D:true}; +module.exports={A:{A:{"2":"K D E F YC","8":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","578":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","4":"J DB K D E F A B C L M G N O","194":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A","260":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:2,C:"Touch events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js index 4667222cc8b3f7..875924b2543225 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms2d.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E","129":"A B","161":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","33":"J BB K D E F A B C L M G YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","33":"J BB K D E aC FC bC cC dC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F lC mC","33":"B C G N O P CB t u v nC oC 4B TC pC"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","33":"9B J DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 2D Transforms",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E","129":"A B","161":"F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","33":"J DB K D E F A B C L M G bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","33":"J DB K D E dC HC eC fC gC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F oC pC","33":"B C G N O P EB u v w qC rC 5B WC sC"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","33":"AC J GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 2D Transforms",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js index 829533d224050f..1862d81d547d00 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/transforms3d.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F YC ZC","33":"A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B","33":"C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC","33":"J BB K D E bC cC dC","257":"F A B C L M G eC GC 4B 5B fC gC hC HC"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","33":"E FC qC UC rC sC tC uC","257":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"DD ED FD","33":"9B J GD UC HD ID"},J:{"33":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:5,C:"CSS3 3D Transforms",D:true}; +module.exports={A:{A:{"2":"K D E F YC","132":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F bC cC","33":"A B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B","33":"C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC","33":"J DB K D E eC fC gC","257":"F A B C L M G hC IC 5B 6B iC jC kC JC"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","33":"E HC tC XC uC vC wC xC","257":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"GD HD ID","33":"AC J JD XC KD LD"},J:{"33":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:5,C:"CSS3 3D Transforms",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js index 2e4fc9065bf9d6..f4a81ab2923389 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/trusted-types.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Trusted Types for DOM manipulation",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Trusted Types for DOM manipulation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js index 078028fc6febed..f21e41c9c68df4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/ttf.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s mC nC oC 4B TC pC 5B","2":"F lC"},G:{"1":"E UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC"},H:{"2":"CD"},I:{"1":"9B J I ED FD GD UC HD ID","2":"DD"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support",D:true}; +module.exports={A:{A:{"2":"K D E YC","132":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC qC rC 5B WC sC 6B","2":"F oC"},G:{"1":"E XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC"},H:{"2":"FD"},I:{"1":"AC J I HD ID JD XC KD LD","2":"GD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"TTF/OTF - TrueType and OpenType font support",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js index eb3e5afdc2faa3..ad029f0874f853 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/typedarrays.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"B","2":"K D E F VC","132":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","260":"bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC","260":"UC"},H:{"1":"CD"},I:{"1":"J I GD UC HD ID","2":"9B DD ED FD"},J:{"1":"A","2":"D"},K:{"1":"C H 5B","2":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"132":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Typed Arrays",D:true}; +module.exports={A:{A:{"1":"B","2":"K D E F YC","132":"A"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","260":"eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC","260":"XC"},H:{"1":"FD"},I:{"1":"J I JD XC KD LD","2":"AC GD HD ID"},J:{"1":"A","2":"D"},K:{"1":"C H 6B","2":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"132":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Typed Arrays",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js index a29b689b6e2183..d98078f0850be0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/u2f.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P p q r s y z AB I","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o"},C:{"1":"rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","2":"2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB AB I 3B DC EC XC YC ZC","322":"0 1 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB p q r s y z AB I 3B DC EC","130":"QB RB SB","513":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g","578":"h i j k l m n o"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB TB lC mC nC oC 4B TC pC 5B","513":"SB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"1":"YD","322":"XD"}},B:7,C:"FIDO U2F API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P p q r s z AB BB CB I t","513":"Q H R S T U V W X Y Z a b c d e f g h i j k l m n o"},C:{"1":"0 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","2":"3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB AB BB CB I t EC FC GC aC bC cC","322":"1 2 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB p q r s z AB BB CB I t EC FC GC","130":"SB TB UB","513":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g","578":"h i j k l m n o"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB VB oC pC qC rC 5B WC sC 6B","513":"UB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"1":"bD","322":"aD"}},B:7,C:"FIDO U2F API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js index 221aad8bd10eb1..53602797f24a7d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/unhandledrejection.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC","16":"zC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:1,C:"unhandledrejection/rejectionhandled events",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B"},G:{"1":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C","16":"2C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:1,C:"unhandledrejection/rejectionhandled events",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js index 5e770d01db8b88..07e3f829f3cc96 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/upgradeinsecurerequests.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Upgrade Insecure Requests",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Upgrade Insecure Requests",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js index 97913edc201c80..160174c40e1332 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url-scroll-to-text-fragment.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","66":"Q H R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB","66":"yB zB 0B 1B 2B Q H"},E:{"1":"JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B"},F:{"1":"sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB lC mC nC oC 4B TC pC 5B","66":"qB rB"},G:{"1":"JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"URL Scroll-To-Text Fragment",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","66":"Q H R"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB","66":"0B 1B 2B 3B 4B Q H"},E:{"1":"LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B"},F:{"1":"uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB oC pC qC rC 5B WC sC 6B","66":"sB tB"},G:{"1":"LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"URL Scroll-To-Text Fragment",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js index a4f601a2844f93..138d758e964e2f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/url.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v","130":"w x DB EB FB GB HB IB JB"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC cC","130":"D"},F:{"1":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","130":"G N O P"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC","130":"tC"},H:{"2":"CD"},I:{"1":"I ID","2":"9B J DD ED FD GD UC","130":"HD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"URL API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w","130":"x y FB GB HB IB JB KB LB"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC fC","130":"D"},F:{"1":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","130":"G N O P"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC","130":"wC"},H:{"2":"FD"},I:{"1":"I LD","2":"AC J GD HD ID JD XC","130":"KD"},J:{"2":"D","130":"A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"URL API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js index 00a66725e91cbc..c64f6ab3522522 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/urlsearchparams.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC","132":"HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"B C L M G GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"URLSearchParams",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC","132":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB"},E:{"1":"B C L M G IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC"},F:{"1":"QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"URLSearchParams",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js index c8229ac867f23d..13c1b2795f572c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/use-strict.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","132":"BB bC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"1":"CD"},I:{"1":"9B J I GD UC HD ID","2":"DD ED FD"},J:{"1":"D A"},K:{"1":"C H TC 5B","2":"A B 4B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"ECMAScript 5 Strict Mode",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","132":"DB eC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"1":"FD"},I:{"1":"AC J I JD XC KD LD","2":"GD HD ID"},J:{"1":"D A"},K:{"1":"C H WC 6B","2":"A B 5B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"ECMAScript 5 Strict Mode",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js index 2db34a137a9109..65d87d76dc58f0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-select-none.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","33":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","33":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","33":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB"},E:{"1":"kC","33":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},F:{"1":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","33":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},G:{"33":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","33":"9B J DD ED FD GD UC HD ID"},J:{"33":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"33":"A B"},O:{"1":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","33":"J JD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","33":"XD"}},B:5,C:"CSS user-select: none",D:true}; +module.exports={A:{A:{"2":"K D E F YC","33":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","33":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","33":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","33":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"nC","33":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","33":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB"},G:{"33":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","33":"AC J GD HD ID JD XC KD LD"},J:{"33":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"33":"A B"},O:{"1":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","33":"J MD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","33":"aD"}},B:5,C:"CSS user-select: none",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js index 7568b473ce669e..b727c4e85cc2a6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/user-timing.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"User Timing API",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"User Timing API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js index 902686b233ee83..5f57522a2dd92e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/variable-fonts.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB YC ZC","4609":"mB nB oB pB qB rB sB tB uB","4674":"BC","5698":"lB","7490":"fB gB hB iB jB","7746":"kB AC","8705":"0 1 2 3 4 5 6 7 8 9 vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB","4097":"qB","4290":"AC lB BC","6148":"mB nB oB pB"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","4609":"B C 4B 5B","8193":"L M fC gC"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB lC mC nC oC 4B TC pC 5B","4097":"fB","6148":"bB cB dB eB"},G:{"1":"3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC","4097":"zC 0C 1C 2C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"4097":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J JD KD LD","4097":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:5,C:"Variable fonts",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB bC cC","4609":"oB pB qB rB sB tB uB vB wB","4674":"CC","5698":"nB","7490":"hB iB jB kB lB","7746":"mB BC","8705":"0 1 2 3 4 5 6 7 8 9 xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB","4097":"sB","4290":"BC nB CC","6148":"oB pB qB rB"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","4609":"B C 5B 6B","8193":"L M iC jC"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB oC pC qC rC 5B WC sC 6B","4097":"hB","6148":"dB eB fB gB"},G:{"1":"6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C","4097":"2C 3C 4C 5C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"4097":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J MD ND OD","4097":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:5,C:"Variable fonts",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js index 79c41b7c28ad48..c25c632d2cf970 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vector-effect.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","2":"F B lC mC nC oC 4B TC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"1":"CD"},I:{"1":"I HD ID","16":"9B J DD ED FD GD UC"},J:{"16":"D A"},K:{"1":"C H 5B","2":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"SVG vector-effect: non-scaling-stroke",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","2":"F B oC pC qC rC 5B WC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"1":"FD"},I:{"1":"I KD LD","16":"AC J GD HD ID JD XC"},J:{"16":"D A"},K:{"1":"C H 6B","2":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"SVG vector-effect: non-scaling-stroke",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js index c5ddcb9a83c7c0..c7adcc6df96d31 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/vibration.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A YC ZC","33":"B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"Vibration API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A bC cC","33":"B C L M G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"Vibration API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js index dc2293d4326282..6eea8df596c273 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/video.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","260":"J BB K D E F A B C L M G N O P CB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A bC cC dC eC GC","2":"aC FC","513":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC","513":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","132":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Video element",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","260":"J DB K D E F A B C L M G N O P EB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A dC HC eC fC gC hC IC","513":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C","513":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","132":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Video element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js index 6dd947410aba5e..9b5faf09b38b86 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/videotracks.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC","194":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","322":"0 1 2 3 4 5 6 7 8 9 XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K aC FC bC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB lC mC nC oC 4B TC pC 5B","322":"KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","322":"H"},L:{"322":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"322":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"322":"VD"},R:{"322":"WD"},S:{"194":"XD YD"}},B:1,C:"Video Tracks",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"C L M G N O P","322":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC","194":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","322":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K dC HC eC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB oC pC qC rC 5B WC sC 6B","322":"MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","322":"H"},L:{"322":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"322":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"322":"YD"},R:{"322":"ZD"},S:{"194":"aD bD"}},B:1,C:"Video Tracks",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js index 2d44d869def700..cb95e8982217ec 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/view-transitions.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y"},E:{"1":"kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC"},F:{"1":"g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"w x","2":"J t u v JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"View Transitions API (single-document)",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC"},F:{"1":"g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"x y","2":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"View Transitions API (single-document)",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js index 1346111caf5680..d81b6f85200f10 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-unit-variants.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","194":"o p q"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i","194":"j k l m n o p q"},E:{"1":"IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC"},F:{"1":"d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z lC mC nC oC 4B TC pC 5B","194":"a b c"},G:{"1":"IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"u v w x","2":"J t JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:5,C:"Small, Large, and Dynamic viewport units",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n","194":"o p q"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i","194":"j k l m n o p q"},E:{"1":"KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC"},F:{"1":"d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z oC pC qC rC 5B WC sC 6B","194":"a b c"},G:{"1":"KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"v w x y","2":"J u MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:5,C:"Small, Large, and Dynamic viewport units",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js index 5425c66425cee5..f1a2c06b23fcf6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/viewport-units.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","132":"F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","260":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB","260":"t u v w x DB"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC","260":"K"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC","516":"tC","772":"sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"260":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax",D:true}; +module.exports={A:{A:{"2":"K D E YC","132":"F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","260":"C L M G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB","260":"u v w x y FB"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC","260":"K"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC","516":"wC","772":"vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"260":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"Viewport units: vw, vh, vmin, vmax",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js index ce95aaf4060bf2..04c9e72044e21d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wai-aria.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","4":"E F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"4":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"aC FC","4":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F","4":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"4":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"4":"CD"},I:{"2":"9B J DD ED FD GD UC","4":"I HD ID"},J:{"2":"D A"},K:{"4":"A B C H 4B TC 5B"},L:{"4":"I"},M:{"4":"3B"},N:{"4":"A B"},O:{"4":"6B"},P:{"4":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"4":"VD"},R:{"4":"WD"},S:{"4":"XD YD"}},B:2,C:"WAI-ARIA Accessibility features",D:true}; +module.exports={A:{A:{"2":"K D YC","4":"E F A B"},B:{"4":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"4":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"dC HC","4":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F","4":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"4":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"4":"FD"},I:{"2":"AC J GD HD ID JD XC","4":"I KD LD"},J:{"2":"D A"},K:{"4":"A B C H 5B WC 6B"},L:{"4":"I"},M:{"4":"t"},N:{"4":"A B"},O:{"4":"7B"},P:{"4":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"4":"YD"},R:{"4":"ZD"},S:{"4":"aD bD"}},B:2,C:"WAI-ARIA Accessibility features",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js index 04e95e2a903382..7b8906237b9444 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wake-lock.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","194":"Q H R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I YC ZC","322":"3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB","194":"vB wB xB yB zB 0B 1B 2B Q H R S T"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB lC mC nC oC 4B TC pC 5B","194":"kB lB mB nB oB pB qB rB sB tB uB vB wB"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:4,C:"Screen Wake Lock API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","194":"Q H R S T U V W X Y"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB bC cC","322":"I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB","194":"xB yB zB 0B 1B 2B 3B 4B Q H R S T"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB oC pC qC rC 5B WC sC 6B","194":"mB nB oB pB qB rB sB tB uB vB wB xB yB"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:4,C:"Screen Wake Lock API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bigint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bigint.js index feac4f2691f36d..ca8263873c8fd7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bigint.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bigint.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC"},F:{"1":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB lC mC nC oC 4B TC pC 5B"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly BigInt to i64 conversion in JS API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC"},F:{"1":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB oC pC qC rC 5B WC sC 6B"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly BigInt to i64 conversion in JS API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js index 73cbb995ddfc25..660710336d8188 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-bulk-memory.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Bulk Memory Operations",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Bulk Memory Operations",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-extended-const.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-extended-const.js index 634ac8cde4124d..d0b32f8660f633 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-extended-const.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-extended-const.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"2 3 4 5 6 7 8 9 AB I","2":"0 1 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"2 3 4 5 6 7 8 9 AB I 3B DC EC","2":"0 1 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"1":"RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC"},F:{"1":"j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i lC mC nC oC 4B TC pC 5B"},G:{"1":"RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"w x","2":"J t u v JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Extended Constant Expressions",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"3 4 5 6 7 8 9 AB BB CB I t","2":"0 1 2 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"0 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"0 1 2 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"1":"TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC"},F:{"1":"j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i oC pC qC rC 5B WC sC 6B"},G:{"1":"TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"x y","2":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Extended Constant Expressions",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-gc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-gc.js index 7776a86b3fee6b..735be47603dbe7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-gc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-gc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"7 8 9 AB I","2":"0 1 2 3 4 5 6 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"8 9 AB I 3B DC EC XC","2":"0 1 2 3 4 5 6 7 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"7 8 9 AB I 3B DC EC","2":"0 1 2 3 4 5 6 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Garbage Collection",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"8 9 AB BB CB I t","2":"0 1 2 3 4 5 6 7 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"9 AB BB CB I t EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"1":"8 9 AB BB CB I t EC FC GC","2":"0 1 2 3 4 5 6 7 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Garbage Collection",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-memory.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-memory.js index cb78db6b8eb14a..bcdfea2928ee49 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-memory.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-memory.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"8 9 AB I","2":"0 1 2 3 4 5 6 7 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"DC EC XC","2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B YC ZC"},D:{"1":"7 8 9 AB I 3B DC EC","2":"0 1 2 3 4 5 6 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Multi-Memory",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"9 AB BB CB I t","2":"0 1 2 3 4 5 6 7 8 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"t EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I bC cC"},D:{"1":"8 9 AB BB CB I t EC FC GC","2":"0 1 2 3 4 5 6 7 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Multi-Memory",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-value.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-value.js index f24a2811dcc151..49de7025f55da4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-value.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-multi-value.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T"},C:{"1":"0 1 2 3 4 5 6 7 8 9 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T"},E:{"1":"M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B"},F:{"1":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB lC mC nC oC 4B TC pC 5B"},G:{"1":"4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Multi-Value",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T"},C:{"1":"0 1 2 3 4 5 6 7 8 9 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T"},E:{"1":"M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B"},F:{"1":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB oC pC qC rC 5B WC sC 6B"},G:{"1":"7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Multi-Value",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js index 296a1ab3d661c6..37588bd11a7606 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-mutable-globals.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B aC FC bC cC dC eC GC 4B"},F:{"1":"lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lC mC nC oC 4B TC pC 5B"},G:{"1":"1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Import/Export of Mutable Globals",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B dC HC eC fC gC hC IC 5B"},F:{"1":"nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB oC pC qC rC 5B WC sC 6B"},G:{"1":"4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Import/Export of Mutable Globals",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js index a79c894f31f10b..0283db9adf0282 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-nontrapping-fptoint.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Non-trapping float-to-int Conversion",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Non-trapping float-to-int Conversion",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-reference-types.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-reference-types.js index 3497313375fa41..63f3f7392016d6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-reference-types.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-reference-types.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC gC"},F:{"1":"CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R lC mC nC oC 4B TC pC 5B"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Reference Types",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC jC"},F:{"1":"DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R oC pC qC rC 5B WC sC 6B"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Reference Types",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js index 9ddd2f8cc414fb..ad2f73c1304aab 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-relaxed-simd.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"2 3 4 5 6 7 8 9 AB I","2":"0 1 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g YC ZC","194":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"2 3 4 5 6 7 8 9 AB I 3B DC EC","2":"0 1 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"w x","2":"J t u v JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Relaxed SIMD",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"3 4 5 6 7 8 9 AB BB CB I t","2":"0 1 2 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g bC cC","194":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"0 1 2 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"x y","2":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Relaxed SIMD",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-signext.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-signext.js index 09f74f1dcf5158..7979e13792404d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-signext.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-signext.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Sign Extension Operators",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Sign Extension Operators",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-simd.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-simd.js index 58c1603e11e58c..94800b9e0aee31 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-simd.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-simd.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z"},E:{"1":"MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC"},F:{"1":"1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B lC mC nC oC 4B TC pC 5B"},G:{"1":"MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x 7B 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly SIMD",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z"},E:{"1":"OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC"},F:{"1":"3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B oC pC qC rC 5B WC sC 6B"},G:{"1":"OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y 8B 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly SIMD",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-tail-calls.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-tail-calls.js index 6f93a1ca80aeb6..7e2a30997d7188 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-tail-calls.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-tail-calls.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},C:{"1":"9 AB I 3B DC EC XC","2":"0 1 2 3 4 5 6 7 8 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"w x","2":"J t u v JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Tail Calls",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB I t","2":"0 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},C:{"1":"AB BB CB I t EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC","2":"0 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"x y","2":"J u v w MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Tail Calls",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-threads.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-threads.js index 4888ecb40f2766..7b74b9e6e1bc6b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-threads.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm-threads.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB"},E:{"1":"G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L M aC FC bC cC dC eC GC 4B 5B fC"},F:{"1":"mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB lC mC nC oC 4B TC pC 5B"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD MD ND GC"},Q:{"16":"VD"},R:{"16":"WD"},S:{"2":"XD","16":"YD"}},B:5,C:"WebAssembly Threads and Atomics",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB"},E:{"1":"G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L M dC HC eC fC gC hC IC 5B 6B iC"},F:{"1":"oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oC pC qC rC 5B WC sC 6B"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD PD QD IC"},Q:{"16":"YD"},R:{"16":"ZD"},S:{"2":"aD","16":"bD"}},B:5,C:"WebAssembly Threads and Atomics",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js index db95c4bc17af73..5364bccaac0ff3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wasm.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M","578":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB YC ZC","194":"ZB aB bB cB dB","1025":"eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB","322":"dB eB fB gB hB iB"},E:{"1":"B C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC"},F:{"1":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB lC mC nC oC 4B TC pC 5B","322":"QB RB SB TB UB VB"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","194":"XD"}},B:6,C:"WebAssembly",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M","578":"G"},C:{"1":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bC cC","194":"bB cB dB eB fB","1025":"gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB","322":"fB gB hB iB jB kB"},E:{"1":"B C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC"},F:{"1":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB oC pC qC rC 5B WC sC 6B","322":"SB TB UB VB WB XB"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","194":"aD"}},B:6,C:"WebAssembly",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js index 003c23c12401a8..8bcdbf5ad14af0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wav.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s nC oC 4B TC pC 5B","2":"F lC mC"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","16":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"Wav audio format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s qC rC 5B WC sC 6B","2":"F oC pC"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","16":"A"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"Wav audio format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js index c239986d656fb5..2502209e8b06cf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wbr-element.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D VC","2":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"aC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","16":"F"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC"},H:{"1":"CD"},I:{"1":"9B J I FD GD UC HD ID","16":"DD ED"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"wbr (word break opportunity) element",D:true}; +module.exports={A:{A:{"1":"K D YC","2":"E F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"dC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","16":"F"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC"},H:{"1":"FD"},I:{"1":"AC J I ID JD XC KD LD","16":"GD HD"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"wbr (word break opportunity) element",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js index 730154e71be5e3..c54e7e949ed36c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-animation.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","260":"Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 9 R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB YC ZC","260":"AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB","516":"ZB aB bB cB dB eB fB gB hB iB jB kB","580":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB","2049":"zB 0B 1B 2B Q H"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB","132":"OB PB QB","260":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC GC","1090":"B C L 4B 5B","2049":"M fC gC"},F:{"1":"vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v lC mC nC oC 4B TC pC 5B","132":"w x DB","260":"EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC","1090":"zC 0C 1C 2C 3C 4C 5C","2049":"6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"260":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"260":"VD"},R:{"1":"WD"},S:{"1":"YD","516":"XD"}},B:5,C:"Web Animations API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","260":"Q H R S"},C:{"1":"0 1 2 3 4 5 6 7 8 9 R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB bC cC","260":"BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B","516":"bB cB dB eB fB gB hB iB jB kB lB mB","580":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","2049":"1B 2B 3B 4B Q H"},D:{"1":"0 1 2 3 4 5 6 7 8 9 T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB","132":"QB RB SB","260":"TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC IC","1090":"B C L 5B 6B","2049":"M iC jC"},F:{"1":"xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w oC pC qC rC 5B WC sC 6B","132":"x y FB","260":"GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C","1090":"2C 3C 4C 5C 6C 7C 8C","2049":"9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y UD VD 8B 9B WD XD","260":"J MD ND OD PD QD IC RD SD TD"},Q:{"260":"YD"},R:{"1":"ZD"},S:{"1":"bD","516":"aD"}},B:5,C:"Web Animations API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js index 7761e62a34b373..8984fb4bfb40e4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-app-manifest.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N","130":"O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","578":"0B 1B 2B Q H R CC S T U"},D:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC","4":"8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC","4":"MC NC BD 8B OC PC QC RC SC","260":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"Add to home screen (A2HS)",D:false}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N","130":"O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","578":"2B 3B 4B Q H R DC S T U"},D:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC","4":"9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C","4":"OC PC ED 9B QC RC SC TC UC VC","260":"3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"Add to home screen (A2HS)",D:false}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js index 69cecb7693e197..487c060454b508 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-bluetooth.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","194":"XB YB ZB aB bB cB dB eB","706":"fB gB hB","1025":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB lC mC nC oC 4B TC pC 5B","450":"OB PB QB RB","706":"SB TB UB","1025":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD ID","1025":"I"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","1025":"H"},L:{"1025":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1025":"6B"},P:{"1":"t u v w x KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD"},Q:{"2":"VD"},R:{"1025":"WD"},S:{"2":"XD YD"}},B:7,C:"Web Bluetooth",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","1025":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","194":"ZB aB bB cB dB eB fB gB","706":"hB iB jB","1025":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB oC pC qC rC 5B WC sC 6B","450":"QB RB SB TB","706":"UB VB WB","1025":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD LD","1025":"I"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","1025":"H"},L:{"1025":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1025":"7B"},P:{"1":"u v w x y ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD"},Q:{"2":"YD"},R:{"1025":"ZD"},S:{"2":"aD bD"}},B:7,C:"Web Bluetooth",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js index 40cb78def7f3a9..5656fce192847f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-serial.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","66":"Q H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","66":"2B Q H R S T U V W X"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB lC mC nC oC 4B TC pC 5B","66":"pB qB rB sB tB uB vB wB xB yB zB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"Web Serial API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","66":"Q H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","66":"4B Q H R S T U V W X"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB oC pC qC rC 5B WC sC 6B","66":"rB sB tB uB vB wB xB yB zB 0B 1B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"Web Serial API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js index 07f07cb5966f74..b8fbcfffa5e46e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/web-share.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H","516":"R S T U V W X Y Z a b c d"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"J BB K D E F A B C L M G N O DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X","130":"P CB t u v w x","1028":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"M G gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","2049":"L 5B fC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C","2049":"2C 3C 4C 5C 6C"},H:{"2":"CD"},I:{"2":"9B J DD ED FD GD UC HD","258":"I ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J","258":"JD KD LD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:4,C:"Web Share API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H","516":"R S T U V W X Y Z a b c d"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"J DB K D E F A B C L M G N O FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X","130":"P EB u v w x y","1028":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"M G jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","2049":"L 6B iC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C","2049":"5C 6C 7C 8C 9C"},H:{"2":"FD"},I:{"2":"AC J GD HD ID JD XC KD","258":"I LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J","258":"MD ND OD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:4,C:"Web Share API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js index ce14b144ca2f79..dc6865c2f2f78f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webauthn.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C","226":"L M G N O"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC YC ZC","4100":"2 3 4 5 6 7 8 9 AB I 3B DC EC XC","5124":"0 1 lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB"},E:{"1":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B","322":"5B"},F:{"1":"gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB lC mC nC oC 4B TC pC 5B"},G:{"1":"8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C","578":"4C","2052":"7C","3076":"5C 6C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1028":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2":"XD"}},B:2,C:"Web Authentication API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C","226":"L M G N O"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC bC cC","4100":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","5124":"0 1 2 nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB"},E:{"1":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B","322":"6B"},F:{"1":"iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB oC pC qC rC 5B WC sC 6B"},G:{"1":"BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C","578":"7C","2052":"AD","3076":"8C 9C"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1028":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2":"aD"}},B:2,C:"Web Authentication API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js index cd35a0a74c90be..c354773fe3c6d5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webcodecs.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC","132":"MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC","132":"MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x 8B TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"WebCodecs API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC","132":"OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC","132":"OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y 9B WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"WebCodecs API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js index d54b0e15cdc01b..3c31be28fa6cb7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"VC","8":"K D E F A","129":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","129":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","129":"J BB K D E F A B C L M G N O P CB t u v w"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D","129":"E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB"},E:{"1":"E F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC","129":"K D bC cC dC"},F:{"1":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B lC mC nC oC 4B TC pC","129":"C G N O P 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC tC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"1":"A","2":"D"},K:{"1":"C H 5B","2":"A B 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A","129":"B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","129":"XD"}},B:6,C:"WebGL - 3D Canvas graphics",D:true}; +module.exports={A:{A:{"2":"YC","8":"K D E F A","129":"B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","129":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","129":"J DB K D E F A B C L M G N O P EB u v w x"},D:{"1":"0 1 2 3 4 5 6 7 8 9 NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D","129":"E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB"},E:{"1":"E F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC","129":"K D eC fC gC"},F:{"1":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B oC pC qC rC 5B WC sC","129":"C G N O P 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC wC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"1":"A","2":"D"},K:{"1":"C H 6B","2":"A B 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A","129":"B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","129":"aD"}},B:6,C:"WebGL - 3D Canvas graphics",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js index f9fb20a2e331b8..b831c7a166c775 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgl2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x YC ZC","194":"UB VB WB","450":"DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB","2242":"XB YB ZB aB bB cB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB","578":"VB WB XB YB ZB aB bB cB dB eB fB gB hB"},E:{"1":"G hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A aC FC bC cC dC eC","1090":"B C L M GC 4B 5B fC gC"},F:{"1":"VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB lC mC nC oC 4B TC pC 5B"},G:{"1":"9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C","1090":"1C 2C 3C 4C 5C 6C 7C 8C"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x LD MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","2242":"XD"}},B:6,C:"WebGL 2.0",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y bC cC","194":"WB XB YB","450":"FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB","2242":"ZB aB bB cB dB eB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB","578":"XB YB ZB aB bB cB dB eB fB gB hB iB jB"},E:{"1":"G kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A dC HC eC fC gC hC","1090":"B C L M IC 5B 6B iC jC"},F:{"1":"XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB oC pC qC rC 5B WC sC 6B"},G:{"1":"CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C","1090":"4C 5C 6C 7C 8C 9C AD BD"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y OD PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","2242":"aD"}},B:6,C:"WebGL 2.0",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js index 1a177f7f812d06..627bb0fbbd294c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webgpu.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"1 2 3 4 5 6 7 8 9 AB I","2":"C L M G N O P Q","578":"H R S T U V W X Y Z a b c","1602":"0 d e f g h i j k l m n o p q r s y z"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB YC ZC","194":"0 1 2 3 4 5 6 7 8 9 nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q","578":"H R S T U V W X Y Z a b c","1602":"0 d e f g h i j k l m n o p q r s y z","2049":"1 2 3 4 5 6 7 8 9 AB I 3B DC EC"},E:{"2":"J BB K D E F A B G aC FC bC cC dC eC GC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC","322":"C L M 4B 5B fC gC","4162":"kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB lC mC nC oC 4B TC pC 5B","578":"xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h","2049":"i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","2049":"H"},L:{"1":"I"},M:{"194":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD","194":"YD"}},B:5,C:"WebGPU",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"2 3 4 5 6 7 8 9 AB BB CB I t","2":"C L M G N O P Q","578":"H R S T U V W X Y Z a b c","1602":"0 1 d e f g h i j k l m n o p q r s z"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB bC cC","194":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q","578":"H R S T U V W X Y Z a b c","1602":"0 1 d e f g h i j k l m n o p q r s z","2049":"2 3 4 5 6 7 8 9 AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B G dC HC eC fC gC hC IC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC","322":"C L M 5B 6B iC jC","4162":"nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB oC pC qC rC 5B WC sC 6B","578":"zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h","2049":"i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","2049":"H"},L:{"1":"I"},M:{"194":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"1":"y","2":"J u v w x MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD","194":"bD"}},B:5,C:"WebGPU",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js index dbcf7cf61d1cd3..e86a5d8fdec5b0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webhid.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P","66":"Q H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B","66":"2B Q H R S T U V W X"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB lC mC nC oC 4B TC pC 5B","66":"qB rB sB tB uB vB wB xB yB zB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"WebHID API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P","66":"Q H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B","66":"4B Q H R S T U V W X"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB oC pC qC rC 5B WC sC 6B","66":"sB tB uB vB wB xB yB zB 0B 1B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"WebHID API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js index 6687c14896cdc5..3b32d11421d240 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webkit-user-drag.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"16":"J BB K D E F A B C L M G","132":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C lC mC nC oC 4B TC pC 5B","132":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"CSS -webkit-user-drag property",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"16":"J DB K D E F A B C L M G","132":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C oC pC qC rC 5B WC sC 6B","132":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"CSS -webkit-user-drag property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js index 4787e3fb3672c7..2d7323ccdd3c8d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webm.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E VC","520":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","8":"C L","388":"M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB","132":"K D E F A B C L M G N O P CB t u v w x"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC","8":"J BB FC bC","520":"K D E F A B C cC dC eC GC 4B","1028":"L 5B fC","7172":"M","8196":"G gC hC HC IC 6B iC"},F:{"1":"N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC mC nC","132":"B C G oC 4B TC pC 5B"},G:{"1":"RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C","1028":"2C 3C 4C 5C 6C","3076":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC"},H:{"2":"CD"},I:{"1":"I","2":"DD ED","132":"9B J FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"8":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","132":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:6,C:"WebM video format",D:true}; +module.exports={A:{A:{"2":"K D E YC","520":"F A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","8":"C L","388":"M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB","132":"K D E F A B C L M G N O P EB u v w x y"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC","8":"J DB HC eC","520":"K D E F A B C fC gC hC IC 5B","1028":"L 6B iC","7172":"M","8196":"G jC kC JC KC 7B lC"},F:{"1":"N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC pC qC","132":"B C G rC 5B WC sC 6B"},G:{"1":"TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C","1028":"5C 6C 7C 8C 9C","3076":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC"},H:{"2":"FD"},I:{"1":"I","2":"GD HD","132":"AC J ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"8":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","132":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:6,C:"WebM video format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js index beb5fa04c9dde0..3c5e64325a9fa4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webnfc.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q Y Z a b c d e f g h i j k l m n o p q r s y z AB I","450":"H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","450":"H R S T U V W X"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","450":"rB sB tB uB vB wB xB yB zB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"257":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"Web NFC",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","450":"H R S T U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","450":"H R S T U V W X"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","450":"tB uB vB wB xB yB zB 0B 1B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"257":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"Web NFC",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js index 6f1c855d5c51c2..30b67b9321b13e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webp.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","8":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB","8":"K D E","132":"F A B C L M G N O P CB t u v","260":"w x DB EB FB GB HB IB JB"},E:{"1":"7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F A B C L aC FC bC cC dC eC GC 4B 5B fC","516":"M G gC hC HC IC 6B iC"},F:{"1":"CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F lC mC nC","8":"B oC","132":"4B TC pC","260":"C G N O P 5B"},G:{"1":"7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C"},H:{"1":"CD"},I:{"1":"I UC HD ID","2":"9B DD ED FD","132":"J GD"},J:{"2":"D A"},K:{"1":"C H 4B TC 5B","2":"A","132":"B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","8":"XD"}},B:6,C:"WebP image format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","8":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB","8":"K D E","132":"F A B C L M G N O P EB u v w","260":"x y FB GB HB IB JB KB LB"},E:{"1":"8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F A B C L dC HC eC fC gC hC IC 5B 6B iC","516":"M G jC kC JC KC 7B lC"},F:{"1":"EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F oC pC qC","8":"B rC","132":"5B WC sC","260":"C G N O P 6B"},G:{"1":"AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C"},H:{"1":"FD"},I:{"1":"I XC KD LD","2":"AC GD HD ID","132":"J JD"},J:{"2":"D A"},K:{"1":"C H 5B WC 6B","2":"A","132":"B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","8":"aD"}},B:6,C:"WebP image format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js index 9a6b05e1c973f4..718de90f8eccca 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/websockets.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B YC ZC","132":"J BB","292":"K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M","260":"G"},E:{"1":"D E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","132":"BB bC","260":"K cC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F lC mC nC oC","132":"B C 4B TC pC"},G:{"1":"E sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC","132":"UC rC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","129":"D"},K:{"1":"H 5B","2":"A","132":"B C 4B TC"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Web Sockets",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC bC cC","132":"J DB","292":"K D E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M","260":"G"},E:{"1":"D E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","132":"DB eC","260":"K fC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F oC pC qC rC","132":"B C 5B WC sC"},G:{"1":"E vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC","132":"XC uC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","129":"D"},K:{"1":"H 6B","2":"A","132":"B C 5B WC"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Web Sockets",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js index 8a4de73b397208..f00faf4f88591d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webtransport.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s y z AB I","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"2 3 4 5 6 7 8 9 AB I 3B DC EC XC","2":"0 1 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z e f","66":"a b c d"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x TD UD","2":"J JD KD LD MD ND GC OD PD QD RD SD 7B 8B"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:5,C:"WebTransport",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P Q H R S T U V W X Y Z a b c d e f g"},C:{"1":"3 4 5 6 7 8 9 AB BB CB I t EC FC GC aC","2":"0 1 2 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z e f","66":"a b c d"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y WD XD","2":"J MD ND OD PD QD IC RD SD TD UD VD 8B 9B"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:5,C:"WebTransport",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js index 3998f4eea433c0..aba4692ecdacad 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webusb.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB","66":"gB hB iB jB kB AC lB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB lC mC nC oC 4B TC pC 5B","66":"TB UB VB WB XB YB ZB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"t u v w x MD ND GC OD PD QD RD SD 7B 8B TD UD","2":"J JD KD LD"},Q:{"2":"VD"},R:{"1":"WD"},S:{"2":"XD YD"}},B:7,C:"WebUSB",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB","66":"iB jB kB lB mB BC nB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB oC pC qC rC 5B WC sC 6B","66":"VB WB XB YB ZB aB bB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"u v w x y PD QD IC RD SD TD UD VD 8B 9B WD XD","2":"J MD ND OD"},Q:{"2":"YD"},R:{"1":"ZD"},S:{"2":"aD bD"}},B:7,C:"WebUSB",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js index e4ed4e4ed55173..723528509ae238 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","66":"Q","257":"G N O P"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB YC ZC","129":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","194":"gB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","66":"jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","66":"WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"2":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"513":"J","516":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:7,C:"WebVR API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"0 1 2 3 4 5 6 7 8 9 C L M H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","66":"Q","257":"G N O P"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB bC cC","129":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","194":"iB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","66":"lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","66":"YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"2":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"513":"J","516":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:7,C:"WebVR API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js index aa00c0060e8db2..348213e8f2cf32 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webvtt.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w YC ZC","66":"x DB EB FB GB HB IB","129":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB","257":"0 1 2 3 4 5 6 7 8 9 hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O"},E:{"1":"K D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC rC sC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B J DD ED FD GD UC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"B","2":"A"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"129":"XD YD"}},B:4,C:"WebVTT - Web Video Text Tracks",D:true}; +module.exports={A:{A:{"1":"A B","2":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x bC cC","66":"y FB GB HB IB JB KB","129":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB","257":"0 1 2 3 4 5 6 7 8 9 jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O"},E:{"1":"K D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC uC vC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC J GD HD ID JD XC"},J:{"1":"A","2":"D"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"B","2":"A"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"129":"aD bD"}},B:4,C:"WebVTT - Web Video Text Tracks",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js index a79f7193a51452..f249eea4469196 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webworkers.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","2":"VC","8":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","8":"WC 9B"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","8":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC 4B TC pC 5B","2":"F lC","8":"mC nC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"I DD HD ID","2":"9B J ED FD GD UC"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","8":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Web Workers",D:true}; +module.exports={A:{A:{"1":"A B","2":"YC","8":"K D E F"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","8":"ZC AC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","8":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s rC 5B WC sC 6B","2":"F oC","8":"pC qC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"I GD KD LD","2":"AC J HD ID JD XC"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","8":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Web Workers",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js index 5553739d57f8fe..eca04d0abff97c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/webxr.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B YC ZC","322":"0 1 2 3 4 5 6 7 8 9 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC"},D:{"2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB","66":"pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"2":"J BB K D E F A B C aC FC bC cC dC eC GC 4B 5B","578":"L M G fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB lC mC nC oC 4B TC pC 5B","66":"eB fB gB hB iB jB kB lB mB nB oB pB","132":"qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"2":"9B J I DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C 4B TC 5B","132":"H"},L:{"132":"I"},M:{"322":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J JD KD LD MD ND GC OD","132":"t u v w x PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD","322":"YD"}},B:4,C:"WebXR Device API",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"2":"C L M G N O P","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B bC cC","322":"0 1 2 3 4 5 6 7 8 9 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC"},D:{"2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB","66":"rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B","132":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"2":"J DB K D E F A B C dC HC eC fC gC hC IC 5B 6B","578":"L M G iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB oC pC qC rC 5B WC sC 6B","66":"gB hB iB jB kB lB mB nB oB pB qB rB","132":"sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"2":"AC J I GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C 5B WC 6B","132":"H"},L:{"132":"I"},M:{"322":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J MD ND OD PD QD IC RD","132":"u v w x y SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD","322":"bD"}},B:4,C:"WebXR Device API",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js index 592133061e9b34..b32068ae3bc10f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/will-change.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB YC ZC","194":"HB IB JB KB LB MB NB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC"},F:{"1":"x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v w lC mC nC oC 4B TC pC 5B"},G:{"1":"wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS will-change property",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB bC cC","194":"JB KB LB MB NB OB PB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC"},F:{"1":"y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w x oC pC qC rC 5B WC sC 6B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS will-change property",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js index 95bc1662e5ce79..e61621c48ede36 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC ZC","2":"WC 9B YC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J"},E:{"1":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB aC FC"},F:{"1":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 4B TC pC 5B","2":"F B lC mC nC oC"},G:{"1":"E rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC"},H:{"2":"CD"},I:{"1":"I HD ID","2":"9B DD ED FD GD UC","130":"J"},J:{"1":"D A"},K:{"1":"B C H 4B TC 5B","2":"A"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"WOFF - Web Open Font Format",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC cC","2":"ZC AC bC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J"},E:{"1":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB dC HC"},F:{"1":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B WC sC 6B","2":"F B oC pC qC rC"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC"},H:{"2":"FD"},I:{"1":"I KD LD","2":"AC GD HD ID JD XC","130":"J"},J:{"1":"D A"},K:{"1":"B C H 5B WC 6B","2":"A"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"WOFF - Web Open Font Format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js index ed90ee1ab7de16..6f9d0f13f56b39 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/woff2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","2":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB"},E:{"1":"C L M G 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J BB K D E F aC FC bC cC dC eC","132":"A B GC 4B"},F:{"1":"w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P CB t u v lC mC nC oC 4B TC pC 5B"},G:{"1":"xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"E FC qC UC rC sC tC uC vC wC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"2":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:2,C:"WOFF 2.0 - Web Open Font Format",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","2":"C L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","2":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB"},E:{"1":"C L M G 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J DB K D E F dC HC eC fC gC hC","132":"A B IC 5B"},F:{"1":"x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C G N O P EB u v w oC pC qC rC 5B WC sC 6B"},G:{"1":"0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"E HC tC XC uC vC wC xC yC zC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"2":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:2,C:"WOFF 2.0 - Web Open Font Format",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js index 2ad4fbdba7e877..167c3dcc685de9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/word-break.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B J BB K D E F A B C L M YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB"},E:{"1":"F A B C L M G eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","4":"J BB K D E aC FC bC cC dC"},F:{"1":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C lC mC nC oC 4B TC pC 5B","4":"G N O P CB t u v w x DB EB FB GB HB IB"},G:{"1":"vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","4":"E FC qC UC rC sC tC uC"},H:{"2":"CD"},I:{"1":"I","4":"9B J DD ED FD GD UC HD ID"},J:{"4":"D A"},K:{"1":"H","2":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"CSS3 word-break",D:true}; +module.exports={A:{A:{"1":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC J DB K D E F A B C L M bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB"},E:{"1":"F A B C L M G hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","4":"J DB K D E dC HC eC fC gC"},F:{"1":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B C oC pC qC rC 5B WC sC 6B","4":"G N O P EB u v w x y FB GB HB IB JB KB"},G:{"1":"yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","4":"E HC tC XC uC vC wC xC"},H:{"2":"FD"},I:{"1":"I","4":"AC J GD HD ID JD XC KD LD"},J:{"4":"D A"},K:{"1":"H","2":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"CSS3 word-break",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js index 5f4b2ce079bb0a..15f620315f59f9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/wordwrap.js @@ -1 +1 @@ -module.exports={A:{A:{"4":"K D E F A B VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","4":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","4":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","4":"J BB K D E F A B C L M G N O P CB t u v"},E:{"1":"D E F A B C L M G cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","4":"J BB K aC FC bC"},F:{"1":"G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 5B","2":"F lC mC","4":"B C nC oC 4B TC pC"},G:{"1":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","4":"FC qC UC rC sC"},H:{"4":"CD"},I:{"1":"I HD ID","4":"9B J DD ED FD GD UC"},J:{"1":"A","4":"D"},K:{"1":"H","4":"A B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"4":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"YD","4":"XD"}},B:4,C:"CSS3 Overflow-wrap",D:true}; +module.exports={A:{A:{"4":"K D E F A B YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","4":"C L M G N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","4":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","4":"J DB K D E F A B C L M G N O P EB u v w"},E:{"1":"D E F A B C L M G fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","4":"J DB K dC HC eC"},F:{"1":"G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s 6B","2":"F oC pC","4":"B C qC rC 5B WC sC"},G:{"1":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","4":"HC tC XC uC vC"},H:{"4":"FD"},I:{"1":"I KD LD","4":"AC J GD HD ID JD XC"},J:{"1":"A","4":"D"},K:{"1":"H","4":"A B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"4":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"bD","4":"aD"}},B:4,C:"CSS3 Overflow-wrap",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js index f7b85aa76a84de..b9f4074b2d7436 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-doc-messaging.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D VC","132":"E F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC","2":"WC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"aC FC"},F:{"1":"B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B","2":"F"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"4":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"Cross-document messaging",D:true}; +module.exports={A:{A:{"2":"K D YC","132":"E F","260":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC","2":"ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"dC HC"},F:{"1":"B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B","2":"F"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"4":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"Cross-document messaging",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js index 96e8ca83fee0c0..0c69d25f2b1e10 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/x-frame-options.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"E F A B","2":"K D VC"},B:{"1":"C L M G N O P","4":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB","4":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","16":"WC 9B YC ZC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K D E F A B C L M G N O P CB t u v w x DB"},E:{"4":"K D E F A B C L M G bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","16":"J BB aC FC"},F:{"4":"C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s pC 5B","16":"F B lC mC nC oC 4B TC"},G:{"4":"E tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","16":"FC qC UC rC sC"},H:{"2":"CD"},I:{"4":"J I GD UC HD ID","16":"9B DD ED FD"},J:{"4":"D A"},K:{"4":"H 5B","16":"A B C 4B TC"},L:{"4":"I"},M:{"4":"3B"},N:{"1":"A B"},O:{"4":"6B"},P:{"4":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"4":"VD"},R:{"4":"WD"},S:{"1":"XD","4":"YD"}},B:6,C:"X-Frame-Options HTTP header",D:true}; +module.exports={A:{A:{"1":"E F A B","2":"K D YC"},B:{"1":"C L M G N O P","4":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB","4":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","16":"ZC AC bC cC"},D:{"4":"0 1 2 3 4 5 6 7 8 9 GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K D E F A B C L M G N O P EB u v w x y FB"},E:{"4":"K D E F A B C L M G eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","16":"J DB dC HC"},F:{"4":"C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s sC 6B","16":"F B oC pC qC rC 5B WC"},G:{"4":"E wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","16":"HC tC XC uC vC"},H:{"2":"FD"},I:{"4":"J I JD XC KD LD","16":"AC GD HD ID"},J:{"4":"D A"},K:{"4":"H 6B","16":"A B C 5B WC"},L:{"4":"I"},M:{"4":"t"},N:{"1":"A B"},O:{"4":"7B"},P:{"4":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"4":"YD"},R:{"4":"ZD"},S:{"1":"aD","4":"bD"}},B:6,C:"X-Frame-Options HTTP header",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js index b449690b9b69c0..b3892e5a59852f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhr2.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F VC","1156":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I","1028":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","2":"WC 9B","1028":"C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB","1284":"A B","1412":"K D E F","1924":"J BB YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","16":"J BB K","1028":"JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB","1156":"HB IB","1412":"D E F A B C L M G N O P CB t u v w x DB EB FB GB"},E:{"1":"C L M G 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","2":"J aC FC","1028":"E F A B dC eC GC","1156":"D cC","1412":"BB K bC"},F:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B lC mC nC oC 4B TC pC","132":"G N O","1028":"C P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB 5B"},G:{"1":"zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","2":"FC qC UC","1028":"E uC vC wC xC yC","1156":"tC","1412":"rC sC"},H:{"2":"CD"},I:{"1":"I","2":"DD ED FD","1028":"ID","1412":"HD","1924":"9B J GD UC"},J:{"1156":"A","1412":"D"},K:{"1":"H","2":"A B 4B TC","1028":"C 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1156":"A B"},O:{"1":"6B"},P:{"1":"t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD","1028":"J"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"XMLHttpRequest advanced features",D:true}; +module.exports={A:{A:{"2":"K D E F YC","1156":"A B"},B:{"1":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t","1028":"C L M G N O P"},C:{"1":"0 1 2 3 4 5 6 7 8 9 bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","2":"ZC AC","1028":"C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","1284":"A B","1412":"K D E F","1924":"J DB bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","16":"J DB K","1028":"LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB","1156":"JB KB","1412":"D E F A B C L M G N O P EB u v w x y FB GB HB IB"},E:{"1":"C L M G 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","2":"J dC HC","1028":"E F A B gC hC IC","1156":"D fC","1412":"DB K eC"},F:{"1":"RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","2":"F B oC pC qC rC 5B WC sC","132":"G N O","1028":"C P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB 6B"},G:{"1":"2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","2":"HC tC XC","1028":"E xC yC zC 0C 1C","1156":"wC","1412":"uC vC"},H:{"2":"FD"},I:{"1":"I","2":"GD HD ID","1028":"LD","1412":"KD","1924":"AC J JD XC"},J:{"1156":"A","1412":"D"},K:{"1":"H","2":"A B 5B WC","1028":"C 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1156":"A B"},O:{"1":"7B"},P:{"1":"u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD","1028":"J"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"XMLHttpRequest advanced features",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js index b871afe1e67151..6516bd5f635cd4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtml.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"F A B","2":"K D E VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"1":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"1":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"1":"CD"},I:{"1":"9B J I DD ED FD GD UC HD ID"},J:{"1":"D A"},K:{"1":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:1,C:"XHTML served as application/xhtml+xml",D:true}; +module.exports={A:{A:{"1":"F A B","2":"K D E YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"1":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"1":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"1":"FD"},I:{"1":"AC J I GD HD ID JD XC KD LD"},J:{"1":"D A"},K:{"1":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:1,C:"XHTML served as application/xhtml+xml",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js index fe6c9fced3a024..3b6ee3e0234b14 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xhtmlsmil.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"F A B VC","4":"K D E"},B:{"2":"C L M G N O P","8":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"8":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC"},E:{"8":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"8":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s lC mC nC oC 4B TC pC 5B"},G:{"8":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"8":"CD"},I:{"8":"9B J I DD ED FD GD UC HD ID"},J:{"8":"D A"},K:{"8":"A B C H 4B TC 5B"},L:{"8":"I"},M:{"8":"3B"},N:{"2":"A B"},O:{"8":"6B"},P:{"8":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"8":"VD"},R:{"8":"WD"},S:{"8":"XD YD"}},B:7,C:"XHTML+SMIL animation",D:true}; +module.exports={A:{A:{"2":"F A B YC","4":"K D E"},B:{"2":"C L M G N O P","8":"0 1 2 3 4 5 6 7 8 9 Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"8":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC bC cC"},D:{"8":"0 1 2 3 4 5 6 7 8 9 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC"},E:{"8":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"8":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s oC pC qC rC 5B WC sC 6B"},G:{"8":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"8":"FD"},I:{"8":"AC J I GD HD ID JD XC KD LD"},J:{"8":"D A"},K:{"8":"A B C H 5B WC 6B"},L:{"8":"I"},M:{"8":"t"},N:{"2":"A B"},O:{"8":"7B"},P:{"8":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"8":"YD"},R:{"8":"ZD"},S:{"8":"aD bD"}},B:7,C:"XHTML+SMIL animation",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js index 313ff41312b8c7..bcde39e6d1b471 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/xml-serializer.js @@ -1 +1 @@ -module.exports={A:{A:{"1":"A B","260":"K D E F VC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC","132":"B","260":"WC 9B J BB K D YC ZC","516":"E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC","132":"J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB"},E:{"1":"E F A B C L M G dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC","132":"J BB K D aC FC bC cC"},F:{"1":"P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F lC","132":"B C G N O mC nC oC 4B TC pC 5B"},G:{"1":"E uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC","132":"FC qC UC rC sC tC"},H:{"132":"CD"},I:{"1":"I HD ID","132":"9B J DD ED FD GD UC"},J:{"132":"D A"},K:{"1":"H","16":"A","132":"B C 4B TC 5B"},L:{"1":"I"},M:{"1":"3B"},N:{"1":"A B"},O:{"1":"6B"},P:{"1":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"1":"VD"},R:{"1":"WD"},S:{"1":"XD YD"}},B:4,C:"DOM Parsing and Serialization",D:true}; +module.exports={A:{A:{"1":"A B","260":"K D E F YC"},B:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC aC","132":"B","260":"ZC AC J DB K D bC cC","516":"E F A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t EC FC GC","132":"J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB"},E:{"1":"E F A B C L M G gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC","132":"J DB K D dC HC eC fC"},F:{"1":"P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s","16":"F oC","132":"B C G N O pC qC rC 5B WC sC 6B"},G:{"1":"E xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC","132":"HC tC XC uC vC wC"},H:{"132":"FD"},I:{"1":"I KD LD","132":"AC J GD HD ID JD XC"},J:{"132":"D A"},K:{"1":"H","16":"A","132":"B C 5B WC 6B"},L:{"1":"I"},M:{"1":"t"},N:{"1":"A B"},O:{"1":"7B"},P:{"1":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"1":"YD"},R:{"1":"ZD"},S:{"1":"aD bD"}},B:4,C:"DOM Parsing and Serialization",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js index 06753732f374a8..09d3726570a80d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/features/zstd.js @@ -1 +1 @@ -module.exports={A:{A:{"2":"K D E F A B VC"},B:{"1":"I","2":"0 1 2 3 4 5 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"6 7 8 9 AB"},C:{"2":"0 1 2 3 4 5 6 7 8 9 WC 9B J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z AB I 3B DC EC XC YC ZC"},D:{"1":"I 3B DC EC","2":"0 1 2 3 4 5 J BB K D E F A B C L M G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB AC lB BC mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s y z","194":"6 7 8 9 AB"},E:{"2":"J BB K D E F A B C L M G aC FC bC cC dC eC GC 4B 5B fC gC hC HC IC 6B iC 7B JC KC LC MC NC jC 8B OC PC QC RC SC kC"},F:{"1":"s","2":"F B C G N O P CB t u v w x DB EB FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B Q H R CC S T U V W X Y Z a b c d e f g h i j k l m n o p q r lC mC nC oC 4B TC pC 5B"},G:{"2":"E FC qC UC rC sC tC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C HC IC 6B AD 7B JC KC LC MC NC BD 8B OC PC QC RC SC"},H:{"2":"CD"},I:{"1":"I","2":"9B J DD ED FD GD UC HD ID"},J:{"2":"D A"},K:{"2":"A B C H 4B TC 5B"},L:{"1":"I"},M:{"2":"3B"},N:{"2":"A B"},O:{"2":"6B"},P:{"2":"J t u v w x JD KD LD MD ND GC OD PD QD RD SD 7B 8B TD UD"},Q:{"2":"VD"},R:{"2":"WD"},S:{"2":"XD YD"}},B:6,C:"zstd (Zstandard) content-encoding",D:true}; +module.exports={A:{A:{"2":"K D E F A B YC"},B:{"1":"CB I t","2":"0 1 2 3 4 5 6 C L M G N O P Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"7 8 9 AB BB"},C:{"1":"EC FC GC aC","2":"0 1 2 3 4 5 6 7 8 9 ZC AC J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z AB BB CB I t bC cC"},D:{"1":"CB I t EC FC GC","2":"0 1 2 3 4 5 6 J DB K D E F A B C L M G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB BC nB CC oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R S T U V W X Y Z a b c d e f g h i j k l m n o p q r s z","194":"7 8 9 AB BB"},E:{"2":"J DB K D E F A B C L M G dC HC eC fC gC hC IC 5B 6B iC jC kC JC KC 7B lC 8B LC MC NC OC PC mC 9B QC RC SC TC UC VC nC"},F:{"1":"s","2":"F B C G N O P EB u v w x y FB GB HB IB JB KB LB MB NB OB PB QB RB SB TB UB VB WB XB YB ZB aB bB cB dB eB fB gB hB iB jB kB lB mB nB oB pB qB rB sB tB uB vB wB xB yB zB 0B 1B 2B 3B 4B Q H R DC S T U V W X Y Z a b c d e f g h i j k l m n o p q r oC pC qC rC 5B WC sC 6B"},G:{"2":"E HC tC XC uC vC wC xC yC zC 0C 1C 2C 3C 4C 5C 6C 7C 8C 9C AD BD CD JC KC 7B DD 8B LC MC NC OC PC ED 9B QC RC SC TC UC VC"},H:{"2":"FD"},I:{"1":"I","2":"AC J GD HD ID JD XC KD LD"},J:{"2":"D A"},K:{"2":"A B C H 5B WC 6B"},L:{"1":"I"},M:{"2":"t"},N:{"2":"A B"},O:{"2":"7B"},P:{"2":"J u v w x y MD ND OD PD QD IC RD SD TD UD VD 8B 9B WD XD"},Q:{"2":"YD"},R:{"2":"ZD"},S:{"2":"aD bD"}},B:6,C:"zstd (Zstandard) content-encoding",D:true}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js index fb6166fc7d943d..d114efc577110d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AD.js @@ -1 +1 @@ -module.exports={C:{"2":0.0035,"3":0.0035,"4":0.0035,"10":0.0035,"11":0.0035,"15":0.0035,"19":0.0035,"20":0.0035,"25":0.0035,"26":0.0035,"28":0.0035,"31":0.0035,"32":0.0035,"35":0.0035,"37":0.0035,"38":0.0035,"39":0.00699,"40":0.01049,"41":0.0035,"42":0.0035,"52":0.01049,"78":0.02097,"88":0.0035,"103":0.00699,"104":0.0035,"115":0.11184,"119":0.02097,"121":0.01049,"122":0.01748,"123":1.42247,"124":0.61512,_:"5 6 7 8 9 12 13 14 16 17 18 21 22 23 24 27 29 30 33 34 36 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 105 106 107 108 109 110 111 112 113 114 116 117 118 120 125 126 127","3.5":0.0035,"3.6":0.00699},D:{"4":0.0035,"19":0.0035,"21":0.00699,"22":0.0035,"28":0.0035,"31":0.0035,"33":0.00699,"35":0.0035,"38":0.0035,"39":0.01049,"40":0.00699,"41":0.01049,"42":0.00699,"43":0.01049,"44":0.01398,"45":0.01398,"46":0.01748,"47":0.01049,"49":0.0035,"51":0.01398,"70":0.0035,"76":0.0035,"77":0.0035,"79":0.0035,"81":0.0035,"84":0.0035,"85":0.0035,"87":0.00699,"88":0.00699,"90":0.04544,"91":0.01748,"92":0.0035,"94":0.0035,"95":0.0035,"98":0.01049,"99":0.0035,"102":0.0035,"103":0.0734,"104":0.0035,"105":0.11883,"106":0.05942,"107":0.0035,"108":0.04194,"109":0.86676,"110":0.00699,"111":0.03146,"112":0.0035,"113":0.01748,"114":0.01049,"116":0.353,"117":0.03495,"118":0.01398,"119":0.03845,"120":0.16776,"121":0.80036,"122":8.59421,"123":3.00221,"124":0.01049,"125":0.0035,_:"5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 23 24 25 26 27 29 30 32 34 36 37 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 78 80 83 86 89 93 96 97 100 101 115 126"},F:{"12":0.0035,"30":0.0035,"31":0.00699,"32":0.0035,"78":0.00699,"79":0.01049,"91":0.01398,"95":0.0035,"106":0.00699,"107":0.73046,"108":0.14679,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 102 103 104 105 109 10.0-10.1 10.5 10.6 11.1 11.5 11.6","9.5-9.6":0.0035,"12.1":0.0035},B:{"12":0.00699,"87":0.0035,"98":0.0035,"108":0.0035,"109":0.01049,"113":0.0035,"118":0.10485,"119":0.0035,"120":0.01748,"121":0.04194,"122":1.59023,"123":0.10485,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 110 111 112 114 115 116 117"},E:{"4":0.0035,"5":0.0035,"8":0.0035,"9":0.02447,"12":0.00699,"13":0.0035,"14":0.03146,"15":0.00699,_:"0 6 7 10 11 3.1 3.2 5.1 6.1 9.1 10.1 11.1 12.1 17.5","7.1":0.0035,"13.1":0.08738,"14.1":0.10485,"15.1":0.04194,"15.2-15.3":0.05592,"15.4":0.06291,"15.5":0.11534,"15.6":0.91569,"16.0":0.20621,"16.1":0.24815,"16.2":0.22368,"16.3":0.51027,"16.4":0.24815,"16.5":0.3495,"16.6":2.1005,"17.0":0.35999,"17.1":0.99258,"17.2":1.27568,"17.3":4.69728,"17.4":1.25471},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00773,"5.0-5.1":0.00386,"6.0-6.1":0.02318,"7.0-7.1":0.02705,"8.1-8.4":0.00773,"9.0-9.2":0.01546,"9.3":0.0966,"10.0-10.2":0.01546,"10.3":0.16229,"11.0-11.2":0.11592,"11.3-11.4":0.03864,"12.0-12.1":0.03478,"12.2-12.5":0.66848,"13.0-13.1":0.01159,"13.2":0.11592,"13.3":0.03478,"13.4-13.7":0.13138,"14.0-14.4":0.25116,"14.5-14.8":0.39413,"15.0-15.1":0.17002,"15.2-15.3":0.20093,"15.4":0.23571,"15.5":0.30139,"15.6-15.8":2.52321,"16.0":0.61438,"16.1":1.27126,"16.2":0.61438,"16.3":1.09352,"16.4":0.23184,"16.5":0.49073,"16.6-16.7":3.71719,"17.0":0.483,"17.1":0.96601,"17.2":1.5572,"17.3":19.16557,"17.4":2.81301,"17.5":0},P:{"4":0.02175,"20":0.01088,"21":0.03263,"22":0.03263,"23":0.5982,"24":0.56557,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 16.0 17.0 18.0","6.2-6.4":0.01088,"15.0":0.01088,"19.0":0.01088},I:{"0":0.18137,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00044},K:{"0":0.07805,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00711,"7":0.01422,"8":0.1209,"9":0.02133,"10":0.02133,"11":0.21335,_:"5.5"},S:{"2.5":0.0065,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":24.76757},R:{_:"0"},M:{"0":0.35122},Q:{_:"14.9"},O:{"0":0.01951},H:{"0":0}}; +module.exports={C:{"2":0.00401,"3":0.00401,"4":0.00803,"5":0.00401,"12":0.00401,"15":0.00401,"21":0.00401,"23":0.00401,"24":0.00401,"26":0.00401,"30":0.00401,"31":0.00401,"34":0.00401,"36":0.00401,"37":0.00401,"38":0.00401,"39":0.00401,"40":0.00803,"41":0.00401,"42":0.00401,"52":0.03211,"78":0.00803,"103":0.00401,"114":0.02007,"115":0.13648,"117":0.00401,"118":0.00401,"119":0.03211,"120":0.00401,"122":0.00803,"123":0.03211,"124":1.64574,"125":0.95132,_:"6 7 8 9 10 11 13 14 16 17 18 19 20 22 25 27 28 29 32 33 35 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 116 121 126 127 128","3.5":0.00401,"3.6":0.01204},D:{"11":0.00401,"12":0.00401,"18":0.00401,"21":0.00803,"22":0.00401,"26":0.00401,"28":0.00401,"30":0.00401,"31":0.00401,"32":0.00401,"33":0.00401,"36":0.00401,"37":0.00803,"38":0.01204,"39":0.00803,"40":0.01204,"41":0.01606,"42":0.01204,"43":0.01204,"44":0.02408,"45":0.02007,"46":0.01606,"47":0.01606,"49":0.00401,"51":0.03613,"70":0.00401,"72":0.00401,"76":0.00401,"77":0.00401,"79":0.01204,"81":0.00401,"84":0.00401,"87":0.01204,"90":0.00401,"91":0.00803,"94":0.00401,"100":0.00803,"101":0.01204,"102":0.00803,"103":0.08028,"104":0.00401,"105":0.01606,"106":0.03211,"108":0.00803,"109":0.91921,"110":0.00401,"111":0.00401,"112":0.00401,"113":0.01204,"114":0.06021,"115":0.01204,"116":0.59407,"117":0.00803,"118":0.02007,"119":0.0562,"120":0.04415,"121":0.05218,"122":0.61816,"123":9.99085,"124":4.52378,"125":0.00401,_:"4 5 6 7 8 9 10 13 14 15 16 17 19 20 23 24 25 27 29 34 35 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 78 80 83 85 86 88 89 92 93 95 96 97 98 99 107 126 127"},F:{"30":0.00401,"31":0.01204,"40":0.00401,"85":0.06422,"95":0.00803,"106":0.00803,"107":0.62618,"108":0.32513,"109":0.16056,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 10.0-10.1 10.5 10.6 11.5 11.6","9.5-9.6":0.00401,"11.1":0.00401,"12.1":0.00803},B:{"12":0.00401,"13":0.00401,"18":0.00401,"87":0.00401,"108":0.02007,"109":0.00803,"115":0.00401,"118":0.13246,"119":0.00401,"120":0.00803,"121":0.00803,"122":0.05218,"123":1.13596,"124":0.95935,_:"14 15 16 17 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 114 116 117"},E:{"4":0.00401,"7":0.00401,"8":0.00803,"9":0.04014,"13":0.00401,"14":0.04014,"15":0.01204,_:"0 5 6 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00401,"13.1":0.08831,"14.1":0.11239,"15.1":0.08831,"15.2-15.3":0.10838,"15.4":0.04415,"15.5":0.08028,"15.6":0.87907,"16.0":0.25288,"16.1":0.25288,"16.2":0.21676,"16.3":0.59407,"16.4":0.13648,"16.5":0.43351,"16.6":1.61764,"17.0":0.16859,"17.1":0.44957,"17.2":0.53788,"17.3":1.85447,"17.4":6.71141,"17.5":0.10035},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00766,"5.0-5.1":0.00766,"6.0-6.1":0.01915,"7.0-7.1":0.03063,"8.1-8.4":0.00766,"9.0-9.2":0.01915,"9.3":0.09573,"10.0-10.2":0.01915,"10.3":0.15317,"11.0-11.2":0.1302,"11.3-11.4":0.03829,"12.0-12.1":0.0268,"12.2-12.5":0.62417,"13.0-13.1":0.01149,"13.2":0.12637,"13.3":0.03063,"13.4-13.7":0.11871,"14.0-14.4":0.23359,"14.5-14.8":0.35612,"15.0-15.1":0.16466,"15.2-15.3":0.18763,"15.4":0.21444,"15.5":0.27188,"15.6-15.8":2.37416,"16.0":0.55525,"16.1":1.15644,"16.2":0.55525,"16.3":0.9803,"16.4":0.20295,"16.5":0.42505,"16.6-16.7":3.35828,"17.0":0.40207,"17.1":0.74288,"17.2":0.98796,"17.3":7.20671,"17.4":16.2668,"17.5":0.14934},P:{"4":0.0427,"21":0.0427,"22":0.01068,"23":0.0427,"24":1.24911,_:"20 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","6.2-6.4":0.02135,"19.0":0.02135},I:{"0":0.24446,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00015,"4.4":0,"4.4.3-4.4.4":0.00061},A:{"6":0.00816,"7":0.01632,"8":0.16317,"9":0.03671,"10":0.04079,"11":0.22028,_:"5.5"},K:{"0":0.19158,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01197,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0479},H:{"0":0},L:{"0":19.09261},R:{_:"0"},M:{"0":0.46699}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js index 7fb216f848d201..e1141edafedc7f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AE.js @@ -1 +1 @@ -module.exports={C:{"34":0.00286,"47":0.00286,"52":0.00286,"68":0.00286,"77":0.00286,"87":0.00286,"88":0.00286,"102":0.00286,"103":0.00286,"105":0.00286,"107":0.00571,"108":0.00286,"109":0.00286,"110":0.00286,"111":0.00286,"114":0.00286,"115":0.10282,"119":0.00286,"120":0.00571,"121":0.01142,"122":0.01428,"123":0.4541,"124":0.19135,"125":0.01428,"126":0.00857,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 99 100 101 104 106 112 113 116 117 118 127 3.5 3.6"},D:{"11":0.00571,"22":0.00571,"29":0.00286,"35":0.57406,"38":0.00857,"41":0.00286,"44":0.00286,"45":0.00286,"46":0.00286,"47":0.00286,"49":0.00571,"51":0.00286,"56":0.00571,"58":0.01714,"65":0.00571,"68":0.00571,"69":0.00286,"70":0.00571,"71":0.00571,"72":0.01999,"73":0.00857,"74":0.00571,"75":0.01428,"76":0.02285,"77":0.00571,"78":0.00571,"79":0.01999,"80":0.02285,"81":0.00857,"83":0.01999,"84":0.00286,"85":0.01714,"86":0.03427,"87":0.24276,"88":0.01714,"89":0.00571,"90":0.01714,"91":0.01428,"92":0.00286,"93":0.03427,"94":0.00857,"95":0.00571,"96":0.00571,"97":0.01142,"98":0.02285,"99":0.01714,"100":0.03142,"101":0.05141,"102":0.03427,"103":0.18564,"104":0.02856,"105":0.01428,"106":0.0257,"107":0.03713,"108":0.03142,"109":0.64831,"110":0.02856,"111":0.01714,"112":0.0257,"113":0.07426,"114":0.1171,"115":0.01714,"116":0.15708,"117":0.04284,"118":0.03142,"119":0.07426,"120":0.36271,"121":1.01674,"122":11.5211,"123":3.0959,"124":0.01714,"125":0.00571,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 30 31 32 33 34 36 37 39 40 42 43 48 50 52 53 54 55 57 59 60 61 62 63 64 66 67 126"},F:{"28":0.00286,"46":0.00571,"81":0.00857,"85":0.00286,"89":0.00286,"91":0.00286,"94":0.00286,"95":0.01714,"97":0.00286,"102":0.00286,"105":0.00571,"106":0.03142,"107":0.6169,"108":0.10282,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 86 87 88 90 92 93 96 98 99 100 101 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00286,"18":0.00571,"84":0.00286,"89":0.00286,"92":0.01714,"100":0.00286,"105":0.00286,"106":0.00286,"107":0.00571,"108":0.00286,"109":0.01428,"110":0.00286,"113":0.00286,"114":0.00857,"115":0.00286,"116":0.00286,"117":0.00571,"118":0.00286,"119":0.01142,"120":0.02285,"121":0.11424,"122":2.37619,"123":0.18278,_:"13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 111 112"},E:{"9":0.00571,"13":0.00286,"14":0.01714,"15":0.00571,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00571,"9.1":0.0257,"12.1":0.00286,"13.1":0.06283,"14.1":0.08854,"15.1":0.00857,"15.2-15.3":0.00857,"15.4":0.01714,"15.5":0.03713,"15.6":0.18278,"16.0":0.0257,"16.1":0.04855,"16.2":0.03713,"16.3":0.07997,"16.4":0.02856,"16.5":0.05998,"16.6":0.24847,"17.0":0.05998,"17.1":0.10567,"17.2":0.2399,"17.3":0.81967,"17.4":0.19992},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00247,"5.0-5.1":0.00124,"6.0-6.1":0.00742,"7.0-7.1":0.00866,"8.1-8.4":0.00247,"9.0-9.2":0.00495,"9.3":0.03092,"10.0-10.2":0.00495,"10.3":0.05194,"11.0-11.2":0.0371,"11.3-11.4":0.01237,"12.0-12.1":0.01113,"12.2-12.5":0.21394,"13.0-13.1":0.00371,"13.2":0.0371,"13.3":0.01113,"13.4-13.7":0.04205,"14.0-14.4":0.08038,"14.5-14.8":0.12614,"15.0-15.1":0.05441,"15.2-15.3":0.0643,"15.4":0.07543,"15.5":0.09646,"15.6-15.8":0.80752,"16.0":0.19662,"16.1":0.40685,"16.2":0.19662,"16.3":0.34997,"16.4":0.0742,"16.5":0.15705,"16.6-16.7":1.18963,"17.0":0.15458,"17.1":0.30916,"17.2":0.49836,"17.3":6.13367,"17.4":0.90026,"17.5":0},P:{"4":0.09316,"20":0.03105,"21":0.04141,"22":0.05176,"23":1.10761,"24":1.05585,"5.0-5.4":0.0207,"6.2-6.4":0.0207,"7.2-7.4":0.03105,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01035,"13.0":0.01035,"16.0":0.01035,"17.0":0.01035,"18.0":0.01035,"19.0":0.03105},I:{"0":0.07826,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":1.52882,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01704,"9":0.00341,"10":0.00341,"11":0.08181,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":54.77889},R:{_:"0"},M:{"0":0.13574},Q:{"14.9":0.00714},O:{"0":2.12177},H:{"0":0}}; +module.exports={C:{"34":0.0026,"52":0.0026,"75":0.0026,"77":0.00519,"78":0.0026,"88":0.0026,"103":0.0026,"105":0.0026,"107":0.0026,"109":0.0026,"110":0.0026,"111":0.0026,"114":0.0026,"115":0.08048,"120":0.0026,"121":0.00519,"122":0.00519,"123":0.01558,"124":0.41796,"125":0.19989,"126":0.01038,"127":0.01817,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 106 108 112 113 116 117 118 119 128 3.5 3.6"},D:{"11":0.0026,"22":0.00519,"35":0.39719,"38":0.00779,"41":0.0026,"43":0.0026,"44":0.0026,"46":0.0026,"47":0.0026,"49":0.00779,"51":0.0026,"56":0.01038,"58":0.01558,"65":0.00519,"68":0.00519,"69":0.0026,"70":0.0026,"71":0.0026,"72":0.01817,"73":0.0026,"74":0.0026,"75":0.00779,"76":0.01817,"77":0.0026,"78":0.00519,"79":0.02077,"80":0.0026,"81":0.00519,"83":0.01038,"84":0.0026,"85":0.01298,"86":0.04932,"87":0.03634,"88":0.01298,"89":0.0026,"90":0.00519,"91":0.01038,"92":0.0026,"93":0.04413,"94":0.00779,"95":0.00779,"96":0.00519,"97":0.00519,"98":0.03634,"99":0.03115,"100":0.03894,"101":0.0675,"102":0.04932,"103":0.1921,"104":0.04154,"105":0.01038,"106":0.02596,"107":0.01817,"108":0.03894,"109":0.62823,"110":0.02336,"111":0.02596,"112":0.02336,"113":0.08567,"114":0.11682,"115":0.02596,"116":0.14018,"117":0.02077,"118":0.03115,"119":0.05971,"120":0.21806,"121":0.18172,"122":0.68275,"123":9.30147,"124":4.53781,"125":0.02077,"126":0.0026,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 42 45 48 50 52 53 54 55 57 59 60 61 62 63 64 66 67 127"},F:{"28":0.0026,"46":0.00779,"82":0.0026,"85":0.0026,"89":0.0026,"91":0.0026,"92":0.0026,"95":0.01038,"99":0.0026,"105":0.00519,"106":0.01038,"107":0.50103,"108":0.17912,"109":0.09086,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 86 87 88 90 93 94 96 97 98 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0026,"18":0.00519,"92":0.01558,"100":0.0026,"107":0.0026,"108":0.0026,"109":0.01298,"110":0.0026,"112":0.0026,"113":0.0026,"114":0.00779,"115":0.0026,"116":0.0026,"117":0.0026,"118":0.0026,"119":0.00519,"120":0.01038,"121":0.02077,"122":0.15057,"123":1.57577,"124":0.85928,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 111"},E:{"9":0.00519,"13":0.0026,"14":0.01558,"15":0.00519,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.0026,"9.1":0.00779,"12.1":0.0026,"13.1":0.04154,"14.1":0.07528,"15.1":0.01038,"15.2-15.3":0.00779,"15.4":0.02336,"15.5":0.02856,"15.6":0.18691,"16.0":0.02856,"16.1":0.03894,"16.2":0.03375,"16.3":0.08826,"16.4":0.02077,"16.5":0.05192,"16.6":0.22845,"17.0":0.04932,"17.1":0.07788,"17.2":0.13499,"17.3":0.33229,"17.4":0.85928,"17.5":0.00779},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00243,"5.0-5.1":0.00243,"6.0-6.1":0.00607,"7.0-7.1":0.00972,"8.1-8.4":0.00243,"9.0-9.2":0.00607,"9.3":0.03036,"10.0-10.2":0.00607,"10.3":0.04858,"11.0-11.2":0.04129,"11.3-11.4":0.01214,"12.0-12.1":0.0085,"12.2-12.5":0.19795,"13.0-13.1":0.00364,"13.2":0.04008,"13.3":0.00972,"13.4-13.7":0.03765,"14.0-14.4":0.07408,"14.5-14.8":0.11294,"15.0-15.1":0.05222,"15.2-15.3":0.05951,"15.4":0.06801,"15.5":0.08622,"15.6-15.8":0.75294,"16.0":0.17609,"16.1":0.36675,"16.2":0.17609,"16.3":0.31089,"16.4":0.06436,"16.5":0.1348,"16.6-16.7":1.06505,"17.0":0.12751,"17.1":0.2356,"17.2":0.31332,"17.3":2.28554,"17.4":5.15886,"17.5":0.04736},P:{"4":0.12279,"20":0.02046,"21":0.0307,"22":0.05116,"23":0.14325,"24":1.60648,"5.0-5.4":0.02046,"6.2-6.4":0.02046,"7.2-7.4":0.0307,_:"8.2 9.2 10.1 12.0 13.0","11.1-11.2":0.01023,"14.0":0.01023,"15.0":0.01023,"16.0":0.01023,"17.0":0.01023,"18.0":0.01023,"19.0":0.0307},I:{"0":0.06637,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.01156,"9":0.00289,"10":0.00289,"11":0.10986,_:"6 7 5.5"},K:{"0":1.36252,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00741},O:{"0":2.19929},H:{"0":0},L:{"0":57.10012},R:{_:"0"},M:{"0":0.1407}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js index 7b45168bc10f9b..7fbc53a6d84ee8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AF.js @@ -1 +1 @@ -module.exports={C:{"38":0.00178,"41":0.00178,"46":0.00178,"47":0.00355,"48":0.00355,"49":0.00178,"50":0.00533,"51":0.00178,"52":0.00178,"53":0.00355,"54":0.00178,"56":0.00355,"58":0.00178,"64":0.00178,"70":0.00178,"72":0.01243,"74":0.00178,"91":0.00178,"93":0.00178,"94":0.00178,"95":0.00355,"106":0.00355,"110":0.00178,"112":0.00178,"113":0.00178,"114":0.00178,"115":0.34435,"117":0.00178,"118":0.00178,"120":0.00355,"121":0.0071,"122":0.02308,"123":0.28933,"124":0.2059,"125":0.00178,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 55 57 59 60 61 62 63 65 66 67 68 69 71 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 96 97 98 99 100 101 102 103 104 105 107 108 109 111 116 119 126 127 3.5 3.6"},D:{"18":0.00355,"22":0.00178,"30":0.00178,"32":0.00178,"34":0.01243,"36":0.00533,"38":0.00178,"39":0.00533,"40":0.00178,"41":0.01065,"43":0.00355,"45":0.00355,"46":0.00533,"47":0.00178,"48":0.00355,"49":0.00178,"50":0.00355,"51":0.00178,"52":0.00178,"54":0.00178,"55":0.00178,"56":0.00355,"57":0.00355,"58":0.00355,"59":0.00178,"60":0.00355,"61":0.00888,"62":0.0284,"63":0.01065,"64":0.00533,"65":0.00178,"66":0.00355,"67":0.00533,"68":0.00178,"69":0.0071,"70":0.0071,"71":0.01953,"72":0.00533,"73":0.0142,"74":0.00355,"75":0.01065,"76":0.00178,"77":0.0071,"78":0.02308,"79":0.01953,"80":0.01775,"81":0.01065,"83":0.0071,"84":0.00533,"85":0.00888,"86":0.0213,"87":0.02308,"88":0.00533,"89":0.01065,"90":0.00533,"91":0.0071,"92":0.01243,"93":0.00178,"94":0.00355,"95":0.0071,"96":0.01598,"97":0.0071,"98":0.0071,"99":0.0071,"100":0.00355,"101":0.00533,"102":0.01598,"103":0.02308,"104":0.0213,"105":0.01775,"106":0.05325,"107":0.0426,"108":0.05148,"109":2.10693,"110":0.01598,"111":0.0142,"112":0.02485,"113":0.0071,"114":0.0142,"115":0.0355,"116":0.03373,"117":0.0213,"118":0.01775,"119":0.06568,"120":0.15088,"121":0.43843,"122":4.41265,"123":1.43243,"124":0.0071,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 23 24 25 26 27 28 29 31 33 35 37 42 44 53 125 126"},F:{"45":0.00178,"46":0.00178,"56":0.00178,"64":0.00355,"73":0.00178,"79":0.00888,"81":0.00178,"86":0.00178,"89":0.00533,"95":0.0781,"101":0.00178,"102":0.02485,"105":0.00178,"106":0.00888,"107":0.20235,"108":0.09763,"109":0.00533,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 47 48 49 50 51 52 53 54 55 57 58 60 62 63 65 66 67 68 69 70 71 72 74 75 76 77 78 80 82 83 84 85 87 88 90 91 92 93 94 96 97 98 99 100 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01243,"13":0.00533,"14":0.01953,"15":0.0071,"16":0.05325,"17":0.0142,"18":0.08698,"81":0.00533,"84":0.01598,"88":0.00355,"89":0.0142,"90":0.0355,"92":0.20945,"100":0.03728,"103":0.00178,"105":0.00178,"107":0.00178,"109":0.0994,"110":0.00178,"112":0.00355,"114":0.00355,"115":0.00355,"116":0.00533,"117":0.00355,"118":0.00888,"119":0.01775,"120":0.0284,"121":0.07278,"122":1.15198,"123":0.10118,_:"79 80 83 85 86 87 91 93 94 95 96 97 98 99 101 102 104 106 108 111 113"},E:{"14":0.00178,"15":0.00178,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.06923,"13.1":0.00178,"14.1":0.00178,"15.1":0.0142,"15.2-15.3":0.0071,"15.4":0.01775,"15.5":0.03373,"15.6":0.12603,"16.0":0.00533,"16.1":0.04793,"16.2":0.03195,"16.3":0.05325,"16.4":0.0284,"16.5":0.10828,"16.6":0.22365,"17.0":0.08343,"17.1":0.13135,"17.2":0.26093,"17.3":0.70823,"17.4":0.213,"17.5":0.00178},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00247,"5.0-5.1":0.00124,"6.0-6.1":0.00742,"7.0-7.1":0.00866,"8.1-8.4":0.00247,"9.0-9.2":0.00495,"9.3":0.03093,"10.0-10.2":0.00495,"10.3":0.05196,"11.0-11.2":0.03711,"11.3-11.4":0.01237,"12.0-12.1":0.01113,"12.2-12.5":0.21401,"13.0-13.1":0.00371,"13.2":0.03711,"13.3":0.01113,"13.4-13.7":0.04206,"14.0-14.4":0.08041,"14.5-14.8":0.12618,"15.0-15.1":0.05443,"15.2-15.3":0.06433,"15.4":0.07546,"15.5":0.09649,"15.6-15.8":0.80779,"16.0":0.19669,"16.1":0.40699,"16.2":0.19669,"16.3":0.35008,"16.4":0.07422,"16.5":0.1571,"16.6-16.7":1.19003,"17.0":0.15463,"17.1":0.30926,"17.2":0.49853,"17.3":6.13572,"17.4":0.90057,"17.5":0},P:{"4":0.30619,"20":0.04083,"21":0.08165,"22":0.13268,"23":0.61239,"24":0.34702,"5.0-5.4":0.07145,"6.2-6.4":0.05103,"7.2-7.4":0.1531,"8.2":0.01021,"9.2":0.10206,_:"10.1 12.0","11.1-11.2":0.06124,"13.0":0.03062,"14.0":0.02041,"15.0":0.01021,"16.0":0.08165,"17.0":0.03062,"18.0":0.05103,"19.0":0.05103},I:{"0":0.05734,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},K:{"0":0.9557,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00178,"10":0.00178,"11":0.25915,_:"6 7 8 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":67.98815},R:{_:"0"},M:{"0":0.0658},Q:{_:"14.9"},O:{"0":0.658},H:{"0":0.13}}; +module.exports={C:{"41":0.00135,"43":0.00404,"48":0.00135,"51":0.00135,"52":0.00135,"53":0.00942,"56":0.00538,"59":0.00135,"64":0.00135,"65":0.00269,"72":0.00404,"84":0.00135,"94":0.00135,"98":0.00135,"99":0.00135,"105":0.00135,"106":0.00404,"107":0.00135,"108":0.00135,"109":0.00135,"110":0.00808,"111":0.00538,"112":0.00135,"113":0.00135,"115":0.22747,"118":0.00135,"120":0.00269,"121":0.00404,"122":0.00538,"123":0.01077,"124":0.22747,"125":0.14133,"126":0.00135,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 44 45 46 47 49 50 54 55 57 58 60 61 62 63 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 91 92 93 95 96 97 100 101 102 103 104 114 116 117 119 127 128 3.5 3.6"},D:{"30":0.00135,"31":0.00673,"34":0.00538,"36":0.00538,"37":0.00135,"39":0.00135,"41":0.00269,"43":0.00269,"44":0.00269,"45":0.00135,"46":0.00673,"47":0.00135,"48":0.00135,"49":0.00135,"50":0.00135,"51":0.00673,"52":0.00269,"54":0.00135,"55":0.00673,"56":0.00135,"57":0.00135,"58":0.00269,"59":0.00135,"60":0.00269,"61":0.00404,"62":0.01481,"63":0.00673,"64":0.00135,"65":0.00538,"66":0.00404,"67":0.00673,"68":0.00673,"69":0.00269,"70":0.00673,"71":0.01211,"72":0.00673,"73":0.00538,"74":0.00135,"75":0.00269,"76":0.00269,"77":0.00404,"78":0.02019,"79":0.01884,"80":0.01077,"81":0.00404,"83":0.00538,"84":0.00404,"85":0.00673,"86":0.01211,"87":0.01346,"89":0.01615,"91":0.00404,"92":0.01077,"94":0.00135,"95":0.00269,"96":0.01346,"97":0.00404,"98":0.00404,"99":0.00942,"100":0.00269,"101":0.00269,"102":0.01211,"103":0.01346,"104":0.00135,"105":0.00673,"106":0.01615,"107":0.02827,"108":0.02423,"109":1.67712,"110":0.00673,"111":0.01615,"112":0.00808,"113":0.00269,"114":0.00538,"115":0.00538,"116":0.01481,"117":0.00942,"118":0.02154,"119":0.01615,"120":0.06461,"121":0.07403,"122":0.1696,"123":3.04196,"124":1.4483,"125":0.01884,"126":0.00135,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 35 38 40 42 53 88 90 93 127"},F:{"26":0.00538,"64":0.00135,"79":0.00404,"81":0.00135,"82":0.00135,"83":0.00135,"89":0.00269,"94":0.00269,"95":0.04576,"102":0.01481,"106":0.00135,"107":0.03365,"108":0.13595,"109":0.07134,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 84 85 86 87 88 90 91 92 93 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00135},B:{"12":0.01077,"13":0.00942,"14":0.01211,"15":0.00673,"16":0.035,"17":0.00808,"18":0.05384,"81":0.00404,"83":0.00135,"84":0.00673,"88":0.00135,"89":0.01077,"90":0.02692,"92":0.12114,"99":0.00135,"100":0.02961,"103":0.00135,"106":0.00135,"107":0.00135,"108":0.00673,"109":0.10768,"110":0.00135,"111":0.00269,"115":0.00135,"116":0.00135,"117":0.00269,"118":0.00538,"119":0.00808,"120":0.01077,"121":0.01481,"122":0.05115,"123":0.54513,"124":0.29208,_:"79 80 85 86 87 91 93 94 95 96 97 98 101 102 104 105 112 113 114"},E:{"11":0.00269,"13":0.00135,"14":0.00135,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00404,"12.1":0.00269,"13.1":0.00269,"14.1":0.00404,"15.1":0.0175,"15.2-15.3":0.01211,"15.4":0.00808,"15.5":0.03096,"15.6":0.08345,"16.0":0.00269,"16.1":0.02827,"16.2":0.02961,"16.3":0.02692,"16.4":0.02288,"16.5":0.12383,"16.6":0.19921,"17.0":0.06865,"17.1":0.05788,"17.2":0.07941,"17.3":0.17902,"17.4":0.57743,"17.5":0.00673},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00173,"5.0-5.1":0.00173,"6.0-6.1":0.00433,"7.0-7.1":0.00693,"8.1-8.4":0.00173,"9.0-9.2":0.00433,"9.3":0.02166,"10.0-10.2":0.00433,"10.3":0.03465,"11.0-11.2":0.02945,"11.3-11.4":0.00866,"12.0-12.1":0.00606,"12.2-12.5":0.1412,"13.0-13.1":0.0026,"13.2":0.02859,"13.3":0.00693,"13.4-13.7":0.02685,"14.0-14.4":0.05284,"14.5-14.8":0.08056,"15.0-15.1":0.03725,"15.2-15.3":0.04245,"15.4":0.04851,"15.5":0.0615,"15.6-15.8":0.53708,"16.0":0.12561,"16.1":0.26161,"16.2":0.12561,"16.3":0.22176,"16.4":0.04591,"16.5":0.09616,"16.6-16.7":0.75971,"17.0":0.09096,"17.1":0.16806,"17.2":0.2235,"17.3":1.63031,"17.4":3.6799,"17.5":0.03378},P:{"4":0.22145,"20":0.04026,"21":0.07046,"22":0.10066,"23":0.22145,"24":0.65429,"5.0-5.4":0.0604,"6.2-6.4":0.0302,"7.2-7.4":0.14092,"8.2":0.01007,"9.2":0.08053,_:"10.1 12.0","11.1-11.2":0.0604,"13.0":0.0302,"14.0":0.04026,"15.0":0.01007,"16.0":0.04026,"17.0":0.02013,"18.0":0.02013,"19.0":0.04026},I:{"0":0.05171,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00677,"9":0.00948,"11":0.18833,_:"6 7 10 5.5"},K:{"0":0.8879,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.38078},H:{"0":0.09},L:{"0":76.61223},R:{_:"0"},M:{"0":0.05192}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js index af9d32a8f5c0d3..1f3e38c5cfd4d4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AG.js @@ -1 +1 @@ -module.exports={C:{"52":0.00345,"78":0.00691,"88":0.02072,"97":0.00691,"98":0.01036,"115":0.08635,"117":0.00345,"121":0.00691,"122":0.06563,"123":0.53537,"124":0.23487,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 118 119 120 125 126 127 3.5 3.6"},D:{"42":0.00691,"63":0.00345,"65":0.00345,"67":0.01382,"74":0.01036,"76":0.00691,"77":0.00345,"79":0.01382,"81":0.00345,"84":0.00345,"86":0.00691,"87":0.02418,"88":0.01036,"90":0.00345,"91":0.01036,"93":0.03109,"94":0.02763,"95":0.01036,"97":0.00345,"99":0.01036,"100":0.00345,"102":0.0449,"103":0.23142,"106":0.01036,"108":0.00345,"109":0.87041,"110":0.01382,"111":0.00345,"113":0.00345,"114":0.0829,"115":0.01036,"116":0.19688,"117":0.16925,"118":0.03454,"119":0.07253,"120":0.18652,"121":1.19163,"122":11.89212,"123":3.04297,"124":0.00345,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 70 71 72 73 75 78 80 83 85 89 92 96 98 101 104 105 107 112 125 126"},F:{"28":0.05181,"102":0.00345,"107":0.50083,"108":0.12434,"109":0.00345,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00345,"90":0.00345,"92":0.00691,"104":0.00345,"105":0.00345,"107":0.00691,"109":0.03454,"110":0.00345,"112":0.00345,"113":0.00345,"114":0.00691,"116":0.01036,"117":0.00691,"118":0.00345,"119":0.00691,"120":0.05872,"121":0.13125,"122":5.02212,"123":0.22796,_:"12 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 106 108 111 115"},E:{"12":0.00345,"13":0.01036,"14":0.01036,"15":0.01727,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.01727,"13.1":0.02072,"14.1":0.04836,"15.1":0.02072,"15.2-15.3":0.01036,"15.4":0.00345,"15.5":0.06908,"15.6":0.63208,"16.0":0.24523,"16.1":0.05526,"16.2":0.10707,"16.3":0.15543,"16.4":0.02763,"16.5":0.13471,"16.6":0.41793,"17.0":0.06563,"17.1":0.14507,"17.2":0.36958,"17.3":1.48177,"17.4":0.23142},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00415,"5.0-5.1":0.00207,"6.0-6.1":0.01245,"7.0-7.1":0.01452,"8.1-8.4":0.00415,"9.0-9.2":0.0083,"9.3":0.05186,"10.0-10.2":0.0083,"10.3":0.08713,"11.0-11.2":0.06223,"11.3-11.4":0.02074,"12.0-12.1":0.01867,"12.2-12.5":0.35888,"13.0-13.1":0.00622,"13.2":0.06223,"13.3":0.01867,"13.4-13.7":0.07053,"14.0-14.4":0.13484,"14.5-14.8":0.21159,"15.0-15.1":0.09127,"15.2-15.3":0.10787,"15.4":0.12654,"15.5":0.16181,"15.6-15.8":1.3546,"16.0":0.32983,"16.1":0.68249,"16.2":0.32983,"16.3":0.58706,"16.4":0.12447,"16.5":0.26345,"16.6-16.7":1.9956,"17.0":0.2593,"17.1":0.51861,"17.2":0.83599,"17.3":10.28916,"17.4":1.51018,"17.5":0},P:{"4":0.08967,"20":0.01121,"21":0.05604,"22":0.07846,"23":1.84943,"24":2.37624,"5.0-5.4":0.01121,"6.2-6.4":0.03363,"7.2-7.4":0.17934,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01121,"13.0":0.01121,"16.0":0.04483,"17.0":0.03363,"18.0":0.01121,"19.0":0.03363},I:{"0":0.01304,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.57605,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.09671,"11":0.01382,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":43.34581},R:{_:"0"},M:{"0":0.15056},Q:{_:"14.9"},O:{"0":0.09819},H:{"0":0}}; +module.exports={C:{"52":0.00311,"88":0.01556,"89":0.00311,"97":0.00311,"115":0.03423,"121":0.00934,"122":0.00934,"123":0.02178,"124":0.40145,"125":0.18672,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 91 92 93 94 95 96 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 126 127 128 3.5 3.6"},D:{"38":0.00311,"57":0.00622,"63":0.00311,"65":0.00934,"67":0.00622,"69":0.00311,"70":0.02178,"73":0.00311,"74":0.00622,"76":0.0249,"77":0.00311,"79":0.01245,"81":0.00311,"83":0.01245,"84":0.00622,"86":0.01556,"87":0.01245,"88":0.00622,"91":0.01867,"93":0.25207,"94":0.0249,"95":0.00311,"98":0.00311,"99":0.00622,"100":0.00934,"102":0.04046,"103":0.14626,"104":0.00311,"105":0.00622,"106":0.00311,"108":0.00311,"109":0.67219,"110":0.01245,"111":0.00311,"112":0.00311,"114":0.00622,"116":0.20228,"117":0.09647,"118":0.01556,"119":0.0529,"120":0.04357,"121":0.14315,"122":0.73754,"123":9.94284,"124":4.41282,"125":0.00934,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 64 66 68 71 72 75 78 80 85 89 90 92 96 97 101 107 113 115 126 127"},F:{"28":0.03112,"102":0.00311,"107":0.28319,"108":0.13382,"109":0.05913,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00622,"18":0.0249,"85":0.00311,"92":0.00622,"96":0.00934,"109":0.07158,"113":0.00622,"119":0.01245,"120":0.01245,"121":0.01245,"122":0.32987,"123":3.45743,"124":1.89832,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 114 115 116 117 118"},E:{"14":0.01867,"15":0.00622,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00311,"13.1":0.04046,"14.1":0.04357,"15.1":0.00622,"15.2-15.3":0.00311,"15.4":0.00311,"15.5":0.00622,"15.6":0.46991,"16.0":0.11203,"16.1":0.05602,"16.2":0.0249,"16.3":0.11203,"16.4":0.00311,"16.5":0.07469,"16.6":0.22718,"17.0":0.03423,"17.1":0.09025,"17.2":0.16805,"17.3":0.30186,"17.4":1.7116,"17.5":0.02178},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0053,"5.0-5.1":0.0053,"6.0-6.1":0.01325,"7.0-7.1":0.0212,"8.1-8.4":0.0053,"9.0-9.2":0.01325,"9.3":0.06624,"10.0-10.2":0.01325,"10.3":0.10598,"11.0-11.2":0.09008,"11.3-11.4":0.0265,"12.0-12.1":0.01855,"12.2-12.5":0.43187,"13.0-13.1":0.00795,"13.2":0.08743,"13.3":0.0212,"13.4-13.7":0.08213,"14.0-14.4":0.16162,"14.5-14.8":0.2464,"15.0-15.1":0.11393,"15.2-15.3":0.12983,"15.4":0.14837,"15.5":0.18812,"15.6-15.8":1.6427,"16.0":0.38418,"16.1":0.80015,"16.2":0.38418,"16.3":0.67827,"16.4":0.14042,"16.5":0.2941,"16.6-16.7":2.32362,"17.0":0.2782,"17.1":0.514,"17.2":0.68357,"17.3":4.98638,"17.4":11.25512,"17.5":0.10333},P:{"4":0.08804,"20":0.01101,"21":0.05503,"22":0.05503,"23":0.37418,"24":3.33463,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0 18.0","6.2-6.4":0.01101,"7.2-7.4":0.13206,"11.1-11.2":0.01101,"13.0":0.01101,"16.0":0.02201,"17.0":0.01101,"19.0":0.06603},I:{"0":0.04803,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"10":0.05913,"11":0.00311,_:"6 7 8 9 5.5"},K:{"0":0.22423,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04822},H:{"0":0.01},L:{"0":40.33635},R:{_:"0"},M:{"0":0.11022}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js index b01c52c531196f..d2ddebf27b0ae0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AI.js @@ -1 +1 @@ -module.exports={C:{"122":0.01086,"123":0.09777,"124":0.03259,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"76":0.1376,"87":0.00724,"89":0.01448,"90":0.00362,"102":0.00362,"103":0.03259,"104":0.34762,"106":0.00362,"107":0.00362,"108":0.02897,"109":0.2245,"110":0.00362,"113":0.06518,"115":0.00362,"116":0.14846,"117":0.04345,"118":0.00724,"119":0.01086,"120":0.94508,"121":0.90163,"122":11.08026,"123":1.45202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 86 88 91 92 93 94 95 96 97 98 99 100 101 105 111 112 114 124 125 126"},F:{"107":0.31141,"108":0.02897,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01811,"103":0.00362,"109":0.00362,"114":0.02535,"118":0.02897,"119":0.00362,"120":0.0688,"121":0.19191,"122":5.28666,"123":0.21002,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 113 115 116 117"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 17.5","13.1":0.02897,"14.1":0.04345,"15.1":0.04345,"15.2-15.3":0.04345,"15.5":0.02535,"15.6":0.35848,"16.0":0.01811,"16.1":0.05069,"16.2":0.44176,"16.3":0.49608,"16.4":0.18829,"16.5":0.81473,"16.6":1.87206,"17.0":0.1376,"17.1":0.52867,"17.2":1.75981,"17.3":4.71816,"17.4":0.92698},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00796,"5.0-5.1":0.00398,"6.0-6.1":0.02389,"7.0-7.1":0.02788,"8.1-8.4":0.00796,"9.0-9.2":0.01593,"9.3":0.09956,"10.0-10.2":0.01593,"10.3":0.16726,"11.0-11.2":0.11947,"11.3-11.4":0.03982,"12.0-12.1":0.03584,"12.2-12.5":0.68896,"13.0-13.1":0.01195,"13.2":0.11947,"13.3":0.03584,"13.4-13.7":0.1354,"14.0-14.4":0.25886,"14.5-14.8":0.40621,"15.0-15.1":0.17523,"15.2-15.3":0.20709,"15.4":0.24293,"15.5":0.31063,"15.6-15.8":2.60051,"16.0":0.6332,"16.1":1.31021,"16.2":0.6332,"16.3":1.12702,"16.4":0.23894,"16.5":0.50577,"16.6-16.7":3.83108,"17.0":0.4978,"17.1":0.9956,"17.2":1.60491,"17.3":19.75275,"17.4":2.89919,"17.5":0},P:{"4":0.11981,"21":0.04357,"22":0.04357,"23":1.06744,"24":1.05654,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 18.0","7.2-7.4":0.04357,"11.1-11.2":0.01089,"16.0":0.08714,"17.0":0.25052,"19.0":0.03268},I:{"0":0.00635,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.14672,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.34638},R:{_:"0"},M:{"0":0.19775},Q:{_:"14.9"},O:{"0":0.0319},H:{"0":0}}; +module.exports={C:{"56":0.00398,"115":0.02787,"124":0.03186,"125":0.03982,"126":0.00398,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 127 128 3.5 3.6"},D:{"70":0.00398,"76":0.02389,"89":0.01195,"107":0.00398,"108":0.01593,"109":0.22299,"113":0.00398,"114":0.00796,"116":0.06769,"117":0.02787,"119":0.00398,"120":0.09159,"121":0.03584,"122":1.88747,"123":12.81806,"124":3.05419,"125":0.01991,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 77 78 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 112 115 118 126 127"},F:{"107":0.05575,"108":0.01593,"109":0.00796,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00796,"92":0.00398,"109":0.00796,"115":0.00398,"117":0.00398,"121":0.00398,"122":0.22697,"123":3.10198,"124":1.7043,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 118 119 120"},E:{"7":0.00398,_:"0 4 5 6 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.00796,"14.1":0.12742,"15.1":0.02787,"15.2-15.3":0.06769,"15.4":0.00398,"15.5":0.05575,"15.6":0.60128,"16.0":0.00796,"16.1":0.13141,"16.2":0.29865,"16.3":0.52961,"16.4":0.09955,"16.5":0.26679,"16.6":1.9472,"17.0":0.0438,"17.1":0.55748,"17.2":0.87604,"17.3":1.67244,"17.4":7.19149,"17.5":0.01593},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0078,"5.0-5.1":0.0078,"6.0-6.1":0.0195,"7.0-7.1":0.0312,"8.1-8.4":0.0078,"9.0-9.2":0.0195,"9.3":0.09749,"10.0-10.2":0.0195,"10.3":0.15599,"11.0-11.2":0.13259,"11.3-11.4":0.039,"12.0-12.1":0.0273,"12.2-12.5":0.63565,"13.0-13.1":0.0117,"13.2":0.12869,"13.3":0.0312,"13.4-13.7":0.12089,"14.0-14.4":0.23788,"14.5-14.8":0.36267,"15.0-15.1":0.16769,"15.2-15.3":0.19108,"15.4":0.21838,"15.5":0.27688,"15.6-15.8":2.41779,"16.0":0.56545,"16.1":1.1777,"16.2":0.56545,"16.3":0.99831,"16.4":0.20668,"16.5":0.43286,"16.6-16.7":3.42001,"17.0":0.40946,"17.1":0.75653,"17.2":1.00611,"17.3":7.33917,"17.4":16.56577,"17.5":0.15209},P:{"4":0.08819,"22":0.06614,"23":0.2315,"24":2.56854,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 18.0","7.2-7.4":0.06614,"14.0":0.01102,"16.0":0.06614,"17.0":0.25355,"19.0":0.01102},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.15045,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02407},H:{"0":0},L:{"0":18.75093},R:{_:"0"},M:{"0":0.05416}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js index 53378c907023ba..4f1c7613f5c0c1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AL.js @@ -1 +1 @@ -module.exports={C:{"3":0.0016,"4":0.0016,"37":0.0016,"38":0.0016,"39":0.0016,"40":0.0016,"52":0.0016,"87":0.0016,"89":0.0016,"102":0.0016,"103":0.0032,"104":0.0016,"105":0.0016,"106":0.00959,"108":0.0032,"115":0.08469,"119":0.0016,"120":0.0016,"121":0.0032,"122":0.00799,"123":0.22692,"124":0.09428,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 90 91 92 93 94 95 96 97 98 99 100 101 107 109 110 111 112 113 114 116 117 118 125 126 127","3.5":0.0016,"3.6":0.0016},D:{"11":0.0016,"21":0.0016,"34":0.0016,"36":0.0016,"37":0.0016,"38":0.0016,"39":0.0016,"40":0.0016,"41":0.0032,"42":0.0016,"43":0.00479,"44":0.00639,"45":0.0032,"46":0.00639,"47":0.0032,"49":0.12944,"51":0.01119,"56":0.0016,"62":0.0016,"63":0.0016,"65":0.0016,"66":0.0016,"68":0.0016,"69":0.0016,"70":0.00479,"71":0.0016,"72":0.0016,"73":0.0016,"74":0.0016,"75":0.00479,"76":0.0016,"78":0.0016,"79":0.02717,"80":0.0016,"81":0.0016,"83":0.00639,"84":0.0016,"85":0.0016,"86":0.00479,"87":0.01278,"88":0.0032,"89":0.0016,"90":0.0016,"91":0.0016,"92":0.0016,"93":0.0016,"94":0.0016,"95":0.0016,"97":0.0016,"98":0.00799,"99":0.00479,"100":0.0016,"102":0.00479,"103":0.03196,"104":0.01119,"105":0.01758,"106":0.01278,"107":0.00959,"108":0.02077,"109":0.81498,"110":0.01438,"111":0.00799,"112":0.01119,"113":0.0016,"114":0.00799,"115":0.0032,"116":0.05753,"117":0.00959,"118":0.00639,"119":0.02077,"120":4.01737,"121":0.31481,"122":3.50282,"123":1.0355,"124":0.01598,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 35 48 50 52 53 54 55 57 58 59 60 61 64 67 77 96 101 125 126"},F:{"28":0.0016,"31":0.0016,"46":0.0032,"69":0.0032,"81":0.0016,"94":0.0016,"95":0.01438,"105":0.0016,"106":0.0016,"107":0.15501,"108":0.05114,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0016},B:{"12":0.0016,"18":0.0016,"89":0.01758,"92":0.00479,"108":0.0016,"109":0.00799,"112":0.0016,"119":0.0016,"120":0.00959,"121":0.01119,"122":0.38831,"123":0.03516,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 113 114 115 116 117 118"},E:{"8":0.0016,"9":0.01758,"14":0.01119,"15":0.0016,_:"0 4 5 6 7 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.0016,"9.1":0.00479,"12.1":0.0032,"13.1":0.00639,"14.1":0.01278,"15.1":0.02876,"15.2-15.3":0.00959,"15.4":0.01278,"15.5":0.02077,"15.6":0.24609,"16.0":0.00479,"16.1":0.03356,"16.2":0.02397,"16.3":0.10866,"16.4":0.02077,"16.5":0.02557,"16.6":0.3196,"17.0":0.03196,"17.1":0.1598,"17.2":1.69708,"17.3":0.7974,"17.4":0.20454},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01065,"5.0-5.1":0.00532,"6.0-6.1":0.03194,"7.0-7.1":0.03726,"8.1-8.4":0.01065,"9.0-9.2":0.02129,"9.3":0.13307,"10.0-10.2":0.02129,"10.3":0.22356,"11.0-11.2":0.15969,"11.3-11.4":0.05323,"12.0-12.1":0.04791,"12.2-12.5":0.92086,"13.0-13.1":0.01597,"13.2":0.15969,"13.3":0.04791,"13.4-13.7":0.18098,"14.0-14.4":0.34599,"14.5-14.8":0.54293,"15.0-15.1":0.23421,"15.2-15.3":0.27679,"15.4":0.3247,"15.5":0.41518,"15.6-15.8":3.47584,"16.0":0.84634,"16.1":1.75123,"16.2":0.84634,"16.3":1.50637,"16.4":0.31937,"16.5":0.676,"16.6-16.7":5.1206,"17.0":0.66536,"17.1":1.33072,"17.2":2.14512,"17.3":26.40145,"17.4":3.87505,"17.5":0},P:{"4":0.07135,"20":0.02039,"21":0.06116,"22":0.04077,"23":0.94792,"24":0.78484,_:"5.0-5.4 8.2 9.2 10.1 12.0 15.0","6.2-6.4":0.02039,"7.2-7.4":0.07135,"11.1-11.2":0.01019,"13.0":0.01019,"14.0":0.03058,"16.0":0.01019,"17.0":0.03058,"18.0":0.01019,"19.0":0.02039},I:{"0":0.09203,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.09241,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.0016,"7":0.0032,"8":0.03196,"9":0.00479,"10":0.00639,"11":0.03036,_:"5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":28.7363},R:{_:"0"},M:{"0":0.11761},Q:{_:"14.9"},O:{"0":0.0336},H:{"0":0}}; +module.exports={C:{"2":0.00143,"4":0.00143,"31":0.00143,"35":0.00143,"37":0.00143,"38":0.00143,"39":0.00143,"40":0.00285,"41":0.00143,"52":0.00428,"87":0.00143,"89":0.00143,"99":0.00143,"102":0.00285,"103":0.00571,"104":0.00285,"105":0.00285,"108":0.00285,"115":0.0742,"117":0.00143,"119":0.00571,"120":0.00143,"121":0.00143,"122":0.00143,"123":0.01855,"124":0.24402,"125":0.17409,"126":0.00143,_:"3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 36 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 90 91 92 93 94 95 96 97 98 100 101 106 107 109 110 111 112 113 114 116 118 127 128 3.5","3.6":0.00285},D:{"11":0.00143,"21":0.00143,"31":0.00143,"34":0.00143,"36":0.00143,"37":0.00143,"38":0.00285,"39":0.00143,"40":0.00143,"41":0.00856,"42":0.00285,"43":0.00428,"44":0.00428,"45":0.00428,"46":0.00571,"47":0.00285,"49":0.10703,"51":0.00999,"55":0.00143,"56":0.00143,"63":0.00143,"65":0.00143,"68":0.00143,"69":0.00143,"70":0.00428,"71":0.00285,"73":0.00428,"74":0.00143,"75":0.00714,"79":0.03568,"80":0.00285,"81":0.00143,"83":0.01712,"85":0.00143,"86":0.00999,"87":0.01855,"88":0.00143,"89":0.00143,"90":0.00143,"91":0.00856,"93":0.00143,"94":0.00143,"95":0.00143,"97":0.00143,"98":0.00714,"99":0.00428,"100":0.00285,"102":0.00143,"103":0.01427,"104":0.01427,"105":0.00428,"106":0.00571,"107":0.00428,"108":0.00571,"109":0.89473,"110":0.00285,"111":0.00714,"112":0.00714,"113":0.00143,"114":0.00571,"115":0.00428,"116":0.07849,"117":0.00714,"118":0.00428,"119":0.0157,"120":1.01602,"121":0.06707,"122":0.22261,"123":3.80866,"124":1.70384,"125":0.00571,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 32 33 35 48 50 52 53 54 57 58 59 60 61 62 64 66 67 72 76 77 78 84 92 96 101 126 127"},F:{"28":0.00143,"31":0.00143,"46":0.00143,"69":0.00285,"79":0.00143,"93":0.00285,"94":0.00143,"95":0.0157,"106":0.00143,"107":0.13699,"108":0.09418,"109":0.03996,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00143},B:{"12":0.00143,"18":0.00143,"89":0.01142,"92":0.00571,"103":0.00285,"105":0.00143,"107":0.00143,"108":0.00143,"109":0.00428,"112":0.00143,"113":0.00143,"119":0.00285,"120":0.01142,"121":0.01284,"122":0.03139,"123":0.39528,"124":0.18836,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 104 106 110 111 114 115 116 117 118"},E:{"7":0.00143,"8":0.00143,"9":0.01855,"14":0.00856,_:"0 4 5 6 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00143,"11.1":0.00143,"12.1":0.00143,"13.1":0.00856,"14.1":0.01712,"15.1":0.02141,"15.2-15.3":0.00428,"15.4":0.00856,"15.5":0.02997,"15.6":0.31251,"16.0":0.00571,"16.1":0.03282,"16.2":0.02569,"16.3":0.10988,"16.4":0.0528,"16.5":0.04852,"16.6":0.2854,"17.0":0.02997,"17.1":0.09133,"17.2":0.19265,"17.3":0.32393,"17.4":2.06915,"17.5":0.01142},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0112,"5.0-5.1":0.0112,"6.0-6.1":0.02799,"7.0-7.1":0.04479,"8.1-8.4":0.0112,"9.0-9.2":0.02799,"9.3":0.13997,"10.0-10.2":0.02799,"10.3":0.22395,"11.0-11.2":0.19036,"11.3-11.4":0.05599,"12.0-12.1":0.03919,"12.2-12.5":0.91261,"13.0-13.1":0.0168,"13.2":0.18476,"13.3":0.04479,"13.4-13.7":0.17356,"14.0-14.4":0.34153,"14.5-14.8":0.52069,"15.0-15.1":0.24075,"15.2-15.3":0.27434,"15.4":0.31353,"15.5":0.39752,"15.6-15.8":3.47127,"16.0":0.81183,"16.1":1.69084,"16.2":0.81183,"16.3":1.4333,"16.4":0.29674,"16.5":0.62147,"16.6-16.7":4.91017,"17.0":0.58788,"17.1":1.08617,"17.2":1.4445,"17.3":10.53698,"17.4":23.7838,"17.5":0.21835},P:{"4":0.09098,"20":0.02022,"21":0.07076,"22":0.05054,"23":0.18196,"24":1.7589,_:"5.0-5.4 8.2 10.1 12.0 15.0","6.2-6.4":0.02022,"7.2-7.4":0.09098,"9.2":0.01011,"11.1-11.2":0.01011,"13.0":0.02022,"14.0":0.03033,"16.0":0.01011,"17.0":0.04043,"18.0":0.01011,"19.0":0.02022},I:{"0":0.09393,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},A:{"6":0.00143,"7":0.00285,"8":0.02854,"9":0.00428,"10":0.00571,"11":0.02426,_:"5.5"},K:{"0":0.11146,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00857,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02572},H:{"0":0},L:{"0":27.24598},R:{_:"0"},M:{"0":0.12004}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js index 96ad280fb047cf..f7e24f778c4b46 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AM.js @@ -1 +1 @@ -module.exports={C:{"52":50.86403,"56":0.01388,"108":0.00694,"113":0.00694,"115":0.16661,"116":0.00694,"119":0.00694,"122":0.02777,"123":0.24297,"124":0.10413,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 114 117 118 120 121 125 126 127 3.5 3.6"},D:{"37":0.01388,"49":0.00694,"51":0.01388,"73":0.00694,"74":0.00694,"79":0.00694,"80":0.00694,"86":0.03471,"87":0.00694,"88":0.00694,"89":0.00694,"90":0.00694,"92":0.00694,"93":0.00694,"95":0.00694,"96":0.00694,"97":0.01388,"98":0.00694,"99":0.00694,"100":0.01388,"102":0.02777,"103":0.02777,"105":0.00694,"106":0.03471,"107":0.01388,"108":0.03471,"109":1.93682,"110":0.00694,"111":0.01388,"112":0.06248,"113":0.01388,"114":0.01388,"115":0.02083,"116":0.1319,"117":0.04859,"118":0.02083,"119":0.04859,"120":0.17355,"121":0.64561,"122":8.15685,"123":2.46441,"124":0.02083,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 75 76 77 78 81 83 84 85 91 94 101 104 125 126"},F:{"46":0.00694,"82":0.02083,"85":0.00694,"86":0.01388,"87":0.00694,"95":0.05554,"107":0.34016,"108":0.11107,"109":0.00694,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00694,"108":0.00694,"109":0.00694,"117":0.00694,"119":0.00694,"120":0.02083,"121":0.04859,"122":0.83998,"123":0.06248,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 114 115 116 118"},E:{"14":0.01388,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 16.0 17.5","14.1":0.01388,"15.2-15.3":0.00694,"15.4":0.00694,"15.5":0.00694,"15.6":0.04859,"16.1":0.04165,"16.2":0.03471,"16.3":0.10413,"16.4":0.00694,"16.5":0.04165,"16.6":0.10413,"17.0":0.02083,"17.1":0.04165,"17.2":0.10413,"17.3":0.15967,"17.4":0.13884},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00151,"5.0-5.1":0.00076,"6.0-6.1":0.00453,"7.0-7.1":0.00529,"8.1-8.4":0.00151,"9.0-9.2":0.00302,"9.3":0.01888,"10.0-10.2":0.00302,"10.3":0.03172,"11.0-11.2":0.02266,"11.3-11.4":0.00755,"12.0-12.1":0.0068,"12.2-12.5":0.13067,"13.0-13.1":0.00227,"13.2":0.02266,"13.3":0.0068,"13.4-13.7":0.02568,"14.0-14.4":0.0491,"14.5-14.8":0.07704,"15.0-15.1":0.03323,"15.2-15.3":0.03928,"15.4":0.04607,"15.5":0.05892,"15.6-15.8":0.49323,"16.0":0.1201,"16.1":0.2485,"16.2":0.1201,"16.3":0.21376,"16.4":0.04532,"16.5":0.09593,"16.6-16.7":0.72662,"17.0":0.09442,"17.1":0.18883,"17.2":0.3044,"17.3":3.74642,"17.4":0.54988,"17.5":0},P:{"4":0.01064,"20":0.01064,"21":0.06382,"22":0.05318,"23":0.64883,"24":0.35101,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.05318,"11.1-11.2":0.01064,"13.0":0.01064,"19.0":0.01064},I:{"0":0.0335,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.40341,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01736,"10":0.00868,"11":0.04339,_:"6 7 9 5.5"},S:{"2.5":0.00306,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":21.21579},R:{_:"0"},M:{"0":0.06422},Q:{"14.9":0.00306},O:{"0":0.14984},H:{"0":0.04}}; +module.exports={C:{"52":55.64491,"56":0.00731,"107":0.00731,"115":0.17554,"119":0.00731,"122":0.00731,"123":0.02194,"124":0.28525,"125":0.13897,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 114 116 117 118 120 121 126 127 128 3.5 3.6"},D:{"49":0.00731,"51":0.00731,"74":0.00731,"80":0.00731,"86":0.01463,"88":0.01463,"90":0.00731,"91":0.01463,"96":0.00731,"97":0.01463,"98":0.00731,"99":0.00731,"101":0.00731,"102":0.02194,"103":0.01463,"105":0.00731,"106":0.02194,"107":0.00731,"108":0.02194,"109":1.68222,"110":0.01463,"111":0.00731,"112":0.02194,"113":0.01463,"114":0.00731,"115":0.00731,"116":0.1024,"117":0.02194,"118":0.02194,"119":0.0512,"120":0.08777,"121":0.08045,"122":0.33644,"123":7.70896,"124":2.91097,"125":0.01463,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 81 83 84 85 87 89 92 93 94 95 100 104 126 127"},F:{"85":0.00731,"95":0.0512,"105":0.00731,"107":0.13165,"108":0.19748,"109":0.11702,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00731,"107":0.00731,"108":0.00731,"109":0.00731,"120":0.01463,"121":0.00731,"122":0.02926,"123":0.69483,"124":0.23405,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 112 113 114 115 116 117 118 119"},E:{"9":0.00731,"14":0.01463,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 17.5","13.1":0.00731,"14.1":0.00731,"15.5":0.00731,"15.6":0.03657,"16.1":0.02194,"16.2":0.02926,"16.3":0.10971,"16.4":0.00731,"16.5":0.03657,"16.6":0.07314,"17.0":0.01463,"17.1":0.03657,"17.2":0.05851,"17.3":0.06583,"17.4":0.25599},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00138,"5.0-5.1":0.00138,"6.0-6.1":0.00344,"7.0-7.1":0.00551,"8.1-8.4":0.00138,"9.0-9.2":0.00344,"9.3":0.01722,"10.0-10.2":0.00344,"10.3":0.02755,"11.0-11.2":0.02342,"11.3-11.4":0.00689,"12.0-12.1":0.00482,"12.2-12.5":0.11226,"13.0-13.1":0.00207,"13.2":0.02273,"13.3":0.00551,"13.4-13.7":0.02135,"14.0-14.4":0.04201,"14.5-14.8":0.06405,"15.0-15.1":0.02961,"15.2-15.3":0.03375,"15.4":0.03857,"15.5":0.0489,"15.6-15.8":0.42699,"16.0":0.09986,"16.1":0.20798,"16.2":0.09986,"16.3":0.1763,"16.4":0.0365,"16.5":0.07644,"16.6-16.7":0.60398,"17.0":0.07231,"17.1":0.13361,"17.2":0.17768,"17.3":1.29612,"17.4":2.92556,"17.5":0.02686},P:{"4":0.01052,"20":0.02103,"21":0.08413,"22":0.03155,"23":0.09464,"24":0.73612,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 16.0 18.0","7.2-7.4":0.04206,"14.0":0.01052,"15.0":0.02103,"17.0":0.01052,"19.0":0.01052},I:{"0":0.03477,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.02194,"9":0.00731,"11":0.04388,_:"6 7 10 5.5"},K:{"0":0.39588,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00269,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.10475},H:{"0":0.05},L:{"0":18.30611},R:{_:"0"},M:{"0":0.05103}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js index d085fa087c12dd..4ec0806849d701 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AO.js @@ -1 +1 @@ -module.exports={C:{"34":0.02108,"47":0.00301,"78":0.00602,"104":0.00301,"112":0.00301,"113":0.00301,"115":0.11442,"120":0.00301,"122":0.00602,"123":0.23185,"124":0.0813,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 114 116 117 118 119 121 125 126 127 3.5 3.6"},D:{"11":0.00903,"34":0.00301,"35":0.00301,"42":0.00301,"43":0.00301,"46":0.00602,"48":0.00301,"49":0.00301,"50":0.00301,"53":0.00301,"56":0.00301,"65":0.00301,"67":0.01204,"69":0.01204,"70":0.00301,"73":0.00602,"74":0.00301,"75":0.00301,"76":0.00903,"77":0.00301,"78":0.00301,"79":0.02108,"80":0.00301,"81":0.03312,"83":0.00602,"84":0.00301,"85":0.01204,"86":0.03011,"87":0.06624,"88":0.00903,"89":0.00602,"90":0.00903,"91":0.00903,"92":0.01506,"93":0.00301,"94":0.02108,"95":0.01204,"96":0.00301,"97":0.00602,"98":0.00602,"99":0.00602,"100":0.00903,"101":0.00602,"102":0.04517,"103":0.01506,"104":0.00602,"105":0.00903,"106":0.01807,"107":0.00903,"108":0.00903,"109":1.49346,"110":0.01506,"111":0.00602,"112":0.01807,"113":0.00301,"114":0.02108,"115":0.00602,"116":0.04818,"117":0.0271,"118":0.02409,"119":0.05119,"120":0.11141,"121":0.37638,"122":4.99826,"123":1.32183,"124":0.01204,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 41 44 45 47 51 52 54 55 57 58 59 60 61 62 63 64 66 68 71 72 125 126"},F:{"32":0.00301,"34":0.00301,"42":0.00301,"79":0.00602,"80":0.00301,"85":0.00301,"86":0.00301,"87":0.00301,"90":0.00301,"95":0.08431,"99":0.00301,"102":0.00301,"105":0.00602,"106":0.00301,"107":0.43961,"108":0.19873,"109":0.00301,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 82 83 84 88 89 91 92 93 94 96 97 98 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00602,"13":0.00301,"14":0.00602,"15":0.01506,"16":0.00301,"17":0.00301,"18":0.01506,"81":0.00301,"84":0.01506,"89":0.00903,"90":0.01807,"92":0.05119,"100":0.00301,"101":0.00903,"103":0.00903,"105":0.00903,"106":0.00301,"109":0.06624,"110":0.00301,"111":0.00903,"112":0.00301,"113":0.00602,"114":0.01807,"115":0.02108,"116":0.00602,"117":0.01204,"118":0.01204,"119":0.01506,"120":0.09936,"121":0.12044,"122":2.17996,"123":0.17765,_:"79 80 83 85 86 87 88 91 93 94 95 96 97 98 99 102 104 107 108"},E:{"15":0.00301,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.5 16.0 16.1 17.5","12.1":0.00301,"13.1":0.01807,"14.1":0.00301,"15.4":0.00301,"15.6":0.11743,"16.2":0.00301,"16.3":0.00301,"16.4":0.00301,"16.5":0.00301,"16.6":0.00903,"17.0":0.00903,"17.1":0.00903,"17.2":0.00602,"17.3":0.02409,"17.4":0.01204},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00185,"5.0-5.1":0.00092,"6.0-6.1":0.00554,"7.0-7.1":0.00647,"8.1-8.4":0.00185,"9.0-9.2":0.0037,"9.3":0.0231,"10.0-10.2":0.0037,"10.3":0.03881,"11.0-11.2":0.02772,"11.3-11.4":0.00924,"12.0-12.1":0.00832,"12.2-12.5":0.15987,"13.0-13.1":0.00277,"13.2":0.02772,"13.3":0.00832,"13.4-13.7":0.03142,"14.0-14.4":0.06007,"14.5-14.8":0.09426,"15.0-15.1":0.04066,"15.2-15.3":0.04805,"15.4":0.05637,"15.5":0.07208,"15.6-15.8":0.60342,"16.0":0.14693,"16.1":0.30402,"16.2":0.14693,"16.3":0.26151,"16.4":0.05544,"16.5":0.11736,"16.6-16.7":0.88896,"17.0":0.11551,"17.1":0.23102,"17.2":0.3724,"17.3":4.58343,"17.4":0.67273,"17.5":0},P:{"4":0.17825,"20":0.03146,"21":0.03146,"22":0.06291,"23":0.23067,"24":0.19922,_:"5.0-5.4 8.2 10.1 11.1-11.2 12.0","6.2-6.4":0.02097,"7.2-7.4":0.12582,"9.2":0.02097,"13.0":0.02097,"14.0":0.02097,"15.0":0.04194,"16.0":0.04194,"17.0":0.08388,"18.0":0.02097,"19.0":0.04194},I:{"0":0.07657,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00018},K:{"0":0.47803,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00903,_:"6 7 8 9 10 5.5"},S:{"2.5":0.09786,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":74.81398},R:{_:"0"},M:{"0":0.06291},Q:{_:"14.9"},O:{"0":0.16077},H:{"0":0.2}}; +module.exports={C:{"34":0.01216,"60":0.00304,"78":0.00304,"99":0.00608,"112":0.00304,"113":0.00304,"115":0.12464,"122":0.00304,"123":0.0152,"124":0.20976,"125":0.10336,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"11":0.00912,"29":0.00304,"31":0.01824,"35":0.00304,"42":0.00304,"43":0.00304,"46":0.00608,"50":0.00304,"54":0.00304,"62":0.00304,"67":0.00912,"69":0.00912,"70":0.00304,"72":0.00304,"73":0.00304,"75":0.0152,"76":0.00912,"77":0.00304,"79":0.01216,"81":0.0304,"83":0.00304,"84":0.00608,"85":0.00912,"86":0.0304,"87":0.04864,"88":0.00912,"89":0.00608,"90":0.00912,"91":0.00304,"92":0.03344,"93":0.00304,"94":0.01824,"95":0.00912,"96":0.00304,"97":0.00608,"98":0.00912,"99":0.00608,"100":0.00304,"101":0.00912,"102":0.0304,"103":0.01216,"104":0.00304,"105":0.01216,"106":0.01216,"107":0.00304,"108":0.01216,"109":1.58992,"110":0.01216,"111":0.00304,"112":0.01216,"113":0.00608,"114":0.02128,"115":0.00608,"116":0.08208,"117":0.0152,"118":0.0152,"119":0.05168,"120":0.10032,"121":0.10336,"122":0.24016,"123":4.73632,"124":2.05504,"125":0.02432,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 33 34 36 37 38 39 40 41 44 45 47 48 49 51 52 53 55 56 57 58 59 60 61 63 64 65 66 68 71 74 78 80 126 127"},F:{"79":0.00608,"87":0.00304,"90":0.00304,"95":0.0912,"102":0.00608,"107":0.05472,"108":0.4104,"109":0.152,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 88 89 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00608,"14":0.00304,"15":0.02736,"16":0.00608,"17":0.00304,"18":0.01824,"84":0.0152,"89":0.0152,"90":0.0152,"92":0.03952,"100":0.00608,"101":0.00608,"103":0.00304,"105":0.00608,"107":0.00304,"108":0.00304,"109":0.08208,"110":0.00304,"111":0.00608,"113":0.00304,"114":0.01824,"115":0.00304,"116":0.00608,"117":0.00608,"118":0.00304,"119":0.00912,"120":0.06384,"121":0.04864,"122":0.1824,"123":1.66592,"124":0.77824,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 102 104 106 112"},E:{"15":0.00912,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 17.1 17.5","13.1":0.0152,"14.1":0.00608,"15.6":0.06384,"16.1":0.00304,"16.3":0.00304,"16.5":0.00304,"16.6":0.01216,"17.0":0.00608,"17.2":0.00304,"17.3":0.00912,"17.4":0.03648},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00183,"5.0-5.1":0.00183,"6.0-6.1":0.00458,"7.0-7.1":0.00733,"8.1-8.4":0.00183,"9.0-9.2":0.00458,"9.3":0.0229,"10.0-10.2":0.00458,"10.3":0.03664,"11.0-11.2":0.03114,"11.3-11.4":0.00916,"12.0-12.1":0.00641,"12.2-12.5":0.1493,"13.0-13.1":0.00275,"13.2":0.03023,"13.3":0.00733,"13.4-13.7":0.02839,"14.0-14.4":0.05587,"14.5-14.8":0.08518,"15.0-15.1":0.03939,"15.2-15.3":0.04488,"15.4":0.05129,"15.5":0.06503,"15.6-15.8":0.56788,"16.0":0.13281,"16.1":0.27661,"16.2":0.13281,"16.3":0.23448,"16.4":0.04854,"16.5":0.10167,"16.6-16.7":0.80328,"17.0":0.09617,"17.1":0.17769,"17.2":0.23631,"17.3":1.72379,"17.4":3.8909,"17.5":0.03572},P:{"4":0.21112,"20":0.02011,"21":0.04021,"22":0.03016,"23":0.13069,"24":0.33176,_:"5.0-5.4 8.2 11.1-11.2 12.0","6.2-6.4":0.03016,"7.2-7.4":0.12064,"9.2":0.01005,"10.1":0.01005,"13.0":0.04021,"14.0":0.02011,"15.0":0.04021,"16.0":0.03016,"17.0":0.04021,"18.0":0.04021,"19.0":0.02011},I:{"0":0.06931,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"11":0.00608,_:"6 7 8 9 10 5.5"},K:{"0":0.39288,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08352,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.12528},H:{"0":0.15},L:{"0":74.4992},R:{_:"0"},M:{"0":0.0696}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js index a35472e21abfe4..39247520f0e6ad 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AR.js @@ -1 +1 @@ -module.exports={C:{"4":0.00344,"52":0.02065,"59":0.01377,"68":0.00344,"72":0.00344,"78":0.01033,"80":0.00344,"81":0.00344,"82":0.00344,"84":0.00344,"86":0.00688,"88":0.03442,"89":0.00344,"90":0.00688,"91":0.05851,"93":0.00344,"99":0.00344,"101":0.00344,"102":0.00688,"103":0.03442,"104":0.00344,"105":0.00344,"106":0.00688,"107":0.00344,"108":0.00344,"109":0.00344,"110":0.00344,"111":0.00344,"112":0.00688,"113":0.01377,"114":0.00344,"115":0.34076,"116":0.00344,"117":0.00344,"118":0.00344,"119":0.00688,"120":0.01721,"121":0.00688,"122":0.02065,"123":0.71594,"124":0.28224,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 83 85 87 92 94 95 96 97 98 100 125 126 127 3.5 3.6"},D:{"34":0.00344,"38":0.01721,"47":0.00688,"49":0.06884,"51":0.00344,"58":0.00344,"63":0.00344,"65":0.00344,"66":0.02409,"68":0.00344,"71":0.00344,"74":0.00344,"75":0.00344,"76":0.00344,"78":0.00688,"79":0.03098,"80":0.00344,"81":0.00688,"83":0.00344,"84":0.00344,"85":0.00688,"86":0.00344,"87":0.03098,"88":0.02065,"89":0.00688,"90":0.00688,"91":0.03098,"92":0.02065,"93":0.01377,"94":0.00344,"95":0.01033,"96":0.00688,"97":0.01033,"98":0.00688,"99":0.01033,"100":0.00688,"101":0.01033,"102":0.01033,"103":0.05851,"104":0.00688,"105":0.01377,"106":0.01721,"107":0.02409,"108":0.03098,"109":3.41791,"110":0.01721,"111":0.01377,"112":0.01377,"113":0.01721,"114":0.02065,"115":0.01721,"116":0.08949,"117":0.02754,"118":0.02754,"119":0.12047,"120":0.34764,"121":0.94311,"122":16.06037,"123":4.50558,"124":0.00344,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 52 53 54 55 56 57 59 60 61 62 64 67 69 70 72 73 77 125 126"},F:{"28":0.01033,"36":0.00688,"77":0.00344,"79":0.00344,"85":0.00344,"95":0.0654,"102":0.00344,"105":0.00344,"106":0.01033,"107":1.65904,"108":0.15145,"109":0.00344,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00344,"18":0.00344,"92":0.01377,"109":0.03786,"111":0.00344,"113":0.00344,"114":0.00344,"115":0.00344,"116":0.00344,"117":0.00688,"118":0.00688,"119":0.01033,"120":0.02409,"121":0.06196,"122":2.10306,"123":0.16522,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112"},E:{"14":0.01033,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 15.1 17.5","5.1":0.00344,"11.1":0.00688,"12.1":0.00344,"13.1":0.01721,"14.1":0.02409,"15.2-15.3":0.00344,"15.4":0.00688,"15.5":0.00344,"15.6":0.04475,"16.0":0.00344,"16.1":0.01033,"16.2":0.00344,"16.3":0.01721,"16.4":0.01033,"16.5":0.01377,"16.6":0.06196,"17.0":0.01377,"17.1":0.03098,"17.2":0.05851,"17.3":0.16177,"17.4":0.04475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00094,"5.0-5.1":0.00047,"6.0-6.1":0.00281,"7.0-7.1":0.00328,"8.1-8.4":0.00094,"9.0-9.2":0.00188,"9.3":0.01172,"10.0-10.2":0.00188,"10.3":0.01969,"11.0-11.2":0.01407,"11.3-11.4":0.00469,"12.0-12.1":0.00422,"12.2-12.5":0.08112,"13.0-13.1":0.00141,"13.2":0.01407,"13.3":0.00422,"13.4-13.7":0.01594,"14.0-14.4":0.03048,"14.5-14.8":0.04783,"15.0-15.1":0.02063,"15.2-15.3":0.02438,"15.4":0.0286,"15.5":0.03657,"15.6-15.8":0.30619,"16.0":0.07455,"16.1":0.15427,"16.2":0.07455,"16.3":0.1327,"16.4":0.02813,"16.5":0.05955,"16.6-16.7":0.45108,"17.0":0.05861,"17.1":0.11722,"17.2":0.18897,"17.3":2.32573,"17.4":0.34136,"17.5":0},P:{"4":0.11593,"20":0.02108,"21":0.06323,"22":0.05269,"23":1.53868,"24":1.09605,"5.0-5.4":0.01054,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.1897,"11.1-11.2":0.01054,"13.0":0.02108,"14.0":0.02108,"15.0":0.01054,"16.0":0.02108,"17.0":0.08431,"18.0":0.02108,"19.0":0.02108},I:{"0":0.03266,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.16395,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00344,"11":0.02754,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":58.37796},R:{_:"0"},M:{"0":0.11804},Q:{_:"14.9"},O:{"0":0.02623},H:{"0":0}}; +module.exports={C:{"4":0.00755,"52":0.02642,"59":0.0151,"68":0.00377,"72":0.00377,"78":0.01132,"79":0.00377,"80":0.00377,"81":0.00377,"82":0.00377,"84":0.00377,"86":0.00755,"88":0.03774,"89":0.00377,"90":0.00755,"91":0.06416,"93":0.00377,"96":0.00377,"99":0.00377,"102":0.00755,"103":0.03019,"104":0.00377,"105":0.00377,"106":0.00755,"107":0.00377,"108":0.00377,"109":0.00377,"110":0.00377,"111":0.00377,"112":0.00755,"113":0.01132,"114":0.00377,"115":0.40004,"116":0.00377,"117":0.0151,"118":0.00377,"119":0.00755,"120":0.01887,"121":0.00755,"122":0.01132,"123":0.02264,"124":0.74725,"125":0.41137,"126":0.00377,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 83 85 87 92 94 95 97 98 100 101 127 128 3.5 3.6"},D:{"34":0.00377,"38":0.02264,"47":0.00377,"49":0.05661,"51":0.00377,"58":0.00377,"63":0.00377,"66":0.02642,"68":0.00377,"70":0.00377,"74":0.00377,"75":0.00755,"76":0.00377,"77":0.00377,"78":0.01132,"79":0.02264,"80":0.00377,"81":0.00755,"83":0.00377,"84":0.00377,"85":0.00377,"86":0.00377,"87":0.02642,"88":0.02264,"89":0.00755,"90":0.00755,"91":0.02264,"92":0.02642,"93":0.01132,"94":0.00377,"95":0.0151,"96":0.00755,"97":0.01132,"98":0.00377,"99":0.01132,"100":0.00755,"101":0.00377,"102":0.00755,"103":0.04529,"104":0.01132,"105":0.01887,"106":0.0151,"107":0.0151,"108":0.02642,"109":3.76268,"110":0.02264,"111":0.0151,"112":0.0151,"113":0.01132,"114":0.02264,"115":0.01887,"116":0.09435,"117":0.02642,"118":0.01887,"119":0.10945,"120":0.15473,"121":0.24531,"122":0.83028,"123":15.89986,"124":7.01587,"125":0.04151,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 52 53 54 55 56 57 59 60 61 62 64 65 67 69 71 72 73 126 127"},F:{"28":0.00755,"36":0.01132,"77":0.00377,"83":0.00377,"85":0.00377,"95":0.06416,"102":0.00377,"106":0.00377,"107":1.4945,"108":0.31702,"109":0.12077,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.01132,"17":0.00377,"18":0.00377,"92":0.0151,"107":0.00755,"109":0.04151,"113":0.00377,"114":0.00377,"115":0.00377,"116":0.00377,"117":0.00377,"118":0.00755,"119":0.00755,"120":0.0151,"121":0.01132,"122":0.11322,"123":1.64169,"124":0.81518,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112"},E:{"14":0.00755,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.00377,"11.1":0.00755,"12.1":0.00377,"13.1":0.0151,"14.1":0.02642,"15.1":0.00377,"15.2-15.3":0.00377,"15.4":0.00377,"15.5":0.00377,"15.6":0.04906,"16.0":0.00377,"16.1":0.0151,"16.2":0.00377,"16.3":0.01887,"16.4":0.00755,"16.5":0.01132,"16.6":0.05661,"17.0":0.01887,"17.1":0.02264,"17.2":0.03397,"17.3":0.06416,"17.4":0.20757},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00096,"5.0-5.1":0.00096,"6.0-6.1":0.00239,"7.0-7.1":0.00382,"8.1-8.4":0.00096,"9.0-9.2":0.00239,"9.3":0.01194,"10.0-10.2":0.00239,"10.3":0.0191,"11.0-11.2":0.01624,"11.3-11.4":0.00478,"12.0-12.1":0.00334,"12.2-12.5":0.07785,"13.0-13.1":0.00143,"13.2":0.01576,"13.3":0.00382,"13.4-13.7":0.01481,"14.0-14.4":0.02913,"14.5-14.8":0.04442,"15.0-15.1":0.02054,"15.2-15.3":0.0234,"15.4":0.02675,"15.5":0.03391,"15.6-15.8":0.29612,"16.0":0.06925,"16.1":0.14424,"16.2":0.06925,"16.3":0.12227,"16.4":0.02531,"16.5":0.05301,"16.6-16.7":0.41886,"17.0":0.05015,"17.1":0.09266,"17.2":0.12322,"17.3":0.89886,"17.4":2.02889,"17.5":0.01863},P:{"4":0.11217,"20":0.02039,"21":0.05098,"22":0.04079,"23":0.18355,"24":2.19235,"5.0-5.4":0.0102,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.16315,"11.1-11.2":0.0102,"13.0":0.02039,"14.0":0.02039,"15.0":0.0102,"16.0":0.02039,"17.0":0.08158,"18.0":0.0102,"19.0":0.02039},I:{"0":0.03101,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.00377,"11":0.09058,_:"6 7 9 10 5.5"},K:{"0":0.14945,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04359},H:{"0":0},L:{"0":55.02632},R:{_:"0"},M:{"0":0.11831}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js index 794e0da381434d..16ce532c771d19 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AS.js @@ -1 +1 @@ -module.exports={C:{"115":0.01326,"123":0.02983,"124":0.00663,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 125 126 127 3.5 3.6"},D:{"66":0.00331,"79":0.00331,"86":0.0232,"87":0.00331,"88":0.01657,"92":0.00331,"93":0.01988,"100":0.00994,"101":0.00331,"103":0.05302,"105":0.00331,"109":0.03314,"111":0.00331,"115":0.00331,"116":0.00994,"117":0.00663,"119":0.00663,"120":0.03977,"121":0.48384,"122":0.77216,"123":0.16901,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 89 90 91 94 95 96 97 98 99 102 104 106 107 108 110 112 113 114 118 124 125 126"},F:{"107":0.00331,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"115":0.00331,"119":0.00663,"120":0.00331,"121":0.09279,"122":0.59983,"123":0.01988,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118"},E:{"12":0.00331,_:"0 4 5 6 7 8 9 10 11 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00331,"13.1":0.00331,"14.1":0.00663,"15.1":0.09611,"15.2-15.3":0.03314,"15.4":0.285,"15.5":0.20547,"15.6":2.36951,"16.0":0.15907,"16.1":0.6164,"16.2":0.39437,"16.3":0.67606,"16.4":0.32809,"16.5":0.53355,"16.6":3.66528,"17.0":0.27838,"17.1":0.69594,"17.2":2.33306,"17.3":13.80612,"17.4":2.84673},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01296,"5.0-5.1":0.00648,"6.0-6.1":0.03889,"7.0-7.1":0.04537,"8.1-8.4":0.01296,"9.0-9.2":0.02593,"9.3":0.16204,"10.0-10.2":0.02593,"10.3":0.27222,"11.0-11.2":0.19444,"11.3-11.4":0.06481,"12.0-12.1":0.05833,"12.2-12.5":1.12128,"13.0-13.1":0.01944,"13.2":0.19444,"13.3":0.05833,"13.4-13.7":0.22037,"14.0-14.4":0.42129,"14.5-14.8":0.6611,"15.0-15.1":0.28518,"15.2-15.3":0.33703,"15.4":0.39537,"15.5":0.50555,"15.6-15.8":4.23236,"16.0":1.03054,"16.1":2.13238,"16.2":1.03054,"16.3":1.83424,"16.4":0.38888,"16.5":0.82314,"16.6-16.7":6.23511,"17.0":0.81018,"17.1":1.62035,"17.2":2.61201,"17.3":32.14779,"17.4":4.71847,"17.5":0},P:{"4":0.02101,"23":0.08405,"24":0.03152,_:"20 21 22 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","5.0-5.4":0.01051},I:{"0":0.01332,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{"2.5":0.00669,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":2.73355},R:{_:"0"},M:{"0":0.00669},Q:{_:"14.9"},O:{"0":0.02006},H:{"0":0}}; +module.exports={C:{"115":0.03946,"124":0.03288,"125":0.00658,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"79":0.00329,"87":0.00658,"93":0.00329,"103":0.10522,"109":0.0263,"110":0.00329,"111":0.00986,"113":0.01973,"115":0.00329,"116":0.01315,"119":0.00329,"120":0.01315,"121":0.04932,"122":0.26633,"123":0.822,"124":0.2466,"125":0.00329,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 94 95 96 97 98 99 100 101 102 104 105 106 107 108 112 114 117 118 126 127"},F:{"107":0.00658,"108":0.00329,"109":0.01644,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00658,"115":0.00658,"120":0.00329,"122":0.02959,"123":0.17755,"124":0.07234,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.00329,"14.1":0.00658,"15.1":0.10193,"15.2-15.3":0.04932,"15.4":0.3025,"15.5":0.1907,"15.6":2.32133,"16.0":0.13152,"16.1":0.65102,"16.2":0.31565,"16.3":0.45703,"16.4":0.2203,"16.5":0.4669,"16.6":3.72859,"17.0":0.21043,"17.1":0.39456,"17.2":0.90091,"17.3":4.29084,"17.4":14.97026,"17.5":0.08878},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01307,"5.0-5.1":0.01307,"6.0-6.1":0.03268,"7.0-7.1":0.05229,"8.1-8.4":0.01307,"9.0-9.2":0.03268,"9.3":0.1634,"10.0-10.2":0.03268,"10.3":0.26145,"11.0-11.2":0.22223,"11.3-11.4":0.06536,"12.0-12.1":0.04575,"12.2-12.5":1.06539,"13.0-13.1":0.01961,"13.2":0.21569,"13.3":0.05229,"13.4-13.7":0.20262,"14.0-14.4":0.3987,"14.5-14.8":0.60786,"15.0-15.1":0.28105,"15.2-15.3":0.32027,"15.4":0.36602,"15.5":0.46407,"15.6-15.8":4.05241,"16.0":0.94774,"16.1":1.97392,"16.2":0.94774,"16.3":1.67325,"16.4":0.34642,"16.5":0.72551,"16.6-16.7":5.7322,"17.0":0.6863,"17.1":1.26801,"17.2":1.68633,"17.3":12.30103,"17.4":27.76555,"17.5":0.25491},P:{"4":0.01037,"21":0.01037,"23":0.01037,"24":0.08298,_:"20 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.00668,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.00671,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.03356},H:{"0":0},L:{"0":2.17546},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js index e3534ff30e56a7..508e61caae73bf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AT.js @@ -1 +1 @@ -module.exports={C:{"34":0.00512,"47":0.01025,"48":0.00512,"50":0.00512,"52":0.05124,"53":0.00512,"56":0.00512,"68":0.02562,"72":0.00512,"78":0.03587,"83":0.00512,"84":0.00512,"88":0.00512,"91":0.01025,"92":0.00512,"94":0.00512,"96":0.0205,"98":0.00512,"99":0.00512,"102":0.08711,"103":0.00512,"104":0.01537,"105":0.00512,"106":0.00512,"107":0.01025,"108":0.01537,"109":0.02562,"110":0.00512,"111":0.00512,"112":0.00512,"113":0.01537,"114":0.01025,"115":2.39803,"116":0.00512,"117":0.00512,"118":0.01537,"119":0.01025,"120":0.0205,"121":0.07174,"122":0.1486,"123":4.25292,"124":1.75753,"125":0.00512,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 49 51 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 85 86 87 89 90 93 95 97 100 101 126 127 3.5 3.6"},D:{"22":0.00512,"29":0.00512,"38":0.01025,"43":0.00512,"44":0.00512,"46":0.00512,"47":0.00512,"49":0.0205,"51":0.00512,"68":0.00512,"70":0.00512,"72":0.00512,"73":0.00512,"75":0.00512,"77":0.00512,"78":0.00512,"79":0.1076,"80":0.01537,"81":0.01025,"83":0.01025,"84":0.00512,"85":0.01025,"86":0.59951,"87":0.06661,"88":0.01025,"89":0.0205,"90":0.01025,"91":0.00512,"93":0.01537,"94":0.01537,"95":0.00512,"96":0.00512,"98":0.00512,"99":0.01025,"100":0.61488,"101":1.19902,"102":0.60976,"103":0.65587,"104":0.63025,"105":0.04612,"106":0.01025,"107":0.01537,"108":0.04099,"109":0.89158,"110":0.0205,"111":0.02562,"112":0.03074,"113":0.11273,"114":0.12298,"115":0.03074,"116":0.15372,"117":0.0205,"118":0.12298,"119":0.07686,"120":0.30232,"121":1.52183,"122":12.64603,"123":3.52019,"124":0.00512,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 45 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 71 74 76 92 97 125 126"},F:{"46":0.01025,"71":0.00512,"85":0.02562,"89":0.00512,"94":0.00512,"95":0.05124,"102":0.01537,"104":0.00512,"105":0.00512,"106":0.21521,"107":2.00348,"108":0.39967,"109":0.01537,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 93 96 97 98 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01025,"92":0.01025,"106":0.00512,"108":0.00512,"109":0.15372,"110":0.00512,"111":0.00512,"112":0.00512,"113":0.01025,"114":0.01537,"115":0.01537,"116":0.01025,"117":0.01537,"118":0.01025,"119":0.0205,"120":0.1281,"121":0.30744,"122":7.32732,"123":0.57901,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107"},E:{"9":0.01025,"13":0.00512,"14":0.04612,"15":0.01025,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.01025,"11.1":0.03074,"12.1":0.01537,"13.1":0.12298,"14.1":0.12298,"15.1":0.0205,"15.2-15.3":0.02562,"15.4":0.03074,"15.5":0.06149,"15.6":0.38942,"16.0":0.06661,"16.1":0.09223,"16.2":0.08711,"16.3":0.15372,"16.4":0.04612,"16.5":0.09223,"16.6":0.51752,"17.0":0.08198,"17.1":0.35356,"17.2":0.54827,"17.3":1.4296,"17.4":0.47141},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00341,"5.0-5.1":0.0017,"6.0-6.1":0.01022,"7.0-7.1":0.01193,"8.1-8.4":0.00341,"9.0-9.2":0.00682,"9.3":0.0426,"10.0-10.2":0.00682,"10.3":0.07157,"11.0-11.2":0.05112,"11.3-11.4":0.01704,"12.0-12.1":0.01534,"12.2-12.5":0.29482,"13.0-13.1":0.00511,"13.2":0.05112,"13.3":0.01534,"13.4-13.7":0.05794,"14.0-14.4":0.11077,"14.5-14.8":0.17382,"15.0-15.1":0.07498,"15.2-15.3":0.08862,"15.4":0.10395,"15.5":0.13292,"15.6-15.8":1.11282,"16.0":0.27096,"16.1":0.56067,"16.2":0.27096,"16.3":0.48228,"16.4":0.10225,"16.5":0.21643,"16.6-16.7":1.6394,"17.0":0.21302,"17.1":0.42604,"17.2":0.68678,"17.3":8.45264,"17.4":1.24063,"17.5":0},P:{"4":0.18012,"20":0.03179,"21":0.06357,"22":0.07417,"23":2.17198,"24":1.87532,"5.0-5.4":0.02119,"6.2-6.4":0.02119,"7.2-7.4":0.0106,_:"8.2 9.2 10.1 12.0 16.0","11.1-11.2":0.0106,"13.0":0.0106,"14.0":0.0106,"15.0":0.0106,"17.0":0.0106,"18.0":0.0106,"19.0":0.02119},I:{"0":0.09712,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},K:{"0":0.6095,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01614,"9":0.01076,"10":0.00538,"11":0.07532,_:"6 7 5.5"},S:{"2.5":0.00488,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":26.03223},R:{_:"0"},M:{"0":0.7314},Q:{_:"14.9"},O:{"0":0.05364},H:{"0":0}}; +module.exports={C:{"34":0.00527,"47":0.00527,"48":0.01054,"50":0.13173,"52":0.16861,"53":0.13699,"56":0.12646,"68":0.01581,"72":0.00527,"78":0.03688,"88":0.00527,"91":0.00527,"92":0.00527,"93":0.00527,"94":0.00527,"96":0.02108,"102":0.02635,"103":0.01054,"104":0.01054,"106":0.00527,"107":0.01054,"108":0.00527,"109":0.02108,"110":0.00527,"111":0.00527,"112":0.01054,"113":0.01054,"114":0.01581,"115":1.14864,"116":0.00527,"117":0.04742,"118":0.01581,"119":0.01054,"120":0.01054,"121":0.02108,"122":0.04742,"123":0.1528,"124":3.87272,"125":2.20771,"126":0.00527,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 49 51 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 95 97 98 99 100 101 105 127 128 3.5 3.6"},D:{"22":0.00527,"38":0.01054,"42":0.01581,"46":0.00527,"47":0.00527,"49":0.01581,"51":0.00527,"56":0.01054,"70":0.00527,"75":0.00527,"79":0.09484,"80":0.02108,"81":0.00527,"83":0.00527,"84":0.00527,"85":0.00527,"86":1.08541,"87":0.0843,"88":0.01054,"89":0.01054,"90":0.02108,"91":0.02635,"93":0.01054,"94":0.00527,"96":0.00527,"99":0.01581,"100":1.10649,"101":2.1761,"102":1.09595,"103":1.15391,"104":1.14337,"105":0.02108,"106":0.01054,"107":0.01054,"108":0.03688,"109":0.88519,"110":0.01054,"111":0.01581,"112":0.02635,"113":0.10011,"114":0.11065,"115":0.02635,"116":0.13173,"117":0.01581,"118":0.13173,"119":0.06323,"120":0.1528,"121":0.22657,"122":1.15918,"123":11.34943,"124":4.48919,"125":0.01054,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 48 50 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 76 77 78 92 95 97 98 126 127"},F:{"46":0.00527,"71":0.02108,"85":0.03161,"94":0.00527,"95":0.04742,"102":0.01581,"104":0.01054,"106":0.19495,"107":1.40682,"108":0.75874,"109":0.34249,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00527,"91":0.04215,"92":0.00527,"107":0.00527,"108":0.00527,"109":0.14753,"110":0.01054,"111":0.00527,"112":0.00527,"113":0.01054,"114":0.01581,"115":0.00527,"116":0.01054,"117":0.01054,"118":0.00527,"119":0.02635,"120":0.06323,"121":0.06323,"122":0.43206,"123":5.11093,"124":2.50278,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"9":0.01054,"13":0.01054,"14":0.04742,"15":0.02635,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00527,"11.1":0.01581,"12.1":0.01581,"13.1":0.11065,"14.1":0.09484,"15.1":0.01581,"15.2-15.3":0.03688,"15.4":0.02635,"15.5":0.05269,"15.6":0.36883,"16.0":0.06323,"16.1":0.07377,"16.2":0.0843,"16.3":0.13173,"16.4":0.04215,"16.5":0.08957,"16.6":0.43733,"17.0":0.0685,"17.1":0.14753,"17.2":0.26872,"17.3":0.46894,"17.4":1.91265,"17.5":0.01054},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00316,"5.0-5.1":0.00316,"6.0-6.1":0.0079,"7.0-7.1":0.01263,"8.1-8.4":0.00316,"9.0-9.2":0.0079,"9.3":0.03948,"10.0-10.2":0.0079,"10.3":0.06317,"11.0-11.2":0.05369,"11.3-11.4":0.01579,"12.0-12.1":0.01105,"12.2-12.5":0.25741,"13.0-13.1":0.00474,"13.2":0.05211,"13.3":0.01263,"13.4-13.7":0.04896,"14.0-14.4":0.09633,"14.5-14.8":0.14687,"15.0-15.1":0.06791,"15.2-15.3":0.07738,"15.4":0.08844,"15.5":0.11212,"15.6-15.8":0.97911,"16.0":0.22899,"16.1":0.47692,"16.2":0.22899,"16.3":0.40428,"16.4":0.0837,"16.5":0.17529,"16.6-16.7":1.38497,"17.0":0.16582,"17.1":0.30637,"17.2":0.40744,"17.3":2.97207,"17.4":6.70847,"17.5":0.06159},P:{"4":0.21261,"20":0.03189,"21":0.07441,"22":0.04252,"23":0.31891,"24":3.33791,"5.0-5.4":0.01063,"6.2-6.4":0.01063,"7.2-7.4":0.01063,_:"8.2 9.2 10.1 11.1-11.2 12.0 16.0","13.0":0.01063,"14.0":0.01063,"15.0":0.01063,"17.0":0.01063,"18.0":0.01063,"19.0":0.01063},I:{"0":0.0801,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.01653,"9":0.01102,"11":0.09364,_:"6 7 10 5.5"},K:{"0":0.49202,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00473,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.07097},H:{"0":0},L:{"0":25.66831},R:{_:"0"},M:{"0":0.90362}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js index 16bc499be9e900..4f7b9a72d81d1a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AU.js @@ -1 +1 @@ -module.exports={C:{"34":0.00534,"52":0.02672,"54":0.00534,"56":0.00534,"78":0.02672,"83":0.00534,"88":0.02138,"102":0.00534,"103":0.01069,"104":0.01603,"108":0.00534,"109":0.00534,"112":0.00534,"113":0.01069,"114":0.00534,"115":0.25117,"116":0.00534,"117":0.03206,"118":0.01069,"119":0.00534,"120":0.01069,"121":0.02138,"122":0.07482,"123":1.40013,"124":0.57715,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 105 106 107 110 111 125 126 127 3.5 3.6"},D:{"25":0.02672,"26":0.01069,"34":0.02672,"35":0.1336,"38":0.0855,"44":0.00534,"45":0.00534,"46":0.00534,"47":0.00534,"49":0.02138,"51":0.00534,"52":0.00534,"53":0.00534,"55":0.00534,"56":0.00534,"59":0.01603,"63":0.00534,"65":0.00534,"66":0.02138,"67":0.00534,"69":0.00534,"70":0.00534,"72":0.00534,"73":0.00534,"74":0.00534,"75":0.00534,"76":0.00534,"77":0.00534,"78":0.00534,"79":0.0855,"80":0.01069,"81":0.02138,"83":0.00534,"85":0.01069,"86":0.08016,"87":0.0855,"88":0.04275,"89":0.01069,"90":0.01069,"91":0.01069,"92":0.00534,"93":0.01603,"94":0.02672,"95":0.00534,"96":0.01069,"97":0.01603,"98":0.01069,"99":0.02672,"100":0.08016,"101":0.1336,"102":0.08016,"103":0.24582,"104":0.09619,"105":0.03206,"106":0.01603,"107":0.02138,"108":0.03206,"109":0.86573,"110":0.02138,"111":0.02138,"112":0.02672,"113":0.0855,"114":0.12826,"115":0.03741,"116":0.43821,"117":0.09619,"118":0.10688,"119":0.27254,"120":0.77488,"121":2.82163,"122":18.67194,"123":5.36538,"124":0.01603,"125":0.00534,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 36 37 39 40 41 42 43 48 50 54 57 58 60 61 62 64 68 71 84 126"},F:{"36":0.00534,"46":0.02672,"95":0.01069,"102":0.00534,"105":0.00534,"106":0.03206,"107":0.8497,"108":0.09619,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00534,"18":0.00534,"85":0.00534,"92":0.00534,"107":0.00534,"108":0.00534,"109":0.08016,"110":0.00534,"111":0.00534,"112":0.00534,"113":0.01603,"114":0.01603,"115":0.01069,"116":0.01069,"117":0.01603,"118":0.02672,"119":0.03206,"120":0.09085,"121":0.37942,"122":7.10218,"123":0.56112,_:"12 13 14 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"9":0.01069,"13":0.02138,"14":0.11222,"15":0.02138,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00534,"12.1":0.03741,"13.1":0.15498,"14.1":0.27789,"15.1":0.04275,"15.2-15.3":0.04275,"15.4":0.06947,"15.5":0.11757,"15.6":0.75885,"16.0":0.07482,"16.1":0.17635,"16.2":0.12826,"16.3":0.33133,"16.4":0.11222,"16.5":0.19773,"16.6":1.09552,"17.0":0.10154,"17.1":0.32598,"17.2":0.668,"17.3":3.09418,"17.4":0.50768},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00457,"5.0-5.1":0.00228,"6.0-6.1":0.0137,"7.0-7.1":0.01598,"8.1-8.4":0.00457,"9.0-9.2":0.00913,"9.3":0.05707,"10.0-10.2":0.00913,"10.3":0.09588,"11.0-11.2":0.06848,"11.3-11.4":0.02283,"12.0-12.1":0.02055,"12.2-12.5":0.39493,"13.0-13.1":0.00685,"13.2":0.06848,"13.3":0.02055,"13.4-13.7":0.07762,"14.0-14.4":0.14838,"14.5-14.8":0.23285,"15.0-15.1":0.10044,"15.2-15.3":0.11871,"15.4":0.13925,"15.5":0.17806,"15.6-15.8":1.49068,"16.0":0.36297,"16.1":0.75105,"16.2":0.36297,"16.3":0.64604,"16.4":0.13697,"16.5":0.28992,"16.6-16.7":2.19607,"17.0":0.28535,"17.1":0.5707,"17.2":0.91997,"17.3":11.32275,"17.4":1.66189,"17.5":0},P:{"4":0.21013,"20":0.02212,"21":0.07742,"22":0.0553,"23":1.27185,"24":1.49304,"5.0-5.4":0.02212,"6.2-6.4":0.01106,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0","13.0":0.01106,"14.0":0.02212,"15.0":0.01106,"16.0":0.02212,"17.0":0.02212,"18.0":0.01106,"19.0":0.03318},I:{"0":0.08808,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},K:{"0":0.15362,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.06248,"9":0.01562,"10":0.01562,"11":0.10935,_:"6 7 5.5"},S:{"2.5":0.00466,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":20.37569},R:{_:"0"},M:{"0":0.36775},Q:{"14.9":0.00931},O:{"0":0.05121},H:{"0":0}}; +module.exports={C:{"34":0.0057,"52":0.0171,"54":0.0057,"58":0.0057,"78":0.0228,"83":0.0057,"88":0.0114,"101":0.0057,"102":0.0057,"103":0.0228,"109":0.0057,"113":0.0057,"114":0.0057,"115":0.22234,"117":0.0114,"118":0.0057,"119":0.0057,"120":0.0114,"121":0.0171,"122":0.0171,"123":0.05701,"124":1.1573,"125":0.5815,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 104 105 106 107 108 110 111 112 116 126 127 128 3.5 3.6"},D:{"25":0.0228,"26":0.0057,"34":0.0171,"35":0.04561,"38":0.08552,"44":0.0057,"45":0.0057,"46":0.0057,"47":0.0057,"49":0.0171,"51":0.0057,"52":0.0114,"53":0.0057,"56":0.0057,"59":0.0171,"63":0.0114,"65":0.0057,"66":0.0114,"67":0.0057,"68":0.0057,"69":0.0057,"70":0.0057,"71":0.0057,"72":0.0057,"73":0.0057,"74":0.0114,"75":0.0057,"76":0.0114,"77":0.0057,"78":0.0114,"79":0.06841,"80":0.02851,"81":0.0171,"83":0.0114,"84":0.0057,"85":0.0114,"86":0.12542,"87":0.06841,"88":0.05131,"89":0.0114,"90":0.0114,"91":0.0057,"92":0.0057,"93":0.0114,"94":0.0228,"95":0.0057,"96":0.0114,"97":0.0114,"98":0.0171,"99":0.0228,"100":0.11972,"101":0.22804,"102":0.12542,"103":0.31356,"104":0.14823,"105":0.02851,"106":0.0114,"107":0.0171,"108":0.02851,"109":0.96917,"110":0.0228,"111":0.0228,"112":0.02851,"113":0.09692,"114":0.13682,"115":0.03421,"116":0.53589,"117":0.06841,"118":0.07411,"119":0.18243,"120":0.40477,"121":0.69552,"122":3.62014,"123":20.12453,"124":7.69065,"125":0.0228,"126":0.0057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 36 37 39 40 41 42 43 48 50 54 55 57 58 60 61 62 64 127"},F:{"36":0.0057,"46":0.02851,"95":0.0114,"102":0.0057,"106":0.0057,"107":0.63851,"108":0.18813,"109":0.06271,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.0057,"80":0.0057,"81":0.0057,"83":0.0057,"84":0.0057,"85":0.0057,"86":0.0057,"89":0.0057,"90":0.0057,"92":0.0057,"107":0.0057,"108":0.0114,"109":0.10832,"110":0.0057,"111":0.0057,"112":0.0057,"113":0.0171,"114":0.0114,"115":0.0057,"116":0.0114,"117":0.0114,"118":0.0114,"119":0.02851,"120":0.06271,"121":0.05701,"122":0.5758,"123":5.19931,"124":2.21199,_:"12 13 14 16 17 18 79 87 88 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"9":0.0114,"13":0.0171,"14":0.09122,"15":0.0171,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.02851,"11.1":0.0057,"12.1":0.02851,"13.1":0.14253,"14.1":0.23944,"15.1":0.03421,"15.2-15.3":0.03991,"15.4":0.05701,"15.5":0.10262,"15.6":0.64421,"16.0":0.06841,"16.1":0.15393,"16.2":0.11402,"16.3":0.27365,"16.4":0.08552,"16.5":0.14823,"16.6":0.88936,"17.0":0.06841,"17.1":0.22804,"17.2":0.29075,"17.3":1.03758,"17.4":2.61676,"17.5":0.0171},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00407,"5.0-5.1":0.00407,"6.0-6.1":0.01019,"7.0-7.1":0.0163,"8.1-8.4":0.00407,"9.0-9.2":0.01019,"9.3":0.05093,"10.0-10.2":0.01019,"10.3":0.08149,"11.0-11.2":0.06927,"11.3-11.4":0.02037,"12.0-12.1":0.01426,"12.2-12.5":0.33209,"13.0-13.1":0.00611,"13.2":0.06723,"13.3":0.0163,"13.4-13.7":0.06316,"14.0-14.4":0.12428,"14.5-14.8":0.18947,"15.0-15.1":0.08761,"15.2-15.3":0.09983,"15.4":0.11409,"15.5":0.14465,"15.6-15.8":1.26315,"16.0":0.29541,"16.1":0.61528,"16.2":0.29541,"16.3":0.52156,"16.4":0.10798,"16.5":0.22614,"16.6-16.7":1.78675,"17.0":0.21392,"17.1":0.39524,"17.2":0.52563,"17.3":3.83427,"17.4":8.65462,"17.5":0.07946},P:{"4":0.1778,"20":0.02223,"21":0.06668,"22":0.04445,"23":0.16669,"24":2.05582,"5.0-5.4":0.02223,"6.2-6.4":0.01111,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0","13.0":0.01111,"14.0":0.02223,"15.0":0.01111,"16.0":0.01111,"17.0":0.02223,"18.0":0.01111,"19.0":0.02223},I:{"0":0.0728,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"8":0.04219,"9":0.01406,"10":0.01406,"11":0.14062,_:"6 7 5.5"},K:{"0":0.1376,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0043,_:"3.0-3.1"},Q:{"14.9":0.0086},O:{"0":0.043},H:{"0":0},L:{"0":19.50034},R:{_:"0"},M:{"0":0.4816}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AW.js index 0fb4e4f3320fff..a89ca6f01377a0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AW.js @@ -1 +1 @@ -module.exports={C:{"4":0.00544,"52":0.00272,"72":0.00272,"78":0.01089,"101":0.01633,"103":0.06261,"115":0.03266,"118":0.00272,"121":0.00544,"122":0.02178,"123":0.52807,"124":0.13338,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 125 126 127 3.5 3.6"},D:{"49":0.00272,"54":0.00272,"56":0.00272,"76":0.00272,"79":0.00272,"85":0.00272,"87":0.01633,"88":0.00272,"93":0.01905,"97":0.00272,"98":0.00272,"99":0.00272,"100":0.00544,"101":0.00272,"102":0.00272,"103":0.05988,"107":0.00272,"108":0.01089,"109":0.78121,"110":0.02722,"112":0.01089,"113":0.00817,"114":0.00544,"115":0.01633,"116":0.07894,"117":0.00272,"118":0.01905,"119":0.05988,"120":0.40286,"121":1.21946,"122":9.97885,"123":2.42802,"124":0.01361,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 84 86 89 90 91 92 94 95 96 104 105 106 111 125 126"},F:{"106":0.00544,"107":0.43824,"108":0.09527,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00272,"18":0.00272,"105":0.00272,"109":0.05444,"113":0.00272,"114":0.00272,"115":0.00272,"117":0.00544,"119":0.00544,"120":0.07349,"121":0.20959,"122":4.68728,"123":0.20415,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 116 118"},E:{"10":0.00272,"13":0.00272,"14":0.0245,"15":0.00272,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00272,"12.1":0.00817,"13.1":0.05444,"14.1":0.07622,"15.1":0.00272,"15.2-15.3":0.00817,"15.4":0.17149,"15.5":0.03539,"15.6":0.20415,"16.0":0.02994,"16.1":0.11705,"16.2":0.11705,"16.3":0.15788,"16.4":0.06261,"16.5":0.05172,"16.6":0.4083,"17.0":0.07622,"17.1":0.14971,"17.2":0.28581,"17.3":1.58693,"17.4":0.30486},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00631,"5.0-5.1":0.00316,"6.0-6.1":0.01894,"7.0-7.1":0.02209,"8.1-8.4":0.00631,"9.0-9.2":0.01262,"9.3":0.0789,"10.0-10.2":0.01262,"10.3":0.13255,"11.0-11.2":0.09468,"11.3-11.4":0.03156,"12.0-12.1":0.0284,"12.2-12.5":0.54599,"13.0-13.1":0.00947,"13.2":0.09468,"13.3":0.0284,"13.4-13.7":0.10731,"14.0-14.4":0.20514,"14.5-14.8":0.32192,"15.0-15.1":0.13887,"15.2-15.3":0.16411,"15.4":0.19252,"15.5":0.24617,"15.6-15.8":2.06089,"16.0":0.50181,"16.1":1.03834,"16.2":0.50181,"16.3":0.89316,"16.4":0.18936,"16.5":0.40082,"16.6-16.7":3.03611,"17.0":0.3945,"17.1":0.78901,"17.2":1.27188,"17.3":15.65393,"17.4":2.29759,"17.5":0},P:{"4":0.0724,"20":0.02069,"21":0.10344,"22":0.10344,"23":3.37199,"24":3.93054,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0 16.0","7.2-7.4":0.09309,"11.1-11.2":0.02069,"13.0":0.03103,"14.0":0.03103,"17.0":0.01034,"18.0":0.01034,"19.0":0.03103},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.05822,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.07894,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":34.03878},R:{_:"0"},M:{"0":0.31291},Q:{_:"14.9"},O:{"0":0.02911},H:{"0":0}}; +module.exports={C:{"78":0.02779,"101":0.01112,"103":0.03613,"105":0.00556,"115":0.05002,"119":0.00278,"121":0.00556,"122":0.00278,"123":0.0528,"124":0.47799,"125":0.16396,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 104 106 107 108 109 110 111 112 113 114 116 117 118 120 126 127 128 3.5 3.6"},D:{"49":0.01945,"80":0.00556,"86":0.00278,"87":0.00834,"91":0.00556,"92":0.00834,"93":0.00556,"96":0.0139,"98":0.00556,"99":0.00278,"103":0.10004,"106":0.00278,"108":0.00278,"109":0.87816,"111":0.00278,"112":0.01112,"113":0.00834,"114":0.00278,"115":0.0139,"116":0.08337,"117":0.0139,"118":0.03335,"119":0.03891,"120":0.20009,"121":0.18897,"122":0.95598,"123":9.73762,"124":2.9902,"125":0.0139,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 83 84 85 88 89 90 94 95 97 100 101 102 104 105 107 110 126 127"},F:{"95":0.00278,"100":0.00278,"107":0.2918,"108":0.20287,"109":0.04169,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00278,"100":0.00278,"105":0.00556,"109":0.02779,"113":0.02223,"114":0.00278,"115":0.00278,"117":0.0139,"118":0.01112,"119":0.01112,"120":0.06392,"121":0.05002,"122":0.31125,"123":3.7711,"124":2.15095,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 106 107 108 110 111 112 116"},E:{"10":0.00278,"13":0.00556,"14":0.02779,"15":0.03335,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00834,"13.1":0.03057,"14.1":0.16118,"15.1":0.00834,"15.2-15.3":0.01945,"15.4":0.10004,"15.5":0.03613,"15.6":0.17786,"16.0":0.11394,"16.1":0.05002,"16.2":0.09449,"16.3":0.13895,"16.4":0.02779,"16.5":0.06948,"16.6":0.30847,"17.0":0.0139,"17.1":0.19175,"17.2":0.25567,"17.3":0.41407,"17.4":1.31725,"17.5":0.01945},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.006,"5.0-5.1":0.006,"6.0-6.1":0.01499,"7.0-7.1":0.02399,"8.1-8.4":0.006,"9.0-9.2":0.01499,"9.3":0.07495,"10.0-10.2":0.01499,"10.3":0.11993,"11.0-11.2":0.10194,"11.3-11.4":0.02998,"12.0-12.1":0.02099,"12.2-12.5":0.4887,"13.0-13.1":0.00899,"13.2":0.09894,"13.3":0.02399,"13.4-13.7":0.09294,"14.0-14.4":0.18289,"14.5-14.8":0.27883,"15.0-15.1":0.12892,"15.2-15.3":0.14691,"15.4":0.1679,"15.5":0.21287,"15.6-15.8":1.85886,"16.0":0.43473,"16.1":0.90544,"16.2":0.43473,"16.3":0.76753,"16.4":0.1589,"16.5":0.3328,"16.6-16.7":2.62939,"17.0":0.31481,"17.1":0.58164,"17.2":0.77353,"17.3":5.64254,"17.4":12.73618,"17.5":0.11693},P:{"4":0.0828,"20":0.0414,"21":0.09315,"22":0.09315,"23":0.52784,"24":6.34442,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.0828,"11.1-11.2":0.01035,"13.0":0.03105,"14.0":0.01035,"16.0":0.01035,"17.0":0.01035,"18.0":0.01035,"19.0":0.03105},I:{"0":0.00719,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"8":0.00278,"11":0.01112,_:"6 7 9 10 5.5"},K:{"0":0.1372,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.07221},H:{"0":0},L:{"0":34.37914},R:{_:"0"},M:{"0":0.23829}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js index fc49bce6d50286..a0453caf25c112 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AX.js @@ -1 +1 @@ -module.exports={C:{"52":0.21249,"108":0.05169,"115":0.03446,"120":0.05743,"121":0.01723,"122":0.3733,"123":2.7107,"124":1.25197,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 119 125 126 127 3.5 3.6"},D:{"49":0.00574,"65":0.03446,"76":0.25269,"77":0.00574,"81":0.00574,"87":0.06892,"88":0.00574,"90":0.00574,"92":0.00574,"103":0.02297,"109":1.21752,"111":0.01723,"112":0.01723,"113":0.03446,"114":0.01149,"116":0.10337,"119":0.01149,"120":0.32735,"121":1.71716,"122":19.55492,"123":5.78894,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 78 79 80 83 84 85 86 89 91 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 115 117 118 124 125 126"},F:{"97":0.00574,"107":1.65973,"108":0.05169,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.02872,"92":0.01723,"102":0.00574,"109":0.0402,"113":0.19526,"114":0.10337,"115":0.00574,"116":0.00574,"119":0.02872,"120":0.10337,"121":0.25269,"122":11.79038,"123":0.6949,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 117 118"},E:{"12":0.02297,"13":0.00574,"14":1.1486,"15":0.00574,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 10.1 11.1 15.1 15.4 17.5","9.1":0.00574,"12.1":0.04594,"13.1":0.01723,"14.1":0.12635,"15.2-15.3":0.01149,"15.5":0.0402,"15.6":0.82125,"16.0":0.04594,"16.1":0.01149,"16.2":0.02297,"16.3":0.06892,"16.4":0.05743,"16.5":0.06317,"16.6":0.6547,"17.0":0.0402,"17.1":0.1206,"17.2":1.03948,"17.3":1.15434,"17.4":0.14932},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00148,"5.0-5.1":0.00074,"6.0-6.1":0.00444,"7.0-7.1":0.00518,"8.1-8.4":0.00148,"9.0-9.2":0.00296,"9.3":0.0185,"10.0-10.2":0.00296,"10.3":0.03108,"11.0-11.2":0.0222,"11.3-11.4":0.0074,"12.0-12.1":0.00666,"12.2-12.5":0.12803,"13.0-13.1":0.00222,"13.2":0.0222,"13.3":0.00666,"13.4-13.7":0.02516,"14.0-14.4":0.0481,"14.5-14.8":0.07548,"15.0-15.1":0.03256,"15.2-15.3":0.03848,"15.4":0.04514,"15.5":0.05772,"15.6-15.8":0.48325,"16.0":0.11767,"16.1":0.24347,"16.2":0.11767,"16.3":0.20943,"16.4":0.0444,"16.5":0.09399,"16.6-16.7":0.71192,"17.0":0.09251,"17.1":0.18501,"17.2":0.29824,"17.3":3.6706,"17.4":0.53875,"17.5":0},P:{"4":0.0117,"21":0.19887,"22":0.07019,"23":1.91849,"24":1.06453,_:"20 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","5.0-5.4":0.0117,"19.0":0.0117},I:{"0":0.21203,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00051},K:{"0":0.02129,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.20675,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":29.58483},R:{_:"0"},M:{"0":4.32613},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"108":0.02086,"115":0.17213,"120":0.00522,"122":0.0313,"123":0.1617,"124":3.6512,"125":1.36659,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 119 121 126 127 128 3.5 3.6"},D:{"38":0.00522,"54":0.01043,"76":0.11997,"87":0.06259,"90":0.01565,"92":0.01043,"94":0.04694,"96":0.00522,"101":0.00522,"103":0.07302,"109":1.64304,"111":0.00522,"112":0.00522,"113":0.00522,"115":0.00522,"116":0.02086,"119":0.19299,"120":0.02608,"121":0.05738,"122":0.90758,"123":19.45046,"124":8.41341,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 86 88 89 91 93 95 97 98 99 100 102 104 105 106 107 108 110 114 117 118 125 126 127"},F:{"36":0.01043,"46":0.00522,"107":0.5529,"108":0.10954,"109":0.08867,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"87":0.01043,"102":0.0313,"109":0.05216,"111":0.01043,"112":0.01043,"113":0.10432,"114":0.10954,"116":0.00522,"117":0.00522,"119":0.04173,"120":0.02086,"122":0.32861,"123":5.64371,"124":2.34198,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 115 118 121"},E:{"12":0.04173,"13":0.00522,"14":0.33382,"15":0.01043,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.03651,"13.1":0.03651,"14.1":0.11475,"15.1":0.00522,"15.2-15.3":0.00522,"15.4":0.00522,"15.5":0.03651,"15.6":0.33904,"16.0":0.16691,"16.1":0.04694,"16.2":0.0313,"16.3":0.11997,"16.4":0.04694,"16.5":0.01565,"16.6":0.30774,"17.0":0.02086,"17.1":0.09389,"17.2":0.32861,"17.3":0.3912,"17.4":1.29357},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00156,"5.0-5.1":0.00156,"6.0-6.1":0.0039,"7.0-7.1":0.00624,"8.1-8.4":0.00156,"9.0-9.2":0.0039,"9.3":0.01951,"10.0-10.2":0.0039,"10.3":0.03122,"11.0-11.2":0.02653,"11.3-11.4":0.0078,"12.0-12.1":0.00546,"12.2-12.5":0.12721,"13.0-13.1":0.00234,"13.2":0.02575,"13.3":0.00624,"13.4-13.7":0.02419,"14.0-14.4":0.04761,"14.5-14.8":0.07258,"15.0-15.1":0.03356,"15.2-15.3":0.03824,"15.4":0.0437,"15.5":0.05541,"15.6-15.8":0.48387,"16.0":0.11316,"16.1":0.23569,"16.2":0.11316,"16.3":0.19979,"16.4":0.04136,"16.5":0.08663,"16.6-16.7":0.68444,"17.0":0.08195,"17.1":0.1514,"17.2":0.20135,"17.3":1.46878,"17.4":3.31528,"17.5":0.03044},P:{"4":0.0118,"20":0.0118,"21":0.08261,"22":0.059,"23":0.28322,"24":2.61976,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.08261,"19.0":0.0118},I:{"0":0.18108,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00045},A:{"11":0.00522,_:"6 7 8 9 10 5.5"},K:{"0":0.0335,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.39237},H:{"0":0},L:{"0":33.42328},R:{_:"0"},M:{"0":4.59839}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js index b0d3ef957b6aa1..2cd7deb1bbe79d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/AZ.js @@ -1 +1 @@ -module.exports={C:{"34":0.0023,"52":0.0046,"68":0.0023,"78":0.0023,"100":0.0023,"101":0.0023,"102":0.0023,"104":0.0023,"109":0.0046,"114":0.01151,"115":0.07136,"117":0.0023,"121":0.0023,"122":0.0046,"123":0.20948,"124":0.1174,"125":0.0023,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 103 105 106 107 108 110 111 112 113 116 118 119 120 126 127 3.5","3.6":0.0023},D:{"11":0.0023,"22":0.0023,"32":0.0023,"38":0.01611,"41":0.0023,"42":0.0023,"43":0.0023,"44":0.0023,"45":0.0023,"46":0.0023,"47":0.0023,"49":0.02993,"51":0.01381,"53":0.0023,"55":0.0023,"56":0.0023,"58":0.0023,"63":0.0023,"64":0.0023,"65":0.0046,"67":0.0023,"68":0.0023,"69":0.0023,"70":0.0046,"72":0.00921,"73":0.00921,"74":0.0046,"75":0.0046,"77":0.0023,"78":0.00691,"79":0.2256,"80":0.00921,"81":0.00921,"83":0.02072,"84":0.0023,"85":0.0023,"86":0.00691,"87":0.17956,"88":0.03913,"89":0.01151,"90":0.00921,"91":0.0046,"92":0.0023,"93":0.0023,"94":0.00921,"95":0.0023,"96":0.00691,"97":0.00921,"98":0.00691,"99":0.01381,"100":0.02302,"101":0.03683,"102":0.01381,"103":0.01611,"104":0.01381,"105":0.01151,"106":0.02762,"107":0.02532,"108":0.03453,"109":2.61277,"110":0.01151,"111":0.01842,"112":0.02993,"113":0.0046,"114":0.02072,"115":0.02072,"116":0.03683,"117":0.00921,"118":0.00921,"119":0.06215,"120":0.14963,"121":0.58931,"122":9.15736,"123":2.78082,"124":0.0046,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 33 34 35 36 37 39 40 48 50 52 54 57 59 60 61 62 66 71 76 125 126"},F:{"28":0.01381,"31":0.0023,"36":0.0046,"40":0.0046,"46":0.02993,"63":0.0023,"66":0.0023,"68":0.0023,"79":0.03683,"80":0.0023,"81":0.0023,"82":0.0023,"83":0.00921,"84":0.02302,"85":0.05755,"86":0.0046,"87":0.0023,"90":0.0023,"92":0.0023,"93":0.0023,"95":0.18416,"100":0.0023,"102":0.0023,"106":0.01381,"107":0.85174,"108":0.33379,"109":0.0023,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 67 69 70 71 72 73 74 75 76 77 78 88 89 91 94 96 97 98 99 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0023},B:{"12":0.00691,"16":0.0046,"18":0.0023,"84":0.01151,"92":0.00691,"100":0.0023,"106":0.0023,"109":0.01611,"117":0.0023,"118":0.0023,"119":0.0046,"120":0.01611,"121":0.05525,"122":1.0405,"123":0.13812,_:"13 14 15 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 107 108 110 111 112 113 114 115 116"},E:{"9":0.0046,"14":0.00691,"15":0.00921,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.02993,"13.1":0.00691,"14.1":0.01842,"15.1":0.0046,"15.2-15.3":0.0023,"15.4":0.01611,"15.5":0.00691,"15.6":0.08748,"16.0":0.0046,"16.1":0.02302,"16.2":0.0046,"16.3":0.02993,"16.4":0.01381,"16.5":0.03223,"16.6":0.05064,"17.0":0.02072,"17.1":0.03453,"17.2":0.05755,"17.3":0.2279,"17.4":0.03913},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00186,"5.0-5.1":0.00093,"6.0-6.1":0.00557,"7.0-7.1":0.00649,"8.1-8.4":0.00186,"9.0-9.2":0.00371,"9.3":0.02319,"10.0-10.2":0.00371,"10.3":0.03896,"11.0-11.2":0.02783,"11.3-11.4":0.00928,"12.0-12.1":0.00835,"12.2-12.5":0.16048,"13.0-13.1":0.00278,"13.2":0.02783,"13.3":0.00835,"13.4-13.7":0.03154,"14.0-14.4":0.06029,"14.5-14.8":0.09462,"15.0-15.1":0.04081,"15.2-15.3":0.04824,"15.4":0.05658,"15.5":0.07235,"15.6-15.8":0.60573,"16.0":0.14749,"16.1":0.30518,"16.2":0.14749,"16.3":0.26251,"16.4":0.05566,"16.5":0.11781,"16.6-16.7":0.89236,"17.0":0.11595,"17.1":0.2319,"17.2":0.37383,"17.3":4.60094,"17.4":0.6753,"17.5":0},P:{"4":0.61154,"20":0.06115,"21":0.17327,"22":0.16308,"23":2.35443,"24":1.57981,"5.0-5.4":0.01019,"6.2-6.4":0.04077,"7.2-7.4":0.09173,"8.2":0.01019,"9.2":0.01019,_:"10.1","11.1-11.2":0.02038,"12.0":0.01019,"13.0":0.07135,"14.0":0.02038,"15.0":0.01019,"16.0":0.04077,"17.0":0.10192,"18.0":0.02038,"19.0":0.05096},I:{"0":0.06133,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":1.47802,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02072,"9":0.0023,"10":0.0023,"11":0.03913,_:"6 7 5.5"},S:{"2.5":0.0077,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":61.50377},R:{_:"0"},M:{"0":0.12317},Q:{"14.9":0.0077},O:{"0":0.12317},H:{"0":0}}; +module.exports={C:{"52":0.00247,"68":0.00988,"78":0.00494,"102":0.00494,"110":0.00247,"115":0.07407,"117":0.00741,"123":0.01235,"124":0.29381,"125":0.12098,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 111 112 113 114 116 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"11":0.00247,"22":0.00494,"26":0.00247,"34":0.00247,"38":0.00494,"39":0.00247,"41":0.00247,"42":0.00494,"43":0.00247,"44":0.00494,"45":0.00247,"46":0.00247,"47":0.00247,"49":0.01481,"51":0.01481,"53":0.00494,"55":0.00494,"57":0.00494,"62":0.00247,"63":0.00247,"64":0.00247,"67":0.00247,"68":0.00247,"70":0.00741,"71":0.00247,"72":0.00741,"73":0.00247,"74":0.00247,"75":0.00247,"77":0.00247,"78":0.00247,"79":0.15555,"80":0.01235,"81":0.00494,"83":0.01235,"84":0.00247,"85":0.00494,"86":0.00741,"87":0.11604,"88":0.01728,"89":0.01728,"90":0.01481,"91":0.00247,"92":0.00247,"94":0.01975,"95":0.00247,"96":0.00494,"97":0.00247,"98":0.00494,"99":0.00988,"100":0.01975,"101":0.04197,"102":0.01728,"103":0.01975,"104":0.0395,"105":0.00494,"106":0.01481,"107":0.00988,"108":0.01235,"109":3.01712,"110":0.00741,"111":0.01728,"112":0.02963,"113":0.00741,"114":0.01235,"115":0.01481,"116":0.0321,"117":0.01235,"118":0.00988,"119":0.05432,"120":0.1037,"121":0.1432,"122":0.35554,"123":9.98464,"124":3.64178,"125":0.01975,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 48 50 52 54 56 58 59 60 61 65 66 69 76 93 126 127"},F:{"28":0.00494,"31":0.00247,"36":0.00247,"40":0.00247,"46":0.02222,"65":0.00247,"79":0.04691,"80":0.00247,"83":0.0395,"84":0.01481,"85":0.07901,"86":0.00494,"87":0.00247,"95":0.15802,"106":0.00494,"107":0.44195,"108":0.61231,"109":0.15061,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 81 82 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00741,"18":0.00247,"84":0.00988,"85":0.00247,"92":0.00494,"100":0.00247,"106":0.00247,"109":0.00741,"110":0.00247,"116":0.00247,"118":0.00247,"119":0.00247,"120":0.00741,"121":0.04691,"122":0.04938,"123":0.80983,"124":0.33085,_:"13 14 15 16 17 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 107 108 111 112 113 114 115 117"},E:{"9":0.00988,"14":0.00494,"15":0.02469,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00988,"12.1":0.00247,"13.1":0.00988,"14.1":0.00988,"15.1":0.00494,"15.2-15.3":0.00247,"15.4":0.00741,"15.5":0.00494,"15.6":0.04938,"16.0":0.00247,"16.1":0.01728,"16.2":0.00247,"16.3":0.02716,"16.4":0.00741,"16.5":0.01975,"16.6":0.05926,"17.0":0.01481,"17.1":0.04444,"17.2":0.03457,"17.3":0.11357,"17.4":0.27653,"17.5":0.00247},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00182,"5.0-5.1":0.00182,"6.0-6.1":0.00455,"7.0-7.1":0.00728,"8.1-8.4":0.00182,"9.0-9.2":0.00455,"9.3":0.02275,"10.0-10.2":0.00455,"10.3":0.03639,"11.0-11.2":0.03094,"11.3-11.4":0.0091,"12.0-12.1":0.00637,"12.2-12.5":0.14831,"13.0-13.1":0.00273,"13.2":0.03003,"13.3":0.00728,"13.4-13.7":0.02821,"14.0-14.4":0.0555,"14.5-14.8":0.08462,"15.0-15.1":0.03912,"15.2-15.3":0.04458,"15.4":0.05095,"15.5":0.0646,"15.6-15.8":0.56412,"16.0":0.13193,"16.1":0.27478,"16.2":0.13193,"16.3":0.23293,"16.4":0.04822,"16.5":0.101,"16.6-16.7":0.79795,"17.0":0.09554,"17.1":0.17651,"17.2":0.23475,"17.3":1.71237,"17.4":3.86511,"17.5":0.03548},P:{"4":0.56657,"20":0.0607,"21":0.172,"22":0.13153,"23":0.34399,"24":3.11616,"5.0-5.4":0.02023,"6.2-6.4":0.07082,"7.2-7.4":0.09106,"8.2":0.01012,_:"9.2 10.1","11.1-11.2":0.02023,"12.0":0.01012,"13.0":0.04047,"14.0":0.02023,"15.0":0.01012,"16.0":0.02023,"17.0":0.14164,"18.0":0.02023,"19.0":0.0607},I:{"0":0.06751,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"7":0.00247,"8":0.02222,"9":0.00247,"10":0.00494,"11":0.05679,_:"6 5.5"},K:{"0":1.34576,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00753,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.08285},H:{"0":0.01},L:{"0":60.30101},R:{_:"0"},M:{"0":0.14311}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js index 0dcff65e76d75a..94393f166bea2c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BA.js @@ -1 +1 @@ -module.exports={C:{"43":0.00335,"47":0.00335,"52":0.077,"56":0.00335,"64":0.00335,"66":0.00335,"68":0.00335,"78":0.00335,"84":0.00335,"88":0.00335,"91":0.00335,"99":0.00335,"102":0.00335,"103":0.01339,"104":0.0067,"107":0.00335,"108":0.00335,"110":0.0067,"112":0.00335,"113":0.00335,"114":0.0067,"115":0.76669,"118":0.01339,"119":0.00335,"120":0.0067,"121":0.01004,"122":0.04018,"123":1.03118,"124":0.5089,"125":0.00335,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 93 94 95 96 97 98 100 101 105 106 109 111 116 117 126 127 3.5 3.6"},D:{"11":0.00335,"34":0.0067,"38":0.01339,"43":0.00335,"44":0.00335,"45":0.00335,"46":0.00335,"47":0.00335,"49":0.05022,"51":0.00335,"53":0.00335,"55":0.00335,"56":0.00335,"64":0.0067,"65":0.01004,"67":0.00335,"68":0.00335,"69":0.0067,"70":0.01339,"71":0.00335,"72":0.00335,"73":0.00335,"74":0.00335,"75":0.00335,"76":0.01004,"77":0.00335,"78":0.0067,"79":0.4252,"80":0.02009,"81":0.01004,"83":0.02344,"84":0.01339,"85":0.01004,"86":0.0067,"87":0.26784,"88":0.02009,"89":0.01339,"90":0.00335,"91":0.0067,"92":0.0067,"93":0.01674,"94":0.07031,"95":0.01004,"96":0.0067,"97":0.0067,"98":0.01004,"99":0.02009,"100":0.05357,"101":0.0067,"102":0.0067,"103":0.03683,"104":0.04018,"105":0.02344,"106":0.01339,"107":0.03348,"108":0.03683,"109":3.57232,"110":0.00335,"111":0.01674,"112":0.01004,"113":0.0067,"114":0.02009,"115":0.01004,"116":0.0904,"117":0.02009,"118":0.01674,"119":0.07031,"120":0.15736,"121":1.09145,"122":13.40874,"123":4.24861,"124":0.00335,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 48 50 52 54 57 58 59 60 61 62 63 66 125 126"},F:{"28":0.02678,"36":0.00335,"40":0.00335,"46":0.04687,"69":0.00335,"72":0.00335,"79":0.00335,"85":0.00335,"95":0.11383,"106":0.01339,"107":1.06132,"108":0.26784,"109":0.00335,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00335,"84":0.00335,"85":0.01674,"89":0.00335,"92":0.01004,"108":0.01339,"109":0.03348,"114":0.00335,"116":0.00335,"118":0.00335,"119":0.04352,"120":0.02678,"121":0.0837,"122":2.12263,"123":0.18414,_:"12 13 14 15 16 17 79 80 81 83 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 115 117"},E:{"9":0.00335,"14":0.01339,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.0067,"13.1":0.01674,"14.1":0.02009,"15.1":0.01004,"15.2-15.3":0.0067,"15.4":0.00335,"15.5":0.01339,"15.6":0.09374,"16.0":0.01339,"16.1":0.0067,"16.2":0.01004,"16.3":0.02344,"16.4":0.0067,"16.5":0.02009,"16.6":0.07366,"17.0":0.01004,"17.1":0.03348,"17.2":0.3415,"17.3":0.26449,"17.4":0.14396},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00169,"5.0-5.1":0.00084,"6.0-6.1":0.00507,"7.0-7.1":0.00591,"8.1-8.4":0.00169,"9.0-9.2":0.00338,"9.3":0.02112,"10.0-10.2":0.00338,"10.3":0.03548,"11.0-11.2":0.02534,"11.3-11.4":0.00845,"12.0-12.1":0.0076,"12.2-12.5":0.14615,"13.0-13.1":0.00253,"13.2":0.02534,"13.3":0.0076,"13.4-13.7":0.02872,"14.0-14.4":0.05491,"14.5-14.8":0.08617,"15.0-15.1":0.03717,"15.2-15.3":0.04393,"15.4":0.05153,"15.5":0.06589,"15.6-15.8":0.55166,"16.0":0.13432,"16.1":0.27794,"16.2":0.13432,"16.3":0.23908,"16.4":0.05069,"16.5":0.10729,"16.6-16.7":0.8127,"17.0":0.1056,"17.1":0.2112,"17.2":0.34046,"17.3":4.19023,"17.4":0.61502,"17.5":0},P:{"4":0.88711,"20":0.03286,"21":0.08762,"22":0.06571,"23":2.39849,"24":1.24853,"5.0-5.4":0.07666,"6.2-6.4":0.08762,"7.2-7.4":0.03286,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01095,"13.0":0.01095,"14.0":0.01095,"16.0":0.01095,"17.0":0.0219,"18.0":0.0219,"19.0":0.04381},I:{"0":0.18549,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00045},K:{"0":0.24612,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01339,"9":0.00335,"10":0.00335,"11":0.02678,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":53.45709},R:{_:"0"},M:{"0":0.19291},Q:{_:"14.9"},O:{"0":0.03326},H:{"0":0}}; +module.exports={C:{"43":0.00363,"48":0.00363,"52":0.0907,"56":0.00726,"63":0.00726,"64":0.00363,"68":0.00363,"78":0.00363,"88":0.01451,"95":0.00363,"99":0.00363,"102":0.00363,"103":0.01451,"108":0.01814,"109":0.00363,"110":0.00363,"111":0.00363,"114":0.00363,"115":0.7909,"118":0.00363,"119":0.0254,"120":0.00363,"121":0.00726,"122":0.0254,"123":0.05805,"124":1.09203,"125":0.6095,"126":0.00363,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 49 50 51 53 54 55 57 58 59 60 61 62 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 100 101 104 105 106 107 112 113 116 117 127 128 3.5 3.6"},D:{"38":0.00726,"39":0.00363,"43":0.00363,"44":0.00363,"45":0.00363,"46":0.00363,"47":0.00363,"49":0.03265,"50":0.00363,"51":0.00363,"53":0.00726,"55":0.00726,"63":0.00363,"64":0.00726,"65":0.00726,"68":0.00726,"69":0.00363,"70":0.00363,"71":0.00363,"72":0.03265,"73":0.00363,"76":0.01088,"77":0.00363,"78":0.01451,"79":0.49341,"80":0.00363,"81":0.02177,"83":0.01088,"84":0.01814,"85":0.01451,"86":0.00726,"87":0.26847,"88":0.01814,"89":0.00363,"90":0.00726,"91":0.00726,"92":0.00363,"93":0.02177,"94":0.0907,"95":0.01814,"96":0.01088,"97":0.01088,"98":0.00726,"99":0.0254,"100":0.04354,"101":0.00363,"102":0.00363,"103":0.02902,"104":0.02902,"105":0.01088,"106":0.01814,"107":0.03991,"108":0.03265,"109":3.71144,"110":0.00363,"111":0.02902,"112":0.01088,"113":0.00363,"114":0.01451,"115":0.01451,"116":0.12335,"117":0.01451,"118":0.01088,"119":0.07256,"120":0.10158,"121":0.17777,"122":0.76551,"123":14.05124,"124":6.00434,"125":0.01451,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 48 52 54 56 57 58 59 60 61 62 66 67 74 75 126 127"},F:{"28":0.01451,"36":0.00363,"46":0.0254,"79":0.00363,"95":0.10884,"106":0.00726,"107":0.69658,"108":0.48978,"109":0.19954,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00363,"18":0.00363,"85":0.01451,"89":0.00363,"92":0.01088,"107":0.00363,"108":0.01451,"109":0.07256,"113":0.00363,"114":0.00363,"118":0.00363,"119":0.02177,"120":0.03628,"121":0.01814,"122":0.12335,"123":1.66525,"124":0.8163,_:"13 14 15 16 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 112 115 116 117"},E:{"9":0.00726,"14":0.01451,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00363,"13.1":0.01814,"14.1":0.02177,"15.1":0.00726,"15.2-15.3":0.00363,"15.4":0.00363,"15.5":0.0254,"15.6":0.12335,"16.0":0.01088,"16.1":0.00726,"16.2":0.01088,"16.3":0.0254,"16.4":0.01088,"16.5":0.02177,"16.6":0.09796,"17.0":0.00726,"17.1":0.02902,"17.2":0.05079,"17.3":0.10158,"17.4":0.6095,"17.5":0.00363},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0017,"5.0-5.1":0.0017,"6.0-6.1":0.00426,"7.0-7.1":0.00682,"8.1-8.4":0.0017,"9.0-9.2":0.00426,"9.3":0.0213,"10.0-10.2":0.00426,"10.3":0.03408,"11.0-11.2":0.02897,"11.3-11.4":0.00852,"12.0-12.1":0.00596,"12.2-12.5":0.13887,"13.0-13.1":0.00256,"13.2":0.02811,"13.3":0.00682,"13.4-13.7":0.02641,"14.0-14.4":0.05197,"14.5-14.8":0.07923,"15.0-15.1":0.03663,"15.2-15.3":0.04174,"15.4":0.04771,"15.5":0.06049,"15.6-15.8":0.5282,"16.0":0.12353,"16.1":0.25728,"16.2":0.12353,"16.3":0.2181,"16.4":0.04515,"16.5":0.09456,"16.6-16.7":0.74715,"17.0":0.08945,"17.1":0.16528,"17.2":0.2198,"17.3":1.60334,"17.4":3.61903,"17.5":0.03323},P:{"4":0.89185,"20":0.041,"21":0.08201,"22":0.06151,"23":0.24603,"24":2.9831,"5.0-5.4":0.06151,"6.2-6.4":0.12301,"7.2-7.4":0.03075,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.0205,"13.0":0.01025,"14.0":0.01025,"16.0":0.0205,"17.0":0.0205,"18.0":0.0205,"19.0":0.03075},I:{"0":0.22211,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00056},A:{"7":0.00363,"8":0.01814,"9":0.00363,"10":0.00363,"11":0.03628,_:"6 5.5"},K:{"0":0.24214,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01274},H:{"0":0},L:{"0":50.4253},R:{_:"0"},M:{"0":0.17842}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js index 4e3f8f5ebd61e3..bd91fcde3bff4d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BB.js @@ -1 +1 @@ -module.exports={C:{"87":0.04547,"90":0.00827,"115":0.04961,"119":0.0124,"122":0.12402,"123":1.33942,"124":0.52088,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 121 125 126 127 3.5 3.6"},D:{"50":0.00413,"69":0.0124,"70":0.00413,"74":0.00827,"76":0.0124,"79":0.01654,"80":0.11162,"81":0.00827,"83":0.00413,"85":0.00827,"86":0.44234,"87":0.01654,"88":0.00413,"89":0.00827,"91":0.00413,"93":0.0124,"94":0.00413,"95":0.00827,"96":0.00413,"97":0.02067,"98":0.00413,"99":0.00413,"100":0.00413,"103":0.27698,"104":0.00413,"105":0.00413,"106":0.01654,"107":0.04134,"108":0.02067,"109":1.61639,"110":0.00413,"111":0.0124,"112":0.02067,"113":0.00827,"114":0.01654,"115":0.00413,"116":0.16536,"117":0.02067,"118":0.0248,"119":0.11162,"120":0.17776,"121":1.97192,"122":14.69224,"123":4.31176,"124":0.0248,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 75 77 78 84 90 92 101 102 125 126"},F:{"28":0.00413,"95":0.0248,"102":0.00413,"106":0.02894,"107":0.84334,"108":0.08268,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00413,"18":0.00413,"85":0.00827,"89":0.00827,"92":0.00827,"107":0.00413,"109":0.10335,"110":0.0124,"114":0.00413,"116":0.03721,"117":0.02067,"118":0.00413,"119":0.0124,"120":0.0248,"121":0.25631,"122":6.81283,"123":0.57463,_:"12 13 14 15 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 111 112 113 115"},E:{"5":0.09095,"13":0.00827,"14":0.00827,"15":0.00413,_:"0 4 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.0124,"14.1":0.19016,"15.1":0.00827,"15.2-15.3":0.00413,"15.4":0.01654,"15.5":0.03721,"15.6":0.32659,"16.0":0.00413,"16.1":0.17363,"16.2":0.08268,"16.3":0.08681,"16.4":0.0248,"16.5":0.04961,"16.6":0.48368,"17.0":0.11162,"17.1":0.17363,"17.2":0.25217,"17.3":2.17862,"17.4":0.26044},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00333,"5.0-5.1":0.00167,"6.0-6.1":0.01,"7.0-7.1":0.01167,"8.1-8.4":0.00333,"9.0-9.2":0.00667,"9.3":0.04169,"10.0-10.2":0.00667,"10.3":0.07003,"11.0-11.2":0.05002,"11.3-11.4":0.01667,"12.0-12.1":0.01501,"12.2-12.5":0.28846,"13.0-13.1":0.005,"13.2":0.05002,"13.3":0.01501,"13.4-13.7":0.05669,"14.0-14.4":0.10838,"14.5-14.8":0.17007,"15.0-15.1":0.07337,"15.2-15.3":0.0867,"15.4":0.10171,"15.5":0.13006,"15.6-15.8":1.08881,"16.0":0.26512,"16.1":0.54858,"16.2":0.26512,"16.3":0.47187,"16.4":0.10004,"16.5":0.21176,"16.6-16.7":1.60404,"17.0":0.20843,"17.1":0.41685,"17.2":0.67196,"17.3":8.27031,"17.4":1.21387,"17.5":0},P:{"4":0.13941,"20":0.03485,"21":0.13941,"22":0.16265,"23":1.83558,"24":3.14837,_:"5.0-5.4 8.2 9.2 10.1 12.0 13.0 14.0 16.0 18.0","6.2-6.4":0.01162,"7.2-7.4":0.15103,"11.1-11.2":0.01162,"15.0":0.02324,"17.0":0.16265,"19.0":0.03485},I:{"0":0.02921,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.32855,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00438,"11":0.07003,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":35.71202},R:{_:"0"},M:{"0":0.96806},Q:{_:"14.9"},O:{"0":0.08214},H:{"0":0}}; +module.exports={C:{"64":0.01237,"72":0.00412,"87":0.00412,"115":0.13197,"118":0.00412,"121":0.00412,"122":0.07423,"123":0.02474,"124":0.87429,"125":0.57324,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 126 127 128 3.5 3.6"},D:{"50":0.00412,"56":0.00412,"62":0.00412,"69":0.00412,"70":0.00412,"76":0.00825,"79":0.03299,"80":0.08248,"81":0.00412,"84":0.00412,"85":0.02474,"86":0.00412,"87":0.02887,"88":0.00412,"89":0.00825,"91":0.00825,"92":0.00412,"93":0.00825,"94":0.00412,"95":0.00412,"96":0.00825,"97":0.00412,"98":0.00412,"100":0.00412,"101":0.00412,"102":0.00412,"103":0.21857,"104":0.00412,"105":0.00412,"106":0.03712,"107":0.00825,"108":0.03299,"109":1.15472,"110":0.00412,"111":0.00412,"112":0.00412,"113":0.00825,"114":0.00825,"115":0.00412,"116":0.04124,"117":0.01237,"118":0.02887,"119":0.07423,"120":0.15671,"121":0.19383,"122":1.41041,"123":16.29805,"124":6.31797,"125":0.03712,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 57 58 59 60 61 63 64 65 66 67 68 71 72 73 74 75 77 78 83 90 99 126 127"},F:{"28":0.00412,"95":0.04949,"106":0.02062,"107":0.58561,"108":0.21445,"109":0.04124,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"85":0.00825,"92":0.00825,"102":0.00412,"109":0.07011,"110":0.02474,"114":0.0165,"116":0.01237,"117":0.00412,"119":0.00412,"120":0.21445,"121":0.01237,"122":0.34642,"123":4.90344,"124":1.80219,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 111 112 113 115 118"},E:{"14":0.00825,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0","13.1":0.02062,"14.1":0.11135,"15.4":0.01237,"15.5":0.01237,"15.6":0.16496,"16.1":0.11547,"16.2":0.03299,"16.3":0.03299,"16.4":0.00825,"16.5":0.09485,"16.6":0.34229,"17.0":0.13609,"17.1":0.1031,"17.2":0.26806,"17.3":0.6021,"17.4":1.43103,"17.5":0.00412},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00328,"5.0-5.1":0.00328,"6.0-6.1":0.00819,"7.0-7.1":0.01311,"8.1-8.4":0.00328,"9.0-9.2":0.00819,"9.3":0.04096,"10.0-10.2":0.00819,"10.3":0.06553,"11.0-11.2":0.0557,"11.3-11.4":0.01638,"12.0-12.1":0.01147,"12.2-12.5":0.26703,"13.0-13.1":0.00491,"13.2":0.05406,"13.3":0.01311,"13.4-13.7":0.05079,"14.0-14.4":0.09993,"14.5-14.8":0.15236,"15.0-15.1":0.07044,"15.2-15.3":0.08027,"15.4":0.09174,"15.5":0.11631,"15.6-15.8":1.0157,"16.0":0.23754,"16.1":0.49475,"16.2":0.23754,"16.3":0.41939,"16.4":0.08683,"16.5":0.18184,"16.6-16.7":1.43673,"17.0":0.17201,"17.1":0.31782,"17.2":0.42266,"17.3":3.08315,"17.4":6.9592,"17.5":0.06389},P:{"4":0.10168,"20":0.0113,"21":0.10168,"22":0.12428,"23":0.44061,"24":5.61501,"5.0-5.4":0.0113,"6.2-6.4":0.0113,"7.2-7.4":0.12428,_:"8.2 9.2 10.1 11.1-11.2 12.0 14.0 18.0","13.0":0.0113,"15.0":0.0113,"16.0":0.0226,"17.0":0.06779,"19.0":0.0226},I:{"0":0.03511,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.00412,"11":0.0165,_:"6 7 9 10 5.5"},K:{"0":0.15278,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01763},H:{"0":0},L:{"0":35.32231},R:{_:"0"},M:{"0":0.711}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js index 9ab8f333833df5..aff0fc493e7d3c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BD.js @@ -1 +1 @@ -module.exports={C:{"40":0.00276,"44":0.00276,"46":0.00276,"49":0.00276,"51":0.00276,"52":0.01103,"72":0.00276,"75":0.00276,"78":0.00276,"80":0.00276,"81":0.00276,"86":0.00276,"88":0.0193,"91":0.00276,"93":0.00276,"102":0.00276,"103":0.00551,"104":0.00276,"105":0.01103,"106":0.01103,"107":0.0193,"108":0.01103,"109":0.01379,"110":0.01103,"111":0.01103,"112":0.00276,"113":0.00276,"115":0.54037,"116":0.00551,"118":0.00276,"119":0.00276,"120":0.00551,"121":0.01103,"122":0.01654,"123":1.16897,"124":0.60378,"125":0.02206,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 45 47 48 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 76 77 79 82 83 84 85 87 89 90 92 94 95 96 97 98 99 100 101 114 117 126 127 3.5 3.6"},D:{"11":0.00276,"38":0.00276,"41":0.00276,"43":0.00276,"47":0.00276,"48":0.00551,"49":0.00827,"50":0.00276,"56":0.00827,"61":0.00276,"62":0.00276,"63":0.00276,"64":0.00276,"65":0.00551,"66":0.00276,"68":0.00551,"69":0.00827,"70":0.00551,"71":0.00276,"72":0.00276,"73":0.01379,"74":0.00827,"75":0.02206,"76":0.00276,"77":0.00551,"78":0.00551,"79":0.00827,"80":0.00827,"81":0.01103,"83":0.00827,"84":0.00551,"85":0.03033,"86":0.01654,"87":0.01379,"88":0.00827,"89":0.01379,"90":0.00276,"91":0.00551,"92":0.00276,"93":0.01103,"94":0.02206,"95":0.01103,"96":0.00827,"97":0.00827,"98":0.00551,"99":0.00551,"100":0.00827,"101":0.00551,"102":0.0193,"103":0.03584,"104":0.0193,"105":0.05238,"106":0.13785,"107":0.14061,"108":0.17921,"109":1.43364,"110":0.11855,"111":0.10752,"112":0.11028,"113":0.00827,"114":0.02757,"115":0.01103,"116":0.02757,"117":0.01379,"118":0.01379,"119":0.05514,"120":0.14336,"121":0.46593,"122":10.72749,"123":3.51793,"124":0.0386,"125":0.00827,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 51 52 53 54 55 57 58 59 60 67 126"},F:{"28":0.00276,"36":0.00276,"46":0.00276,"79":0.00276,"81":0.00827,"85":0.00276,"90":0.00276,"91":0.00827,"92":0.00551,"93":0.00551,"94":0.00827,"95":0.03308,"96":0.00276,"97":0.00276,"106":0.00827,"107":0.33635,"108":0.15439,"109":0.00276,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 86 87 88 89 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00551,"13":0.00276,"14":0.00276,"16":0.00551,"17":0.00276,"18":0.0193,"84":0.00276,"85":0.00276,"89":0.00276,"92":0.02757,"100":0.00276,"103":0.00276,"104":0.00276,"105":0.00276,"106":0.01103,"107":0.02757,"108":0.02757,"109":0.0386,"110":0.0193,"111":0.01103,"117":0.00551,"118":0.01103,"119":0.00551,"120":0.02206,"121":0.02757,"122":1.00631,"123":0.10752,_:"15 79 80 81 83 86 87 88 90 91 93 94 95 96 97 98 99 101 102 112 113 114 115 116"},E:{"9":0.00276,"14":0.00276,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.5","13.1":0.00276,"14.1":0.00827,"15.1":0.00276,"15.4":0.00551,"15.5":0.00276,"15.6":0.02757,"16.0":0.01103,"16.1":0.00551,"16.2":0.00551,"16.3":0.01379,"16.4":0.00827,"16.5":0.00551,"16.6":0.03308,"17.0":0.00827,"17.1":0.01103,"17.2":0.02757,"17.3":0.11579,"17.4":0.03584},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0.00031,"6.0-6.1":0.00186,"7.0-7.1":0.00216,"8.1-8.4":0.00062,"9.0-9.2":0.00124,"9.3":0.00773,"10.0-10.2":0.00124,"10.3":0.01299,"11.0-11.2":0.00928,"11.3-11.4":0.00309,"12.0-12.1":0.00278,"12.2-12.5":0.0535,"13.0-13.1":0.00093,"13.2":0.00928,"13.3":0.00278,"13.4-13.7":0.01052,"14.0-14.4":0.0201,"14.5-14.8":0.03155,"15.0-15.1":0.01361,"15.2-15.3":0.01608,"15.4":0.01887,"15.5":0.02412,"15.6-15.8":0.20196,"16.0":0.04917,"16.1":0.10175,"16.2":0.04917,"16.3":0.08753,"16.4":0.01856,"16.5":0.03928,"16.6-16.7":0.29752,"17.0":0.03866,"17.1":0.07732,"17.2":0.12464,"17.3":1.53401,"17.4":0.22515,"17.5":0},P:{"4":0.24013,"20":0.02088,"21":0.03132,"22":0.03132,"23":0.31321,"24":0.28189,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0","6.2-6.4":0.02088,"7.2-7.4":0.09396,"11.1-11.2":0.01044,"13.0":0.01044,"16.0":0.02088,"17.0":0.04176,"18.0":0.01044,"19.0":0.02088},I:{"0":0.12984,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00031},K:{"0":2.98795,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00295,"8":0.01477,"9":0.00295,"10":0.00295,"11":0.14179,_:"6 5.5"},S:{"2.5":0.01449,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":66.23908},R:{_:"0"},M:{"0":0.11589},Q:{_:"14.9"},O:{"0":2.91893},H:{"0":0.17}}; +module.exports={C:{"40":0.00252,"43":0.00252,"44":0.00252,"46":0.00252,"49":0.00505,"50":0.00252,"52":0.01009,"56":0.00252,"65":0.00252,"72":0.00252,"75":0.00252,"80":0.00252,"86":0.00252,"88":0.01766,"95":0.00252,"97":0.00252,"99":0.00252,"102":0.00252,"103":0.00505,"104":0.00252,"105":0.00757,"106":0.00757,"107":0.00757,"108":0.01262,"109":0.00757,"110":0.00757,"111":0.00757,"112":0.00252,"113":0.00252,"115":0.50208,"116":0.00505,"117":0.00252,"118":0.00252,"119":0.00252,"120":0.00252,"121":0.00757,"122":0.01009,"123":0.02018,"124":0.878,"125":0.76952,"126":0.03028,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 45 47 48 51 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 73 74 76 77 78 79 81 82 83 84 85 87 89 90 91 92 93 94 96 98 100 101 114 127 128 3.5 3.6"},D:{"11":0.00252,"38":0.00252,"41":0.00757,"43":0.00252,"46":0.00252,"47":0.00252,"48":0.00252,"49":0.00757,"50":0.00252,"56":0.01009,"63":0.00252,"65":0.00252,"66":0.00252,"68":0.00252,"69":0.00757,"70":0.00505,"71":0.00505,"72":0.00252,"73":0.01262,"74":0.00757,"75":0.02775,"76":0.00252,"77":0.00252,"78":0.00252,"79":0.01009,"80":0.00757,"81":0.00757,"83":0.00757,"84":0.00252,"85":0.04541,"86":0.01262,"87":0.01262,"88":0.01009,"89":0.00757,"90":0.00505,"91":0.00252,"92":0.00252,"93":0.01009,"94":0.01766,"95":0.00757,"96":0.00252,"97":0.00505,"98":0.00505,"99":0.00505,"100":0.00505,"101":0.00505,"102":0.02018,"103":0.0328,"104":0.01766,"105":0.03028,"106":0.09335,"107":0.10344,"108":0.11101,"109":1.20852,"110":0.06812,"111":0.06308,"112":0.06812,"113":0.00757,"114":0.02018,"115":0.01009,"116":0.02018,"117":0.01009,"118":0.01514,"119":0.04037,"120":0.08074,"121":0.11354,"122":0.26239,"123":8.46214,"124":4.59691,"125":0.0656,"126":0.01262,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 51 52 53 54 55 57 58 59 60 61 62 64 67 127"},F:{"28":0.00505,"36":0.00252,"46":0.00252,"79":0.00252,"81":0.00252,"82":0.00252,"91":0.00252,"92":0.00505,"93":0.00505,"94":0.00505,"95":0.02775,"96":0.00252,"97":0.00252,"105":0.00252,"106":0.00505,"107":0.15643,"108":0.22959,"109":0.10597,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 86 87 88 89 90 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00757,"13":0.00252,"14":0.00252,"16":0.00505,"17":0.00252,"18":0.01514,"84":0.00505,"89":0.00252,"92":0.03028,"100":0.00252,"103":0.00252,"104":0.00252,"105":0.00505,"106":0.00757,"107":0.02271,"108":0.01262,"109":0.02523,"110":0.01262,"111":0.00757,"117":0.00505,"118":0.01009,"119":0.00252,"120":0.01766,"121":0.01262,"122":0.02775,"123":0.61814,"124":0.41125,_:"15 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 112 113 114 115 116"},E:{"9":0.00252,"14":0.00252,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.5","13.1":0.00505,"14.1":0.00757,"15.1":0.02271,"15.4":0.00505,"15.5":0.00757,"15.6":0.03028,"16.0":0.01009,"16.1":0.00505,"16.2":0.00252,"16.3":0.01262,"16.4":0.00757,"16.5":0.00505,"16.6":0.02523,"17.0":0.01009,"17.1":0.01262,"17.2":0.02018,"17.3":0.03785,"17.4":0.11101},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0.00061,"6.0-6.1":0.00152,"7.0-7.1":0.00243,"8.1-8.4":0.00061,"9.0-9.2":0.00152,"9.3":0.00761,"10.0-10.2":0.00152,"10.3":0.01217,"11.0-11.2":0.01035,"11.3-11.4":0.00304,"12.0-12.1":0.00213,"12.2-12.5":0.0496,"13.0-13.1":0.00091,"13.2":0.01004,"13.3":0.00243,"13.4-13.7":0.00943,"14.0-14.4":0.01856,"14.5-14.8":0.0283,"15.0-15.1":0.01309,"15.2-15.3":0.01491,"15.4":0.01704,"15.5":0.02161,"15.6-15.8":0.18867,"16.0":0.04413,"16.1":0.0919,"16.2":0.04413,"16.3":0.0779,"16.4":0.01613,"16.5":0.03378,"16.6-16.7":0.26688,"17.0":0.03195,"17.1":0.05904,"17.2":0.07851,"17.3":0.57272,"17.4":1.29273,"17.5":0.01187},P:{"4":0.19227,"20":0.02024,"21":0.03036,"22":0.03036,"23":0.1012,"24":0.49587,_:"5.0-5.4 8.2 10.1 12.0 14.0 15.0","6.2-6.4":0.03036,"7.2-7.4":0.12144,"9.2":0.01012,"11.1-11.2":0.01012,"13.0":0.01012,"16.0":0.02024,"17.0":0.04048,"18.0":0.01012,"19.0":0.02024},I:{"0":0.16382,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00041},A:{"8":0.01617,"9":0.00539,"10":0.0027,"11":0.09433,_:"6 7 5.5"},K:{"0":3.35933,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01495,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":2.19824},H:{"0":0.11},L:{"0":68.57296},R:{_:"0"},M:{"0":0.0972}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js index fca7aec45003b5..b7aa6bc766d409 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BE.js @@ -1 +1 @@ -module.exports={C:{"48":0.01588,"52":0.02117,"55":0.00529,"61":0.00529,"68":0.00529,"75":0.00529,"78":0.04234,"83":0.01588,"84":0.00529,"87":0.00529,"88":0.00529,"91":0.00529,"102":0.00529,"104":0.00529,"108":0.01059,"110":0.00529,"111":0.01059,"113":0.00529,"115":0.35992,"117":0.00529,"118":0.02117,"119":0.00529,"120":0.05822,"121":0.03176,"122":0.11115,"123":2.22306,"124":1.02155,"125":0.00529,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 56 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 81 82 85 86 89 90 92 93 94 95 96 97 98 99 100 101 103 105 106 107 109 112 114 116 126 127 3.5 3.6"},D:{"38":0.00529,"49":0.04234,"65":0.00529,"66":0.02117,"70":0.00529,"72":0.00529,"74":0.10586,"75":0.09527,"76":0.10057,"77":0.10057,"78":1.61437,"79":2.12779,"80":0.01059,"81":0.01059,"83":0.10057,"84":0.00529,"85":0.01588,"86":0.01059,"87":0.04764,"88":0.01588,"89":0.01059,"90":0.02117,"91":0.01059,"92":0.00529,"93":0.01059,"94":0.01059,"96":0.00529,"97":0.00529,"98":0.00529,"99":0.01588,"100":0.00529,"101":0.00529,"102":0.01059,"103":0.0741,"104":0.01588,"105":0.02647,"106":0.00529,"107":0.01588,"108":0.02647,"109":0.84159,"110":0.02647,"111":0.01588,"112":0.02647,"113":0.03176,"114":0.0794,"115":0.02117,"116":0.22231,"117":0.02647,"118":0.04764,"119":0.08998,"120":0.50813,"121":1.99546,"122":17.34516,"123":4.95425,"124":0.00529,"125":0.00529,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 71 73 95 126"},F:{"46":0.00529,"89":0.00529,"91":0.00529,"95":0.01588,"102":0.00529,"106":0.03705,"107":1.138,"108":0.20113,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00529,"92":0.00529,"102":0.00529,"104":0.01059,"107":0.00529,"108":0.00529,"109":0.08469,"110":0.00529,"112":0.00529,"113":0.00529,"114":0.01588,"115":0.00529,"116":0.01059,"117":0.01588,"118":0.00529,"119":0.02117,"120":0.15879,"121":0.3017,"122":7.66956,"123":0.61928,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 105 106 111"},E:{"9":0.00529,"13":0.00529,"14":0.04234,"15":0.01059,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00529,"12.1":0.02647,"13.1":0.1535,"14.1":0.16938,"15.1":0.02647,"15.2-15.3":0.02117,"15.4":0.05822,"15.5":0.0794,"15.6":0.63516,"16.0":0.05293,"16.1":0.11645,"16.2":0.10586,"16.3":0.21172,"16.4":0.09527,"16.5":0.13762,"16.6":0.77278,"17.0":0.09527,"17.1":0.26465,"17.2":0.67221,"17.3":2.31833,"17.4":0.46578},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00409,"5.0-5.1":0.00204,"6.0-6.1":0.01226,"7.0-7.1":0.01431,"8.1-8.4":0.00409,"9.0-9.2":0.00817,"9.3":0.05109,"10.0-10.2":0.00817,"10.3":0.08584,"11.0-11.2":0.06131,"11.3-11.4":0.02044,"12.0-12.1":0.01839,"12.2-12.5":0.35357,"13.0-13.1":0.00613,"13.2":0.06131,"13.3":0.01839,"13.4-13.7":0.06949,"14.0-14.4":0.13284,"14.5-14.8":0.20846,"15.0-15.1":0.08992,"15.2-15.3":0.10627,"15.4":0.12467,"15.5":0.15941,"15.6-15.8":1.33456,"16.0":0.32496,"16.1":0.67239,"16.2":0.32496,"16.3":0.57838,"16.4":0.12262,"16.5":0.25956,"16.6-16.7":1.96608,"17.0":0.25547,"17.1":0.51094,"17.2":0.82363,"17.3":10.13696,"17.4":1.48784,"17.5":0},P:{"4":0.03235,"20":0.01078,"21":0.05391,"22":0.03235,"23":1.74674,"24":1.48797,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","13.0":0.01078,"16.0":0.01078,"17.0":0.01078,"19.0":0.02156},I:{"0":0.07971,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":0.16478,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01059,"11":0.0741,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.73396},R:{_:"0"},M:{"0":0.2966},Q:{_:"14.9"},O:{"0":0.02354},H:{"0":0}}; +module.exports={C:{"48":0.01068,"52":0.01601,"55":0.00534,"68":0.00534,"75":0.00534,"78":0.04804,"83":0.01068,"87":0.00534,"88":0.00534,"91":0.00534,"102":0.00534,"104":0.00534,"106":0.00534,"108":0.00534,"113":0.01068,"115":0.38434,"117":0.00534,"118":0.04804,"119":0.00534,"120":0.06406,"121":0.01601,"122":0.01601,"123":0.06406,"124":2.12986,"125":1.26511,"126":0.01068,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 81 82 84 85 86 89 90 92 93 94 95 96 97 98 99 100 101 103 105 107 109 110 111 112 114 116 127 128 3.5 3.6"},D:{"38":0.00534,"49":0.03203,"65":0.00534,"66":0.02135,"70":0.03737,"72":0.00534,"74":0.13345,"75":0.13345,"76":0.13345,"77":0.12811,"78":2.08716,"79":2.75975,"80":0.01068,"81":0.01068,"83":0.09608,"84":0.00534,"85":0.02135,"86":0.00534,"87":0.05338,"88":0.01601,"89":0.00534,"90":0.02135,"91":0.01068,"92":0.00534,"93":0.00534,"94":0.01068,"95":0.00534,"96":0.00534,"97":0.00534,"99":0.01601,"100":0.00534,"102":0.00534,"103":0.07473,"104":0.01068,"105":0.01601,"106":0.01068,"107":0.01068,"108":0.02669,"109":0.88611,"110":0.01068,"111":0.01068,"112":0.01601,"113":0.01601,"114":0.03203,"115":0.09608,"116":0.20284,"117":0.02135,"118":0.03203,"119":0.06406,"120":0.3096,"121":0.50711,"122":1.67079,"123":15.26134,"124":6.67784,"125":0.02135,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 71 73 98 101 126 127"},F:{"46":0.00534,"85":0.00534,"95":0.01601,"102":0.00534,"106":0.01601,"107":0.77401,"108":0.38434,"109":0.1548,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00534,"92":0.00534,"104":0.00534,"107":0.00534,"108":0.00534,"109":0.08541,"110":0.00534,"112":0.00534,"113":0.01068,"114":0.01068,"115":0.00534,"116":0.01068,"117":0.01068,"118":0.00534,"119":0.01601,"120":0.08541,"121":0.05338,"122":0.42704,"123":5.36469,"124":2.70103,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 111"},E:{"9":0.00534,"13":0.00534,"14":0.0427,"15":0.01068,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.02135,"13.1":0.1548,"14.1":0.13879,"15.1":0.03203,"15.2-15.3":0.02135,"15.4":0.04804,"15.5":0.06939,"15.6":0.60853,"16.0":0.05338,"16.1":0.1121,"16.2":0.09075,"16.3":0.18149,"16.4":0.07473,"16.5":0.12277,"16.6":0.68326,"17.0":0.07473,"17.1":0.20818,"17.2":0.29893,"17.3":0.8434,"17.4":2.46616,"17.5":0.01068},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00402,"5.0-5.1":0.00402,"6.0-6.1":0.01004,"7.0-7.1":0.01606,"8.1-8.4":0.00402,"9.0-9.2":0.01004,"9.3":0.0502,"10.0-10.2":0.01004,"10.3":0.08032,"11.0-11.2":0.06827,"11.3-11.4":0.02008,"12.0-12.1":0.01406,"12.2-12.5":0.32729,"13.0-13.1":0.00602,"13.2":0.06626,"13.3":0.01606,"13.4-13.7":0.06225,"14.0-14.4":0.12248,"14.5-14.8":0.18674,"15.0-15.1":0.08634,"15.2-15.3":0.09839,"15.4":0.11244,"15.5":0.14256,"15.6-15.8":1.24491,"16.0":0.29115,"16.1":0.60639,"16.2":0.29115,"16.3":0.51403,"16.4":0.10642,"16.5":0.22288,"16.6-16.7":1.76095,"17.0":0.21083,"17.1":0.38954,"17.2":0.51804,"17.3":3.77891,"17.4":8.52966,"17.5":0.07831},P:{"4":0.0643,"20":0.01072,"21":0.05358,"22":0.03215,"23":0.17147,"24":2.915,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","13.0":0.01072,"16.0":0.02143,"17.0":0.01072,"19.0":0.02143},I:{"0":0.07429,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"8":0.01068,"9":0.00534,"11":0.06939,_:"6 7 10 5.5"},K:{"0":0.18648,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02331},H:{"0":0},L:{"0":22.26655},R:{_:"0"},M:{"0":0.32168}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js index 6b07cd339093bd..98c43448809402 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BF.js @@ -1 +1 @@ -module.exports={C:{"38":0.00252,"40":0.00252,"41":0.00252,"49":0.00252,"50":0.00252,"52":0.00252,"56":0.00252,"57":0.00252,"62":0.00252,"69":0.01007,"72":0.03776,"78":0.00252,"85":0.04531,"97":0.00252,"101":0.01007,"102":0.00252,"109":0.00252,"110":0.00252,"111":0.01007,"112":0.00755,"113":0.00252,"114":0.02265,"115":0.39014,"118":0.02014,"119":0.00252,"120":0.00755,"121":0.01007,"122":0.02769,"123":1.65367,"124":0.42537,"125":0.00252,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 42 43 44 45 46 47 48 51 53 54 55 58 59 60 61 63 64 65 66 67 68 70 71 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 98 99 100 103 104 105 106 107 108 116 117 126 127 3.5 3.6"},D:{"11":0.01007,"19":0.00252,"25":0.00755,"28":0.00252,"33":0.00252,"39":0.00252,"46":0.00252,"49":0.00252,"62":0.00252,"64":0.00252,"65":0.00252,"66":0.00252,"68":0.01007,"69":0.00503,"70":0.00252,"71":0.00755,"72":0.00503,"73":0.00503,"74":0.00503,"75":0.01007,"76":0.00503,"77":0.00252,"79":0.03272,"83":0.01007,"86":0.00503,"87":0.16109,"88":0.00503,"89":0.00252,"91":0.02517,"92":0.00252,"93":0.02769,"94":0.00252,"95":0.01007,"97":0.00252,"98":0.00503,"99":0.08054,"100":0.00503,"102":0.01259,"103":0.0151,"105":0.00252,"106":0.00252,"107":0.00252,"108":0.00252,"109":1.09993,"110":0.00252,"111":0.00503,"114":0.00755,"115":0.01007,"116":0.0302,"117":0.04027,"118":0.01259,"119":0.05789,"120":0.09816,"121":0.31966,"122":5.69345,"123":1.51272,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 26 27 29 30 31 32 34 35 36 37 38 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 59 60 61 63 67 78 80 81 84 85 90 96 101 104 112 113 124 125 126"},F:{"37":0.00252,"42":0.00252,"79":0.00503,"95":0.01762,"105":0.00252,"106":0.00503,"107":0.65442,"108":0.38007,"109":0.00252,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01007,"15":0.01007,"16":0.00252,"17":0.00252,"18":0.03524,"84":0.00252,"89":0.00252,"90":0.00252,"92":0.02265,"98":0.00503,"100":0.00252,"109":0.02014,"112":0.00252,"113":0.00252,"114":0.12837,"117":0.00755,"118":0.00503,"119":0.01007,"120":0.01762,"121":0.19884,"122":2.95999,"123":0.24415,_:"13 14 79 80 81 83 85 86 87 88 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 111 115 116"},E:{"11":0.00252,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 15.4 15.5 16.0 16.1 17.5","5.1":0.00252,"13.1":0.12333,"14.1":0.07299,"15.1":0.00252,"15.6":0.02014,"16.2":0.01762,"16.3":0.05034,"16.4":0.00252,"16.5":0.04027,"16.6":0.01007,"17.0":0.00755,"17.1":0.02265,"17.2":0.02265,"17.3":0.06544,"17.4":0.01762},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00073,"5.0-5.1":0.00036,"6.0-6.1":0.00218,"7.0-7.1":0.00254,"8.1-8.4":0.00073,"9.0-9.2":0.00145,"9.3":0.00907,"10.0-10.2":0.00145,"10.3":0.01524,"11.0-11.2":0.01089,"11.3-11.4":0.00363,"12.0-12.1":0.00327,"12.2-12.5":0.06278,"13.0-13.1":0.00109,"13.2":0.01089,"13.3":0.00327,"13.4-13.7":0.01234,"14.0-14.4":0.02359,"14.5-14.8":0.03701,"15.0-15.1":0.01597,"15.2-15.3":0.01887,"15.4":0.02214,"15.5":0.0283,"15.6-15.8":0.23696,"16.0":0.0577,"16.1":0.11939,"16.2":0.0577,"16.3":0.10269,"16.4":0.02177,"16.5":0.04609,"16.6-16.7":0.34909,"17.0":0.04536,"17.1":0.09072,"17.2":0.14624,"17.3":1.79987,"17.4":0.26417,"17.5":0},P:{"4":0.02065,"20":0.01033,"21":0.04131,"22":0.01033,"23":0.35113,"24":0.18589,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0","7.2-7.4":0.03098,"16.0":0.02065,"17.0":0.02065,"18.0":0.03098,"19.0":0.01033},I:{"0":0.03726,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":1.86942,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0151,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":74.04254},R:{_:"0"},M:{"0":0.14964},Q:{"14.9":0.07482},O:{"0":0.2095},H:{"0":1.49}}; +module.exports={C:{"43":0.00225,"47":0.00675,"52":0.0045,"65":0.0045,"68":0.0135,"70":0.00225,"72":0.02025,"78":0.00225,"80":0.00225,"85":0.10575,"102":0.00225,"107":0.00225,"111":0.009,"112":0.00225,"114":0.02925,"115":0.41175,"116":0.0045,"118":0.03375,"120":0.00225,"121":0.009,"122":0.01125,"123":0.126,"124":1.107,"125":0.792,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 71 73 74 75 76 77 79 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 108 109 110 113 117 119 126 127 128 3.5 3.6"},D:{"29":0.00225,"31":0.00675,"32":0.00225,"33":0.00225,"34":0.00225,"39":0.0045,"42":0.00225,"46":0.00225,"55":0.0045,"63":0.00225,"66":0.0045,"67":0.00225,"68":0.0045,"71":0.00225,"72":0.00225,"74":0.00225,"75":0.0135,"76":0.01575,"78":0.00225,"79":0.018,"80":0.00225,"81":0.00225,"83":0.009,"84":0.00225,"85":0.00225,"86":0.00225,"87":0.02025,"88":0.0045,"89":0.00225,"90":0.00225,"91":0.00675,"93":0.05175,"94":0.00225,"95":0.04275,"98":0.00225,"99":0.08325,"102":0.01575,"103":0.0135,"104":0.00225,"105":0.00675,"106":0.0045,"108":0.00225,"109":1.287,"110":0.0045,"111":0.0045,"114":0.0045,"115":0.00675,"116":0.03375,"117":0.00675,"118":0.00225,"119":0.0765,"120":0.0405,"121":0.054,"122":0.1665,"123":4.9005,"124":1.692,"125":0.00225,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 35 36 37 38 40 41 43 44 45 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 64 65 69 70 73 77 92 96 97 100 101 107 112 113 126 127"},F:{"42":0.00225,"54":0.00225,"78":0.00225,"79":0.01575,"95":0.02925,"105":0.00225,"106":0.00225,"107":0.0765,"108":0.94725,"109":0.189,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00225},B:{"12":0.0045,"13":0.0045,"15":0.0045,"16":0.00225,"17":0.00225,"18":0.0495,"84":0.00675,"89":0.00675,"91":0.00225,"92":0.018,"98":0.00675,"100":0.0045,"109":0.0135,"113":0.00225,"114":0.1035,"119":0.00675,"120":0.00675,"121":0.0495,"122":0.15525,"123":2.22525,"124":1.33425,_:"14 79 80 81 83 85 86 87 88 90 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 111 112 115 116 117 118"},E:{"15":0.00225,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.1 16.2 16.4 17.5","12.1":0.00225,"13.1":0.054,"14.1":0.00225,"15.6":0.01575,"16.0":0.00225,"16.3":0.036,"16.5":0.00225,"16.6":0.0135,"17.0":0.00225,"17.1":0.0045,"17.2":0.00675,"17.3":0.0315,"17.4":0.036},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0.00075,"6.0-6.1":0.00188,"7.0-7.1":0.003,"8.1-8.4":0.00075,"9.0-9.2":0.00188,"9.3":0.00938,"10.0-10.2":0.00188,"10.3":0.015,"11.0-11.2":0.01275,"11.3-11.4":0.00375,"12.0-12.1":0.00263,"12.2-12.5":0.06114,"13.0-13.1":0.00113,"13.2":0.01238,"13.3":0.003,"13.4-13.7":0.01163,"14.0-14.4":0.02288,"14.5-14.8":0.03488,"15.0-15.1":0.01613,"15.2-15.3":0.01838,"15.4":0.02101,"15.5":0.02663,"15.6-15.8":0.23256,"16.0":0.05439,"16.1":0.11328,"16.2":0.05439,"16.3":0.09603,"16.4":0.01988,"16.5":0.04164,"16.6-16.7":0.32896,"17.0":0.03939,"17.1":0.07277,"17.2":0.09678,"17.3":0.70594,"17.4":1.59342,"17.5":0.01463},P:{"4":0.02089,"21":0.01045,"22":0.03134,"23":0.17758,"24":0.37604,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0","7.2-7.4":0.01045,"16.0":0.01045,"18.0":0.03134,"19.0":0.03134},I:{"0":0.02315,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"11":0.009,_:"6 7 8 9 10 5.5"},K:{"0":1.813,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00775,_:"3.0-3.1"},Q:{"14.9":0.14725},O:{"0":0.155},H:{"0":1.69},L:{"0":74.28125},R:{_:"0"},M:{"0":0.16275}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js index 36ef2128054226..c0e29373d68627 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BG.js @@ -1 +1 @@ -module.exports={C:{"45":1.14123,"48":0.00698,"52":0.07678,"60":0.00349,"61":0.00698,"65":0.00349,"66":0.00698,"68":0.00349,"72":0.00349,"75":0.00349,"78":0.01745,"83":0.01745,"84":0.02443,"85":0.00349,"88":0.02443,"89":0.00349,"90":0.01745,"91":0.00349,"95":0.00349,"96":0.01047,"97":0.00349,"98":0.00349,"99":0.00698,"100":0.00349,"102":0.01047,"103":0.01745,"104":0.00698,"105":0.00349,"106":0.00698,"107":0.00698,"108":0.00349,"109":0.00698,"111":0.00698,"112":0.00698,"113":0.01047,"114":0.00349,"115":1.00163,"116":0.00349,"117":0.00698,"118":0.00698,"119":0.00698,"120":0.01047,"121":0.02792,"122":0.08027,"123":2.10447,"124":0.92136,"125":0.00698,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 56 57 58 59 62 63 64 67 69 70 71 73 74 76 77 79 80 81 82 86 87 92 93 94 101 110 126 127 3.5 3.6"},D:{"26":0.00349,"33":0.00698,"38":0.00698,"41":0.00349,"49":0.05584,"53":0.00349,"63":0.00349,"65":0.00349,"68":0.00349,"69":0.00349,"70":0.00349,"71":0.00349,"73":0.00349,"74":0.00349,"75":0.00349,"76":0.00349,"78":0.00349,"79":0.04537,"80":0.00349,"81":0.00698,"83":0.01396,"85":0.00698,"86":0.00698,"87":0.04188,"88":0.01047,"89":0.00349,"90":0.00349,"91":0.00349,"92":0.00349,"93":0.0349,"94":0.00698,"95":0.00349,"96":0.00349,"97":0.01047,"98":0.00698,"99":0.01745,"100":0.01047,"101":0.00349,"102":0.01745,"103":0.03141,"104":0.03141,"105":0.00698,"106":0.01396,"107":0.01745,"108":0.02792,"109":3.30503,"110":0.01745,"111":0.02094,"112":0.02094,"113":0.02443,"114":0.02094,"115":0.0349,"116":0.04537,"117":0.01745,"118":0.03141,"119":0.0698,"120":0.21289,"121":1.02955,"122":13.31435,"123":3.9786,"124":0.00698,"125":0.00349,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 66 67 72 77 84 126"},F:{"28":0.01396,"36":0.00349,"46":0.01396,"79":0.00349,"81":0.00349,"83":0.00349,"85":0.01047,"86":0.00349,"89":0.00349,"94":0.00349,"95":0.11168,"99":0.00349,"105":0.00349,"106":0.01396,"107":0.75384,"108":0.25826,"109":0.00349,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 84 87 88 90 91 92 93 96 97 98 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00349,"92":0.00349,"107":0.00349,"108":0.00349,"109":0.09423,"110":0.00698,"111":0.00349,"113":0.00349,"114":0.00349,"115":0.00349,"116":0.00349,"117":0.00349,"118":0.00349,"119":0.02443,"120":0.02443,"121":0.09772,"122":2.76408,"123":0.17799,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 112"},E:{"14":0.01047,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00349,"12.1":0.00698,"13.1":0.01047,"14.1":0.03839,"15.1":0.00349,"15.2-15.3":0.00349,"15.4":0.00349,"15.5":0.00698,"15.6":0.05584,"16.0":0.00349,"16.1":0.01396,"16.2":0.00698,"16.3":0.01745,"16.4":0.00698,"16.5":0.01396,"16.6":0.0698,"17.0":0.01396,"17.1":0.0349,"17.2":0.08376,"17.3":0.19195,"17.4":0.06282},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00192,"5.0-5.1":0.00096,"6.0-6.1":0.00577,"7.0-7.1":0.00673,"8.1-8.4":0.00192,"9.0-9.2":0.00384,"9.3":0.02402,"10.0-10.2":0.00384,"10.3":0.04036,"11.0-11.2":0.02883,"11.3-11.4":0.00961,"12.0-12.1":0.00865,"12.2-12.5":0.16623,"13.0-13.1":0.00288,"13.2":0.02883,"13.3":0.00865,"13.4-13.7":0.03267,"14.0-14.4":0.06246,"14.5-14.8":0.09801,"15.0-15.1":0.04228,"15.2-15.3":0.04997,"15.4":0.05861,"15.5":0.07495,"15.6-15.8":0.62745,"16.0":0.15278,"16.1":0.31613,"16.2":0.15278,"16.3":0.27193,"16.4":0.05765,"16.5":0.12203,"16.6-16.7":0.92436,"17.0":0.12011,"17.1":0.24022,"17.2":0.38723,"17.3":4.76594,"17.4":0.69952,"17.5":0},P:{"4":0.0615,"20":0.03075,"21":0.0615,"22":0.07175,"23":1.66054,"24":1.20953,"5.0-5.4":0.01025,"6.2-6.4":0.0205,"7.2-7.4":0.03075,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.01025,"13.0":0.01025,"14.0":0.01025,"15.0":0.01025,"16.0":0.0205,"17.0":0.0205,"18.0":0.0205,"19.0":0.041},I:{"0":0.22692,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00014,"4.4":0,"4.4.3-4.4.4":0.00055},K:{"0":0.3255,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0037,"11":0.05912,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.41473},R:{_:"0"},M:{"0":0.21483},Q:{_:"14.9"},O:{"0":0.01953},H:{"0":0}}; +module.exports={C:{"45":1.07747,"48":0.00711,"52":0.07823,"56":0.00356,"60":0.00356,"61":0.00711,"65":0.00356,"66":0.00356,"68":0.00356,"72":0.00356,"75":0.00356,"78":0.02845,"83":0.02134,"84":0.032,"85":0.00356,"88":0.01778,"89":0.00356,"90":0.00356,"91":0.00356,"96":0.00711,"97":0.00711,"98":0.00356,"99":0.00711,"100":0.00356,"102":0.01067,"103":0.02134,"104":0.00356,"105":0.00711,"106":0.00356,"107":0.00356,"108":0.00356,"109":0.01067,"110":0.00356,"112":0.01067,"113":0.01422,"114":0.00711,"115":1.04191,"116":0.00711,"117":0.00356,"118":0.00711,"119":0.00711,"120":0.01067,"121":0.06756,"122":0.02489,"123":0.09246,"124":2.12293,"125":1.05613,"126":0.00711,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 54 55 57 58 59 62 63 64 67 69 70 71 73 74 76 77 79 80 81 82 86 87 92 93 94 95 101 111 127 128 3.5 3.6"},D:{"26":0.00356,"38":0.00711,"41":0.00356,"47":0.00356,"49":0.05334,"51":0.00356,"53":0.00356,"58":0.00356,"63":0.00356,"65":0.00356,"66":0.00356,"69":0.00356,"70":0.00356,"71":0.00356,"73":0.00711,"74":0.00356,"75":0.00356,"76":0.00356,"78":0.00356,"79":0.04978,"80":0.00356,"81":0.00711,"83":0.01422,"85":0.00711,"86":0.00711,"87":0.04978,"88":0.01422,"89":0.00356,"90":0.01067,"91":0.01067,"92":0.00356,"93":0.02489,"94":0.01067,"95":0.00356,"96":0.00356,"97":0.02134,"98":0.00711,"99":0.01067,"100":0.00711,"101":0.00356,"102":0.01778,"103":0.02845,"104":0.03556,"105":0.00711,"106":0.01422,"107":0.01067,"108":0.02845,"109":3.2324,"110":0.01422,"111":0.02134,"112":0.01778,"113":0.01778,"114":0.01067,"115":0.11024,"116":0.04623,"117":0.01778,"118":0.02845,"119":0.07468,"120":0.0889,"121":0.13157,"122":0.65075,"123":13.335,"124":4.70103,"125":0.01778,"126":0.00356,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 52 54 55 56 57 59 60 61 62 64 67 68 72 77 84 127"},F:{"28":0.01422,"36":0.00356,"46":0.01422,"79":0.00356,"85":0.00711,"86":0.00356,"94":0.00711,"95":0.11024,"105":0.00356,"107":0.42316,"108":0.5654,"109":0.18491,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 87 88 89 90 91 92 93 96 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00356,"18":0.00356,"92":0.00356,"109":0.10312,"110":0.00711,"113":0.00356,"114":0.00356,"115":0.00356,"116":0.00711,"117":0.00356,"118":0.01422,"119":0.01422,"120":0.01422,"121":0.01778,"122":0.14224,"123":2.06604,"124":0.91745,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112"},E:{"9":0.00356,"14":0.00711,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.2-15.3","5.1":0.00711,"12.1":0.00356,"13.1":0.01422,"14.1":0.032,"15.1":0.00356,"15.4":0.00356,"15.5":0.00711,"15.6":0.0569,"16.0":0.00356,"16.1":0.01067,"16.2":0.00711,"16.3":0.01422,"16.4":0.00711,"16.5":0.01067,"16.6":0.06756,"17.0":0.01422,"17.1":0.02134,"17.2":0.03912,"17.3":0.06756,"17.4":0.24181,"17.5":0.00356},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0.0019,"6.0-6.1":0.00476,"7.0-7.1":0.00762,"8.1-8.4":0.0019,"9.0-9.2":0.00476,"9.3":0.0238,"10.0-10.2":0.00476,"10.3":0.03808,"11.0-11.2":0.03237,"11.3-11.4":0.00952,"12.0-12.1":0.00666,"12.2-12.5":0.15516,"13.0-13.1":0.00286,"13.2":0.03141,"13.3":0.00762,"13.4-13.7":0.02951,"14.0-14.4":0.05807,"14.5-14.8":0.08853,"15.0-15.1":0.04093,"15.2-15.3":0.04664,"15.4":0.05331,"15.5":0.06759,"15.6-15.8":0.59019,"16.0":0.13803,"16.1":0.28748,"16.2":0.13803,"16.3":0.24369,"16.4":0.05045,"16.5":0.10566,"16.6-16.7":0.83484,"17.0":0.09995,"17.1":0.18467,"17.2":0.2456,"17.3":1.79153,"17.4":4.04378,"17.5":0.03713},P:{"4":0.06125,"20":0.02042,"21":0.05104,"22":0.07146,"23":0.33687,"24":2.2866,"5.0-5.4":0.01021,"6.2-6.4":0.03062,"7.2-7.4":0.02042,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01021,"13.0":0.01021,"14.0":0.01021,"16.0":0.01021,"17.0":0.02042,"18.0":0.02042,"19.0":0.03062},I:{"0":0.23749,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00014,"4.4":0,"4.4.3-4.4.4":0.0006},A:{"8":0.0074,"9":0.0037,"10":0.0037,"11":0.07766,_:"6 7 5.5"},K:{"0":0.30936,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01934},H:{"0":0},L:{"0":51.61115},R:{_:"0"},M:{"0":0.23202}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js index 0576c33468169f..9d3a56a5e2a62d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BH.js @@ -1 +1 @@ -module.exports={C:{"34":0.00665,"105":0.0698,"106":0.01662,"109":0.00665,"115":0.04654,"118":0.00332,"121":0.00332,"122":0.01994,"123":0.4022,"124":0.18614,"125":0.00332,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 107 108 110 111 112 113 114 116 117 119 120 126 127 3.5 3.6"},D:{"11":0.00332,"30":0.00332,"38":0.00997,"47":0.01662,"49":0.00332,"50":0.00332,"55":0.00332,"56":0.00332,"58":0.02992,"62":0.00332,"65":0.00665,"66":0.00665,"68":0.00997,"69":0.00332,"70":0.00332,"72":0.03989,"74":0.00332,"75":0.00997,"76":0.00665,"77":0.00332,"78":0.00332,"79":0.12631,"80":0.00332,"81":0.00997,"83":0.00665,"85":0.00332,"86":0.02327,"87":0.11634,"88":0.01662,"89":0.00332,"90":0.00665,"91":0.00665,"92":0.00332,"93":0.0133,"94":0.00665,"95":0.01662,"96":0.00332,"97":0.00997,"98":0.01994,"99":0.01662,"101":0.00665,"102":0.01994,"103":0.13628,"105":0.00332,"106":0.01994,"107":0.06648,"108":0.01994,"109":0.88086,"110":0.01994,"111":0.02327,"112":0.02992,"113":0.12299,"114":0.12631,"115":0.02992,"116":0.08642,"117":0.04321,"118":0.02327,"119":0.09307,"120":0.31578,"121":1.33292,"122":15.17406,"123":3.93894,"124":0.00332,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 57 59 60 61 63 64 67 71 73 84 100 104 125 126"},F:{"28":0.0133,"36":0.00665,"46":0.01662,"85":0.00332,"95":0.00332,"98":0.00332,"101":0.00997,"102":0.00997,"104":0.00332,"105":0.03324,"106":0.0964,"107":0.30581,"108":0.06316,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 99 100 103 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00332,"16":0.00665,"18":0.00332,"89":0.00332,"92":0.05983,"100":0.00665,"105":0.00332,"107":0.00332,"108":0.00332,"109":0.03324,"110":0.01994,"111":0.00332,"112":0.00665,"113":0.00997,"114":0.01662,"116":0.00665,"117":0.00665,"118":0.04654,"119":0.0133,"120":0.04986,"121":0.36232,"122":3.59324,"123":0.24265,_:"12 13 15 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 106 115"},E:{"8":0.00332,"13":0.00665,"14":0.0133,_:"0 4 5 6 7 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.00332,"11.1":0.00332,"12.1":0.00332,"13.1":0.02327,"14.1":0.07313,"15.1":0.0133,"15.2-15.3":0.00665,"15.4":0.01662,"15.5":0.02659,"15.6":0.15955,"16.0":0.04321,"16.1":0.04986,"16.2":0.03989,"16.3":0.07978,"16.4":0.0133,"16.5":0.05318,"16.6":0.21606,"17.0":0.03324,"17.1":0.06316,"17.2":0.14293,"17.3":0.75122,"17.4":0.09972},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0037,"5.0-5.1":0.00185,"6.0-6.1":0.01109,"7.0-7.1":0.01294,"8.1-8.4":0.0037,"9.0-9.2":0.0074,"9.3":0.04622,"10.0-10.2":0.0074,"10.3":0.07765,"11.0-11.2":0.05547,"11.3-11.4":0.01849,"12.0-12.1":0.01664,"12.2-12.5":0.31985,"13.0-13.1":0.00555,"13.2":0.05547,"13.3":0.01664,"13.4-13.7":0.06286,"14.0-14.4":0.12018,"14.5-14.8":0.18858,"15.0-15.1":0.08135,"15.2-15.3":0.09614,"15.4":0.11278,"15.5":0.14421,"15.6-15.8":1.20731,"16.0":0.29397,"16.1":0.60828,"16.2":0.29397,"16.3":0.52323,"16.4":0.11093,"16.5":0.23481,"16.6-16.7":1.7786,"17.0":0.23111,"17.1":0.46222,"17.2":0.74509,"17.3":9.17035,"17.4":1.34597,"17.5":0},P:{"4":0.04119,"20":0.0103,"21":0.05149,"22":0.08238,"23":1.23577,"24":1.48292,_:"5.0-5.4 8.2 10.1 12.0 15.0","6.2-6.4":0.0103,"7.2-7.4":0.04119,"9.2":0.0103,"11.1-11.2":0.08238,"13.0":0.0103,"14.0":0.0103,"16.0":0.14417,"17.0":0.03089,"18.0":0.0103,"19.0":0.0206},I:{"0":0.04655,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":1.5858,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.08975,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":42.78084},R:{_:"0"},M:{"0":0.62096},Q:{_:"14.9"},O:{"0":1.83618},H:{"0":0.01}}; +module.exports={C:{"34":0.02034,"52":0.00291,"78":0.00291,"105":0.03486,"107":0.00291,"109":0.01162,"111":0.00291,"115":0.04067,"123":0.02324,"124":0.36894,"125":0.27017,"126":0.00581,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 108 110 112 113 114 116 117 118 119 120 121 122 127 128 3.5 3.6"},D:{"11":0.00291,"38":0.00581,"47":0.01162,"49":0.00581,"50":0.00291,"56":0.00581,"58":0.03777,"60":0.00291,"65":0.00291,"66":0.00291,"68":0.00581,"69":0.00291,"70":0.00291,"72":0.03486,"74":0.00291,"75":0.00872,"76":0.00581,"78":0.00291,"79":0.12201,"80":0.00291,"81":0.00581,"83":0.00291,"85":0.00291,"86":0.00291,"87":0.07553,"88":0.00581,"89":0.00581,"90":0.00291,"91":0.00291,"93":0.03777,"94":0.00291,"95":0.02034,"96":0.00291,"97":0.00581,"98":0.01162,"99":0.01743,"101":0.00581,"102":0.01743,"103":0.06682,"104":0.00291,"105":0.01162,"106":0.00872,"107":0.02324,"108":0.01743,"109":0.77273,"110":0.01453,"111":0.01162,"112":0.11039,"113":0.16559,"114":0.15978,"115":0.00581,"116":0.12782,"117":0.01453,"118":0.01743,"119":0.05229,"120":0.14816,"121":0.26436,"122":0.67977,"123":11.25978,"124":5.53693,"125":0.01162,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 55 57 59 61 62 63 64 67 71 73 77 84 92 100 126 127"},F:{"28":0.01453,"36":0.00872,"46":0.01743,"90":0.00291,"95":0.00581,"98":0.00291,"101":0.00581,"102":0.00872,"104":0.00291,"105":0.00872,"106":0.04358,"107":0.26436,"108":0.13073,"109":0.02615,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 99 100 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00581,"18":0.00581,"89":0.00291,"92":0.05229,"100":0.00872,"105":0.00291,"107":0.00291,"109":0.02324,"110":0.01162,"111":0.00291,"112":0.00581,"113":0.01162,"114":0.02615,"116":0.00581,"117":0.00291,"118":0.06972,"119":0.01743,"120":0.03777,"121":0.03777,"122":0.28469,"123":1.95216,"124":1.25787,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 106 108 115"},E:{"13":0.00581,"14":0.04648,"15":0.00291,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00291,"12.1":0.00291,"13.1":0.01743,"14.1":0.06682,"15.1":0.01453,"15.2-15.3":0.00581,"15.4":0.00872,"15.5":0.03196,"15.6":0.12782,"16.0":0.00872,"16.1":0.04939,"16.2":0.02034,"16.3":0.09296,"16.4":0.01453,"16.5":0.07263,"16.6":0.29341,"17.0":0.02905,"17.1":0.07263,"17.2":0.07844,"17.3":0.31955,"17.4":0.98189,"17.5":0.00581},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00403,"5.0-5.1":0.00403,"6.0-6.1":0.01008,"7.0-7.1":0.01613,"8.1-8.4":0.00403,"9.0-9.2":0.01008,"9.3":0.05041,"10.0-10.2":0.01008,"10.3":0.08066,"11.0-11.2":0.06856,"11.3-11.4":0.02016,"12.0-12.1":0.01411,"12.2-12.5":0.32867,"13.0-13.1":0.00605,"13.2":0.06654,"13.3":0.01613,"13.4-13.7":0.06251,"14.0-14.4":0.123,"14.5-14.8":0.18753,"15.0-15.1":0.08671,"15.2-15.3":0.0988,"15.4":0.11292,"15.5":0.14316,"15.6-15.8":1.25017,"16.0":0.29238,"16.1":0.60895,"16.2":0.29238,"16.3":0.5162,"16.4":0.10687,"16.5":0.22382,"16.6-16.7":1.76838,"17.0":0.21172,"17.1":0.39118,"17.2":0.52023,"17.3":3.79486,"17.4":8.56566,"17.5":0.07864},P:{"4":0.06191,"20":0.01032,"21":0.08254,"22":0.06191,"23":0.22699,"24":2.19771,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0","6.2-6.4":0.01032,"7.2-7.4":0.04127,"11.1-11.2":0.09286,"13.0":0.02064,"16.0":0.1135,"17.0":0.03095,"18.0":0.01032,"19.0":0.01032},I:{"0":0.03533,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.0067,"11":0.08045,_:"6 7 9 10 5.5"},K:{"0":1.29839,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":2.05046},H:{"0":0},L:{"0":44.55765},R:{_:"0"},M:{"0":0.78045}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js index b83ff943af1bc7..63c33dca803752 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BI.js @@ -1 +1 @@ -module.exports={C:{"43":0.00498,"47":0.00249,"50":0.00249,"51":0.00249,"56":0.00249,"64":0.00249,"66":0.00498,"68":0.00249,"69":0.00249,"72":0.00996,"78":0.00498,"81":0.00747,"82":0.00498,"88":0.00249,"89":0.01494,"95":0.00747,"105":0.00249,"107":0.00249,"110":0.01245,"115":0.16185,"117":0.00249,"120":0.00747,"121":0.00498,"122":0.01743,"123":0.74451,"124":1.18524,"125":0.00249,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 52 53 54 55 57 58 59 60 61 62 63 65 67 70 71 73 74 75 76 77 79 80 83 84 85 86 87 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 108 109 111 112 113 114 116 118 119 126 127 3.5 3.6"},D:{"26":0.01743,"33":0.00249,"38":0.00996,"43":0.00249,"44":0.00498,"50":0.00498,"52":0.00249,"59":0.00747,"64":0.05976,"67":0.01743,"69":0.01494,"71":0.00249,"72":0.00498,"73":0.00249,"78":0.00498,"79":0.04731,"80":0.01743,"81":0.00249,"83":0.1743,"84":0.01494,"86":0.00249,"87":0.00498,"88":0.00996,"89":0.03984,"90":0.00996,"91":0.00498,"92":0.05727,"93":0.00747,"94":0.00747,"95":0.00249,"96":0.00249,"98":0.00249,"100":0.00498,"101":0.00249,"103":0.03486,"104":0.13944,"105":0.03984,"106":0.01992,"107":0.00249,"108":0.00996,"109":0.73953,"110":0.00498,"111":0.00996,"112":0.00249,"113":0.00249,"114":0.00747,"115":0.00498,"116":0.0498,"117":0.01494,"118":0.00249,"119":0.05229,"120":0.14193,"121":0.61503,"122":6.21504,"123":1.21014,"124":0.02241,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 34 35 36 37 39 40 41 42 45 46 47 48 49 51 53 54 55 56 57 58 60 61 62 63 65 66 68 70 74 75 76 77 85 97 99 102 125 126"},F:{"36":0.00249,"40":0.00249,"46":0.00498,"62":0.00498,"65":0.00498,"78":0.00249,"79":0.00249,"84":0.01245,"95":0.03984,"97":0.00249,"101":0.00249,"102":0.00249,"105":0.00249,"106":0.02739,"107":0.93624,"108":0.53286,"109":0.00249,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 66 67 68 69 70 71 72 73 74 75 76 77 80 81 82 83 85 86 87 88 89 90 91 92 93 94 96 98 99 100 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.12948,"13":0.00747,"14":0.00996,"15":0.00249,"16":0.00747,"17":0.02739,"18":0.05229,"84":0.01494,"85":0.00249,"89":0.01743,"90":0.00747,"92":0.0747,"99":0.00249,"100":0.00747,"109":0.04731,"111":0.00498,"114":0.01494,"115":0.00747,"117":0.01245,"118":0.00747,"119":0.02241,"120":0.09462,"121":0.12699,"122":2.10156,"123":0.23157,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 101 102 103 104 105 106 107 108 110 112 113 116"},E:{"14":0.00249,"15":0.00249,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.4 16.0 16.3 17.0 17.5","5.1":0.04482,"11.1":0.00249,"13.1":0.13944,"14.1":0.0249,"15.5":0.00747,"15.6":0.00747,"16.1":0.02241,"16.2":0.02241,"16.4":0.00747,"16.5":0.01245,"16.6":0.09462,"17.1":0.00498,"17.2":0.00747,"17.3":0.01743,"17.4":0.01743},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0004,"5.0-5.1":0.0002,"6.0-6.1":0.00121,"7.0-7.1":0.00141,"8.1-8.4":0.0004,"9.0-9.2":0.00081,"9.3":0.00503,"10.0-10.2":0.00081,"10.3":0.00845,"11.0-11.2":0.00604,"11.3-11.4":0.00201,"12.0-12.1":0.00181,"12.2-12.5":0.03482,"13.0-13.1":0.0006,"13.2":0.00604,"13.3":0.00181,"13.4-13.7":0.00684,"14.0-14.4":0.01308,"14.5-14.8":0.02053,"15.0-15.1":0.00886,"15.2-15.3":0.01047,"15.4":0.01228,"15.5":0.0157,"15.6-15.8":0.13143,"16.0":0.032,"16.1":0.06622,"16.2":0.032,"16.3":0.05696,"16.4":0.01208,"16.5":0.02556,"16.6-16.7":0.19362,"17.0":0.02516,"17.1":0.05032,"17.2":0.08111,"17.3":0.99829,"17.4":0.14652,"17.5":0},P:{"4":0.15143,"20":0.0101,"21":0.04038,"22":0.0101,"23":0.42401,"24":0.20191,_:"5.0-5.4 8.2 10.1 12.0 14.0 15.0","6.2-6.4":0.02019,"7.2-7.4":0.14134,"9.2":0.03029,"11.1-11.2":0.03029,"13.0":0.04038,"16.0":0.0101,"17.0":0.0101,"18.0":0.0101,"19.0":0.10095},I:{"0":0.05235,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":6.27838,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00498,_:"6 7 8 9 10 5.5"},S:{"2.5":0.39803,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":68.43092},R:{_:"0"},M:{"0":0.02253},Q:{_:"14.9"},O:{"0":0.15771},H:{"0":3.77}}; +module.exports={C:{"8":0.00214,"43":0.00214,"50":0.00428,"53":0.00214,"56":0.00214,"72":0.00428,"88":0.10496,"95":0.00857,"105":0.00428,"106":0.00428,"107":0.00214,"110":0.00428,"112":0.00214,"113":0.00214,"115":0.19492,"117":0.01928,"119":0.01071,"120":0.00643,"122":0.01499,"123":0.06212,"124":1.32804,"125":0.50123,"126":0.00214,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 52 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 108 109 111 114 116 118 121 127 128 3.5 3.6"},D:{"11":0.00214,"26":0.01071,"29":0.01285,"43":0.00428,"55":0.00643,"56":0.01071,"58":0.00214,"59":0.00214,"63":0.00428,"64":0.03427,"65":0.00428,"67":0.01285,"68":0.00214,"70":0.00428,"71":0.00428,"72":0.00214,"74":0.00428,"77":0.00428,"79":0.02999,"80":0.04498,"81":0.00643,"83":0.08996,"84":0.00214,"86":0.00428,"87":0.00428,"88":0.00857,"89":0.05141,"90":0.00214,"92":0.04927,"93":0.00857,"94":0.00428,"96":0.00643,"98":0.00214,"99":0.00428,"102":0.0257,"103":0.09211,"104":0.04284,"105":0.0407,"106":0.01928,"107":0.00214,"108":0.00428,"109":0.63617,"110":0.00214,"111":0.01071,"113":0.01714,"114":0.01071,"115":0.00857,"116":0.05355,"117":0.00214,"119":0.11995,"120":0.08354,"121":0.07283,"122":0.27632,"123":4.55603,"124":2.3969,"125":0.03427,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 57 60 61 62 66 69 73 75 76 78 85 91 95 97 100 101 112 118 126 127"},F:{"36":0.00214,"79":0.00214,"92":0.0257,"95":0.01285,"101":0.00857,"102":0.00214,"105":0.00214,"106":0.00214,"107":0.00643,"108":0.29131,"109":0.15851,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.07283,"13":0.00214,"14":0.00428,"15":0.00214,"16":0.00428,"17":0.01928,"18":0.05141,"85":0.00643,"89":0.00428,"90":0.01928,"92":0.06854,"100":0.00643,"106":0.00428,"108":0.00214,"109":0.02356,"114":0.00214,"115":0.00214,"116":0.00214,"117":0.00643,"118":0.0257,"119":0.00857,"120":0.02142,"121":0.02142,"122":0.1478,"123":1.91495,"124":0.81396,_:"79 80 81 83 84 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 107 110 111 112 113"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 16.1 16.3 16.4 17.0 17.5","5.1":0.07711,"13.1":0.14566,"14.1":0.0407,"15.2-15.3":0.00214,"15.5":0.00214,"15.6":0.00214,"16.0":0.11353,"16.2":0.00428,"16.5":0.00214,"16.6":0.23134,"17.1":0.02142,"17.2":0.00428,"17.3":0.00214,"17.4":0.01928},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00056,"5.0-5.1":0.00056,"6.0-6.1":0.00139,"7.0-7.1":0.00223,"8.1-8.4":0.00056,"9.0-9.2":0.00139,"9.3":0.00697,"10.0-10.2":0.00139,"10.3":0.01116,"11.0-11.2":0.00948,"11.3-11.4":0.00279,"12.0-12.1":0.00195,"12.2-12.5":0.04547,"13.0-13.1":0.00084,"13.2":0.00921,"13.3":0.00223,"13.4-13.7":0.00865,"14.0-14.4":0.01702,"14.5-14.8":0.02594,"15.0-15.1":0.012,"15.2-15.3":0.01367,"15.4":0.01562,"15.5":0.01981,"15.6-15.8":0.17295,"16.0":0.04045,"16.1":0.08425,"16.2":0.04045,"16.3":0.07141,"16.4":0.01478,"16.5":0.03096,"16.6-16.7":0.24465,"17.0":0.02929,"17.1":0.05412,"17.2":0.07197,"17.3":0.525,"17.4":1.18502,"17.5":0.01088},P:{"4":0.19395,"21":0.07146,"22":0.01021,"23":0.20416,"24":0.23479,_:"20 5.0-5.4 8.2 10.1 12.0 13.0 14.0 15.0","6.2-6.4":0.02042,"7.2-7.4":0.11229,"9.2":0.03062,"11.1-11.2":0.02042,"16.0":0.01021,"17.0":0.02042,"18.0":0.01021,"19.0":0.1327},I:{"0":0.01565,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"10":0.00214,"11":0.03213,_:"6 7 8 9 5.5"},K:{"0":7.93897,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.13359,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.20431},H:{"0":2.3},L:{"0":69.38543},R:{_:"0"},M:{"0":0.01572}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js index 4ca8fda1b3da69..703b67cf6dc08e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BJ.js @@ -1 +1 @@ -module.exports={C:{"43":0.00198,"50":0.00198,"56":0.00198,"60":0.00198,"62":0.00198,"65":0.00198,"67":0.00198,"71":0.00198,"72":0.00198,"75":0.00198,"101":0.00198,"102":0.00395,"103":0.00198,"104":0.00198,"106":0.00593,"108":0.00198,"109":0.0079,"110":0.00198,"111":0.00198,"112":0.00593,"113":0.00198,"115":0.12838,"117":0.00198,"118":0.00593,"119":0.00988,"120":0.00198,"121":0.00395,"122":0.02173,"123":0.45623,"124":0.17578,"125":0.00395,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 52 53 54 55 57 58 59 61 63 64 66 68 69 70 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 105 107 114 116 126 127 3.5 3.6"},D:{"11":0.00198,"33":0.04148,"36":0.00395,"41":0.00198,"42":0.00395,"43":0.01185,"44":0.00198,"46":0.0079,"50":0.00198,"51":0.00198,"57":0.00395,"58":0.00395,"59":0.00198,"62":0.00593,"65":0.00198,"66":0.00198,"67":0.0079,"68":0.00593,"69":0.00198,"70":0.00395,"72":0.00988,"73":0.00198,"74":0.01975,"75":0.00395,"76":0.00198,"77":0.00198,"78":0.00988,"79":0.0158,"80":0.00395,"81":0.00395,"83":0.00198,"84":0.00198,"85":0.01185,"86":0.00593,"87":0.02173,"88":0.0316,"90":0.00198,"91":0.00988,"92":0.00988,"93":0.0079,"94":0.0316,"95":0.01185,"96":0.00198,"97":0.00593,"98":0.00198,"99":0.00593,"100":0.00198,"102":0.03555,"103":0.03753,"104":0.00593,"105":0.04543,"106":0.04345,"107":0.00198,"108":0.04543,"109":1.08823,"110":0.0553,"111":0.31798,"112":0.00198,"113":0.00988,"114":0.01185,"115":0.00593,"116":0.01778,"117":0.0079,"118":0.0158,"119":0.05728,"120":0.12838,"121":0.38908,"122":4.38253,"123":1.264,"124":0.00198,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 37 38 39 40 45 47 48 49 52 53 54 55 56 60 61 63 64 71 89 101 125 126"},F:{"42":0.00198,"45":0.00198,"57":0.00198,"79":0.0079,"82":0.00395,"95":0.02173,"105":0.00198,"106":0.00593,"107":0.36538,"108":0.19553,"109":0.00198,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00395,"13":0.00198,"17":0.00593,"18":0.00593,"84":0.00198,"89":0.00395,"90":0.00988,"91":0.00198,"92":0.02568,"98":0.03753,"100":0.00395,"107":0.00988,"109":0.05333,"110":0.01185,"112":0.0158,"114":0.00988,"117":0.01778,"118":0.0158,"119":0.02765,"120":0.0237,"121":0.1027,"122":1.37263,"123":0.09283,_:"14 15 16 79 80 81 83 85 86 87 88 93 94 95 96 97 99 101 102 103 104 105 106 108 111 113 115 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00198,"12.1":0.00198,"13.1":0.00198,"14.1":0.00395,"15.1":0.00395,"15.2-15.3":0.00395,"15.4":0.00198,"15.5":0.00395,"15.6":0.01975,"16.0":0.00198,"16.1":0.00593,"16.2":0.01383,"16.3":0.01383,"16.4":0.0158,"16.5":0.0158,"16.6":0.1185,"17.0":0.01975,"17.1":0.02963,"17.2":0.06123,"17.3":0.16788,"17.4":0.04543},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00113,"5.0-5.1":0.00057,"6.0-6.1":0.00339,"7.0-7.1":0.00396,"8.1-8.4":0.00113,"9.0-9.2":0.00226,"9.3":0.01414,"10.0-10.2":0.00226,"10.3":0.02376,"11.0-11.2":0.01697,"11.3-11.4":0.00566,"12.0-12.1":0.00509,"12.2-12.5":0.09788,"13.0-13.1":0.0017,"13.2":0.01697,"13.3":0.00509,"13.4-13.7":0.01924,"14.0-14.4":0.03677,"14.5-14.8":0.05771,"15.0-15.1":0.02489,"15.2-15.3":0.02942,"15.4":0.03451,"15.5":0.04413,"15.6-15.8":0.36944,"16.0":0.08996,"16.1":0.18614,"16.2":0.08996,"16.3":0.16011,"16.4":0.03395,"16.5":0.07185,"16.6-16.7":0.54426,"17.0":0.07072,"17.1":0.14144,"17.2":0.228,"17.3":2.80618,"17.4":0.41188,"17.5":0},P:{"4":0.17718,"21":0.04169,"22":0.01042,"23":0.15633,"24":0.14591,_:"20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 13.0 14.0 16.0","11.1-11.2":0.01042,"15.0":0.05211,"17.0":0.08338,"18.0":0.0938,"19.0":0.03127},I:{"0":0.01598,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":1.8597,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00263,"11":0.00527,_:"6 7 8 10 5.5"},S:{"2.5":0.11235,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":75.6185},R:{_:"0"},M:{"0":0.04815},Q:{"14.9":0.00803},O:{"0":0.21668},H:{"0":3.18}}; +module.exports={C:{"56":0.00175,"60":0.00175,"70":0.00175,"72":0.0035,"101":0.00175,"102":0.0035,"103":0.00175,"104":0.00175,"111":0.0035,"112":0.0035,"115":0.0945,"117":0.00175,"118":0.00525,"119":0.00175,"120":0.00175,"121":0.00175,"122":0.00875,"123":0.0315,"124":0.3815,"125":0.224,"126":0.0035,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 105 106 107 108 109 110 113 114 116 127 128 3.5 3.6"},D:{"11":0.0035,"26":0.0035,"28":0.00175,"29":0.00175,"36":0.014,"38":0.0035,"39":0.00175,"43":0.0035,"44":0.00175,"47":0.00525,"50":0.0035,"51":0.0035,"55":0.00175,"58":0.00175,"59":0.0035,"63":0.00175,"64":0.00525,"65":0.014,"66":0.00175,"67":0.0035,"68":0.00525,"69":0.00175,"70":0.00875,"71":0.00175,"72":0.00175,"73":0.00175,"74":0.056,"75":0.00175,"76":0.00525,"77":0.0035,"78":0.01575,"79":0.007,"80":0.00875,"81":0.00175,"83":0.0035,"85":0.00175,"86":0.0105,"87":0.01575,"88":0.01225,"89":0.00175,"90":0.00175,"92":0.00175,"93":0.00175,"94":0.0035,"95":0.00525,"97":0.00175,"99":0.00175,"100":0.0035,"102":0.00525,"103":0.09275,"104":0.0035,"105":0.014,"106":0.07175,"107":0.0035,"108":0.02625,"109":0.9135,"110":0.00525,"111":0.28875,"112":0.0035,"113":0.00525,"114":0.0105,"115":0.0035,"116":0.014,"117":0.0035,"118":0.01225,"119":0.03325,"120":0.084,"121":0.10675,"122":0.245,"123":4.368,"124":1.81125,"125":0.00875,"126":0.00175,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 30 31 32 33 34 35 37 40 41 42 45 46 48 49 52 53 54 56 57 60 61 62 84 91 96 98 101 127"},F:{"37":0.00175,"42":0.00175,"45":0.00175,"79":0.063,"82":0.01925,"85":0.00175,"95":0.021,"102":0.00175,"106":0.00525,"107":0.042,"108":0.315,"109":0.126,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00175,"13":0.00175,"14":0.00175,"15":0.00175,"17":0.00175,"18":0.01575,"84":0.0035,"85":0.00175,"89":0.00525,"90":0.0035,"92":0.01575,"98":0.02975,"100":0.00525,"103":0.00175,"107":0.007,"109":0.01925,"110":0.00875,"113":0.00175,"114":0.0105,"115":0.00175,"116":0.00175,"117":0.00175,"118":0.00175,"119":0.00525,"120":0.02275,"121":0.0105,"122":0.07175,"123":0.9555,"124":0.48475,_:"16 79 80 81 83 86 87 88 91 93 94 95 96 97 99 101 102 104 105 106 108 111 112"},E:{"14":0.00175,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.4 15.5 16.0","5.1":0.00175,"13.1":0.00175,"14.1":0.00175,"15.1":0.00525,"15.2-15.3":0.00525,"15.6":0.021,"16.1":0.00525,"16.2":0.0175,"16.3":0.00875,"16.4":0.007,"16.5":0.007,"16.6":0.1015,"17.0":0.007,"17.1":0.02275,"17.2":0.02275,"17.3":0.056,"17.4":0.23975,"17.5":0.00175},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00129,"5.0-5.1":0.00129,"6.0-6.1":0.00323,"7.0-7.1":0.00517,"8.1-8.4":0.00129,"9.0-9.2":0.00323,"9.3":0.01615,"10.0-10.2":0.00323,"10.3":0.02584,"11.0-11.2":0.02196,"11.3-11.4":0.00646,"12.0-12.1":0.00452,"12.2-12.5":0.10529,"13.0-13.1":0.00194,"13.2":0.02132,"13.3":0.00517,"13.4-13.7":0.02003,"14.0-14.4":0.0394,"14.5-14.8":0.06008,"15.0-15.1":0.02778,"15.2-15.3":0.03165,"15.4":0.03617,"15.5":0.04586,"15.6-15.8":0.4005,"16.0":0.09367,"16.1":0.19508,"16.2":0.09367,"16.3":0.16537,"16.4":0.03424,"16.5":0.0717,"16.6-16.7":0.56652,"17.0":0.06783,"17.1":0.12532,"17.2":0.16666,"17.3":1.21572,"17.4":2.7441,"17.5":0.02519},P:{"4":0.19383,"21":0.04081,"22":0.0102,"23":0.09181,"24":0.41827,_:"20 5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 16.0","7.2-7.4":0.0102,"9.2":0.0102,"15.0":0.0306,"17.0":0.10202,"18.0":0.0102,"19.0":0.0102},I:{"0":0.00822,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.00525,_:"6 7 8 9 10 5.5"},K:{"0":1.9225,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.07425,_:"3.0-3.1"},Q:{"14.9":0.00825},O:{"0":0.2475},H:{"0":2.78},L:{"0":75.18325},R:{_:"0"},M:{"0":0.0495}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BM.js index 6dc1b76497f20d..78c2b7ff7add28 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BM.js @@ -1 +1 @@ -module.exports={C:{"115":0.00266,"123":0.00799,"124":0.00266,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 125 126 127 3.5 3.6"},D:{"103":0.00266,"108":0.00266,"109":0.01865,"110":0.00533,"112":0.00266,"116":0.00533,"117":0.00533,"119":0.00266,"120":0.00799,"121":0.0373,"122":0.22644,"123":0.05594,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 111 113 114 115 118 124 125 126"},F:{"91":0.00266,"107":0.00533,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"121":0.00533,"122":0.14119,"123":0.00799,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120"},E:{"5":0.00266,_:"0 4 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.01332,"14.1":0.02131,"15.1":0.05861,"15.2-15.3":0.02664,"15.4":0.09857,"15.5":0.19181,"15.6":2.15251,"16.0":0.05594,"16.1":0.3996,"16.2":0.52747,"16.3":1.09224,"16.4":0.28505,"16.5":0.50083,"16.6":4.0253,"17.0":0.21046,"17.1":0.70596,"17.2":1.68631,"17.3":11.44188,"17.4":2.19514},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01458,"5.0-5.1":0.00729,"6.0-6.1":0.04375,"7.0-7.1":0.05104,"8.1-8.4":0.01458,"9.0-9.2":0.02917,"9.3":0.1823,"10.0-10.2":0.02917,"10.3":0.30626,"11.0-11.2":0.21876,"11.3-11.4":0.07292,"12.0-12.1":0.06563,"12.2-12.5":1.26151,"13.0-13.1":0.02188,"13.2":0.21876,"13.3":0.06563,"13.4-13.7":0.24793,"14.0-14.4":0.47398,"14.5-14.8":0.74378,"15.0-15.1":0.32085,"15.2-15.3":0.37918,"15.4":0.44481,"15.5":0.56877,"15.6-15.8":4.76167,"16.0":1.15943,"16.1":2.39906,"16.2":1.15943,"16.3":2.06363,"16.4":0.43752,"16.5":0.92608,"16.6-16.7":7.01489,"17.0":0.9115,"17.1":1.823,"17.2":2.93867,"17.3":36.16824,"17.4":5.30856,"17.5":0},P:{"23":0.04035,"24":0.04035,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":0.34545},R:{_:"0"},M:{"0":0.00734},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"115":0.00265,"124":0.00794,"125":0.00265,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"103":0.00794,"108":0.00265,"109":0.01589,"112":0.00265,"116":0.00265,"117":0.0053,"119":0.0053,"120":0.00265,"121":0.01589,"122":0.03442,"123":0.2648,"124":0.08209,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 110 111 113 114 115 118 125 126 127"},F:{"107":0.0053,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"119":0.00265,"122":0.01324,"123":0.10592,"124":0.05561,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.0053,"14.1":0.01589,"15.1":0.05031,"15.2-15.3":0.02118,"15.4":0.07944,"15.5":0.18271,"15.6":2.02307,"16.0":0.05826,"16.1":0.34689,"16.2":0.43427,"16.3":1.03272,"16.4":0.25686,"16.5":0.50047,"16.6":3.6463,"17.0":0.18271,"17.1":0.50312,"17.2":0.80764,"17.3":3.59069,"17.4":11.67768,"17.5":0.05561},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01461,"5.0-5.1":0.01461,"6.0-6.1":0.03654,"7.0-7.1":0.05846,"8.1-8.4":0.01461,"9.0-9.2":0.03654,"9.3":0.18268,"10.0-10.2":0.03654,"10.3":0.29229,"11.0-11.2":0.24844,"11.3-11.4":0.07307,"12.0-12.1":0.05115,"12.2-12.5":1.19107,"13.0-13.1":0.02192,"13.2":0.24114,"13.3":0.05846,"13.4-13.7":0.22652,"14.0-14.4":0.44574,"14.5-14.8":0.67957,"15.0-15.1":0.31421,"15.2-15.3":0.35805,"15.4":0.4092,"15.5":0.51881,"15.6-15.8":4.53043,"16.0":1.05954,"16.1":2.20676,"16.2":1.05954,"16.3":1.87063,"16.4":0.38728,"16.5":0.81109,"16.6-16.7":6.40837,"17.0":0.76725,"17.1":1.41759,"17.2":1.88525,"17.3":13.75206,"17.4":31.04079,"17.5":0.28498},P:{"23":0.01103,"24":0.0772,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":0.34614},R:{_:"0"},M:{"0":0.00735}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js index ea7921430ecb3a..a16487ee43ee4a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BN.js @@ -1 +1 @@ -module.exports={C:{"3":0.00404,"28":0.00404,"36":0.00404,"38":0.00404,"39":0.00404,"40":0.00404,"52":0.00404,"56":0.00404,"68":0.00404,"78":0.01213,"88":0.00404,"104":0.01213,"110":0.03234,"113":0.00404,"115":0.36378,"117":0.00404,"119":0.01213,"120":0.05255,"121":0.02425,"122":0.02829,"123":1.3662,"124":0.43654,"125":0.00404,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 111 112 114 116 118 126 127 3.5","3.6":0.00808},D:{"30":0.00404,"32":0.00404,"33":0.00404,"37":0.00404,"38":0.14551,"39":0.00404,"40":0.00404,"41":0.00404,"42":0.00404,"43":0.00808,"44":0.01213,"45":0.00808,"46":0.00808,"47":0.01213,"49":0.59417,"51":0.01617,"55":0.02021,"62":0.06063,"63":0.00404,"65":0.01213,"68":0.01213,"70":0.00808,"73":0.01213,"75":0.00404,"79":0.17785,"80":0.00404,"81":0.02425,"83":0.00404,"84":0.00404,"85":0.00808,"86":0.00808,"87":0.02829,"88":0.00808,"89":0.00808,"91":0.02021,"92":0.03638,"93":0.00404,"94":0.00404,"95":0.04042,"96":0.00404,"97":0.00404,"98":0.06871,"99":0.03234,"102":0.00808,"103":0.21018,"105":0.00808,"106":0.04446,"107":0.04446,"108":0.00808,"109":1.70572,"110":0.03234,"111":0.01213,"112":0.07276,"113":0.00808,"114":0.01213,"115":0.02021,"116":0.21827,"117":0.02021,"118":0.01617,"119":0.12126,"120":0.28698,"121":1.16814,"122":15.19792,"123":4.56342,"124":0.02021,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 34 35 36 48 50 52 53 54 56 57 58 59 60 61 64 66 67 69 71 72 74 76 77 78 90 100 101 104 125 126"},F:{"31":0.00404,"81":0.00404,"95":0.01617,"100":0.00404,"105":0.01617,"106":0.01617,"107":1.55617,"108":0.16572,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00404},B:{"12":0.00404,"15":0.00404,"18":0.00404,"92":0.00808,"97":0.00404,"98":0.00404,"99":0.00404,"100":0.00808,"109":0.02425,"110":0.00404,"113":0.11722,"114":0.00404,"115":0.00808,"116":0.00808,"117":0.05659,"118":0.00404,"119":0.02425,"120":0.2021,"121":0.0768,"122":2.93853,"123":0.15764,_:"13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 101 102 103 104 105 106 107 108 111 112"},E:{"8":0.00404,"9":0.03234,"13":0.00404,"14":0.11722,"15":0.00808,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00404,"12.1":0.00404,"13.1":0.02829,"14.1":0.17381,"15.1":0.05255,"15.2-15.3":0.01617,"15.4":0.05659,"15.5":0.05255,"15.6":0.52546,"16.0":0.04042,"16.1":0.06063,"16.2":0.04446,"16.3":0.1253,"16.4":0.05659,"16.5":0.14955,"16.6":0.58205,"17.0":0.15764,"17.1":0.15764,"17.2":0.38803,"17.3":1.78252,"17.4":0.4042},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00319,"5.0-5.1":0.0016,"6.0-6.1":0.00958,"7.0-7.1":0.01118,"8.1-8.4":0.00319,"9.0-9.2":0.00639,"9.3":0.03992,"10.0-10.2":0.00639,"10.3":0.06706,"11.0-11.2":0.0479,"11.3-11.4":0.01597,"12.0-12.1":0.01437,"12.2-12.5":0.27624,"13.0-13.1":0.00479,"13.2":0.0479,"13.3":0.01437,"13.4-13.7":0.05429,"14.0-14.4":0.10379,"14.5-14.8":0.16287,"15.0-15.1":0.07026,"15.2-15.3":0.08303,"15.4":0.0974,"15.5":0.12455,"15.6-15.8":1.04267,"16.0":0.25388,"16.1":0.52533,"16.2":0.25388,"16.3":0.45188,"16.4":0.0958,"16.5":0.20279,"16.6-16.7":1.53607,"17.0":0.19959,"17.1":0.39919,"17.2":0.64349,"17.3":7.91985,"17.4":1.16243,"17.5":0},P:{"4":0.45533,"20":0.01059,"21":0.03177,"22":0.05294,"23":0.773,"24":0.80476,"5.0-5.4":0.05294,"6.2-6.4":0.02118,"7.2-7.4":0.04236,_:"8.2 9.2 10.1 11.1-11.2 14.0 15.0 18.0","12.0":0.01059,"13.0":0.02118,"16.0":0.01059,"17.0":0.01059,"19.0":0.03177},I:{"0":0.18394,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00044},K:{"0":4.23168,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00808,"8":0.06871,"9":0.01617,"10":0.01213,"11":0.04042,_:"6 5.5"},S:{"2.5":0.00596,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":36.12572},R:{_:"0"},M:{"0":0.11916},Q:{"14.9":0.00596},O:{"0":2.09126},H:{"0":0.07}}; +module.exports={C:{"2":0.00405,"4":0.00405,"29":0.00405,"31":0.00405,"35":0.00405,"38":0.00405,"39":0.00405,"40":0.00405,"52":0.00405,"78":0.01215,"84":0.00405,"85":0.00405,"88":0.00405,"91":0.03646,"98":0.00405,"115":0.29572,"117":0.00405,"119":0.00405,"120":0.05266,"121":0.00405,"122":0.00405,"123":0.03241,"124":1.24366,"125":0.55499,"126":0.00405,_:"3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 33 34 36 37 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 86 87 89 90 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 118 127 128 3.5","3.6":0.0081},D:{"21":0.00405,"31":0.00405,"32":0.00405,"34":0.03646,"35":0.00405,"37":0.00405,"38":0.10533,"39":0.0081,"40":0.0081,"41":0.0081,"42":0.0081,"43":0.0081,"44":0.02026,"45":0.01215,"46":0.0162,"47":0.0081,"48":0.0081,"49":0.00405,"51":0.02836,"55":0.0081,"56":0.00405,"61":0.00405,"62":0.02836,"63":0.00405,"65":0.0162,"68":0.00405,"70":0.01215,"72":0.00405,"75":0.00405,"78":0.00405,"79":0.17824,"80":0.00405,"81":0.02026,"83":0.00405,"87":0.0162,"88":0.02026,"89":0.00405,"91":0.0081,"92":0.03241,"93":0.00405,"94":0.00405,"95":0.00405,"97":0.0162,"98":0.02431,"99":0.01215,"100":0.00405,"102":0.00405,"103":0.22686,"105":0.0081,"106":0.04051,"107":0.04051,"108":0.02431,"109":1.6285,"110":0.03241,"111":0.01215,"112":0.02836,"113":0.0081,"114":0.01215,"115":0.0081,"116":0.16609,"117":0.0162,"118":0.02026,"119":0.09722,"120":0.08102,"121":0.17824,"122":0.74133,"123":15.30873,"124":5.90636,"125":0.06077,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 33 36 50 52 53 54 57 58 59 60 64 66 67 69 71 73 74 76 77 84 85 86 90 96 101 104 126 127"},F:{"28":0.00405,"30":0.00405,"31":0.00405,"32":0.00405,"36":0.00405,"95":0.02431,"96":0.00405,"105":0.00405,"107":1.48267,"108":0.29977,"109":0.19445,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00405},B:{"15":0.00405,"18":0.00405,"92":0.00405,"98":0.00405,"104":0.00405,"109":0.0081,"113":0.21875,"114":0.00405,"116":0.0162,"117":0.02836,"118":0.00405,"119":0.0081,"120":0.12963,"121":0.02026,"122":0.11343,"123":2.16323,"124":0.84261,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 105 106 107 108 110 111 112 115"},E:{"8":0.00405,"9":0.04051,"14":0.11343,"15":0.0162,_:"0 4 5 6 7 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00405,"13.1":0.04051,"14.1":0.20255,"15.1":0.04051,"15.2-15.3":0.0162,"15.4":0.04051,"15.5":0.02836,"15.6":0.46992,"16.0":0.02431,"16.1":0.06887,"16.2":0.04861,"16.3":0.14179,"16.4":0.04456,"16.5":0.06887,"16.6":0.53473,"17.0":0.12558,"17.1":0.07697,"17.2":0.25521,"17.3":0.83046,"17.4":1.8027,"17.5":0.0081},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00339,"5.0-5.1":0.00339,"6.0-6.1":0.00847,"7.0-7.1":0.01356,"8.1-8.4":0.00339,"9.0-9.2":0.00847,"9.3":0.04237,"10.0-10.2":0.00847,"10.3":0.06779,"11.0-11.2":0.05763,"11.3-11.4":0.01695,"12.0-12.1":0.01186,"12.2-12.5":0.27626,"13.0-13.1":0.00508,"13.2":0.05593,"13.3":0.01356,"13.4-13.7":0.05254,"14.0-14.4":0.10339,"14.5-14.8":0.15762,"15.0-15.1":0.07288,"15.2-15.3":0.08305,"15.4":0.09491,"15.5":0.12034,"15.6-15.8":1.05082,"16.0":0.24576,"16.1":0.51185,"16.2":0.24576,"16.3":0.43389,"16.4":0.08983,"16.5":0.18813,"16.6-16.7":1.4864,"17.0":0.17796,"17.1":0.3288,"17.2":0.43728,"17.3":3.18975,"17.4":7.19981,"17.5":0.0661},P:{"4":0.54763,"20":0.01074,"21":0.06443,"22":0.06443,"23":0.06443,"24":1.53551,"5.0-5.4":0.05369,"6.2-6.4":0.02148,"7.2-7.4":0.05369,_:"8.2 9.2 10.1 11.1-11.2 14.0 15.0 16.0 18.0","12.0":0.01074,"13.0":0.01074,"17.0":0.02148,"19.0":0.02148},I:{"0":0.20736,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00012,"4.4":0,"4.4.3-4.4.4":0.00052},A:{"6":0.00414,"7":0.00829,"8":0.07458,"9":0.01657,"10":0.01657,"11":0.058,_:"5.5"},K:{"0":2.61731,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00595,_:"3.0-3.1"},Q:{"14.9":0.00595},O:{"0":1.4694},H:{"0":0.03},L:{"0":36.77366},R:{_:"0"},M:{"0":0.17847}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js index 38da06019e3740..ba1a49a16fabca 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BO.js @@ -1 +1 @@ -module.exports={C:{"31":0.00336,"38":0.01007,"52":0.08731,"58":0.01679,"60":0.00336,"66":0.00336,"71":0.00336,"78":0.02686,"88":0.00672,"93":0.00336,"100":0.00336,"102":0.00336,"113":0.00336,"115":0.36266,"117":0.00336,"119":0.00336,"120":0.00672,"121":0.01679,"122":0.02351,"123":0.84957,"124":0.33916,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 61 62 63 64 65 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 94 95 96 97 98 99 101 103 104 105 106 107 108 109 110 111 112 114 116 118 125 126 127 3.5 3.6"},D:{"34":0.00336,"37":0.00336,"38":0.01007,"39":0.00336,"40":0.00336,"43":0.00336,"44":0.00336,"45":0.00336,"46":0.00336,"47":0.00336,"49":0.01343,"51":0.00336,"55":0.00336,"61":0.00336,"62":0.00336,"63":0.00336,"64":0.00336,"65":0.01007,"66":0.00336,"67":0.00672,"68":0.00336,"69":0.01007,"70":0.01343,"72":0.00336,"73":0.00672,"74":0.00336,"75":0.01007,"77":0.00336,"78":0.00336,"79":0.0638,"80":0.00336,"81":0.00672,"83":0.01679,"84":0.00336,"85":0.00672,"86":0.01007,"87":0.07052,"88":0.01679,"89":0.00672,"90":0.01007,"91":0.40632,"92":0.00672,"93":0.00336,"94":0.01007,"95":0.00336,"96":0.01007,"97":0.01007,"98":0.00336,"99":0.01007,"100":0.01679,"101":0.01007,"102":0.01007,"103":0.05709,"104":0.01007,"105":0.02351,"106":0.01007,"107":0.02015,"108":0.03694,"109":3.06921,"110":0.05037,"111":0.01007,"112":0.01343,"113":0.01343,"114":0.05709,"115":0.01007,"116":0.1276,"117":0.01343,"118":0.03358,"119":0.09067,"120":0.27536,"121":1.01076,"122":13.13985,"123":4.0296,"124":0.00336,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 41 42 48 50 52 53 54 56 57 58 59 60 71 76 125 126"},F:{"28":0.03694,"29":0.00336,"79":0.00672,"95":0.08731,"102":0.00672,"104":0.00336,"105":0.00336,"106":0.02015,"107":1.79989,"108":0.28207,"109":0.00336,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00672,"89":0.00336,"92":0.01343,"100":0.00672,"104":0.00336,"109":0.03358,"114":0.00672,"115":0.00336,"116":0.00336,"117":0.00336,"118":0.00672,"119":0.01007,"120":0.11753,"121":0.05373,"122":2.0786,"123":0.15111,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 105 106 107 108 110 111 112 113"},E:{"9":0.00672,"14":0.00672,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00336,"13.1":0.01343,"14.1":0.02351,"15.1":0.00336,"15.2-15.3":0.00336,"15.4":0.00672,"15.5":0.00336,"15.6":0.04365,"16.0":0.00672,"16.1":0.01007,"16.2":0.00672,"16.3":0.00672,"16.4":0.00336,"16.5":0.00672,"16.6":0.12089,"17.0":0.01007,"17.1":0.04365,"17.2":0.1679,"17.3":0.12089,"17.4":0.0403},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0.0003,"6.0-6.1":0.00183,"7.0-7.1":0.00213,"8.1-8.4":0.00061,"9.0-9.2":0.00122,"9.3":0.00762,"10.0-10.2":0.00122,"10.3":0.0128,"11.0-11.2":0.00915,"11.3-11.4":0.00305,"12.0-12.1":0.00274,"12.2-12.5":0.05274,"13.0-13.1":0.00091,"13.2":0.00915,"13.3":0.00274,"13.4-13.7":0.01037,"14.0-14.4":0.01982,"14.5-14.8":0.0311,"15.0-15.1":0.01341,"15.2-15.3":0.01585,"15.4":0.0186,"15.5":0.02378,"15.6-15.8":0.19908,"16.0":0.04847,"16.1":0.1003,"16.2":0.04847,"16.3":0.08628,"16.4":0.01829,"16.5":0.03872,"16.6-16.7":0.29328,"17.0":0.03811,"17.1":0.07622,"17.2":0.12286,"17.3":1.51214,"17.4":0.22194,"17.5":0},P:{"4":0.23554,"20":0.03212,"21":0.07494,"22":0.08565,"23":1.15627,"24":0.76014,"5.0-5.4":0.04282,"6.2-6.4":0.01071,"7.2-7.4":0.29977,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.02141,"13.0":0.04282,"14.0":0.01071,"15.0":0.01071,"16.0":0.03212,"17.0":0.10706,"18.0":0.02141,"19.0":0.05353},I:{"0":0.11245,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00027},K:{"0":0.53136,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01679,"9":0.00336,"10":0.00336,"11":0.02686,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":62.10988},R:{_:"0"},M:{"0":0.17933},Q:{"14.9":0.00664},O:{"0":0.19926},H:{"0":0}}; +module.exports={C:{"38":0.02209,"52":0.11411,"58":0.02209,"60":0.00368,"66":0.00368,"68":0.00368,"72":0.00368,"78":0.02209,"88":0.00368,"100":0.00368,"103":0.00368,"110":0.00368,"113":0.00368,"114":0.00368,"115":0.42332,"119":0.02577,"120":0.00368,"121":0.00736,"122":0.00736,"123":0.04417,"124":0.91289,"125":0.49325,"126":0.00368,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 101 102 104 105 106 107 108 109 111 112 116 117 118 127 128 3.5","3.6":0.00368},D:{"38":0.00736,"39":0.00368,"42":0.00368,"43":0.00368,"44":0.00368,"45":0.00368,"46":0.00368,"47":0.00368,"49":0.01104,"51":0.00736,"62":0.00368,"63":0.00368,"65":0.00368,"67":0.00736,"68":0.00368,"69":0.02209,"70":0.02945,"71":0.00368,"72":0.00368,"73":0.00736,"74":0.00368,"75":0.00736,"77":0.00368,"78":0.00368,"79":0.05522,"80":0.00368,"81":0.00736,"83":0.01472,"84":0.00368,"85":0.00368,"86":0.01104,"87":0.06994,"88":0.02209,"89":0.00736,"90":0.00736,"91":0.46013,"92":0.01104,"93":0.00368,"94":0.01104,"95":0.00736,"96":0.00736,"97":0.00736,"98":0.01104,"99":0.01104,"100":0.01104,"101":0.01104,"102":0.01841,"103":0.05522,"104":0.01104,"105":0.03313,"106":0.01104,"107":0.01104,"108":0.02577,"109":3.24296,"110":0.04417,"111":0.01104,"112":0.01104,"113":0.01104,"114":0.04049,"115":0.01472,"116":0.16933,"117":0.01104,"118":0.04049,"119":0.0773,"120":0.2135,"121":0.50062,"122":0.55215,"123":13.79271,"124":5.72027,"125":0.06626,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 48 50 52 53 54 55 56 57 58 59 60 61 64 66 76 126 127"},F:{"28":0.04049,"79":0.00368,"95":0.08834,"102":0.00368,"104":0.00368,"106":0.00368,"107":1.57915,"108":0.58896,"109":0.20982,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00368,"90":0.00368,"92":0.01472,"100":0.00368,"109":0.05153,"113":0.00368,"114":0.01841,"115":0.00368,"118":0.00368,"119":0.00736,"120":0.12147,"121":0.01472,"122":0.12884,"123":1.77424,"124":0.80982,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 116 117"},E:{"9":0.00736,"14":0.00736,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00368,"13.1":0.01472,"14.1":0.02577,"15.1":0.00736,"15.2-15.3":0.00368,"15.4":0.00368,"15.5":0.00368,"15.6":0.03313,"16.0":0.00368,"16.1":0.00368,"16.2":0.01104,"16.3":0.00736,"16.4":0.00368,"16.5":0.02209,"16.6":0.06994,"17.0":0.00736,"17.1":0.03313,"17.2":0.16933,"17.3":0.04417,"17.4":0.24663},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00059,"5.0-5.1":0.00059,"6.0-6.1":0.00148,"7.0-7.1":0.00236,"8.1-8.4":0.00059,"9.0-9.2":0.00148,"9.3":0.00738,"10.0-10.2":0.00148,"10.3":0.0118,"11.0-11.2":0.01003,"11.3-11.4":0.00295,"12.0-12.1":0.00207,"12.2-12.5":0.0481,"13.0-13.1":0.00089,"13.2":0.00974,"13.3":0.00236,"13.4-13.7":0.00915,"14.0-14.4":0.018,"14.5-14.8":0.02744,"15.0-15.1":0.01269,"15.2-15.3":0.01446,"15.4":0.01653,"15.5":0.02095,"15.6-15.8":0.18296,"16.0":0.04279,"16.1":0.08912,"16.2":0.04279,"16.3":0.07554,"16.4":0.01564,"16.5":0.03276,"16.6-16.7":0.2588,"17.0":0.03099,"17.1":0.05725,"17.2":0.07614,"17.3":0.55537,"17.4":1.25357,"17.5":0.01151},P:{"4":0.20639,"20":0.04128,"21":0.08256,"22":0.15479,"23":0.25799,"24":1.71306,"5.0-5.4":0.02064,"6.2-6.4":0.02064,"7.2-7.4":0.31991,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.02064,"13.0":0.02064,"14.0":0.02064,"15.0":0.01032,"16.0":0.02064,"17.0":0.07224,"18.0":0.02064,"19.0":0.04128},I:{"0":0.10698,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"8":0.01841,"9":0.00368,"10":0.00368,"11":0.02577,_:"6 7 5.5"},K:{"0":0.62558,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01896},O:{"0":0.15798},H:{"0":0},L:{"0":58.18881},R:{_:"0"},M:{"0":0.15166}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js index 2ead279d627939..f59eb948d5a8df 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BR.js @@ -1 +1 @@ -module.exports={C:{"3":0.00434,"7":0.01301,"42":0.00867,"50":0.02169,"52":0.03036,"54":0.03036,"59":0.00867,"75":0.00434,"78":0.02602,"81":0.00434,"88":0.00867,"89":0.00434,"90":0.00434,"91":0.01301,"102":0.00867,"103":0.00867,"104":0.00434,"105":0.00434,"106":0.00434,"107":0.00434,"108":0.00434,"109":0.00434,"110":0.00434,"111":0.00434,"112":0.00434,"113":0.00434,"114":0.00434,"115":0.21251,"116":0.00434,"117":0.01735,"118":0.00434,"119":0.00867,"120":0.00434,"121":0.02169,"122":0.03036,"123":0.8327,"124":0.36865,"125":0.00434,_:"2 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 82 83 84 85 86 87 92 93 94 95 96 97 98 99 100 101 126 127 3.5 3.6"},D:{"38":0.00434,"41":0.00434,"47":0.01301,"49":0.00434,"51":0.00434,"55":0.03036,"57":0.02602,"60":0.07807,"63":0.00434,"65":0.00434,"66":0.04771,"68":0.00867,"69":0.00434,"70":0.00867,"71":0.00867,"72":0.00867,"73":0.00434,"74":0.00867,"75":0.02169,"76":0.00867,"77":0.02602,"78":0.01301,"79":0.04337,"80":0.01301,"81":0.01735,"83":0.00867,"84":0.00867,"85":0.01301,"86":0.02169,"87":0.03903,"88":0.01735,"89":0.01301,"90":0.01301,"91":0.56815,"92":0.01301,"93":0.13445,"94":0.00867,"95":0.00434,"96":0.00867,"97":0.00434,"98":0.00867,"99":0.00867,"100":0.01301,"101":0.00867,"102":0.01735,"103":0.05204,"104":0.02169,"105":0.02169,"106":0.02602,"107":0.05204,"108":0.05204,"109":3.54767,"110":0.03036,"111":0.0347,"112":0.03903,"113":0.01735,"114":0.04771,"115":0.02169,"116":0.11276,"117":0.04337,"118":0.03903,"119":0.13011,"120":0.28624,"121":0.99317,"122":18.55369,"123":5.46896,"124":0.01735,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 52 53 54 56 58 59 61 62 64 67 125 126"},F:{"36":0.00434,"94":0.00434,"95":0.04337,"102":0.00434,"105":0.00434,"106":0.02602,"107":3.35684,"108":0.2342,"109":0.00434,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01301,"13":0.02169,"14":0.02602,"15":0.04337,"17":0.00434,"18":0.00434,"84":0.00434,"92":0.01735,"106":0.00434,"107":0.00434,"108":0.00867,"109":0.04771,"110":0.00434,"111":0.00434,"114":0.00434,"115":0.00434,"116":0.00434,"117":0.00434,"118":0.00434,"119":0.01301,"120":0.03036,"121":0.11276,"122":3.74717,"123":0.29058,_:"16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 112 113"},E:{"4":0.00434,"14":0.00434,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 12.1 15.2-15.3 17.5","5.1":0.0347,"9.1":0.04337,"11.1":0.01301,"13.1":0.01301,"14.1":0.02169,"15.1":0.00434,"15.4":0.00434,"15.5":0.00434,"15.6":0.04771,"16.0":0.00434,"16.1":0.01301,"16.2":0.00867,"16.3":0.02169,"16.4":0.00867,"16.5":0.01735,"16.6":0.06072,"17.0":0.01301,"17.1":0.03036,"17.2":0.07807,"17.3":0.19083,"17.4":0.0824},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00148,"5.0-5.1":0.00074,"6.0-6.1":0.00444,"7.0-7.1":0.00519,"8.1-8.4":0.00148,"9.0-9.2":0.00296,"9.3":0.01852,"10.0-10.2":0.00296,"10.3":0.03111,"11.0-11.2":0.02222,"11.3-11.4":0.00741,"12.0-12.1":0.00667,"12.2-12.5":0.12814,"13.0-13.1":0.00222,"13.2":0.02222,"13.3":0.00667,"13.4-13.7":0.02518,"14.0-14.4":0.04815,"14.5-14.8":0.07555,"15.0-15.1":0.03259,"15.2-15.3":0.03852,"15.4":0.04518,"15.5":0.05778,"15.6-15.8":0.48369,"16.0":0.11777,"16.1":0.2437,"16.2":0.11777,"16.3":0.20962,"16.4":0.04444,"16.5":0.09407,"16.6-16.7":0.71257,"17.0":0.09259,"17.1":0.18518,"17.2":0.29851,"17.3":3.67397,"17.4":0.53924,"17.5":0},P:{"4":0.06302,"20":0.02101,"21":0.04201,"22":0.04201,"23":1.05027,"24":0.95575,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 18.0","7.2-7.4":0.12603,"11.1-11.2":0.0105,"13.0":0.0105,"17.0":0.04201,"19.0":0.02101},I:{"0":0.03384,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.31713,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00926,"9":0.02777,"10":0.00463,"11":0.43975,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":46.95695},R:{_:"0"},M:{"0":0.11326},Q:{_:"14.9"},O:{"0":0.05663},H:{"0":0}}; +module.exports={C:{"11":0.00472,"52":0.00472,"59":0.02358,"78":0.01415,"81":0.00472,"88":0.00943,"89":0.00472,"90":0.00472,"91":0.00943,"102":0.00943,"103":0.00943,"105":0.00472,"106":0.00472,"107":0.00472,"108":0.00472,"109":0.00472,"110":0.00472,"111":0.00472,"112":0.00472,"113":0.00472,"114":0.00472,"115":0.24995,"116":0.00472,"117":0.01415,"118":0.00472,"119":0.00943,"120":0.00472,"121":0.01886,"122":0.01886,"123":0.04716,"124":0.9149,"125":0.46217,"126":0.00472,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 92 93 94 95 96 97 98 99 100 101 104 127 128 3.5 3.6"},D:{"38":0.00472,"47":0.00472,"49":0.00472,"51":0.00472,"55":0.00943,"63":0.00472,"65":0.00472,"66":0.0896,"70":0.00472,"71":0.00943,"74":0.00472,"75":0.01886,"76":0.00472,"77":0.01886,"78":0.00472,"79":0.03773,"80":0.00472,"81":0.01415,"83":0.00472,"84":0.00472,"85":0.00943,"86":0.00943,"87":0.03301,"88":0.00943,"89":0.00472,"90":0.00472,"91":0.52819,"92":0.01886,"93":0.10375,"94":0.00943,"95":0.00472,"96":0.00472,"97":0.00472,"98":0.00472,"99":0.00943,"100":0.00943,"101":0.00943,"102":0.01886,"103":0.06131,"104":0.02358,"105":0.02358,"106":0.02358,"107":0.03301,"108":0.03773,"109":3.53228,"110":0.02358,"111":0.03301,"112":0.03301,"113":0.01886,"114":0.06131,"115":0.01415,"116":0.08489,"117":0.0283,"118":0.03773,"119":0.09432,"120":0.16978,"121":0.21222,"122":1.12241,"123":19.16111,"124":8.20112,"125":0.03773,"126":0.00472,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 52 53 54 56 57 58 59 60 61 62 64 67 68 69 72 73 127"},F:{"36":0.00472,"95":0.04716,"102":0.00472,"106":0.00472,"107":3.22574,"108":0.49518,"109":0.25938,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.0283,"16":0.00472,"17":0.01415,"18":0.00472,"92":0.01886,"107":0.00472,"108":0.00472,"109":0.05659,"110":0.00472,"111":0.00472,"114":0.00943,"116":0.00472,"117":0.00472,"118":0.00472,"119":0.00943,"120":0.01886,"121":0.0283,"122":0.20279,"123":3.17858,"124":1.51384,_:"12 13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 112 113 115"},E:{"14":0.00472,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 12.1 15.2-15.3","5.1":0.0283,"9.1":0.00472,"11.1":0.02358,"13.1":0.00943,"14.1":0.01886,"15.1":0.00472,"15.4":0.00472,"15.5":0.00472,"15.6":0.04716,"16.0":0.00472,"16.1":0.00943,"16.2":0.00472,"16.3":0.01886,"16.4":0.00472,"16.5":0.00943,"16.6":0.06131,"17.0":0.01415,"17.1":0.02358,"17.2":0.03773,"17.3":0.08017,"17.4":0.28296,"17.5":0.00472},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00157,"5.0-5.1":0.00157,"6.0-6.1":0.00392,"7.0-7.1":0.00627,"8.1-8.4":0.00157,"9.0-9.2":0.00392,"9.3":0.0196,"10.0-10.2":0.00392,"10.3":0.03137,"11.0-11.2":0.02666,"11.3-11.4":0.00784,"12.0-12.1":0.00549,"12.2-12.5":0.12782,"13.0-13.1":0.00235,"13.2":0.02588,"13.3":0.00627,"13.4-13.7":0.02431,"14.0-14.4":0.04783,"14.5-14.8":0.07293,"15.0-15.1":0.03372,"15.2-15.3":0.03842,"15.4":0.04391,"15.5":0.05567,"15.6-15.8":0.48617,"16.0":0.1137,"16.1":0.23681,"16.2":0.1137,"16.3":0.20074,"16.4":0.04156,"16.5":0.08704,"16.6-16.7":0.6877,"17.0":0.08234,"17.1":0.15212,"17.2":0.20231,"17.3":1.47576,"17.4":3.33105,"17.5":0.03058},P:{"4":0.06192,"20":0.02064,"21":0.04128,"22":0.04128,"23":0.12385,"24":1.80612,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 18.0","6.2-6.4":0.01032,"7.2-7.4":0.12385,"11.1-11.2":0.01032,"13.0":0.01032,"17.0":0.03096,"19.0":0.02064},I:{"0":0.02631,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"8":0.01009,"9":0.00505,"11":0.2018,_:"6 7 10 5.5"},K:{"0":0.32232,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04756},H:{"0":0},L:{"0":42.31771},R:{_:"0"},M:{"0":0.20608}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js index 569c6522953be9..c4eb046a003d27 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BS.js @@ -1 +1 @@ -module.exports={C:{"48":0.01401,"95":0.01961,"114":0.0028,"115":0.03921,"117":0.0028,"120":0.0028,"122":0.01961,"123":0.21848,"124":0.08403,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 118 119 121 125 126 127 3.5 3.6"},D:{"44":0.0028,"49":0.0056,"51":0.0028,"71":0.0028,"75":0.0028,"76":0.02801,"83":0.0028,"88":0.0028,"90":0.0112,"91":0.0056,"93":0.01961,"94":0.0056,"97":0.0028,"98":0.0084,"99":0.0028,"103":0.05882,"104":0.0028,"105":0.0028,"106":0.0056,"107":0.0028,"108":0.0028,"109":0.26049,"110":0.0028,"111":0.0056,"112":0.0028,"113":0.0028,"114":0.0056,"115":0.0084,"116":0.11764,"117":0.01401,"118":0.0056,"119":0.03641,"120":0.08963,"121":0.34172,"122":3.26877,"123":0.78708,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 77 78 79 80 81 84 85 86 87 89 92 95 96 100 101 102 124 125 126"},F:{"106":0.0028,"107":0.06722,"108":0.01401,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0028,"107":0.0028,"109":0.01961,"111":0.0028,"112":0.0028,"115":0.01681,"118":0.0028,"119":0.0056,"120":0.01401,"121":0.13725,"122":1.90188,"123":0.07563,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 113 114 116 117"},E:{"9":0.0056,"13":0.0028,"14":0.01401,"15":0.0028,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.0084,"13.1":0.11764,"14.1":0.05882,"15.1":0.07843,"15.2-15.3":0.05882,"15.4":0.2885,"15.5":0.30251,"15.6":1.58817,"16.0":0.02521,"16.1":0.21008,"16.2":0.32772,"16.3":0.66664,"16.4":0.17646,"16.5":0.33892,"16.6":2.7954,"17.0":0.12885,"17.1":0.59661,"17.2":1.29686,"17.3":8.91838,"17.4":1.47613},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0127,"5.0-5.1":0.00635,"6.0-6.1":0.03811,"7.0-7.1":0.04446,"8.1-8.4":0.0127,"9.0-9.2":0.02541,"9.3":0.15879,"10.0-10.2":0.02541,"10.3":0.26677,"11.0-11.2":0.19055,"11.3-11.4":0.06352,"12.0-12.1":0.05717,"12.2-12.5":1.09884,"13.0-13.1":0.01906,"13.2":0.19055,"13.3":0.05717,"13.4-13.7":0.21596,"14.0-14.4":0.41286,"14.5-14.8":0.64787,"15.0-15.1":0.27947,"15.2-15.3":0.33029,"15.4":0.38745,"15.5":0.49543,"15.6-15.8":4.14765,"16.0":1.00992,"16.1":2.0897,"16.2":1.00992,"16.3":1.79752,"16.4":0.3811,"16.5":0.80666,"16.6-16.7":6.11031,"17.0":0.79396,"17.1":1.58792,"17.2":2.55973,"17.3":31.50432,"17.4":4.62402,"17.5":0},P:{"21":0.03134,"22":0.01045,"23":0.58509,"24":0.49106,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0 18.0","7.2-7.4":0.03134,"11.1-11.2":0.01045,"16.0":0.01045,"19.0":0.01045},I:{"0":0.02868,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.0144,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01307,"9":0.00327,"10":0.00327,"11":0.01961,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":7.41271},R:{_:"0"},M:{"0":0.04319},Q:{_:"14.9"},O:{"0":0.0072},H:{"0":0}}; +module.exports={C:{"48":0.0168,"78":0.0028,"95":0.014,"114":0.0028,"115":0.0392,"122":0.0028,"123":0.0084,"124":0.2324,"125":0.0924,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 117 118 119 120 121 126 127 128 3.5","3.6":0.0028},D:{"44":0.0028,"45":0.0028,"46":0.0028,"49":0.0028,"51":0.0056,"70":0.0028,"75":0.0028,"76":0.0336,"83":0.0028,"87":0.0028,"88":0.0028,"90":0.014,"91":0.0112,"93":0.0196,"94":0.0028,"98":0.0028,"99":0.0028,"102":0.0028,"103":0.07,"104":0.0028,"105":0.0028,"106":0.0056,"108":0.0028,"109":0.28,"110":0.0028,"111":0.0056,"114":0.0028,"115":0.0056,"116":0.1456,"117":0.0028,"118":0.0056,"119":0.0196,"120":0.0336,"121":0.056,"122":0.2716,"123":3.1248,"124":1.12,"125":0.0028,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 77 78 79 80 81 84 85 86 89 92 95 96 97 100 101 107 112 113 126 127"},F:{"95":0.0028,"107":0.098,"108":0.0336,"109":0.014,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0028,"107":0.0028,"109":0.0252,"111":0.0028,"112":0.0028,"115":0.0056,"118":0.0028,"119":0.0028,"120":0.0056,"121":0.0168,"122":0.14,"123":1.47,"124":0.5796,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 113 114 116 117"},E:{"9":0.0084,"14":0.0364,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0056,"13.1":0.1176,"14.1":0.0504,"15.1":0.056,"15.2-15.3":0.056,"15.4":0.2912,"15.5":0.2912,"15.6":1.3188,"16.0":0.0308,"16.1":0.196,"16.2":0.266,"16.3":0.686,"16.4":0.168,"16.5":0.3332,"16.6":2.4276,"17.0":0.0952,"17.1":0.4284,"17.2":0.5852,"17.3":2.786,"17.4":8.9852,"17.5":0.0448},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01276,"5.0-5.1":0.01276,"6.0-6.1":0.03191,"7.0-7.1":0.05105,"8.1-8.4":0.01276,"9.0-9.2":0.03191,"9.3":0.15953,"10.0-10.2":0.03191,"10.3":0.25525,"11.0-11.2":0.21697,"11.3-11.4":0.06381,"12.0-12.1":0.04467,"12.2-12.5":1.04016,"13.0-13.1":0.01914,"13.2":0.21058,"13.3":0.05105,"13.4-13.7":0.19782,"14.0-14.4":0.38926,"14.5-14.8":0.59347,"15.0-15.1":0.2744,"15.2-15.3":0.31269,"15.4":0.35736,"15.5":0.45308,"15.6-15.8":3.95644,"16.0":0.9253,"16.1":1.92717,"16.2":0.9253,"16.3":1.63363,"16.4":0.33821,"16.5":0.70833,"16.6-16.7":5.59645,"17.0":0.67004,"17.1":1.23798,"17.2":1.64639,"17.3":12.00972,"17.4":27.10802,"17.5":0.24887},P:{"20":0.01035,"21":0.02071,"22":0.01035,"23":0.04142,"24":0.86976,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.03106,"11.1-11.2":0.01035},I:{"0":0.02868,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"8":0.0112,"9":0.0028,"10":0.0028,"11":0.0168,_:"6 7 5.5"},K:{"0":0.0216,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0072},H:{"0":0},L:{"0":7.1648},R:{_:"0"},M:{"0":0.0432}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js index b49ffabaacb8fb..38938ab3ecf583 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BT.js @@ -1 +1 @@ -module.exports={C:{"2":0.00661,"3":0.01322,"4":0.00991,"5":0.00661,"8":0.0033,"9":0.0033,"10":0.0033,"11":0.0033,"12":0.00661,"14":0.0033,"15":0.0033,"16":0.00661,"17":0.00661,"19":0.0033,"20":0.00661,"21":0.00661,"24":0.0033,"25":0.00661,"26":0.00661,"27":0.0033,"28":0.0033,"29":0.0033,"31":0.00661,"35":0.00661,"36":0.0033,"37":0.00661,"38":0.00991,"39":0.00661,"40":0.02643,"41":0.0033,"42":0.0033,"48":0.00991,"104":0.00661,"113":0.00661,"114":0.0033,"115":0.17181,"116":0.0033,"120":0.0033,"121":0.00991,"122":0.00991,"123":0.73679,"124":0.21476,_:"6 7 13 18 22 23 30 32 33 34 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 117 118 119 125 126 127","3.5":0.00991,"3.6":0.01982},D:{"4":0.0033,"6":0.0033,"10":0.0033,"11":0.0033,"16":0.0033,"17":0.0033,"18":0.0033,"19":0.0033,"20":0.0033,"21":0.00991,"22":0.0033,"24":0.00661,"27":0.0033,"28":0.00991,"29":0.00661,"30":0.0033,"31":0.01322,"32":0.0033,"33":0.0033,"34":0.0033,"36":0.00661,"37":0.00661,"38":0.00991,"39":0.01322,"40":0.01652,"41":0.02313,"42":0.00991,"43":0.03304,"44":0.04626,"45":0.03634,"46":0.05947,"47":0.02313,"51":0.07269,"59":0.0033,"60":0.00661,"61":0.0033,"67":0.00991,"68":0.0033,"69":0.0033,"70":0.02643,"72":0.0033,"73":0.00661,"75":0.00991,"76":0.0033,"78":0.0033,"79":0.0033,"80":0.00991,"81":0.0033,"84":0.00661,"85":0.0033,"86":0.0033,"87":0.01652,"88":0.00661,"89":0.01322,"90":0.0033,"91":0.01322,"99":0.0033,"101":0.00661,"103":0.02313,"104":0.0033,"105":0.03634,"107":0.01322,"109":1.78086,"110":0.02974,"111":0.00661,"112":0.00661,"113":0.0033,"114":0.01982,"115":0.01982,"116":0.0826,"117":0.01652,"118":0.01322,"119":0.06938,"120":0.18833,"121":0.71036,"122":14.1246,"123":3.84916,"124":0.00991,_:"5 7 8 9 12 13 14 15 23 25 26 35 48 49 50 52 53 54 55 56 57 58 62 63 64 65 66 71 74 77 83 92 93 94 95 96 97 98 100 102 106 108 125 126"},F:{"12":0.0033,"25":0.0033,"30":0.00661,"31":0.00991,"32":0.00661,"95":0.00661,"99":0.0033,"103":0.00661,"106":0.00661,"107":0.29406,"108":0.12886,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 102 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.6","11.1":0.0033,"11.5":0.0033,"12.1":0.00661},B:{"12":0.01982,"13":0.0033,"14":0.01322,"16":0.0033,"17":0.0033,"18":0.02313,"84":0.0033,"89":0.0033,"90":0.0033,"91":0.0033,"92":0.03634,"93":0.00661,"94":0.0033,"95":0.01652,"96":0.0033,"100":0.02974,"101":0.01982,"102":0.01652,"103":0.00991,"104":0.02643,"105":0.02643,"106":0.02313,"107":0.05617,"108":0.0033,"109":0.03304,"110":0.00991,"111":0.05947,"112":0.05617,"113":0.05617,"114":0.05286,"115":0.03965,"116":0.12225,"117":0.07269,"118":0.03634,"119":0.09912,"120":0.07599,"121":0.09582,"122":4.00445,"123":0.26762,_:"15 79 80 81 83 85 86 87 88 97 98 99"},E:{"4":0.0033,"5":0.0033,"6":0.0033,"7":0.00661,"8":0.01322,"9":0.14868,"14":0.00661,_:"0 10 11 12 13 15 3.1 3.2 6.1 10.1 11.1 12.1 17.5","5.1":0.01322,"7.1":0.0033,"9.1":0.00661,"13.1":0.00661,"14.1":0.02643,"15.1":0.0033,"15.2-15.3":0.01982,"15.4":0.0033,"15.5":0.01982,"15.6":0.23128,"16.0":0.00661,"16.1":0.01322,"16.2":0.00661,"16.3":0.03634,"16.4":0.01982,"16.5":0.02974,"16.6":0.09582,"17.0":0.00991,"17.1":0.20154,"17.2":0.05947,"17.3":0.19163,"17.4":0.03304},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0.0006,"6.0-6.1":0.00363,"7.0-7.1":0.00423,"8.1-8.4":0.00121,"9.0-9.2":0.00242,"9.3":0.01512,"10.0-10.2":0.00242,"10.3":0.0254,"11.0-11.2":0.01814,"11.3-11.4":0.00605,"12.0-12.1":0.00544,"12.2-12.5":0.10462,"13.0-13.1":0.00181,"13.2":0.01814,"13.3":0.00544,"13.4-13.7":0.02056,"14.0-14.4":0.03931,"14.5-14.8":0.06168,"15.0-15.1":0.02661,"15.2-15.3":0.03145,"15.4":0.03689,"15.5":0.04717,"15.6-15.8":0.39489,"16.0":0.09615,"16.1":0.19896,"16.2":0.09615,"16.3":0.17114,"16.4":0.03628,"16.5":0.0768,"16.6-16.7":0.58176,"17.0":0.07559,"17.1":0.15118,"17.2":0.24371,"17.3":2.99951,"17.4":0.44025,"17.5":0},P:{"4":0.29895,"20":0.01031,"21":0.04123,"22":0.06185,"23":0.79375,"24":0.43296,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","6.2-6.4":0.08247,"7.2-7.4":0.16494,"13.0":0.01031,"16.0":0.03093,"17.0":0.02062,"19.0":0.02062},I:{"0":0.60693,"3":0,"4":0.00006,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00006,"4.2-4.3":0.00037,"4.4":0,"4.4.3-4.4.4":0.00146},K:{"0":0.68309,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.01662,"7":0.02327,"8":0.2792,"9":0.04986,"10":0.03656,"11":0.13295,_:"5.5"},S:{"2.5":0.02679,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":57.8236},R:{_:"0"},M:{"0":0.04018},Q:{_:"14.9"},O:{"0":1.52692},H:{"0":0}}; +module.exports={C:{"2":0.0064,"3":0.00961,"4":0.00961,"10":0.0064,"11":0.0064,"13":0.0032,"14":0.0032,"15":0.00961,"16":0.0032,"17":0.0064,"19":0.0032,"20":0.0032,"21":0.0064,"23":0.0032,"24":0.0032,"25":0.0032,"26":0.0064,"27":0.0064,"30":0.0032,"31":0.00961,"32":0.0032,"33":0.0032,"34":0.0064,"35":0.0064,"37":0.0064,"38":0.0064,"39":0.01281,"40":0.02562,"41":0.0064,"42":0.0032,"43":0.0064,"115":0.11847,"116":0.0064,"117":0.0032,"118":0.0032,"120":0.01281,"123":0.0064,"124":0.71405,"125":0.29458,"126":0.0032,_:"5 6 7 8 9 12 18 22 28 29 36 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 119 121 122 127 128","3.5":0.0064,"3.6":0.02241},D:{"4":0.0064,"6":0.0032,"7":0.0032,"11":0.0032,"12":0.0064,"18":0.0032,"19":0.0064,"20":0.0032,"21":0.00961,"22":0.0032,"23":0.0032,"24":0.0032,"25":0.0032,"28":0.0032,"29":0.0064,"30":0.0032,"31":0.00961,"32":0.0064,"33":0.0064,"34":0.01281,"35":0.0064,"36":0.01921,"37":0.00961,"38":0.0064,"39":0.01601,"40":0.01921,"41":0.02241,"42":0.01281,"43":0.05764,"44":0.06724,"45":0.05123,"46":0.07044,"47":0.02882,"51":0.10246,"58":0.00961,"60":0.0064,"63":0.0032,"66":0.0032,"67":0.0032,"68":0.0032,"70":0.04483,"72":0.0032,"78":0.00961,"79":0.0032,"80":0.0032,"83":0.00961,"87":0.08645,"89":0.0032,"90":0.0032,"91":0.0032,"100":0.0032,"103":0.02241,"105":0.0064,"107":0.0064,"108":0.02241,"109":1.30962,"110":0.03202,"111":0.0064,"112":0.0064,"114":0.0064,"115":0.00961,"116":0.08005,"117":0.02882,"118":0.01601,"119":0.00961,"120":0.10246,"121":0.07365,"122":0.53153,"123":13.16662,"124":5.21286,"125":0.10887,"126":0.0032,_:"5 8 9 10 13 14 15 16 17 26 27 48 49 50 52 53 54 55 56 57 59 61 62 64 65 69 71 73 74 75 76 77 81 84 85 86 88 92 93 94 95 96 97 98 99 101 102 104 106 113 127"},F:{"12":0.0064,"25":0.0032,"31":0.00961,"32":0.00961,"33":0.0032,"95":0.0032,"107":0.10246,"108":0.09286,"109":0.1537,_:"9 11 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5","11.6":0.0032,"12.1":0.01281},B:{"12":0.01281,"13":0.0032,"14":0.0064,"15":0.0064,"18":0.00961,"84":0.0064,"90":0.00961,"92":0.02241,"93":0.0064,"94":0.00961,"95":0.0032,"96":0.00961,"100":0.00961,"101":0.0064,"103":0.04483,"104":0.0064,"105":0.00961,"106":0.01601,"107":0.05123,"108":0.00961,"109":0.01921,"110":0.02882,"111":0.02882,"112":0.03202,"113":0.05123,"114":0.02241,"115":0.04163,"116":0.08966,"117":0.04163,"118":0.03522,"119":0.05443,"120":0.01281,"121":0.02882,"122":0.28818,"123":2.76653,"124":1.03104,_:"16 17 79 80 81 83 85 86 87 88 89 91 97 98 99 102"},E:{"4":0.00961,"5":0.0064,"6":0.0064,"7":0.0064,"8":0.0032,"9":0.19852,"13":0.01281,"14":0.0032,_:"0 10 11 12 15 3.1 3.2 6.1 9.1 10.1 11.1 12.1 17.5","5.1":0.0032,"7.1":0.0032,"13.1":0.00961,"14.1":0.04803,"15.1":0.0032,"15.2-15.3":0.01281,"15.4":0.0032,"15.5":0.00961,"15.6":0.02241,"16.0":0.0032,"16.1":0.00961,"16.2":0.00961,"16.3":0.01921,"16.4":0.0064,"16.5":0.0064,"16.6":0.04163,"17.0":0.01601,"17.1":0.08325,"17.2":0.04163,"17.3":0.08325,"17.4":0.53153},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00128,"5.0-5.1":0.00128,"6.0-6.1":0.0032,"7.0-7.1":0.00512,"8.1-8.4":0.00128,"9.0-9.2":0.0032,"9.3":0.01601,"10.0-10.2":0.0032,"10.3":0.02561,"11.0-11.2":0.02177,"11.3-11.4":0.0064,"12.0-12.1":0.00448,"12.2-12.5":0.10438,"13.0-13.1":0.00192,"13.2":0.02113,"13.3":0.00512,"13.4-13.7":0.01985,"14.0-14.4":0.03906,"14.5-14.8":0.05955,"15.0-15.1":0.02754,"15.2-15.3":0.03138,"15.4":0.03586,"15.5":0.04547,"15.6-15.8":0.39703,"16.0":0.09285,"16.1":0.19339,"16.2":0.09285,"16.3":0.16394,"16.4":0.03394,"16.5":0.07108,"16.6-16.7":0.56161,"17.0":0.06724,"17.1":0.12423,"17.2":0.16522,"17.3":1.20518,"17.4":2.7203,"17.5":0.02497},P:{"4":0.16604,"20":0.01038,"21":0.06227,"22":0.06227,"23":0.34247,"24":0.85098,"5.0-5.4":0.03113,"6.2-6.4":0.0934,"7.2-7.4":0.17642,_:"8.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","9.2":0.02076,"13.0":0.01038,"16.0":0.02076,"17.0":0.01038,"19.0":0.01038},I:{"0":0.77179,"3":0,"4":0.00008,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00015,"4.2-4.3":0.00046,"4.4":0,"4.4.3-4.4.4":0.00194},A:{"6":0.01609,"7":0.03539,"8":0.31207,"9":0.05469,"10":0.04504,"11":0.19625,_:"5.5"},K:{"0":0.95852,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03399,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.87014},H:{"0":0},L:{"0":58.168},R:{_:"0"},M:{"0":0.04079}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js index 858f02b92ce2e3..b0da2090a34c5f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BW.js @@ -1 +1 @@ -module.exports={C:{"33":0.00717,"34":0.02152,"41":0.00359,"46":0.01435,"47":0.00359,"49":0.00359,"52":0.01076,"78":0.01076,"84":0.00359,"88":0.00717,"95":0.01076,"102":0.01076,"106":0.00717,"109":0.00359,"113":0.00359,"115":0.25109,"117":0.00359,"118":0.00359,"119":0.01076,"120":0.00717,"121":0.01794,"122":0.04663,"123":0.71381,"124":0.25468,"125":0.0287,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 39 40 42 43 44 45 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 107 108 110 111 112 114 116 126 127 3.5 3.6"},D:{"11":0.02152,"33":0.00717,"40":0.00359,"49":0.02152,"57":0.00359,"59":0.00359,"62":0.00359,"63":0.00359,"64":0.00359,"65":0.00359,"66":0.01794,"67":0.00359,"68":0.00359,"69":0.00717,"70":0.01076,"72":0.00717,"73":0.00359,"74":0.00717,"75":0.00717,"78":0.00717,"79":0.00717,"80":0.00717,"81":0.00717,"83":0.01435,"85":0.00359,"86":0.01076,"87":0.02511,"88":0.07891,"90":0.00717,"91":0.01076,"92":0.00359,"93":0.00717,"94":0.01076,"95":0.02152,"96":0.00717,"97":0.00717,"98":0.01794,"99":0.03946,"100":0.00717,"101":0.00359,"102":0.0287,"103":0.08609,"104":0.03587,"105":0.00717,"106":0.00717,"107":0.00717,"108":0.01076,"109":1.72535,"110":0.00717,"111":0.01435,"112":0.02152,"113":0.01076,"114":0.02511,"115":0.01076,"116":0.11837,"117":0.01794,"118":0.04663,"119":0.16859,"120":0.3049,"121":1.09045,"122":12.82711,"123":2.88036,"124":0.00359,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 60 61 71 76 77 84 89 125 126"},F:{"90":0.00359,"95":0.02511,"102":0.01435,"106":0.00359,"107":0.3587,"108":0.13989,"109":0.00717,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.03587,"13":0.01076,"14":0.01435,"15":0.02511,"16":0.01076,"17":0.00717,"18":0.03946,"84":0.01435,"87":0.00359,"88":0.00359,"89":0.00359,"90":0.00717,"92":0.22598,"99":0.00359,"100":0.02152,"105":0.00717,"107":0.00717,"108":0.00359,"109":0.10402,"110":0.01076,"112":0.01794,"113":0.01435,"114":0.03587,"115":0.01794,"116":0.05739,"117":0.0287,"118":0.05739,"119":0.15424,"120":0.2475,"121":0.59186,"122":6.04768,"123":0.29055,_:"79 80 81 83 85 86 91 93 94 95 96 97 98 101 102 103 104 106 111"},E:{"12":0.00359,"14":0.01076,_:"0 4 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 16.0 17.5","13.1":0.01794,"14.1":0.01794,"15.2-15.3":0.00359,"15.4":0.00717,"15.5":0.00717,"15.6":0.03946,"16.1":0.01794,"16.2":0.00359,"16.3":0.01794,"16.4":0.00717,"16.5":0.01435,"16.6":0.0825,"17.0":0.12913,"17.1":0.08968,"17.2":0.07174,"17.3":0.14348,"17.4":0.06457},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00083,"5.0-5.1":0.00041,"6.0-6.1":0.00248,"7.0-7.1":0.00289,"8.1-8.4":0.00083,"9.0-9.2":0.00165,"9.3":0.01032,"10.0-10.2":0.00165,"10.3":0.01734,"11.0-11.2":0.01239,"11.3-11.4":0.00413,"12.0-12.1":0.00372,"12.2-12.5":0.07144,"13.0-13.1":0.00124,"13.2":0.01239,"13.3":0.00372,"13.4-13.7":0.01404,"14.0-14.4":0.02684,"14.5-14.8":0.04212,"15.0-15.1":0.01817,"15.2-15.3":0.02147,"15.4":0.02519,"15.5":0.03221,"15.6-15.8":0.26965,"16.0":0.06566,"16.1":0.13585,"16.2":0.06566,"16.3":0.11686,"16.4":0.02478,"16.5":0.05244,"16.6-16.7":0.39724,"17.0":0.05162,"17.1":0.10323,"17.2":0.16641,"17.3":2.04815,"17.4":0.30062,"17.5":0},P:{"4":0.24703,"20":0.02059,"21":0.06176,"22":0.08234,"23":1.14252,"24":0.8749,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01029,"7.2-7.4":0.2985,"9.2":0.01029,"11.1-11.2":0.06176,"12.0":0.07205,"13.0":0.01029,"14.0":0.02059,"15.0":0.01029,"16.0":0.03088,"17.0":0.04117,"18.0":0.03088,"19.0":0.10293},I:{"0":0.05109,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":1.35346,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.06815,_:"6 7 8 9 10 5.5"},S:{"2.5":0.14106,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":58.99309},R:{_:"0"},M:{"0":0.17954},Q:{_:"14.9"},O:{"0":0.55143},H:{"0":0.07}}; +module.exports={C:{"29":0.00346,"34":0.02423,"46":0.01039,"47":0.00346,"48":0.00346,"49":0.02077,"52":0.01385,"60":0.00346,"78":0.00346,"88":0.00346,"95":0.00346,"110":0.00346,"113":0.00346,"115":0.1731,"116":0.00346,"119":0.00346,"120":0.00346,"121":0.01385,"122":0.04847,"123":0.03462,"124":0.61277,"125":0.41544,"126":0.05193,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 114 117 118 127 128 3.5 3.6"},D:{"33":0.00346,"34":0.00346,"38":0.00346,"43":0.00692,"47":0.00692,"49":0.01731,"55":0.00346,"56":0.00346,"58":0.00346,"59":0.00346,"62":0.00346,"64":0.00692,"65":0.00346,"66":0.02423,"67":0.00346,"68":0.00692,"69":0.00346,"72":0.01385,"73":0.01731,"74":0.01385,"75":0.01385,"78":0.01385,"79":0.00692,"80":0.00346,"81":0.00692,"83":0.00692,"85":0.00346,"86":0.01385,"87":0.03116,"88":0.0727,"89":0.00346,"90":0.00346,"91":0.01039,"92":0.01039,"93":0.01039,"94":0.01385,"95":0.01385,"96":0.00346,"97":0.00346,"98":0.04154,"99":0.03116,"100":0.02423,"101":0.00346,"102":0.02077,"103":0.03808,"104":0.11425,"105":0.00346,"106":0.01039,"107":0.01039,"108":0.01731,"109":1.66868,"110":0.00692,"111":0.00692,"112":0.01731,"113":0.01039,"114":0.02423,"115":0.02077,"116":0.10386,"117":0.01039,"118":0.03462,"119":0.13848,"120":0.15233,"121":0.19041,"122":0.81011,"123":11.30343,"124":4.09208,"125":0.02077,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 41 42 44 45 46 48 50 51 52 53 54 57 60 61 63 70 71 76 77 84 126 127"},F:{"28":0.00346,"64":0.00346,"79":0.00346,"86":0.00346,"95":0.04154,"107":0.20426,"108":0.24234,"109":0.18002,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 12.1","11.6":0.00346},B:{"12":0.01039,"13":0.03462,"14":0.01385,"15":0.00346,"16":0.01731,"17":0.00692,"18":0.03116,"84":0.03808,"88":0.00346,"89":0.00346,"90":0.00346,"92":0.18002,"100":0.0277,"107":0.01039,"109":0.06924,"110":0.00346,"111":0.00692,"112":0.00346,"114":0.02077,"115":0.00346,"116":0.01385,"117":0.03462,"118":0.00692,"119":0.07616,"120":0.08655,"121":0.15233,"122":0.81011,"123":3.75281,"124":1.73792,_:"79 80 81 83 85 86 87 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 113"},E:{"13":0.00692,"14":0.01039,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1","12.1":0.00346,"13.1":0.01385,"14.1":0.01731,"15.2-15.3":0.00346,"15.4":0.00692,"15.5":0.01039,"15.6":0.11771,"16.0":0.00346,"16.1":0.01039,"16.2":0.01039,"16.3":0.02077,"16.4":0.01039,"16.5":0.01731,"16.6":0.04847,"17.0":0.04154,"17.1":0.02077,"17.2":0.05539,"17.3":0.10386,"17.4":0.26311,"17.5":0.00346},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00084,"5.0-5.1":0.00084,"6.0-6.1":0.0021,"7.0-7.1":0.00336,"8.1-8.4":0.00084,"9.0-9.2":0.0021,"9.3":0.01051,"10.0-10.2":0.0021,"10.3":0.01682,"11.0-11.2":0.01429,"11.3-11.4":0.0042,"12.0-12.1":0.00294,"12.2-12.5":0.06852,"13.0-13.1":0.00126,"13.2":0.01387,"13.3":0.00336,"13.4-13.7":0.01303,"14.0-14.4":0.02564,"14.5-14.8":0.0391,"15.0-15.1":0.01808,"15.2-15.3":0.0206,"15.4":0.02354,"15.5":0.02985,"15.6-15.8":0.26064,"16.0":0.06096,"16.1":0.12696,"16.2":0.06096,"16.3":0.10762,"16.4":0.02228,"16.5":0.04666,"16.6-16.7":0.36869,"17.0":0.04414,"17.1":0.08156,"17.2":0.10846,"17.3":0.79118,"17.4":1.78583,"17.5":0.0164},P:{"4":0.22702,"20":0.02064,"21":0.0516,"22":0.07223,"23":0.28893,"24":1.8471,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.01032,"7.2-7.4":0.30957,"11.1-11.2":0.03096,"12.0":0.0516,"13.0":0.11351,"14.0":0.04128,"15.0":0.01032,"16.0":0.02064,"17.0":0.0516,"18.0":0.07223,"19.0":0.08255},I:{"0":0.07813,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"9":0.00346,"10":0.00346,"11":0.04501,_:"6 7 8 5.5"},K:{"0":1.25298,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.11768,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.52958},H:{"0":0.12},L:{"0":60.08061},R:{_:"0"},M:{"0":0.09807}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js index d013e993842537..29c4ba746e0287 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BY.js @@ -1 +1 @@ -module.exports={C:{"43":0.00476,"52":0.33803,"56":0.00476,"60":0.00952,"68":0.00476,"72":0.00476,"78":0.04761,"85":0.00476,"88":0.00476,"91":0.00476,"94":0.00476,"95":0.00476,"96":0.02381,"99":0.00476,"101":0.00476,"102":0.00476,"104":0.00476,"105":0.05713,"106":0.01428,"107":0.00476,"108":0.00476,"110":0.02857,"111":0.00476,"112":0.00476,"113":0.00476,"115":0.72367,"116":0.00476,"117":0.01428,"118":0.00476,"119":0.00952,"120":0.00476,"121":0.01904,"122":0.02857,"123":1.21882,"124":0.54275,"125":0.00952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 86 87 89 90 92 93 97 98 100 103 109 114 126 127 3.5 3.6"},D:{"38":0.00476,"45":0.00476,"49":0.05237,"53":0.00476,"55":0.00952,"58":0.06189,"63":0.00476,"64":0.01904,"69":0.00476,"70":0.00476,"71":0.00476,"72":0.00476,"73":0.00476,"74":0.00476,"75":0.00476,"76":0.00476,"77":0.01428,"78":0.00476,"79":0.11426,"80":0.00952,"81":0.00476,"83":0.00476,"84":0.00476,"85":0.00476,"86":0.01428,"87":0.03809,"88":0.01428,"89":0.00476,"90":0.02381,"91":0.00476,"92":0.00952,"93":0.11903,"94":0.00952,"95":0.00952,"96":0.00952,"97":0.00952,"98":0.00952,"99":0.02857,"100":0.02857,"101":0.01428,"102":0.1095,"103":0.01904,"104":0.02381,"105":0.03809,"106":0.15711,"107":0.05237,"108":0.08094,"109":3.49934,"110":0.04285,"111":0.07618,"112":0.07142,"113":0.00476,"114":0.03809,"115":0.00952,"116":0.05237,"117":0.01428,"118":0.05237,"119":0.12379,"120":0.40469,"121":1.16168,"122":12.45954,"123":3.79928,"124":0.00476,"125":0.00476,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 54 56 57 59 60 61 62 65 66 67 68 126"},F:{"36":0.03333,"53":0.00476,"56":0.00476,"57":0.00476,"73":0.00476,"79":0.15711,"80":0.00952,"81":0.00952,"82":0.00952,"83":0.01904,"84":0.01904,"85":0.15235,"86":0.03333,"87":0.02381,"91":0.01428,"93":0.01428,"94":0.00476,"95":1.14264,"96":0.01428,"99":0.00476,"101":0.00952,"102":0.00476,"103":0.00476,"104":0.00476,"105":0.02381,"106":0.04285,"107":3.83261,"108":1.39497,"109":0.01904,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 88 89 90 92 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00476},B:{"17":0.00952,"18":0.00476,"92":0.00952,"102":0.00476,"105":0.00952,"106":0.00476,"107":0.00476,"109":0.03333,"110":0.00476,"115":0.00476,"117":0.00952,"119":0.00476,"120":0.01904,"121":0.06189,"122":1.9901,"123":0.16187,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 103 104 108 111 112 113 114 116 118"},E:{"14":0.00952,"15":0.00476,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00476,"9.1":0.00952,"12.1":0.02857,"13.1":0.03333,"14.1":0.07618,"15.1":0.00952,"15.2-15.3":0.01904,"15.4":0.03333,"15.5":0.02381,"15.6":0.28566,"16.0":0.01428,"16.1":0.08094,"16.2":0.06189,"16.3":0.12855,"16.4":0.04761,"16.5":0.14759,"16.6":0.45706,"17.0":0.05237,"17.1":0.1714,"17.2":0.34755,"17.3":1.50924,"17.4":0.37136},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00329,"5.0-5.1":0.00164,"6.0-6.1":0.00986,"7.0-7.1":0.01151,"8.1-8.4":0.00329,"9.0-9.2":0.00658,"9.3":0.0411,"10.0-10.2":0.00658,"10.3":0.06905,"11.0-11.2":0.04932,"11.3-11.4":0.01644,"12.0-12.1":0.0148,"12.2-12.5":0.28441,"13.0-13.1":0.00493,"13.2":0.04932,"13.3":0.0148,"13.4-13.7":0.0559,"14.0-14.4":0.10686,"14.5-14.8":0.16769,"15.0-15.1":0.07234,"15.2-15.3":0.08549,"15.4":0.10028,"15.5":0.12823,"15.6-15.8":1.07353,"16.0":0.2614,"16.1":0.54088,"16.2":0.2614,"16.3":0.46525,"16.4":0.09864,"16.5":0.20879,"16.6-16.7":1.58153,"17.0":0.2055,"17.1":0.411,"17.2":0.66253,"17.3":8.15423,"17.4":1.19683,"17.5":0},P:{"4":0.08422,"20":0.01053,"21":0.01053,"22":0.02105,"23":0.3895,"24":0.3895,"5.0-5.4":0.01053,"6.2-6.4":0.17896,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 16.0 18.0 19.0","13.0":0.01053,"14.0":0.01053,"17.0":0.01053},I:{"0":0.02609,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":1.03876,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03011,"9":0.00502,"11":0.15055,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":32.03928},R:{_:"0"},M:{"0":0.09954},Q:{"14.9":0.00524},O:{"0":0.15193},H:{"0":0.03}}; +module.exports={C:{"43":0.00468,"52":0.31329,"60":0.00468,"78":0.04208,"83":0.00935,"85":0.00468,"91":0.00468,"96":0.02806,"99":0.00468,"101":0.00935,"102":0.00468,"104":0.00468,"105":0.02338,"106":0.00468,"109":0.00468,"110":0.00935,"113":0.00468,"115":0.85571,"116":0.00468,"117":0.00468,"118":0.00468,"119":0.00935,"120":0.00468,"121":0.02806,"122":0.0187,"123":0.04676,"124":1.11756,"125":0.57515,"126":0.00468,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 86 87 88 89 90 92 93 94 95 97 98 100 103 107 108 111 112 114 127 128 3.5 3.6"},D:{"26":0.00468,"38":0.00468,"45":0.00935,"49":0.07014,"55":0.00935,"58":0.05611,"69":0.00468,"70":0.00468,"71":0.00468,"72":0.00468,"74":0.00468,"76":0.00468,"77":0.01403,"79":0.12625,"80":0.00935,"84":0.00468,"86":0.00935,"87":0.01403,"88":0.01403,"89":0.00935,"90":0.00468,"91":0.00468,"92":0.00468,"93":0.12625,"94":0.01403,"96":0.00468,"97":0.00935,"98":0.00935,"99":0.0187,"100":0.0187,"101":0.00935,"102":0.05611,"103":0.02806,"104":0.00935,"105":0.02806,"106":0.14028,"107":0.0187,"108":0.03741,"109":3.33866,"110":0.00935,"111":0.05144,"112":0.03273,"113":0.0187,"114":0.03273,"115":0.01403,"116":0.04208,"117":0.0187,"118":0.02338,"119":0.12625,"120":0.29926,"121":0.30862,"122":0.57515,"123":11.91912,"124":4.5591,"125":0.02338,"126":0.00468,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 53 54 56 57 59 60 61 62 63 64 65 66 67 68 73 75 78 81 83 85 95 127"},F:{"36":0.02338,"42":0.00468,"53":0.00468,"56":0.01403,"63":0.02806,"72":0.00468,"73":0.00468,"77":0.00468,"79":0.08884,"80":0.00935,"81":0.02338,"82":0.01403,"83":0.02806,"84":0.00935,"85":0.10755,"86":0.02806,"87":0.00935,"93":0.00935,"94":0.01403,"95":1.00066,"96":0.00935,"99":0.00468,"101":0.00468,"102":0.00468,"103":0.00468,"105":0.01403,"106":0.0187,"107":1.26252,"108":3.07213,"109":0.97728,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 57 58 60 62 64 65 66 67 68 69 70 71 74 75 76 78 88 89 90 91 92 97 98 100 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00468},B:{"18":0.00468,"92":0.00935,"105":0.00468,"106":0.00468,"107":0.00935,"109":0.03273,"114":0.00468,"117":0.00468,"119":0.00468,"120":0.00935,"121":0.00935,"122":0.08884,"123":1.52905,"124":0.75284,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 108 110 111 112 113 115 116 118"},E:{"14":0.00935,"15":0.00468,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.00468,"9.1":0.00468,"12.1":0.0187,"13.1":0.0187,"14.1":0.03741,"15.1":0.00935,"15.2-15.3":0.00935,"15.4":0.02806,"15.5":0.02338,"15.6":0.28991,"16.0":0.01403,"16.1":0.08884,"16.2":0.05611,"16.3":0.12158,"16.4":0.03741,"16.5":0.13093,"16.6":0.43954,"17.0":0.04208,"17.1":0.1356,"17.2":0.21977,"17.3":0.49566,"17.4":1.86105,"17.5":0.00468},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00336,"5.0-5.1":0.00336,"6.0-6.1":0.00841,"7.0-7.1":0.01346,"8.1-8.4":0.00336,"9.0-9.2":0.00841,"9.3":0.04206,"10.0-10.2":0.00841,"10.3":0.0673,"11.0-11.2":0.0572,"11.3-11.4":0.01682,"12.0-12.1":0.01178,"12.2-12.5":0.27423,"13.0-13.1":0.00505,"13.2":0.05552,"13.3":0.01346,"13.4-13.7":0.05215,"14.0-14.4":0.10263,"14.5-14.8":0.15646,"15.0-15.1":0.07234,"15.2-15.3":0.08244,"15.4":0.09421,"15.5":0.11945,"15.6-15.8":1.04308,"16.0":0.24395,"16.1":0.50808,"16.2":0.24395,"16.3":0.43069,"16.4":0.08917,"16.5":0.18674,"16.6-16.7":1.47545,"17.0":0.17665,"17.1":0.32638,"17.2":0.43406,"17.3":3.16625,"17.4":7.14677,"17.5":0.06561},P:{"4":0.07212,"20":0.0103,"21":0.02061,"22":0.02061,"23":0.12364,"24":0.67999,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 16.0 18.0 19.0","6.2-6.4":0.13394,"13.0":0.0103,"14.0":0.0103,"17.0":0.0103},I:{"0":0.03181,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.03379,"11":0.11584,_:"6 7 9 10 5.5"},K:{"0":1.10336,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.1118},H:{"0":0.02},L:{"0":32.01121},R:{_:"0"},M:{"0":0.14375}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js index 1060be8771a61a..b6700884fdfb64 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/BZ.js @@ -1 +1 @@ -module.exports={C:{"2":0.00328,"3":0.00328,"4":0.00328,"16":0.00328,"17":0.00328,"23":0.00328,"25":0.00328,"27":0.00328,"31":0.00328,"33":0.00656,"34":0.00328,"35":0.00328,"36":0.00328,"37":0.00328,"38":0.00328,"39":0.00656,"40":0.00656,"41":0.00328,"52":0.00328,"72":0.00328,"78":0.01312,"91":0.01312,"102":0.00328,"108":0.00656,"111":0.00328,"112":0.00328,"113":0.00328,"114":0.00656,"115":0.05576,"116":0.0492,"117":0.0984,"118":0.00984,"119":0.11152,"120":0.01968,"121":0.00328,"122":0.01968,"123":0.57072,"124":0.17712,_:"5 6 7 8 9 10 11 12 13 14 15 18 19 20 21 22 24 26 28 29 30 32 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 109 110 125 126 127 3.5","3.6":0.00656},D:{"4":0.00328,"6":0.00328,"19":0.00328,"21":0.00328,"22":0.00328,"28":0.00328,"29":0.00328,"31":0.00328,"33":0.00328,"35":0.00328,"36":0.00328,"37":0.00328,"38":0.00328,"39":0.00656,"40":0.00656,"41":0.00656,"42":0.00328,"43":0.0164,"44":0.02296,"45":0.0164,"46":0.01312,"47":0.00984,"51":0.01968,"56":0.00656,"68":0.01312,"69":0.00656,"70":0.01968,"71":0.00328,"72":0.00984,"73":0.00328,"74":0.00984,"75":0.01312,"76":0.0164,"77":0.01312,"78":0.00984,"79":0.01312,"80":0.00984,"81":0.00984,"83":0.01312,"84":0.00656,"85":0.00984,"86":0.01968,"87":0.01312,"88":0.01312,"89":0.00656,"90":0.00984,"91":0.05904,"92":0.00656,"93":0.05904,"94":0.00328,"97":0.32472,"99":0.00328,"100":0.00328,"102":0.00984,"103":0.164,"105":0.00328,"107":0.0164,"108":0.81672,"109":0.29848,"110":0.00328,"111":0.00328,"112":0.00984,"113":0.00656,"114":0.02624,"115":0.03608,"116":0.33456,"117":0.0492,"118":0.02952,"119":0.11152,"120":0.1312,"121":1.1972,"122":9.67928,"123":3.24392,"124":0.00656,_:"5 7 8 9 10 11 12 13 14 15 16 17 18 20 23 24 25 26 27 30 32 34 48 49 50 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 95 96 98 101 104 106 125 126"},F:{"31":0.00656,"32":0.00328,"33":0.00328,"53":0.00328,"54":0.00328,"95":0.00984,"100":0.00328,"101":0.00656,"106":0.04592,"107":0.32144,"108":0.09184,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00328},B:{"12":0.00328,"80":0.00328,"84":0.00328,"86":0.00328,"92":0.00656,"100":0.00328,"109":0.1312,"113":0.00328,"115":0.00328,"116":0.0328,"117":0.00656,"119":0.00328,"120":0.02624,"121":0.0984,"122":1.74168,"123":0.12136,_:"13 14 15 16 17 18 79 81 83 85 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 114 118"},E:{"5":0.00328,"8":0.00328,"9":0.0492,"14":0.00328,"15":0.00328,_:"0 4 6 7 10 11 12 13 3.1 3.2 6.1 10.1 11.1 12.1 17.5","5.1":0.00328,"7.1":0.00328,"9.1":0.0492,"13.1":0.02624,"14.1":0.04592,"15.1":0.0984,"15.2-15.3":0.1476,"15.4":0.3116,"15.5":0.06888,"15.6":0.66256,"16.0":0.02296,"16.1":0.05904,"16.2":0.27224,"16.3":0.1968,"16.4":0.0984,"16.5":0.47232,"16.6":0.92824,"17.0":0.04264,"17.1":0.32144,"17.2":1.05616,"17.3":3.8868,"17.4":0.83968},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00896,"5.0-5.1":0.00448,"6.0-6.1":0.02689,"7.0-7.1":0.03137,"8.1-8.4":0.00896,"9.0-9.2":0.01792,"9.3":0.11202,"10.0-10.2":0.01792,"10.3":0.1882,"11.0-11.2":0.13443,"11.3-11.4":0.04481,"12.0-12.1":0.04033,"12.2-12.5":0.77519,"13.0-13.1":0.01344,"13.2":0.13443,"13.3":0.04033,"13.4-13.7":0.15235,"14.0-14.4":0.29126,"14.5-14.8":0.45705,"15.0-15.1":0.19716,"15.2-15.3":0.23301,"15.4":0.27333,"15.5":0.34951,"15.6-15.8":2.92602,"16.0":0.71246,"16.1":1.47421,"16.2":0.71246,"16.3":1.26809,"16.4":0.26885,"16.5":0.56907,"16.6-16.7":4.31062,"17.0":0.56011,"17.1":1.12022,"17.2":1.8058,"17.3":22.22522,"17.4":3.26209,"17.5":0},P:{"4":0.03166,"20":0.01055,"21":0.03166,"22":0.01055,"23":0.52772,"24":0.69659,_:"5.0-5.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0 18.0","6.2-6.4":0.01055,"7.2-7.4":0.07388,"11.1-11.2":0.01055,"16.0":0.01055,"19.0":0.01055},I:{"0":0.22088,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00053},K:{"0":0.06721,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00668,"7":0.01337,"8":0.12033,"9":0.0234,"10":0.02005,"11":0.16044,_:"5.5"},S:{"2.5":0.00672,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":21.38978},R:{_:"0"},M:{"0":0.26212},Q:{_:"14.9"},O:{"0":0.08737},H:{"0":0}}; +module.exports={C:{"3":0.00383,"4":0.00383,"12":0.00383,"20":0.00383,"21":0.00383,"23":0.00383,"28":0.00383,"29":0.00383,"31":0.00383,"34":0.00383,"35":0.00383,"37":0.00383,"38":0.00383,"39":0.00383,"40":0.00766,"41":0.00383,"78":0.00383,"102":0.00766,"112":0.00383,"113":0.00766,"114":0.00383,"115":0.07273,"116":0.04976,"117":0.09953,"118":0.00383,"119":0.09187,"120":0.00383,"123":0.00766,"124":0.48616,"125":0.26413,"126":0.00766,_:"2 5 6 7 8 9 10 11 13 14 15 16 17 18 19 22 24 25 26 27 30 32 33 36 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 121 122 127 128 3.5","3.6":0.00766},D:{"19":0.00383,"21":0.00383,"22":0.00383,"28":0.00383,"30":0.00383,"31":0.00383,"33":0.00383,"34":0.00383,"35":0.00383,"36":0.00383,"37":0.00383,"38":0.00383,"39":0.00766,"40":0.00383,"41":0.01148,"42":0.00766,"43":0.01148,"44":0.01914,"45":0.01531,"46":0.02297,"47":0.00766,"51":0.03445,"65":0.00766,"68":0.00383,"69":0.00383,"70":0.01531,"72":0.00383,"75":0.00766,"76":0.01531,"77":0.00766,"78":0.00383,"79":0.01148,"80":0.00383,"81":0.00383,"83":0.00383,"84":0.00383,"85":0.00383,"86":0.00383,"87":0.00383,"88":0.00383,"89":0.00383,"90":0.00383,"91":0.18757,"92":0.00766,"93":0.06125,"96":0.00383,"97":0.25265,"102":0.00766,"103":0.10718,"105":0.00766,"107":0.00383,"108":1.02973,"109":0.47084,"110":0.00766,"111":0.00383,"112":0.00383,"113":0.00383,"114":0.02297,"115":0.03445,"116":0.33304,"117":0.03445,"118":0.00766,"119":0.0268,"120":0.05742,"121":0.26796,"122":0.48998,"123":12.73576,"124":7.25406,"125":0.01148,"126":0.00766,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 23 24 25 26 27 29 32 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 71 73 74 94 95 98 99 100 101 104 106 127"},F:{"31":0.00766,"95":0.00383,"100":0.00766,"101":0.00766,"102":0.00383,"107":0.36366,"108":0.19906,"109":0.03828,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.6","11.5":0.00383,"12.1":0.00766},B:{"12":0.00766,"18":0.00383,"109":0.06125,"113":0.00383,"115":0.00383,"116":0.06125,"117":0.00766,"120":0.00383,"121":0.01531,"122":0.13398,"123":1.40488,"124":0.59334,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 114 118 119"},E:{"5":0.00383,"8":0.00383,"9":0.05742,"14":0.01148,"15":0.00383,_:"0 4 6 7 10 11 12 13 3.1 3.2 6.1 7.1 10.1 12.1","5.1":0.00383,"9.1":0.01148,"11.1":0.00766,"13.1":0.03445,"14.1":0.01914,"15.1":0.06125,"15.2-15.3":0.1225,"15.4":0.37897,"15.5":0.02297,"15.6":0.45553,"16.0":0.03828,"16.1":0.03828,"16.2":0.04976,"16.3":0.15695,"16.4":0.13015,"16.5":0.62779,"16.6":0.56654,"17.0":0.06125,"17.1":0.29858,"17.2":0.58568,"17.3":1.00676,"17.4":3.45286,"17.5":0.0268},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00784,"5.0-5.1":0.00784,"6.0-6.1":0.01961,"7.0-7.1":0.03138,"8.1-8.4":0.00784,"9.0-9.2":0.01961,"9.3":0.09806,"10.0-10.2":0.01961,"10.3":0.15689,"11.0-11.2":0.13336,"11.3-11.4":0.03922,"12.0-12.1":0.02746,"12.2-12.5":0.63934,"13.0-13.1":0.01177,"13.2":0.12944,"13.3":0.03138,"13.4-13.7":0.12159,"14.0-14.4":0.23926,"14.5-14.8":0.36477,"15.0-15.1":0.16866,"15.2-15.3":0.19219,"15.4":0.21965,"15.5":0.27848,"15.6-15.8":2.43183,"16.0":0.56873,"16.1":1.18454,"16.2":0.56873,"16.3":1.00411,"16.4":0.20788,"16.5":0.43538,"16.6-16.7":3.43986,"17.0":0.41184,"17.1":0.76093,"17.2":1.01195,"17.3":7.38178,"17.4":16.66196,"17.5":0.15297},P:{"4":0.0646,"21":0.0323,"22":0.01077,"23":0.07537,"24":1.50744,_:"20 5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 17.0 18.0","6.2-6.4":0.04307,"7.2-7.4":0.0323,"15.0":0.01077,"16.0":0.01077,"19.0":0.01077},I:{"0":0.28889,"3":0,"4":0.00003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00006,"4.2-4.3":0.00017,"4.4":0,"4.4.3-4.4.4":0.00073},A:{"6":0.00849,"7":0.01274,"8":0.1274,"9":0.02123,"10":0.02123,"11":0.06795,_:"5.5"},K:{"0":0.16047,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01234,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.06789},H:{"0":0},L:{"0":20.67784},R:{_:"0"},M:{"0":0.51228}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js index 3e7d78bb3e90ac..9e17f09fb39db4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CA.js @@ -1 +1 @@ -module.exports={C:{"38":0.02087,"43":0.02087,"44":0.10434,"45":0.0313,"47":0.02609,"48":0.00522,"52":0.0313,"56":0.00522,"57":0.01565,"59":0.00522,"65":0.01565,"68":0.00522,"77":0.00522,"78":0.0313,"83":0.01043,"88":0.0313,"91":0.00522,"100":0.00522,"102":0.01043,"103":0.02087,"104":0.04174,"105":0.00522,"107":0.00522,"108":0.00522,"109":0.00522,"110":0.01043,"111":0.00522,"112":0.00522,"113":0.02087,"114":0.00522,"115":0.33911,"116":0.00522,"117":0.00522,"118":0.01043,"119":0.00522,"120":0.0313,"121":0.02087,"122":0.07826,"123":1.69553,"124":0.69908,"125":0.00522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 49 50 51 53 54 55 58 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 101 106 126 127 3.5 3.6"},D:{"38":0.00522,"42":0.00522,"47":0.02609,"48":0.31302,"49":0.08869,"53":0.00522,"56":0.01043,"57":0.00522,"60":0.01043,"65":0.00522,"66":0.02087,"67":0.00522,"68":0.00522,"69":0.00522,"70":0.00522,"71":0.00522,"72":0.00522,"73":0.00522,"74":0.01043,"75":0.01043,"76":0.02609,"77":0.00522,"78":0.00522,"79":0.20868,"80":0.02087,"81":0.02087,"83":0.28694,"84":0.01043,"85":0.01565,"86":0.04695,"87":0.0626,"88":0.08347,"89":0.01565,"90":0.01565,"91":0.01043,"92":0.00522,"93":0.04695,"94":0.00522,"95":0.00522,"96":0.01043,"97":0.00522,"98":0.01043,"99":0.01043,"100":0.03652,"101":0.0626,"102":0.04174,"103":0.31302,"104":0.10956,"105":0.1826,"106":0.02087,"107":0.02609,"108":0.13043,"109":1.00688,"110":0.02087,"111":0.03652,"112":0.04174,"113":0.12521,"114":0.13564,"115":0.09391,"116":0.37562,"117":0.08869,"118":0.10956,"119":0.20868,"120":0.60517,"121":2.33722,"122":16.91873,"123":4.71617,"124":0.02087,"125":0.00522,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 50 51 52 54 55 58 59 61 62 63 64 126"},F:{"52":0.01043,"95":0.05217,"102":0.00522,"106":0.02087,"107":0.72516,"108":0.10434,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00522,"13":0.00522,"15":0.00522,"17":0.00522,"18":0.00522,"85":0.00522,"92":0.00522,"103":0.00522,"104":0.00522,"105":0.00522,"106":0.00522,"107":0.01565,"108":0.00522,"109":0.10956,"110":0.00522,"111":0.00522,"112":0.00522,"113":0.00522,"114":0.01043,"115":0.00522,"116":0.00522,"117":0.01043,"118":0.00522,"119":0.01565,"120":0.06782,"121":0.28694,"122":6.67776,"123":0.54257,_:"14 16 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102"},E:{"8":0.01565,"9":0.03652,"13":0.01043,"14":0.11477,"15":0.01043,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.02609,"11.1":0.00522,"12.1":0.0313,"13.1":0.16694,"14.1":0.2139,"15.1":0.02609,"15.2-15.3":0.0313,"15.4":0.06782,"15.5":0.08869,"15.6":0.7982,"16.0":0.06782,"16.1":0.12521,"16.2":0.12521,"16.3":0.30259,"16.4":0.09912,"16.5":0.19303,"16.6":1.16339,"17.0":0.10434,"17.1":0.30259,"17.2":0.74603,"17.3":3.3754,"17.4":0.64691},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00526,"5.0-5.1":0.00263,"6.0-6.1":0.01577,"7.0-7.1":0.0184,"8.1-8.4":0.00526,"9.0-9.2":0.01051,"9.3":0.06572,"10.0-10.2":0.01051,"10.3":0.11041,"11.0-11.2":0.07886,"11.3-11.4":0.02629,"12.0-12.1":0.02366,"12.2-12.5":0.45477,"13.0-13.1":0.00789,"13.2":0.07886,"13.3":0.02366,"13.4-13.7":0.08938,"14.0-14.4":0.17087,"14.5-14.8":0.26813,"15.0-15.1":0.11566,"15.2-15.3":0.13669,"15.4":0.16035,"15.5":0.20504,"15.6-15.8":1.71657,"16.0":0.41797,"16.1":0.86485,"16.2":0.41797,"16.3":0.74393,"16.4":0.15772,"16.5":0.33385,"16.6-16.7":2.52884,"17.0":0.32859,"17.1":0.65718,"17.2":1.05938,"17.3":13.03853,"17.4":1.91372,"17.5":0},P:{"4":0.10855,"20":0.02171,"21":0.08684,"22":0.03257,"23":0.61874,"24":1.80196,"5.0-5.4":0.01086,"6.2-6.4":0.01086,_:"7.2-7.4 8.2 9.2 11.1-11.2 12.0 14.0 15.0","10.1":0.01086,"13.0":0.01086,"16.0":0.02171,"17.0":0.02171,"18.0":0.01086,"19.0":0.01086},I:{"0":0.03334,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.18654,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00569,"9":0.01707,"11":0.16505,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":18.94832},R:{_:"0"},M:{"0":0.41612},Q:{"14.9":0.00478},O:{"0":0.06696},H:{"0":0}}; +module.exports={C:{"4":0.00519,"38":0.03111,"43":0.02074,"44":0.09333,"45":0.04148,"47":0.01556,"48":0.00519,"52":0.0363,"56":0.00519,"57":0.01556,"59":0.00519,"68":0.00519,"77":0.00519,"78":0.03111,"83":0.01037,"88":0.02074,"91":0.00519,"94":0.00519,"100":0.01037,"102":0.01037,"103":0.02593,"104":0.04667,"105":0.00519,"107":0.00519,"108":0.00519,"109":0.00519,"110":0.01037,"111":0.00519,"112":0.00519,"113":0.02074,"114":0.00519,"115":0.36295,"116":0.00519,"117":0.00519,"118":0.01037,"119":0.00519,"120":0.03111,"121":0.01037,"122":0.02593,"123":0.09333,"124":1.63846,"125":0.82442,"126":0.00519,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 49 50 51 53 54 55 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 84 85 86 87 89 90 92 93 95 96 97 98 99 101 106 127 128 3.5 3.6"},D:{"38":0.00519,"47":0.03111,"48":0.30073,"49":0.09333,"65":0.00519,"66":0.02074,"67":0.00519,"70":0.00519,"72":0.00519,"74":0.00519,"75":0.00519,"76":0.02074,"77":0.00519,"78":0.00519,"79":0.02593,"80":0.01037,"81":0.01556,"83":0.08815,"84":0.01037,"85":0.01037,"86":0.04148,"87":0.05704,"88":0.07259,"89":0.01556,"90":0.01037,"91":0.01037,"92":0.00519,"93":0.04667,"94":0.01037,"95":0.00519,"96":0.00519,"97":0.00519,"98":0.01037,"99":0.01556,"100":0.04148,"101":0.06741,"102":0.04667,"103":0.29555,"104":0.12963,"105":0.18666,"106":0.01556,"107":0.02074,"108":0.08815,"109":0.98515,"110":0.02074,"111":0.03111,"112":0.02593,"113":0.16592,"114":0.17629,"115":0.07778,"116":0.3474,"117":0.05704,"118":0.07259,"119":0.16592,"120":0.32666,"121":0.39406,"122":2.01178,"123":15.96462,"124":5.96275,"125":0.03111,"126":0.00519,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 68 69 71 73 127"},F:{"52":0.01037,"95":0.04148,"102":0.00519,"106":0.00519,"107":0.52887,"108":0.2437,"109":0.08296,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00519,"13":0.00519,"17":0.00519,"18":0.00519,"85":0.00519,"92":0.00519,"103":0.00519,"107":0.01556,"108":0.00519,"109":0.10889,"110":0.00519,"111":0.00519,"112":0.00519,"113":0.00519,"114":0.01037,"115":0.00519,"116":0.00519,"117":0.00519,"118":0.01037,"119":0.01037,"120":0.0363,"121":0.0363,"122":0.47184,"123":5.02427,"124":2.26585,_:"14 15 16 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 105 106"},E:{"8":0.01556,"9":0.05185,"13":0.01037,"14":0.1037,"15":0.01037,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00519,"11.1":0.00519,"12.1":0.02593,"13.1":0.16074,"14.1":0.20222,"15.1":0.02074,"15.2-15.3":0.02593,"15.4":0.07259,"15.5":0.08296,"15.6":0.74664,"16.0":0.06741,"16.1":0.11407,"16.2":0.11407,"16.3":0.28518,"16.4":0.08815,"16.5":0.16074,"16.6":1.08367,"17.0":0.08296,"17.1":0.22296,"17.2":0.33703,"17.3":1.15626,"17.4":3.64506,"17.5":0.01556},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00516,"5.0-5.1":0.00516,"6.0-6.1":0.01289,"7.0-7.1":0.02063,"8.1-8.4":0.00516,"9.0-9.2":0.01289,"9.3":0.06446,"10.0-10.2":0.01289,"10.3":0.10314,"11.0-11.2":0.08767,"11.3-11.4":0.02578,"12.0-12.1":0.01805,"12.2-12.5":0.42028,"13.0-13.1":0.00774,"13.2":0.08509,"13.3":0.02063,"13.4-13.7":0.07993,"14.0-14.4":0.15728,"14.5-14.8":0.23979,"15.0-15.1":0.11087,"15.2-15.3":0.12634,"15.4":0.14439,"15.5":0.18307,"15.6-15.8":1.59863,"16.0":0.37387,"16.1":0.77869,"16.2":0.37387,"16.3":0.66008,"16.4":0.13666,"16.5":0.28621,"16.6-16.7":2.26129,"17.0":0.27074,"17.1":0.50022,"17.2":0.66524,"17.3":4.85261,"17.4":10.95318,"17.5":0.10056},P:{"4":0.09866,"20":0.02192,"21":0.07674,"22":0.03289,"23":0.09866,"24":2.14859,"5.0-5.4":0.01096,"6.2-6.4":0.01096,_:"7.2-7.4 8.2 9.2 11.1-11.2 12.0 14.0 15.0","10.1":0.01096,"13.0":0.01096,"16.0":0.02192,"17.0":0.02192,"18.0":0.01096,"19.0":0.01096},I:{"0":0.03357,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.01069,"9":0.02137,"11":0.49162,_:"6 7 10 5.5"},K:{"0":0.19742,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00963},O:{"0":0.07704},H:{"0":0},L:{"0":19.18698},R:{_:"0"},M:{"0":0.48632}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CD.js index 9214ad5f0d662a..d3aee26a4ce62d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CD.js @@ -1 +1 @@ -module.exports={C:{"37":0.00139,"56":0.00278,"57":0.1044,"72":0.00139,"78":0.00139,"115":0.21298,"119":0.00139,"120":0.00139,"121":0.00278,"122":0.00696,"123":0.17678,"124":0.05707,"125":0.00139,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 126 127 3.5 3.6"},D:{"11":0.01114,"31":0.00557,"38":0.00139,"40":0.00278,"43":0.00139,"49":0.00139,"58":0.00139,"64":0.00139,"68":0.00139,"69":0.00418,"74":0.00139,"76":0.00139,"77":0.00278,"79":0.00278,"80":0.00139,"81":0.00139,"83":0.00139,"85":0.00139,"86":0.00139,"87":0.00418,"88":0.00974,"90":0.00278,"92":0.00139,"93":0.00139,"94":0.00139,"95":0.00139,"97":0.00139,"99":0.00557,"102":0.00418,"103":0.00418,"105":0.00278,"106":0.00139,"107":0.00278,"108":0.00418,"109":0.21715,"110":0.00139,"111":0.00139,"112":0.00139,"113":0.00278,"114":0.00557,"115":0.02506,"116":0.00557,"117":0.00278,"118":0.00278,"119":0.01114,"120":0.02645,"121":0.10022,"122":0.79066,"123":0.23386,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 65 66 67 70 71 72 73 75 78 84 89 91 96 98 100 101 104 124 125 126"},F:{"35":0.00139,"36":0.00139,"42":0.00139,"66":0.00139,"72":0.00139,"75":0.02227,"77":0.00139,"79":0.00418,"81":0.00418,"89":0.00278,"90":0.00139,"95":0.01531,"101":0.00139,"105":0.00139,"106":0.00557,"107":0.12946,"108":0.08074,"109":0.00278,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 73 74 76 78 80 82 83 84 85 86 87 88 91 92 93 94 96 97 98 99 100 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00835,"13":0.00139,"14":0.00139,"15":0.00139,"16":0.00139,"17":0.00278,"18":0.01253,"84":0.00139,"89":0.00278,"90":0.00139,"92":0.01392,"100":0.00278,"109":0.00835,"110":0.00139,"113":0.00139,"114":0.00278,"115":0.00139,"116":0.00278,"117":0.00139,"118":0.00139,"119":0.00696,"120":0.01114,"121":0.03062,"122":0.41064,"123":0.02227,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112"},E:{"15":0.00278,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 17.5","13.1":0.00418,"14.1":0.00557,"15.4":0.00139,"15.5":0.00278,"15.6":0.02645,"16.1":0.00139,"16.2":0.00278,"16.3":0.00139,"16.4":0.00139,"16.5":0.00139,"16.6":0.00418,"17.0":0.00278,"17.1":0.00557,"17.2":0.00418,"17.3":0.01114,"17.4":0.00557},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00126,"5.0-5.1":0.00063,"6.0-6.1":0.00379,"7.0-7.1":0.00442,"8.1-8.4":0.00126,"9.0-9.2":0.00252,"9.3":0.01577,"10.0-10.2":0.00252,"10.3":0.0265,"11.0-11.2":0.01893,"11.3-11.4":0.00631,"12.0-12.1":0.00568,"12.2-12.5":0.10914,"13.0-13.1":0.00189,"13.2":0.01893,"13.3":0.00568,"13.4-13.7":0.02145,"14.0-14.4":0.04101,"14.5-14.8":0.06435,"15.0-15.1":0.02776,"15.2-15.3":0.03281,"15.4":0.03848,"15.5":0.04921,"15.6-15.8":0.41197,"16.0":0.10031,"16.1":0.20756,"16.2":0.10031,"16.3":0.17854,"16.4":0.03785,"16.5":0.08012,"16.6-16.7":0.60692,"17.0":0.07886,"17.1":0.15772,"17.2":0.25425,"17.3":3.12923,"17.4":0.45929,"17.5":0},P:{"4":0.08146,"20":0.03055,"21":0.02037,"22":0.07128,"23":0.17311,"24":0.13238,"5.0-5.4":0.01018,_:"6.2-6.4 8.2 10.1 12.0 14.0 15.0 17.0","7.2-7.4":0.04073,"9.2":0.04073,"11.1-11.2":0.02037,"13.0":0.01018,"16.0":0.04073,"18.0":0.01018,"19.0":0.04073},I:{"0":0.03429,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":9.29664,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00696,_:"6 7 8 9 10 5.5"},S:{"2.5":0.05164,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":71.87747},R:{_:"0"},M:{"0":0.02582},Q:{"14.9":0.00861},O:{"0":0.11189},H:{"0":8.21}}; +module.exports={C:{"47":0.00118,"57":0.10847,"95":0.00118,"115":0.41029,"116":0.00118,"121":0.0059,"122":0.00118,"123":0.00943,"124":0.1403,"125":0.08017,"126":0.00236,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 118 119 120 127 128 3.5 3.6"},D:{"11":0.0059,"38":0.00118,"40":0.01061,"43":0.00118,"49":0.00354,"58":0.00118,"64":0.00236,"68":0.00236,"69":0.00354,"70":0.00118,"74":0.00118,"77":0.00236,"79":0.00354,"80":0.00118,"81":0.00118,"83":0.00118,"84":0.00472,"86":0.00118,"87":0.00236,"88":0.01061,"89":0.00236,"90":0.00118,"92":0.00118,"94":0.00354,"95":0.00354,"97":0.00354,"99":0.01533,"101":0.00118,"102":0.00118,"103":0.00354,"104":0.0059,"105":0.00236,"106":0.00118,"107":0.00118,"108":0.00118,"109":0.25349,"110":0.00118,"111":0.00236,"112":0.00236,"113":0.00236,"114":0.00236,"115":0.00118,"116":0.0059,"117":0.00118,"118":0.00236,"119":0.00707,"120":0.01061,"121":0.01886,"122":0.05895,"123":0.83827,"124":0.27117,"125":0.00118,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 65 66 67 71 72 73 75 76 78 85 91 93 96 98 100 126 127"},F:{"34":0.00118,"40":0.00118,"42":0.00118,"46":0.00118,"74":0.00118,"75":0.01886,"79":0.0059,"81":0.00118,"82":0.00118,"89":0.00118,"90":0.00236,"95":0.01297,"106":0.00118,"107":0.00943,"108":0.13087,"109":0.0896,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 76 77 78 80 83 84 85 86 87 88 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0059,"13":0.00236,"14":0.00118,"15":0.00118,"17":0.00236,"18":0.00943,"84":0.00236,"89":0.00118,"90":0.00236,"92":0.01179,"100":0.00236,"109":0.00825,"114":0.00236,"116":0.00354,"117":0.00236,"118":0.00118,"119":0.00943,"120":0.00707,"121":0.00472,"122":0.04716,"123":0.28768,"124":0.12851,_:"16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115"},E:{"14":0.00118,"15":0.00118,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3 16.0 16.1 16.4 17.5","11.1":0.00118,"13.1":0.00236,"14.1":0.00118,"15.1":0.00118,"15.4":0.00118,"15.5":0.0059,"15.6":0.01415,"16.2":0.00236,"16.3":0.00472,"16.5":0.00236,"16.6":0.0059,"17.0":0.00118,"17.1":0.00236,"17.2":0.00354,"17.3":0.00472,"17.4":0.01415},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00131,"6.0-6.1":0.00328,"7.0-7.1":0.00525,"8.1-8.4":0.00131,"9.0-9.2":0.00328,"9.3":0.01641,"10.0-10.2":0.00328,"10.3":0.02625,"11.0-11.2":0.02231,"11.3-11.4":0.00656,"12.0-12.1":0.00459,"12.2-12.5":0.10697,"13.0-13.1":0.00197,"13.2":0.02166,"13.3":0.00525,"13.4-13.7":0.02034,"14.0-14.4":0.04003,"14.5-14.8":0.06103,"15.0-15.1":0.02822,"15.2-15.3":0.03216,"15.4":0.03675,"15.5":0.0466,"15.6-15.8":0.4069,"16.0":0.09516,"16.1":0.1982,"16.2":0.09516,"16.3":0.16801,"16.4":0.03478,"16.5":0.07285,"16.6-16.7":0.57556,"17.0":0.06891,"17.1":0.12732,"17.2":0.16932,"17.3":1.23512,"17.4":2.78789,"17.5":0.0256},P:{"4":0.05963,"20":0.02982,"21":0.01988,"22":0.07951,"23":0.08945,"24":0.20872,"5.0-5.4":0.00994,"6.2-6.4":0.00994,"7.2-7.4":0.02982,_:"8.2 10.1 12.0 17.0","9.2":0.02982,"11.1-11.2":0.02982,"13.0":0.01988,"14.0":0.00994,"15.0":0.01988,"16.0":0.01988,"18.0":0.00994,"19.0":0.01988},I:{"0":0.01757,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.00825,_:"6 7 8 9 10 5.5"},K:{"0":9.82802,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02646,_:"3.0-3.1"},Q:{"14.9":0.00882},O:{"0":0.10585},H:{"0":7.32},L:{"0":71.838},R:{_:"0"},M:{"0":0.02646}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CF.js index 9880980de9da18..5757b3d158ae96 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CF.js @@ -1 +1 @@ -module.exports={C:{"44":0.00229,"50":0.00229,"55":0.00229,"58":0.00458,"61":0.00115,"69":0.00229,"72":0.01031,"79":0.00115,"91":0.00115,"104":0.00229,"105":0.00573,"115":0.01145,"117":0.00115,"118":0.00573,"120":0.00115,"121":0.01718,"122":0.00344,"123":0.61601,"124":0.35953,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 51 52 53 54 56 57 59 60 62 63 64 65 66 67 68 70 71 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 106 107 108 109 110 111 112 113 114 116 119 125 126 127 3.5 3.6"},D:{"11":0.19122,"43":0.00229,"52":0.00344,"55":0.00344,"58":0.01374,"60":0.04924,"63":0.04237,"68":0.01489,"75":0.00115,"81":0.00115,"86":0.00344,"87":0.00344,"88":0.01145,"93":0.00115,"101":0.00573,"106":0.00115,"108":0.00115,"109":0.0355,"112":0.00458,"114":0.00344,"116":0.08702,"117":0.00229,"118":0.00573,"119":0.00344,"120":0.02176,"121":0.0584,"122":0.49121,"123":0.11107,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 56 57 59 61 62 64 65 66 67 69 70 71 72 73 74 76 77 78 79 80 83 84 85 89 90 91 92 94 95 96 97 98 99 100 102 103 104 105 107 110 111 113 115 124 125 126"},F:{"35":0.00115,"77":0.00687,"79":0.00802,"95":0.00344,"96":0.00802,"105":0.01145,"106":0.00802,"107":0.13397,"108":0.02977,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00687,"13":0.00344,"14":0.00573,"17":0.00458,"18":0.05153,"84":0.00229,"85":0.00229,"89":0.00458,"91":0.00115,"92":0.01718,"104":0.00115,"109":0.00916,"113":0.00115,"114":0.00229,"115":0.00115,"117":0.00229,"118":0.09847,"119":0.0126,"120":0.02863,"121":0.02176,"122":0.27022,"123":0.00229,_:"15 16 79 80 81 83 86 87 88 90 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 110 111 112 116"},E:{"14":0.03206,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.4 17.5","12.1":0.00229,"15.6":0.00687,"17.0":0.00229,"17.1":0.00115,"17.2":0.00115,"17.3":0.00229},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00081,"5.0-5.1":0.0004,"6.0-6.1":0.00242,"7.0-7.1":0.00283,"8.1-8.4":0.00081,"9.0-9.2":0.00161,"9.3":0.01009,"10.0-10.2":0.00161,"10.3":0.01696,"11.0-11.2":0.01211,"11.3-11.4":0.00404,"12.0-12.1":0.00363,"12.2-12.5":0.06985,"13.0-13.1":0.00121,"13.2":0.01211,"13.3":0.00363,"13.4-13.7":0.01373,"14.0-14.4":0.02624,"14.5-14.8":0.04118,"15.0-15.1":0.01776,"15.2-15.3":0.02099,"15.4":0.02463,"15.5":0.03149,"15.6-15.8":0.26364,"16.0":0.0642,"16.1":0.13283,"16.2":0.0642,"16.3":0.11426,"16.4":0.02422,"16.5":0.05128,"16.6-16.7":0.3884,"17.0":0.05047,"17.1":0.10094,"17.2":0.16271,"17.3":2.00256,"17.4":0.29392,"17.5":0},P:{"4":0.01058,"20":0.01058,"21":0.01058,"22":0.02115,"23":0.31727,"24":0.12691,"5.0-5.4":0.02115,"6.2-6.4":0.01058,"7.2-7.4":0.11633,_:"8.2 10.1 12.0 14.0 15.0 17.0","9.2":0.02115,"11.1-11.2":0.01058,"13.0":0.01058,"16.0":0.05288,"18.0":0.01058,"19.0":0.01058},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":2.52524,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00458,_:"6 7 8 9 10 5.5"},S:{"2.5":0.28333,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.37302},R:{_:"0"},M:{"0":0.13281},Q:{"14.9":0.12396},O:{"0":0.10625},H:{"0":12.5}}; +module.exports={C:{"30":0.00112,"61":0.00223,"66":0.00335,"103":0.00112,"106":0.00223,"107":0.00558,"115":0.08593,"119":0.00112,"121":0.0067,"122":0.00335,"123":0.10714,"124":0.6629,"125":0.42631,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 108 109 110 111 112 113 114 116 117 118 120 126 127 128 3.5 3.6"},D:{"11":0.01228,"49":0.00112,"52":0.00558,"60":0.04687,"66":0.00335,"68":0.01116,"69":0.0067,"74":0.00223,"78":0.00112,"81":0.00112,"84":0.00335,"87":0.00112,"97":0.00112,"99":0.00112,"103":0.00446,"105":0.0067,"109":0.03571,"110":0.00112,"111":0.00112,"112":0.00223,"113":0.00112,"115":0.0067,"116":0.00112,"118":0.00223,"119":0.00558,"120":0.01339,"121":0.0067,"122":0.08928,"123":0.4955,"124":0.37944,"125":0.00112,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 70 71 72 73 75 76 77 79 80 83 85 86 88 89 90 91 92 93 94 95 96 98 100 101 102 104 106 107 108 114 117 126 127"},F:{"42":0.00112,"68":0.00112,"79":0.00335,"104":0.00112,"107":0.02009,"108":0.0346,"109":0.00223,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00223,"13":0.00446,"14":0.00223,"15":0.00112,"16":0.0067,"17":0.00558,"18":0.01004,"89":0.01004,"90":0.00223,"92":0.00223,"109":0.00446,"114":0.00223,"116":0.00223,"118":0.0837,"120":0.00223,"121":0.00223,"122":0.0346,"123":0.39172,"124":0.12834,_:"79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 117 119"},E:{"14":0.04352,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.5","13.1":0.00112,"14.1":0.00223,"17.1":0.00223,"17.2":0.00781,"17.3":0.00335,"17.4":0.01004},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00054,"5.0-5.1":0.00054,"6.0-6.1":0.00135,"7.0-7.1":0.00217,"8.1-8.4":0.00054,"9.0-9.2":0.00135,"9.3":0.00677,"10.0-10.2":0.00135,"10.3":0.01084,"11.0-11.2":0.00921,"11.3-11.4":0.00271,"12.0-12.1":0.0019,"12.2-12.5":0.04417,"13.0-13.1":0.00081,"13.2":0.00894,"13.3":0.00217,"13.4-13.7":0.0084,"14.0-14.4":0.01653,"14.5-14.8":0.0252,"15.0-15.1":0.01165,"15.2-15.3":0.01328,"15.4":0.01517,"15.5":0.01924,"15.6-15.8":0.168,"16.0":0.03929,"16.1":0.08183,"16.2":0.03929,"16.3":0.06937,"16.4":0.01436,"16.5":0.03008,"16.6-16.7":0.23763,"17.0":0.02845,"17.1":0.05257,"17.2":0.06991,"17.3":0.50995,"17.4":1.15105,"17.5":0.01057},P:{"4":0.24596,"20":0.17709,"21":0.01968,"23":0.08855,"24":0.21645,_:"22 5.0-5.4 8.2 10.1 12.0 14.0 15.0 17.0","6.2-6.4":0.00984,"7.2-7.4":0.05903,"9.2":0.06887,"11.1-11.2":0.05903,"13.0":0.00984,"16.0":0.02952,"18.0":0.00984,"19.0":0.19677},I:{"0":0.00885,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.00335,_:"6 7 8 9 10 5.5"},K:{"0":7.32806,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.32871,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.15991},H:{"0":12.35},L:{"0":72.24234},R:{_:"0"},M:{"0":0.15103}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js index c9626d16133537..5681f0012da50d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CG.js @@ -1 +1 @@ -module.exports={C:{"31":0.00474,"115":0.10909,"122":0.00949,"123":0.75888,"124":0.33201,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"11":0.00474,"56":0.00474,"64":0.00474,"69":0.00949,"73":0.02372,"76":0.00474,"79":0.01423,"81":0.02846,"83":0.04269,"84":0.00949,"86":0.00949,"87":0.02846,"89":0.00474,"93":0.01423,"94":0.00949,"95":0.01897,"98":0.0332,"99":0.01897,"102":0.02372,"103":0.00949,"104":0.01423,"107":0.00474,"109":0.61659,"110":0.01423,"113":0.00474,"114":0.00474,"115":0.00949,"116":0.01897,"117":0.03794,"118":0.00474,"119":0.05692,"120":0.08063,"121":0.22766,"122":12.21797,"123":4.40625,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 65 66 67 68 70 71 72 74 75 77 78 80 85 88 90 91 92 96 97 100 101 105 106 108 111 112 124 125 126"},F:{"34":0.00474,"79":0.00949,"81":0.00949,"90":0.01423,"95":0.08537,"105":0.00949,"107":0.43161,"108":0.18023,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 100 101 102 103 104 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00474,"16":0.01423,"17":0.00949,"18":0.00474,"81":0.01423,"92":0.01423,"109":0.05217,"111":0.00474,"114":0.00474,"115":0.01423,"118":0.00474,"119":0.00474,"120":0.12332,"121":1.21895,"122":16.12146,"123":1.01975,_:"13 14 15 79 80 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 116 117"},E:{"14":0.00949,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.5","13.1":0.02372,"15.1":0.00949,"15.6":0.04743,"16.6":0.00949,"17.3":0.00949,"17.4":0.00949},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00153,"5.0-5.1":0.00077,"6.0-6.1":0.00459,"7.0-7.1":0.00536,"8.1-8.4":0.00153,"9.0-9.2":0.00306,"9.3":0.01914,"10.0-10.2":0.00306,"10.3":0.03215,"11.0-11.2":0.02297,"11.3-11.4":0.00766,"12.0-12.1":0.00689,"12.2-12.5":0.13244,"13.0-13.1":0.0023,"13.2":0.02297,"13.3":0.00689,"13.4-13.7":0.02603,"14.0-14.4":0.04976,"14.5-14.8":0.07809,"15.0-15.1":0.03368,"15.2-15.3":0.03981,"15.4":0.0467,"15.5":0.05971,"15.6-15.8":0.49991,"16.0":0.12172,"16.1":0.25187,"16.2":0.12172,"16.3":0.21665,"16.4":0.04593,"16.5":0.09723,"16.6-16.7":0.73647,"17.0":0.0957,"17.1":0.19139,"17.2":0.30852,"17.3":3.7972,"17.4":0.55733,"17.5":0},P:{"4":0.15065,"20":0.02152,"22":0.04304,"23":0.06456,"24":0.06456,_:"21 6.2-6.4 8.2 10.1 11.1-11.2 14.0 15.0 16.0 18.0 19.0","5.0-5.4":0.01076,"7.2-7.4":0.01076,"9.2":0.01076,"12.0":0.01076,"13.0":0.0538,"17.0":0.02152},I:{"0":0.01571,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.25858,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00474,_:"6 7 8 9 10 5.5"},S:{"2.5":0.05784,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.07416},R:{_:"0"},M:{"0":0.01577},Q:{"14.9":0.00526},O:{"0":0.0999},H:{"0":0.12}}; +module.exports={C:{"115":0.11924,"122":0.00459,"123":0.00459,"124":0.60994,"125":0.32102,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"11":0.00459,"36":0.00459,"37":0.00459,"56":0.00459,"64":0.00459,"65":0.00917,"69":0.02752,"72":0.00459,"73":0.01834,"76":0.00459,"79":0.01376,"81":0.05045,"83":0.0642,"84":0.0321,"86":0.02752,"87":0.0321,"89":0.00459,"91":0.00459,"93":0.00917,"95":0.00917,"98":0.02293,"99":0.00917,"102":0.01834,"103":0.01834,"104":0.01376,"106":0.00459,"107":0.00917,"109":0.56866,"110":0.00459,"111":0.00459,"113":0.00459,"114":0.00459,"115":0.02752,"116":0.00459,"117":0.0321,"118":0.00459,"119":0.07338,"120":0.03669,"121":0.0321,"122":0.19261,"123":10.46067,"124":4.67772,"125":0.01376,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 66 67 68 70 71 74 75 77 78 80 85 88 90 92 94 96 97 100 101 105 108 112 126 127"},F:{"79":0.01376,"82":0.00459,"85":0.00459,"90":0.01376,"95":0.08713,"106":0.00459,"107":0.0321,"108":0.49987,"109":0.12841,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.02293,"17":0.01376,"18":0.00459,"81":0.00459,"84":0.00459,"92":0.01376,"109":0.02752,"111":0.00459,"114":0.00459,"115":0.01834,"117":0.00917,"120":0.01834,"121":0.01834,"122":4.8474,"123":8.66754,"124":4.76485,_:"12 13 14 15 79 80 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 116 118 119"},E:{"14":0.00917,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.5","13.1":0.01376,"15.6":0.01834,"16.6":0.01834,"17.3":0.01834,"17.4":0.02293},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00166,"5.0-5.1":0.00166,"6.0-6.1":0.00414,"7.0-7.1":0.00663,"8.1-8.4":0.00166,"9.0-9.2":0.00414,"9.3":0.02072,"10.0-10.2":0.00414,"10.3":0.03316,"11.0-11.2":0.02818,"11.3-11.4":0.00829,"12.0-12.1":0.0058,"12.2-12.5":0.13511,"13.0-13.1":0.00249,"13.2":0.02735,"13.3":0.00663,"13.4-13.7":0.0257,"14.0-14.4":0.05056,"14.5-14.8":0.07709,"15.0-15.1":0.03564,"15.2-15.3":0.04062,"15.4":0.04642,"15.5":0.05885,"15.6-15.8":0.51391,"16.0":0.12019,"16.1":0.25032,"16.2":0.12019,"16.3":0.21219,"16.4":0.04393,"16.5":0.09201,"16.6-16.7":0.72693,"17.0":0.08703,"17.1":0.1608,"17.2":0.21385,"17.3":1.55996,"17.4":3.5211,"17.5":0.03233},P:{"4":0.14076,"20":0.03248,"21":0.01083,"22":0.0758,"23":0.03248,"24":0.10828,"5.0-5.4":0.01083,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0 19.0","13.0":0.02166,"17.0":0.01083},I:{"0":0.02696,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.00459,_:"6 7 8 9 10 5.5"},K:{"0":0.26439,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.04331,_:"3.0-3.1"},Q:{"14.9":0.00541},O:{"0":0.17866},H:{"0":0.12},L:{"0":52.99865},R:{_:"0"},M:{"0":0.0379}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js index a18948e3871562..280b558936cadb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CH.js @@ -1 +1 @@ -module.exports={C:{"48":0.00727,"52":0.02906,"78":0.04359,"84":0.00727,"95":0.00727,"99":0.00727,"102":0.01453,"103":0.00727,"104":0.00727,"108":0.01453,"109":0.00727,"113":0.18163,"115":0.66112,"116":0.00727,"117":0.00727,"118":0.0218,"119":0.00727,"120":0.01453,"121":0.02906,"122":0.07992,"123":2.67352,"124":1.17693,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 105 106 107 110 111 112 114 125 126 127 3.5 3.6"},D:{"49":0.01453,"52":0.08718,"65":0.00727,"66":0.04359,"76":0.00727,"79":0.01453,"80":0.01453,"81":0.00727,"84":0.01453,"85":0.00727,"86":0.05086,"87":0.04359,"89":0.00727,"90":0.00727,"91":0.00727,"93":0.00727,"94":0.00727,"95":0.00727,"98":0.00727,"99":0.01453,"100":0.05812,"101":0.10171,"102":0.05812,"103":0.17436,"104":0.06539,"105":0.02906,"106":0.0218,"107":0.01453,"108":0.07265,"109":1.6201,"110":0.02906,"111":0.01453,"112":0.01453,"113":0.10898,"114":0.17436,"115":0.03633,"116":0.83548,"117":0.06539,"118":0.07992,"119":0.1453,"120":0.98078,"121":5.07824,"122":27.01127,"123":5.5214,"124":0.00727,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 70 71 72 73 74 75 77 78 83 88 92 96 97 125 126"},F:{"46":0.00727,"95":0.0218,"102":0.00727,"106":0.02906,"107":0.71924,"108":0.1671,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"91":0.01453,"92":0.00727,"97":0.00727,"104":0.00727,"107":0.01453,"108":0.00727,"109":0.2906,"110":0.00727,"111":0.13804,"112":0.00727,"113":0.03633,"114":0.04359,"115":0.04359,"116":0.01453,"117":0.0218,"118":0.10898,"119":0.26154,"120":0.22522,"121":1.07522,"122":14.46462,"123":0.97351,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 98 99 100 101 102 103 105 106"},E:{"13":0.00727,"14":0.04359,"15":0.00727,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.00727,"11.1":0.00727,"12.1":0.02906,"13.1":0.11624,"14.1":0.13804,"15.1":0.0218,"15.2-15.3":0.0218,"15.4":0.03633,"15.5":0.03633,"15.6":0.48676,"16.0":0.07265,"16.1":0.08718,"16.2":0.06539,"16.3":0.1453,"16.4":0.05812,"16.5":0.10898,"16.6":0.55941,"17.0":0.09445,"17.1":0.26881,"17.2":0.61026,"17.3":1.56198,"17.4":0.46496},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00262,"5.0-5.1":0.00131,"6.0-6.1":0.00785,"7.0-7.1":0.00916,"8.1-8.4":0.00262,"9.0-9.2":0.00523,"9.3":0.03272,"10.0-10.2":0.00523,"10.3":0.05497,"11.0-11.2":0.03926,"11.3-11.4":0.01309,"12.0-12.1":0.01178,"12.2-12.5":0.2264,"13.0-13.1":0.00393,"13.2":0.03926,"13.3":0.01178,"13.4-13.7":0.0445,"14.0-14.4":0.08507,"14.5-14.8":0.13349,"15.0-15.1":0.05758,"15.2-15.3":0.06805,"15.4":0.07983,"15.5":0.10208,"15.6-15.8":0.85458,"16.0":0.20808,"16.1":0.43056,"16.2":0.20808,"16.3":0.37036,"16.4":0.07852,"16.5":0.1662,"16.6-16.7":1.25897,"17.0":0.16359,"17.1":0.32717,"17.2":0.52741,"17.3":6.49114,"17.4":0.95273,"17.5":0},P:{"4":0.04321,"20":0.0108,"21":0.04321,"22":0.05401,"23":1.11268,"24":1.27472,"5.0-5.4":0.0108,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","13.0":0.0108,"17.0":0.0108,"19.0":0.0108},I:{"0":0.02451,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.20239,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00727,"11":0.10171,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":11.31018},R:{_:"0"},M:{"0":0.48683},Q:{"14.9":0.00274},O:{"0":0.03282},H:{"0":0}}; +module.exports={C:{"48":0.01377,"52":0.03442,"71":0.00688,"78":0.04818,"84":0.00688,"91":0.00688,"95":0.00688,"99":0.00688,"102":0.02065,"103":0.00688,"108":0.00688,"109":0.00688,"112":0.00688,"113":0.0413,"115":0.71583,"116":0.00688,"117":0.00688,"118":0.05506,"119":0.00688,"120":0.00688,"121":0.03442,"122":0.02753,"123":0.09636,"124":2.63619,"125":1.49361,"126":0.00688,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 92 93 94 96 97 98 100 101 104 105 106 107 110 111 114 127 128 3.5 3.6"},D:{"49":0.02753,"52":0.16519,"66":0.04818,"74":0.00688,"79":0.02753,"80":0.01377,"81":0.00688,"84":0.01377,"85":0.00688,"86":0.09636,"87":0.0413,"88":0.00688,"89":0.00688,"90":0.00688,"91":0.00688,"94":0.00688,"95":0.00688,"97":0.00688,"98":0.00688,"99":0.01377,"100":0.09636,"101":0.18584,"102":0.11013,"103":0.24091,"104":0.10325,"105":0.01377,"106":0.00688,"107":0.02065,"108":0.11013,"109":1.65192,"110":0.00688,"111":0.02065,"112":0.01377,"113":0.15831,"114":0.18584,"115":0.02065,"116":0.48869,"117":0.03442,"118":0.06195,"119":0.15143,"120":0.6057,"121":0.39233,"122":3.01475,"123":22.67949,"124":9.36088,"125":0.01377,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 75 76 77 78 83 92 93 96 126 127"},F:{"46":0.00688,"77":0.00688,"95":0.02065,"102":0.00688,"106":0.00688,"107":0.48869,"108":0.38545,"109":0.13078,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"85":0.01377,"86":0.00688,"91":0.11701,"92":0.01377,"97":0.00688,"99":0.00688,"103":0.01377,"105":0.00688,"107":0.00688,"108":0.0413,"109":0.19272,"110":0.00688,"111":0.12389,"112":0.00688,"113":0.0413,"114":0.01377,"115":0.02065,"116":0.02753,"117":0.02753,"118":0.02065,"119":0.13766,"120":0.11701,"121":0.17208,"122":0.96362,"123":9.21634,"124":4.02656,_:"12 13 14 15 16 17 18 79 80 81 83 84 87 88 89 90 93 94 95 96 98 100 101 102 104 106"},E:{"8":0.00688,"13":0.00688,"14":0.0413,"15":0.00688,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00688,"12.1":0.02753,"13.1":0.11701,"14.1":0.13766,"15.1":0.02065,"15.2-15.3":0.02065,"15.4":0.03442,"15.5":0.03442,"15.6":0.46116,"16.0":0.06883,"16.1":0.08948,"16.2":0.06195,"16.3":0.14454,"16.4":0.04818,"16.5":0.08948,"16.6":0.55752,"17.0":0.06883,"17.1":0.20649,"17.2":0.26844,"17.3":0.58506,"17.4":2.18191,"17.5":0.01377},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00279,"5.0-5.1":0.00279,"6.0-6.1":0.00698,"7.0-7.1":0.01117,"8.1-8.4":0.00279,"9.0-9.2":0.00698,"9.3":0.03491,"10.0-10.2":0.00698,"10.3":0.05585,"11.0-11.2":0.04747,"11.3-11.4":0.01396,"12.0-12.1":0.00977,"12.2-12.5":0.22759,"13.0-13.1":0.00419,"13.2":0.04608,"13.3":0.01117,"13.4-13.7":0.04328,"14.0-14.4":0.08517,"14.5-14.8":0.12985,"15.0-15.1":0.06004,"15.2-15.3":0.06842,"15.4":0.07819,"15.5":0.09914,"15.6-15.8":0.86569,"16.0":0.20246,"16.1":0.42168,"16.2":0.20246,"16.3":0.35745,"16.4":0.074,"16.5":0.15499,"16.6-16.7":1.22454,"17.0":0.14661,"17.1":0.27088,"17.2":0.36024,"17.3":2.6278,"17.4":5.9314,"17.5":0.05445},P:{"4":0.0542,"20":0.02168,"21":0.04336,"22":0.03252,"23":0.19511,"24":2.25458,"5.0-5.4":0.01084,"6.2-6.4":0.01084,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01084,"19.0":0.01084},I:{"0":0.02483,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.00688,"11":0.0826,_:"6 7 9 10 5.5"},K:{"0":0.2337,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00312},O:{"0":0.03739},H:{"0":0},L:{"0":14.20355},R:{_:"0"},M:{"0":0.65124}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js index 86e86fb787a789..be7d70390ab448 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CI.js @@ -1 +1 @@ -module.exports={C:{"4":0.01032,"34":0.00413,"52":0.00413,"57":0.00619,"58":0.00206,"66":0.00206,"68":0.00413,"70":0.00206,"72":0.00206,"78":0.00413,"95":0.00206,"99":0.00206,"102":0.00206,"106":0.00619,"109":0.00206,"115":0.1775,"119":0.00206,"121":0.00826,"122":0.02477,"123":0.60475,"124":0.23323,"125":0.01032,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 59 60 61 62 63 64 65 67 69 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 103 104 105 107 108 110 111 112 113 114 116 117 118 120 126 127 3.5 3.6"},D:{"11":0.00206,"36":0.00619,"37":0.00206,"39":0.00206,"41":0.00206,"47":0.00619,"49":0.00206,"50":0.00206,"56":0.00206,"58":0.00413,"63":0.00413,"64":0.00413,"65":0.01651,"66":0.00206,"68":0.00413,"69":0.00619,"70":0.02477,"71":0.00206,"72":0.00206,"73":0.00206,"74":0.00206,"75":0.00206,"76":0.00413,"77":0.00206,"78":0.00206,"79":0.03715,"80":0.00619,"81":0.01445,"83":0.01238,"85":0.00206,"86":0.00206,"87":0.19608,"88":0.0227,"89":0.00619,"90":0.00413,"91":0.04541,"92":0.00206,"93":0.01032,"94":0.00826,"95":0.03715,"96":0.00619,"97":0.00413,"98":0.01445,"99":0.0743,"100":0.00413,"101":0.01032,"102":0.02064,"103":0.0516,"104":0.00826,"105":0.03509,"106":0.0227,"107":0.00619,"108":0.01238,"109":1.88443,"110":0.01238,"111":0.00619,"112":0.00206,"113":0.00413,"114":0.01858,"115":0.00826,"116":0.03302,"117":0.01032,"118":0.01445,"119":0.11352,"120":0.21878,"121":0.516,"122":5.8019,"123":1.51291,"124":0.00413,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 40 42 43 44 45 46 48 51 52 53 54 55 57 59 60 61 62 67 84 125 126"},F:{"46":0.00206,"62":0.00206,"68":0.00206,"76":0.00413,"79":0.00206,"95":0.03509,"102":0.00206,"106":0.00619,"107":0.39216,"108":0.18989,"109":0.00206,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 63 64 65 66 67 69 70 71 72 73 74 75 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00413,"13":0.00206,"14":0.00206,"15":0.00206,"16":0.00206,"17":0.00206,"18":0.01238,"84":0.00206,"85":0.00206,"89":0.00206,"90":0.00206,"92":0.0227,"100":0.00206,"107":0.00206,"109":0.01445,"110":0.00413,"111":0.00206,"112":0.00206,"113":0.00206,"114":0.00206,"115":0.00206,"116":0.00413,"117":0.00206,"118":0.00413,"119":0.02683,"120":0.02477,"121":0.07224,"122":1.60992,"123":0.13622,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108"},E:{"15":0.00206,_:"0 4 5 6 7 8 9 10 11 12 13 14 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 17.5","5.1":0.00206,"12.1":0.00413,"13.1":0.04128,"14.1":0.00826,"15.5":0.00619,"15.6":0.03096,"16.0":0.00206,"16.1":0.00206,"16.2":0.00206,"16.3":0.00826,"16.4":0.00206,"16.5":0.00413,"16.6":0.01858,"17.0":0.01032,"17.1":0.01651,"17.2":0.04747,"17.3":0.07637,"17.4":0.02477},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00335,"5.0-5.1":0.00167,"6.0-6.1":0.01005,"7.0-7.1":0.01172,"8.1-8.4":0.00335,"9.0-9.2":0.0067,"9.3":0.04187,"10.0-10.2":0.0067,"10.3":0.07034,"11.0-11.2":0.05024,"11.3-11.4":0.01675,"12.0-12.1":0.01507,"12.2-12.5":0.28972,"13.0-13.1":0.00502,"13.2":0.05024,"13.3":0.01507,"13.4-13.7":0.05694,"14.0-14.4":0.10886,"14.5-14.8":0.17082,"15.0-15.1":0.07369,"15.2-15.3":0.08708,"15.4":0.10216,"15.5":0.13063,"15.6-15.8":1.09358,"16.0":0.26628,"16.1":0.55098,"16.2":0.26628,"16.3":0.47394,"16.4":0.10048,"16.5":0.21269,"16.6-16.7":1.61107,"17.0":0.20934,"17.1":0.41868,"17.2":0.67491,"17.3":8.30655,"17.4":1.21919,"17.5":0},P:{"4":0.04054,"20":0.01013,"21":0.06081,"22":0.05067,"23":0.44594,"24":0.31418,"5.0-5.4":0.01013,_:"6.2-6.4 8.2 12.0 14.0 15.0","7.2-7.4":0.17229,"9.2":0.0304,"10.1":0.02027,"11.1-11.2":0.01013,"13.0":0.01013,"16.0":0.04054,"17.0":0.02027,"18.0":0.02027,"19.0":0.06081},I:{"0":0.02371,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.72705,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00206,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00794,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":65.23538},R:{_:"0"},M:{"0":0.07937},Q:{"14.9":0.00794},O:{"0":0.08731},H:{"0":0.4}}; +module.exports={C:{"52":0.00394,"54":0.00197,"57":0.00394,"58":0.00197,"68":0.00592,"72":0.00592,"78":0.00394,"79":0.00197,"88":0.01578,"94":0.00197,"102":0.00394,"113":0.00197,"114":0.00789,"115":0.1479,"119":0.00197,"121":0.00197,"122":0.00592,"123":0.02169,"124":0.56005,"125":0.33918,"126":0.00592,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 116 117 118 120 127 128 3.5 3.6"},D:{"35":0.00197,"40":0.00197,"43":0.00197,"46":0.00592,"47":0.00394,"49":0.0138,"56":0.00394,"58":0.00394,"59":0.00197,"64":0.00394,"65":0.00986,"68":0.00789,"69":0.00394,"70":0.0138,"72":0.00394,"73":0.00394,"75":0.00197,"76":0.00394,"77":0.00592,"78":0.00197,"79":0.01578,"80":0.00986,"81":0.00789,"83":0.00592,"85":0.00789,"86":0.00197,"87":0.19128,"88":0.01972,"89":0.00592,"90":0.00789,"91":0.00986,"92":0.00197,"93":0.00789,"94":0.00789,"95":0.01972,"96":0.00394,"97":0.00394,"98":0.00394,"99":0.0493,"100":0.00394,"101":0.00986,"102":0.00986,"103":0.05324,"104":0.0493,"105":0.01972,"106":0.01183,"107":0.00789,"108":0.01775,"109":1.88326,"110":0.00394,"111":0.00394,"112":0.00197,"113":0.00394,"114":0.0138,"115":0.00394,"116":0.06508,"117":0.00394,"118":0.00789,"119":0.07296,"120":0.17156,"121":0.08282,"122":0.31946,"123":5.59851,"124":2.53402,"125":0.01578,"126":0.00197,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 41 42 44 45 48 50 51 52 53 54 55 57 60 61 62 63 66 67 71 74 84 127"},F:{"46":0.00197,"73":0.00197,"79":0.00197,"95":0.03352,"102":0.00197,"106":0.00197,"107":0.02958,"108":0.35102,"109":0.08282,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00394,"14":0.00197,"17":0.00394,"18":0.00986,"79":0.00197,"84":0.00197,"85":0.00197,"89":0.00197,"90":0.00197,"92":0.01578,"100":0.00197,"109":0.01183,"110":0.00986,"113":0.00197,"114":0.00394,"115":0.00197,"116":0.00986,"117":0.00197,"118":0.00197,"119":0.00789,"120":0.01972,"121":0.01183,"122":0.11832,"123":1.19503,"124":0.56991,_:"13 15 16 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112"},E:{"14":0.00394,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.2 17.5","13.1":0.02169,"14.1":0.00592,"15.5":0.00394,"15.6":0.02958,"16.0":0.00197,"16.1":0.00197,"16.3":0.00789,"16.4":0.00394,"16.5":0.00789,"16.6":0.01578,"17.0":0.00394,"17.1":0.00986,"17.2":0.02761,"17.3":0.0493,"17.4":0.0986},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00308,"5.0-5.1":0.00308,"6.0-6.1":0.0077,"7.0-7.1":0.01232,"8.1-8.4":0.00308,"9.0-9.2":0.0077,"9.3":0.03849,"10.0-10.2":0.0077,"10.3":0.06159,"11.0-11.2":0.05235,"11.3-11.4":0.0154,"12.0-12.1":0.01078,"12.2-12.5":0.25098,"13.0-13.1":0.00462,"13.2":0.05081,"13.3":0.01232,"13.4-13.7":0.04773,"14.0-14.4":0.09393,"14.5-14.8":0.1432,"15.0-15.1":0.06621,"15.2-15.3":0.07545,"15.4":0.08623,"15.5":0.10932,"15.6-15.8":0.95466,"16.0":0.22327,"16.1":0.46501,"16.2":0.22327,"16.3":0.39418,"16.4":0.08161,"16.5":0.17091,"16.6-16.7":1.35038,"17.0":0.16168,"17.1":0.29872,"17.2":0.39726,"17.3":2.89785,"17.4":6.54094,"17.5":0.06005},P:{"4":0.03138,"20":0.01046,"21":0.0523,"22":0.06276,"23":0.17783,"24":0.5858,"5.0-5.4":0.01046,_:"6.2-6.4 8.2 9.2 13.0 15.0","7.2-7.4":0.26152,"10.1":0.01046,"11.1-11.2":0.03138,"12.0":0.01046,"14.0":0.01046,"16.0":0.02092,"17.0":0.01046,"18.0":0.01046,"19.0":0.0523},I:{"0":0.02399,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"11":0.00197,_:"6 7 8 9 10 5.5"},K:{"0":0.64125,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00803,_:"3.0-3.1"},Q:{"14.9":0.00803},O:{"0":0.08831},H:{"0":0.29},L:{"0":66.27511},R:{_:"0"},M:{"0":0.08831}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CK.js index c9c27ce52028be..7815fcb8c7e5fd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CK.js @@ -1 +1 @@ -module.exports={C:{"75":0.01744,"78":0.00436,"106":0.00872,"115":0.21795,"118":0.00436,"121":0.0741,"122":2.24924,"123":0.44026,"124":0.18308,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 112 113 114 116 117 119 120 125 126 127 3.5 3.6"},D:{"41":0.29205,"87":0.00436,"94":0.06103,"103":0.12641,"106":0.10026,"107":0.0218,"109":0.65821,"111":0.00872,"115":0.03051,"116":0.10898,"117":0.01308,"118":0.00872,"119":0.03923,"120":0.11769,"121":1.36437,"122":22.13936,"123":7.06594,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 93 95 96 97 98 99 100 101 102 104 105 108 110 112 113 114 124 125 126"},F:{"105":0.00872,"107":0.0218,"108":0.00872,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00436,"109":0.00436,"117":0.00436,"119":0.01308,"120":0.01308,"121":0.0959,"122":3.43925,"123":0.20051,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 118"},E:{"14":0.0959,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 17.0 17.5","13.1":0.11333,"14.1":0.06974,"15.2-15.3":0.00872,"15.5":0.03051,"15.6":0.08282,"16.0":0.02615,"16.1":0.04795,"16.2":0.51436,"16.3":0.11769,"16.4":0.04795,"16.5":0.08282,"16.6":0.25282,"17.1":0.15692,"17.2":0.1918,"17.3":0.61026,"17.4":0.11333},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00433,"5.0-5.1":0.00217,"6.0-6.1":0.013,"7.0-7.1":0.01516,"8.1-8.4":0.00433,"9.0-9.2":0.00867,"9.3":0.05416,"10.0-10.2":0.00867,"10.3":0.09099,"11.0-11.2":0.06499,"11.3-11.4":0.02166,"12.0-12.1":0.0195,"12.2-12.5":0.37477,"13.0-13.1":0.0065,"13.2":0.06499,"13.3":0.0195,"13.4-13.7":0.07366,"14.0-14.4":0.14081,"14.5-14.8":0.22097,"15.0-15.1":0.09532,"15.2-15.3":0.11265,"15.4":0.13215,"15.5":0.16897,"15.6-15.8":1.41461,"16.0":0.34445,"16.1":0.71272,"16.2":0.34445,"16.3":0.61307,"16.4":0.12998,"16.5":0.27512,"16.6-16.7":2.084,"17.0":0.27079,"17.1":0.54158,"17.2":0.87303,"17.3":10.74497,"17.4":1.57708,"17.5":0},P:{"20":0.08199,"21":0.20499,"22":0.21523,"23":1.88587,"24":2.31634,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0","7.2-7.4":0.17424,"14.0":0.01025,"17.0":0.0205,"18.0":0.041,"19.0":0.041},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.04512,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.0741,"11":0.10898,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":30.87418},R:{_:"0"},M:{"0":0.30456},Q:{_:"14.9"},O:{"0":0.05076},H:{"0":0}}; +module.exports={C:{"106":0.02014,"114":0.00403,"115":0.17723,"122":0.03222,"123":0.00806,"124":0.35849,"125":0.22154,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 112 113 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"79":0.00403,"87":0.00403,"94":0.07653,"103":0.0282,"106":0.00403,"109":0.74115,"116":0.1732,"117":0.02417,"119":0.00806,"120":0.05236,"121":0.15709,"122":0.89019,"123":20.35348,"124":10.49294,"125":0.01611,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 95 96 97 98 99 100 101 102 104 105 107 108 110 111 112 113 114 115 118 126 127"},F:{"107":0.00806,"108":0.00806,"109":0.0282,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00403,"116":0.06445,"121":0.06848,"122":0.21348,"123":2.05831,"124":0.94255,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 117 118 119 120"},E:{"14":0.06848,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 17.5","13.1":0.05639,"14.1":0.04431,"15.1":0.00403,"15.2-15.3":0.02014,"15.5":0.01208,"15.6":0.08459,"16.0":0.01208,"16.1":0.03222,"16.2":0.00403,"16.3":0.08862,"16.4":0.04834,"16.5":0.06848,"16.6":0.08459,"17.0":0.00403,"17.1":0.21751,"17.2":0.04834,"17.3":0.15709,"17.4":0.64045},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0048,"5.0-5.1":0.0048,"6.0-6.1":0.01199,"7.0-7.1":0.01918,"8.1-8.4":0.0048,"9.0-9.2":0.01199,"9.3":0.05994,"10.0-10.2":0.01199,"10.3":0.0959,"11.0-11.2":0.08152,"11.3-11.4":0.02398,"12.0-12.1":0.01678,"12.2-12.5":0.3908,"13.0-13.1":0.00719,"13.2":0.07912,"13.3":0.01918,"13.4-13.7":0.07432,"14.0-14.4":0.14625,"14.5-14.8":0.22297,"15.0-15.1":0.1031,"15.2-15.3":0.11748,"15.4":0.13426,"15.5":0.17023,"15.6-15.8":1.48649,"16.0":0.34765,"16.1":0.72406,"16.2":0.34765,"16.3":0.61378,"16.4":0.12707,"16.5":0.26613,"16.6-16.7":2.10266,"17.0":0.25174,"17.1":0.46513,"17.2":0.61857,"17.3":4.51221,"17.4":10.18484,"17.5":0.0935},P:{"20":0.09156,"21":0.1119,"22":0.1526,"23":0.55952,"24":3.90648,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 15.0 16.0","7.2-7.4":0.1119,"11.1-11.2":0.01017,"14.0":0.04069,"17.0":0.01017,"18.0":0.02035,"19.0":0.03052},I:{"0":0.00595,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"10":0.13695,"11":0.11278,_:"6 7 8 9 5.5"},K:{"0":0.02389,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.20308},H:{"0":0},L:{"0":31.13134},R:{_:"0"},M:{"0":0.2867}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js index 73947eee416fd7..e45b5031d8b288 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CL.js @@ -1 +1 @@ -module.exports={C:{"4":0.0203,"52":0.01015,"73":0.00508,"78":0.0203,"86":0.00508,"103":0.00508,"105":0.01015,"106":0.00508,"108":0.00508,"111":0.00508,"113":0.00508,"115":0.17258,"119":0.00508,"120":0.02538,"121":0.01523,"122":0.02538,"123":0.76648,"124":0.35532,"125":0.00508,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 107 109 110 112 114 116 117 118 126 127 3.5 3.6"},D:{"38":0.01523,"47":0.00508,"48":0.01015,"49":0.01523,"63":0.00508,"65":0.01015,"67":0.00508,"70":0.00508,"74":0.01015,"79":0.10152,"81":0.00508,"83":0.00508,"85":0.00508,"87":0.08122,"88":0.01015,"89":0.00508,"90":0.00508,"91":0.01015,"92":0.00508,"93":0.00508,"94":0.00508,"95":0.00508,"96":0.00508,"97":0.00508,"98":0.00508,"99":0.01015,"100":0.01015,"101":0.00508,"102":0.01523,"103":0.08122,"104":0.00508,"105":0.0203,"106":0.03046,"107":0.01015,"108":0.03046,"109":1.59386,"110":0.03046,"111":0.02538,"112":0.0203,"113":0.05076,"114":0.07106,"115":0.0203,"116":0.20304,"117":0.04061,"118":0.03553,"119":0.09137,"120":0.36547,"121":1.13702,"122":17.52235,"123":5.39579,"124":0.00508,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 71 72 73 75 76 77 78 80 84 86 125 126"},F:{"36":0.00508,"95":0.03553,"102":0.00508,"104":0.00508,"105":0.00508,"106":0.03553,"107":4.66484,"108":0.35024,"109":0.00508,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00508,"92":0.01523,"100":0.00508,"105":0.00508,"107":0.00508,"109":0.02538,"110":0.00508,"114":0.00508,"115":0.00508,"116":0.00508,"117":0.00508,"118":0.00508,"119":0.01015,"120":0.04061,"121":0.1066,"122":3.21311,"123":0.35532,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106 108 111 112 113"},E:{"5":0.00508,"14":0.01015,"15":0.00508,_:"0 4 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00508,"13.1":0.03553,"14.1":0.04061,"15.1":0.01015,"15.2-15.3":0.00508,"15.4":0.01015,"15.5":0.0203,"15.6":0.11675,"16.0":0.01015,"16.1":0.02538,"16.2":0.01015,"16.3":0.05076,"16.4":0.02538,"16.5":0.03553,"16.6":0.13198,"17.0":0.03553,"17.1":0.07106,"17.2":0.1472,"17.3":0.37055,"17.4":0.11167},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00173,"5.0-5.1":0.00086,"6.0-6.1":0.00518,"7.0-7.1":0.00605,"8.1-8.4":0.00173,"9.0-9.2":0.00346,"9.3":0.0216,"10.0-10.2":0.00346,"10.3":0.03629,"11.0-11.2":0.02592,"11.3-11.4":0.00864,"12.0-12.1":0.00778,"12.2-12.5":0.1495,"13.0-13.1":0.00259,"13.2":0.02592,"13.3":0.00778,"13.4-13.7":0.02938,"14.0-14.4":0.05617,"14.5-14.8":0.08814,"15.0-15.1":0.03802,"15.2-15.3":0.04494,"15.4":0.05271,"15.5":0.0674,"15.6-15.8":0.5643,"16.0":0.1374,"16.1":0.28431,"16.2":0.1374,"16.3":0.24456,"16.4":0.05185,"16.5":0.10975,"16.6-16.7":0.83132,"17.0":0.10802,"17.1":0.21604,"17.2":0.34826,"17.3":4.28624,"17.4":0.62911,"17.5":0},P:{"4":0.10371,"20":0.02074,"21":0.03111,"22":0.05185,"23":0.73632,"24":0.78817,"5.0-5.4":0.01037,"6.2-6.4":0.01037,"7.2-7.4":0.02074,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01037,"13.0":0.01037,"16.0":0.02074,"17.0":0.01037,"18.0":0.01037,"19.0":0.02074},I:{"0":0.09317,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.21666,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0217,"9":0.00543,"10":0.01085,"11":0.11937,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":39.18356},R:{_:"0"},M:{"0":0.18711},Q:{"14.9":0.00492},O:{"0":0.01477},H:{"0":0}}; +module.exports={C:{"4":0.0551,"52":0.01002,"70":0.00501,"73":0.00501,"78":0.01503,"86":0.00501,"103":0.00501,"105":0.01002,"106":0.00501,"108":0.00501,"112":0.00501,"113":0.00501,"115":0.17031,"118":0.00501,"119":0.00501,"120":0.03005,"121":0.00501,"122":0.01002,"123":0.05009,"124":0.80645,"125":0.42076,"126":0.00501,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 74 75 76 77 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 107 109 110 111 114 116 117 127 128 3.5 3.6"},D:{"38":0.01503,"47":0.01002,"48":0.00501,"49":0.01503,"63":0.00501,"65":0.01503,"74":0.01002,"79":0.12523,"81":0.00501,"83":0.00501,"86":0.00501,"87":0.07514,"88":0.00501,"89":0.00501,"90":0.00501,"91":0.01002,"92":0.00501,"93":0.00501,"94":0.1102,"96":0.01002,"97":0.00501,"98":0.00501,"99":0.02004,"100":0.00501,"101":0.00501,"102":0.01503,"103":0.08515,"104":0.00501,"105":0.00501,"106":0.01503,"107":0.01503,"108":0.03005,"109":1.70306,"110":0.02505,"111":0.02004,"112":0.02004,"113":0.0551,"114":0.08515,"115":0.01503,"116":0.23542,"117":0.02505,"118":0.03506,"119":0.06512,"120":0.16029,"121":0.21038,"122":0.9467,"123":18.31791,"124":7.65375,"125":0.01503,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 68 69 70 71 72 73 75 76 77 78 80 84 85 95 126 127"},F:{"28":0.00501,"36":0.00501,"92":0.00501,"95":0.03506,"102":0.00501,"104":0.01002,"106":0.00501,"107":4.18252,"108":0.71128,"109":0.26047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01002,"100":0.00501,"109":0.03506,"111":0.00501,"114":0.00501,"115":0.00501,"116":0.00501,"117":0.00501,"118":0.00501,"119":0.00501,"120":0.02004,"121":0.02505,"122":0.20036,"123":2.77499,"124":1.34742,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113"},E:{"9":0.00501,"14":0.01503,"15":0.00501,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00501,"13.1":0.03506,"14.1":0.05009,"15.1":0.00501,"15.2-15.3":0.00501,"15.4":0.01002,"15.5":0.02004,"15.6":0.14526,"16.0":0.01002,"16.1":0.02505,"16.2":0.01503,"16.3":0.05009,"16.4":0.02004,"16.5":0.03005,"16.6":0.10018,"17.0":0.03005,"17.1":0.05009,"17.2":0.08014,"17.3":0.12523,"17.4":0.48587,"17.5":0.00501},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00175,"5.0-5.1":0.00175,"6.0-6.1":0.00438,"7.0-7.1":0.00701,"8.1-8.4":0.00175,"9.0-9.2":0.00438,"9.3":0.02191,"10.0-10.2":0.00438,"10.3":0.03506,"11.0-11.2":0.0298,"11.3-11.4":0.00876,"12.0-12.1":0.00613,"12.2-12.5":0.14286,"13.0-13.1":0.00263,"13.2":0.02892,"13.3":0.00701,"13.4-13.7":0.02717,"14.0-14.4":0.05346,"14.5-14.8":0.08151,"15.0-15.1":0.03769,"15.2-15.3":0.04294,"15.4":0.04908,"15.5":0.06223,"15.6-15.8":0.54338,"16.0":0.12708,"16.1":0.26468,"16.2":0.12708,"16.3":0.22436,"16.4":0.04645,"16.5":0.09728,"16.6-16.7":0.76862,"17.0":0.09202,"17.1":0.17003,"17.2":0.22612,"17.3":1.64942,"17.4":3.72303,"17.5":0.03418},P:{"4":0.09468,"20":0.02104,"21":0.03156,"22":0.04208,"23":0.14728,"24":1.20979,"5.0-5.4":0.01052,_:"6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.01052,"11.1-11.2":0.01052,"16.0":0.02104,"17.0":0.01052,"18.0":0.01052,"19.0":0.02104},I:{"0":0.09444,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},A:{"8":0.01717,"9":0.00572,"10":0.00572,"11":0.05152,_:"6 7 5.5"},K:{"0":0.30445,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00499},O:{"0":0.01497},H:{"0":0},L:{"0":39.00764},R:{_:"0"},M:{"0":0.20463}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js index 182484f57cc35a..76181c4c37c5eb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CM.js @@ -1 +1 @@ -module.exports={C:{"4":0.00153,"34":0.00153,"43":0.00153,"47":0.00153,"48":0.00153,"50":0.00307,"51":0.0046,"52":0.03528,"56":0.00153,"59":0.00153,"60":0.00153,"61":0.00307,"68":0.00153,"72":0.00767,"78":0.00767,"79":0.00153,"86":0.00153,"88":0.00153,"89":0.01074,"91":0.00767,"96":0.00153,"98":0.00153,"99":0.00153,"100":0.00153,"101":0.00153,"102":0.00153,"109":0.00153,"110":0.00767,"111":0.00153,"112":0.00307,"113":0.0046,"114":0.01534,"115":0.25464,"116":0.00307,"117":0.00153,"118":0.00307,"119":0.01074,"120":0.00614,"121":0.01381,"122":0.02761,"123":0.40958,"124":0.13653,"125":0.00307,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 53 54 55 57 58 62 63 64 65 66 67 69 70 71 73 74 75 76 77 80 81 82 83 84 85 87 90 92 93 94 95 97 103 104 105 106 107 108 126 127 3.5 3.6"},D:{"11":0.00153,"29":0.00307,"31":0.00153,"34":0.00153,"38":0.00307,"41":0.00153,"43":0.00153,"47":0.00153,"49":0.00307,"50":0.00153,"55":0.00153,"56":0.01687,"57":0.00153,"58":0.00307,"62":0.00153,"63":0.00153,"64":0.00153,"65":0.00307,"67":0.00307,"68":0.0092,"70":0.00153,"71":0.00307,"72":0.0046,"73":0.00307,"74":0.0046,"75":0.0046,"76":0.00307,"77":0.00307,"78":0.00153,"79":0.0046,"80":0.0046,"81":0.01534,"83":0.00153,"84":0.00153,"85":0.01381,"86":0.00153,"87":0.01381,"88":0.01687,"89":0.00307,"90":0.0046,"91":0.00307,"92":0.00767,"93":0.01227,"94":0.00153,"95":0.03068,"96":0.00614,"97":0.0046,"98":0.00307,"99":0.00153,"100":0.00153,"101":0.00153,"102":0.01074,"103":0.01687,"104":0.00614,"105":0.00767,"106":0.0046,"107":0.00153,"108":0.01074,"109":0.65502,"110":0.00153,"111":0.01227,"112":0.00307,"113":0.00307,"114":0.0092,"115":0.01074,"116":0.03835,"117":0.01994,"118":0.01534,"119":0.03375,"120":0.09051,"121":0.27919,"122":2.42986,"123":0.63354,"124":0.00153,"125":0.00153,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 33 35 36 37 39 40 42 44 45 46 48 51 52 53 54 59 60 61 66 69 126"},F:{"36":0.00153,"44":0.00153,"64":0.00153,"79":0.01381,"80":0.00153,"85":0.00153,"90":0.00153,"95":0.02761,"105":0.0046,"106":0.0046,"107":0.24544,"108":0.12579,"109":0.0046,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 82 83 84 86 87 88 89 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01227,"13":0.0046,"14":0.0092,"15":0.00307,"16":0.00614,"17":0.00614,"18":0.01994,"84":0.00614,"89":0.02761,"90":0.00614,"92":0.02915,"100":0.0046,"103":0.00153,"105":0.00153,"109":0.01227,"110":0.00153,"111":0.00153,"113":0.00767,"114":0.00307,"115":0.00153,"116":0.00307,"117":0.01074,"118":0.00153,"119":0.0092,"120":0.05216,"121":0.09357,"122":0.78541,"123":0.04909,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 106 107 108 112"},E:{"10":0.0046,"13":0.00153,"14":0.0046,_:"0 4 5 6 7 8 9 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 16.0 16.2 17.5","11.1":0.00153,"13.1":0.00307,"14.1":0.00307,"15.2-15.3":0.00153,"15.4":0.00153,"15.5":0.00153,"15.6":0.0092,"16.1":0.00307,"16.3":0.00307,"16.4":0.00153,"16.5":0.00153,"16.6":0.01074,"17.0":0.00614,"17.1":0.0046,"17.2":0.0046,"17.3":0.01381,"17.4":0.00767},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00217,"5.0-5.1":0.00109,"6.0-6.1":0.00651,"7.0-7.1":0.0076,"8.1-8.4":0.00217,"9.0-9.2":0.00434,"9.3":0.02713,"10.0-10.2":0.00434,"10.3":0.04558,"11.0-11.2":0.03256,"11.3-11.4":0.01085,"12.0-12.1":0.00977,"12.2-12.5":0.18776,"13.0-13.1":0.00326,"13.2":0.03256,"13.3":0.00977,"13.4-13.7":0.0369,"14.0-14.4":0.07055,"14.5-14.8":0.1107,"15.0-15.1":0.04776,"15.2-15.3":0.05644,"15.4":0.06621,"15.5":0.08466,"15.6-15.8":0.70873,"16.0":0.17257,"16.1":0.35708,"16.2":0.17257,"16.3":0.30715,"16.4":0.06512,"16.5":0.13784,"16.6-16.7":1.0441,"17.0":0.13567,"17.1":0.27134,"17.2":0.43739,"17.3":5.38329,"17.4":0.79013,"17.5":0},P:{"4":0.13565,"20":0.02087,"21":0.09391,"22":0.07304,"23":0.19826,"24":0.09391,"5.0-5.4":0.0313,"6.2-6.4":0.01043,"7.2-7.4":0.09391,_:"8.2 10.1 12.0 15.0 17.0","9.2":0.0313,"11.1-11.2":0.02087,"13.0":0.02087,"14.0":0.02087,"16.0":0.02087,"18.0":0.01043,"19.0":0.02087},I:{"0":0.01686,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":1.68749,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00153,"10":0.00153,"11":0.13346,_:"6 7 9 5.5"},S:{"2.5":0.12699,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.00538},R:{_:"0"},M:{"0":0.13546},Q:{"14.9":0.00847},O:{"0":0.17779},H:{"0":2.3}}; +module.exports={C:{"4":0.00133,"34":0.00133,"36":0.00133,"44":0.00133,"47":0.00133,"50":0.00133,"51":0.00267,"52":0.01734,"55":0.00133,"56":0.00133,"58":0.00133,"60":0.00133,"63":0.00133,"65":0.00133,"66":0.00133,"68":0.00133,"72":0.00667,"78":0.00934,"88":0.00133,"89":0.00133,"91":0.00133,"94":0.00133,"95":0.00133,"98":0.00133,"99":0.00267,"100":0.00267,"102":0.00534,"103":0.00133,"106":0.00133,"107":0.00133,"108":0.00133,"109":0.00133,"111":0.00133,"113":0.00267,"114":0.02401,"115":0.24279,"116":0.00267,"117":0.00267,"118":0.00133,"119":0.00133,"120":0.00534,"121":0.008,"122":0.008,"123":0.03602,"124":0.35618,"125":0.16275,"126":0.00133,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 43 45 46 48 49 53 54 57 59 61 62 64 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 96 97 101 104 105 110 112 127 128 3.5 3.6"},D:{"11":0.00267,"29":0.00133,"35":0.00133,"38":0.00534,"39":0.00133,"40":0.00267,"41":0.00133,"42":0.00133,"43":0.00267,"46":0.00133,"49":0.00267,"50":0.00133,"55":0.00133,"56":0.03335,"57":0.00133,"58":0.01201,"59":0.00133,"60":0.00133,"63":0.00133,"64":0.00267,"65":0.00133,"67":0.00133,"68":0.05069,"69":0.00267,"70":0.004,"71":0.00267,"72":0.004,"74":0.00267,"75":0.004,"76":0.00133,"77":0.00133,"78":0.00133,"79":0.01601,"80":0.00534,"81":0.00534,"83":0.004,"84":0.00133,"85":0.01334,"86":0.00267,"87":0.01201,"88":0.02134,"89":0.00534,"90":0.00534,"91":0.00267,"92":0.008,"93":0.01067,"94":0.00267,"95":0.05336,"96":0.00267,"97":0.00267,"98":0.00267,"99":0.00267,"100":0.00267,"101":0.02134,"102":0.004,"103":0.01601,"104":0.00133,"105":0.004,"106":0.00534,"107":0.00133,"108":0.02935,"109":0.60163,"110":0.004,"111":0.00667,"112":0.008,"113":0.004,"114":0.01201,"115":0.00667,"116":0.02001,"117":0.008,"118":0.008,"119":0.02268,"120":0.04402,"121":0.06003,"122":0.18676,"123":2.24112,"124":0.94714,"125":0.00267,"126":0.00133,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 36 37 44 45 47 48 51 52 53 54 61 62 66 73 127"},F:{"44":0.00133,"79":0.00267,"85":0.004,"86":0.00133,"95":0.03068,"99":0.00133,"105":0.00133,"106":0.00267,"107":0.02401,"108":0.22011,"109":0.11472,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.008,"13":0.00534,"14":0.00934,"15":0.00534,"16":0.00267,"17":0.00534,"18":0.01734,"84":0.004,"85":0.00267,"89":0.01201,"90":0.004,"92":0.02801,"100":0.00667,"107":0.00133,"109":0.008,"112":0.00133,"113":0.00267,"114":0.00133,"115":0.01067,"116":0.00133,"117":0.00534,"118":0.00534,"119":0.01334,"120":0.00934,"121":0.02268,"122":0.13874,"123":0.61364,"124":0.22945,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 110 111"},E:{"10":0.004,"13":0.00267,"14":0.00534,_:"0 4 5 6 7 8 9 11 12 15 3.1 3.2 5.1 6.1 9.1 10.1 11.1 12.1 16.2 16.4 17.5","7.1":0.00133,"13.1":0.01334,"14.1":0.004,"15.1":0.00133,"15.2-15.3":0.00267,"15.4":0.00267,"15.5":0.00133,"15.6":0.00934,"16.0":0.00133,"16.1":0.00267,"16.3":0.00133,"16.5":0.00267,"16.6":0.01467,"17.0":0.00133,"17.1":0.004,"17.2":0.00267,"17.3":0.00667,"17.4":0.01067},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00228,"5.0-5.1":0.00228,"6.0-6.1":0.00571,"7.0-7.1":0.00914,"8.1-8.4":0.00228,"9.0-9.2":0.00571,"9.3":0.02855,"10.0-10.2":0.00571,"10.3":0.04569,"11.0-11.2":0.03883,"11.3-11.4":0.01142,"12.0-12.1":0.008,"12.2-12.5":0.18618,"13.0-13.1":0.00343,"13.2":0.03769,"13.3":0.00914,"13.4-13.7":0.03541,"14.0-14.4":0.06967,"14.5-14.8":0.10622,"15.0-15.1":0.04911,"15.2-15.3":0.05597,"15.4":0.06396,"15.5":0.08109,"15.6-15.8":0.70815,"16.0":0.16562,"16.1":0.34494,"16.2":0.16562,"16.3":0.2924,"16.4":0.06054,"16.5":0.12678,"16.6-16.7":1.00169,"17.0":0.11993,"17.1":0.22158,"17.2":0.29468,"17.3":2.14958,"17.4":4.85198,"17.5":0.04454},P:{"4":0.14759,"20":0.02108,"21":0.11596,"22":0.06325,"23":0.14759,"24":0.2741,"5.0-5.4":0.03163,"6.2-6.4":0.01054,"7.2-7.4":0.0738,"8.2":0.01054,"9.2":0.04217,_:"10.1 12.0 13.0 14.0 15.0 17.0","11.1-11.2":0.02108,"16.0":0.02108,"18.0":0.01054,"19.0":0.02108},I:{"0":0.01726,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.00136,"11":0.1227,_:"6 7 9 10 5.5"},K:{"0":1.4217,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.09533,_:"3.0-3.1"},Q:{"14.9":0.00867},O:{"0":0.19932},H:{"0":2.53},L:{"0":75.43828},R:{_:"0"},M:{"0":0.12999}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js index 8ac2fdb4e774e3..97e651b3ab3b53 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CN.js @@ -1 +1 @@ -module.exports={C:{"4":0.01434,"34":0.01434,"43":0.15778,"46":0.00717,"52":0.01434,"63":0.00359,"72":0.0502,"78":0.00359,"88":0.00359,"90":0.00717,"98":0.00717,"102":0.00359,"103":0.00717,"104":0.00359,"105":0.00359,"107":0.00359,"108":0.00717,"109":0.00359,"110":0.00717,"111":0.00359,"113":0.00359,"114":0.00359,"115":0.14344,"116":0.00717,"117":0.00359,"118":0.00717,"119":0.00717,"120":0.00359,"121":0.01793,"122":0.15061,"123":0.35143,"124":0.13985,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 91 92 93 94 95 96 97 99 100 101 106 112 125 126 127 3.5 3.6"},D:{"11":0.01076,"17":0.00717,"31":0.01076,"40":0.00359,"41":0.00359,"42":0.00717,"43":0.00359,"45":0.01793,"47":0.01076,"48":0.07531,"49":0.05738,"50":0.23668,"51":0.00359,"53":0.01434,"54":0.00359,"55":0.03586,"56":0.01434,"57":0.02869,"58":0.00717,"59":0.00717,"60":0.00717,"61":0.01434,"62":0.00717,"63":0.02869,"64":0.00359,"65":0.00717,"66":0.00359,"67":0.01076,"68":0.00359,"69":0.55583,"70":0.25102,"71":0.01793,"72":0.01076,"73":0.07889,"74":0.01076,"75":0.02869,"76":0.00717,"77":0.27971,"78":0.08606,"79":0.1793,"80":0.04662,"81":0.03586,"83":0.11834,"84":0.05738,"85":0.01434,"86":0.27612,"87":0.04662,"88":0.01076,"89":0.03227,"90":0.11117,"91":0.04662,"92":0.1542,"93":0.01076,"94":0.04303,"95":0.04662,"96":0.01793,"97":0.14703,"98":1.35909,"99":0.21875,"100":0.10758,"101":0.13985,"102":0.05379,"103":0.05738,"104":0.03227,"105":0.04662,"106":0.02869,"107":0.06813,"108":0.08606,"109":1.06504,"110":0.03586,"111":0.05379,"112":0.09682,"113":0.15778,"114":0.09324,"115":0.0251,"116":0.05738,"117":0.0251,"118":0.05738,"119":0.10041,"120":0.24026,"121":0.54866,"122":1.84679,"123":0.4877,"124":0.03586,"125":0.00717,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 44 46 52 126"},F:{"37":0.00717,"95":0.00717,"107":0.01793,"108":0.01076,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00359},B:{"14":0.00359,"16":0.00359,"17":0.00359,"18":0.05379,"84":0.00359,"85":0.00359,"86":0.00359,"87":0.00359,"88":0.01076,"89":0.00359,"90":0.00359,"91":0.00359,"92":0.07889,"93":0.00359,"94":0.00359,"96":0.00359,"99":0.00359,"100":0.01076,"101":0.00359,"102":0.00717,"103":0.00359,"104":0.00359,"105":0.00717,"106":0.01434,"107":0.01793,"108":0.05738,"109":0.14703,"110":0.04662,"111":0.04303,"112":0.07172,"113":0.1793,"114":0.13627,"115":0.07889,"116":0.06813,"117":0.07172,"118":0.08965,"119":0.1291,"120":0.32991,"121":0.54866,"122":6.02807,"123":0.50204,_:"12 13 15 79 80 81 83 95 97 98"},E:{"9":0.00717,"13":0.01076,"14":0.05379,"15":0.01076,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00359,"12.1":0.00717,"13.1":0.06813,"14.1":0.08248,"15.1":0.01076,"15.2-15.3":0.01434,"15.4":0.03227,"15.5":0.03945,"15.6":0.1542,"16.0":0.01793,"16.1":0.0502,"16.2":0.04662,"16.3":0.09324,"16.4":0.0251,"16.5":0.03945,"16.6":0.18289,"17.0":0.02152,"17.1":0.0502,"17.2":0.08965,"17.3":0.3837,"17.4":0.06813},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.00124,"6.0-6.1":0.00743,"7.0-7.1":0.00867,"8.1-8.4":0.00248,"9.0-9.2":0.00495,"9.3":0.03096,"10.0-10.2":0.00495,"10.3":0.05202,"11.0-11.2":0.03716,"11.3-11.4":0.01239,"12.0-12.1":0.01115,"12.2-12.5":0.21427,"13.0-13.1":0.00372,"13.2":0.03716,"13.3":0.01115,"13.4-13.7":0.04211,"14.0-14.4":0.08051,"14.5-14.8":0.12633,"15.0-15.1":0.0545,"15.2-15.3":0.0644,"15.4":0.07555,"15.5":0.09661,"15.6-15.8":0.80877,"16.0":0.19693,"16.1":0.40748,"16.2":0.19693,"16.3":0.35051,"16.4":0.07431,"16.5":0.1573,"16.6-16.7":1.19148,"17.0":0.15482,"17.1":0.30964,"17.2":0.49913,"17.3":6.14318,"17.4":0.90166,"17.5":0},P:{"4":0.01155,"20":0.01155,"21":0.01155,"22":0.01155,"23":0.02309,"24":0.20781,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.01155},I:{"0":1.27754,"3":0,"4":0.00013,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00013,"4.2-4.3":0.00077,"4.4":0,"4.4.3-4.4.4":0.00308},K:{"0":0.05773,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.10077,"9":2.01537,"10":0.05038,"11":6.85227,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":37.18},R:{_:"0"},M:{"0":0.17318},Q:{"14.9":4.59242},O:{"0":7.67114},H:{"0":0}}; +module.exports={C:{"4":0.00349,"34":0.01395,"43":0.09764,"52":0.01046,"72":0.00349,"78":0.00349,"88":0.00349,"90":0.00349,"98":0.00349,"102":0.00349,"103":0.00697,"104":0.00349,"107":0.00349,"108":0.00349,"109":0.00349,"110":0.00697,"111":0.00349,"113":0.00349,"114":0.00349,"115":0.14297,"116":0.01046,"117":0.00349,"118":0.00349,"119":0.00349,"120":0.00349,"121":0.01395,"122":0.06974,"123":0.02092,"124":0.44634,"125":0.14297,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 91 92 93 94 95 96 97 99 100 101 105 106 112 126 127 128 3.5 3.6"},D:{"11":0.01744,"17":0.00349,"25":0.00349,"31":0.00697,"39":0.00349,"41":0.00349,"42":0.00349,"43":0.00349,"45":0.01395,"47":0.00697,"48":0.05579,"49":0.06625,"50":0.16738,"53":0.01744,"54":0.00349,"55":0.03487,"56":0.01395,"57":0.0279,"58":0.00349,"59":0.00697,"60":0.00697,"61":0.01395,"62":0.01046,"63":0.03487,"64":0.00349,"65":0.00697,"66":0.00349,"67":0.0279,"68":0.00349,"69":0.56838,"70":0.21271,"71":0.02092,"72":0.01046,"73":0.0802,"74":0.01046,"75":0.02441,"76":0.00697,"77":0.12902,"78":0.07671,"79":0.17784,"80":0.04882,"81":0.03487,"83":0.1081,"84":0.04882,"85":0.01744,"86":0.25106,"87":0.04882,"88":0.01046,"89":0.0279,"90":0.11507,"91":0.04882,"92":0.13599,"93":0.01744,"94":0.0279,"95":0.04533,"96":0.02092,"97":0.13251,"98":1.23789,"99":0.22317,"100":0.10112,"101":0.14297,"102":0.05231,"103":0.04882,"104":0.03138,"105":0.02092,"106":0.03138,"107":0.05231,"108":0.06625,"109":1.12281,"110":0.0279,"111":0.06625,"112":0.10461,"113":0.03138,"114":0.07671,"115":0.02092,"116":0.06625,"117":0.02441,"118":0.05579,"119":0.0802,"120":0.17435,"121":0.2685,"122":0.22666,"123":1.9318,"124":0.6172,"125":0.03138,"126":0.00697,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 26 27 28 29 30 32 33 34 35 36 37 38 40 44 46 51 52 127"},F:{"95":0.00697,"108":0.01744,"109":0.00697,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00349,"16":0.00697,"17":0.00349,"18":0.05579,"84":0.00349,"86":0.00349,"87":0.00349,"88":0.01046,"89":0.00349,"90":0.00349,"91":0.00349,"92":0.0802,"93":0.00349,"94":0.00349,"96":0.00349,"99":0.00349,"100":0.01395,"101":0.00349,"102":0.00697,"103":0.00349,"104":0.00349,"105":0.00697,"106":0.01046,"107":0.01395,"108":0.04184,"109":0.13599,"110":0.03487,"111":0.04184,"112":0.04533,"113":0.17086,"114":0.13948,"115":0.07323,"116":0.06277,"117":0.06625,"118":0.08369,"119":0.11507,"120":0.25106,"121":0.18481,"122":0.66253,"123":4.54007,"124":2.02595,_:"12 13 14 79 80 81 83 85 95 97 98"},E:{"9":0.00349,"13":0.01046,"14":0.04882,"15":0.00697,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00349,"12.1":0.01046,"13.1":0.06277,"14.1":0.06974,"15.1":0.01395,"15.2-15.3":0.01395,"15.4":0.03487,"15.5":0.03836,"15.6":0.14994,"16.0":0.01744,"16.1":0.04882,"16.2":0.03836,"16.3":0.08369,"16.4":0.02441,"16.5":0.04184,"16.6":0.18132,"17.0":0.01744,"17.1":0.04184,"17.2":0.06277,"17.3":0.18132,"17.4":0.35567,"17.5":0.00349},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00231,"5.0-5.1":0.00231,"6.0-6.1":0.00577,"7.0-7.1":0.00923,"8.1-8.4":0.00231,"9.0-9.2":0.00577,"9.3":0.02885,"10.0-10.2":0.00577,"10.3":0.04616,"11.0-11.2":0.03923,"11.3-11.4":0.01154,"12.0-12.1":0.00808,"12.2-12.5":0.18809,"13.0-13.1":0.00346,"13.2":0.03808,"13.3":0.00923,"13.4-13.7":0.03577,"14.0-14.4":0.07039,"14.5-14.8":0.10732,"15.0-15.1":0.04962,"15.2-15.3":0.05654,"15.4":0.06462,"15.5":0.08193,"15.6-15.8":0.71543,"16.0":0.16732,"16.1":0.34849,"16.2":0.16732,"16.3":0.29541,"16.4":0.06116,"16.5":0.12809,"16.6-16.7":1.01199,"17.0":0.12116,"17.1":0.22386,"17.2":0.29771,"17.3":2.17169,"17.4":4.90188,"17.5":0.045},P:{"20":0.01214,"21":0.01214,"22":0.01214,"23":0.01214,"24":0.19418,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.01214},I:{"0":1.00522,"3":0,"4":0.0001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0002,"4.2-4.3":0.00061,"4.4":0,"4.4.3-4.4.4":0.00252},A:{"8":0.04967,"9":2.08616,"11":6.80484,_:"6 7 10 5.5"},K:{"0":0.05861,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":5.26821},O:{"0":7.91859},H:{"0":0},L:{"0":37.92625},R:{_:"0"},M:{"0":0.22792}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js index b1c5adf51e3344..f23b3992b260d7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CO.js @@ -1 +1 @@ -module.exports={C:{"4":0.07621,"34":0.00346,"52":0.00346,"73":0.00693,"78":0.00693,"88":0.00346,"91":0.00346,"101":0.00346,"105":0.00346,"113":0.00346,"115":0.09006,"118":0.00346,"119":0.00346,"120":0.01732,"121":0.01039,"122":0.01386,"123":0.50228,"124":0.18706,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 102 103 104 106 107 108 109 110 111 112 114 116 117 125 126 127 3.5 3.6"},D:{"22":0.00346,"26":0.00346,"34":0.00346,"38":0.01386,"39":0.00346,"46":0.00346,"47":0.01732,"49":0.01732,"51":0.00346,"55":0.00346,"56":0.00346,"58":0.00346,"62":0.00346,"63":0.00346,"65":0.00346,"69":0.00346,"70":0.00346,"71":0.00346,"72":0.00346,"73":0.00346,"75":0.00346,"76":0.00346,"79":0.10392,"80":0.00693,"81":0.00693,"83":0.00693,"84":0.00346,"85":0.00693,"86":0.00346,"87":0.09006,"88":0.01732,"89":0.01732,"90":0.00693,"91":0.01039,"92":0.00346,"93":0.01039,"94":0.01039,"95":0.01039,"96":0.00346,"97":0.01039,"98":0.00346,"99":0.01386,"100":0.00693,"101":0.00693,"102":0.00693,"103":0.05196,"104":0.00693,"105":0.01386,"106":0.02425,"107":0.02078,"108":0.03118,"109":1.47913,"110":0.02425,"111":0.01386,"112":0.02771,"113":0.01386,"114":0.07274,"115":0.02425,"116":0.1351,"117":0.02425,"118":0.04157,"119":0.11431,"120":0.25634,"121":1.19854,"122":17.10177,"123":4.30229,"124":0.01039,"125":0.00346,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 48 50 52 53 54 57 59 60 61 64 66 67 68 74 77 78 126"},F:{"95":0.02425,"102":0.00346,"106":0.02078,"107":1.87749,"108":0.19398,"109":0.00346,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00346,"18":0.00346,"92":0.01386,"100":0.00346,"109":0.02771,"110":0.00346,"112":0.00346,"114":0.00346,"115":0.00346,"116":0.00346,"117":0.00346,"118":0.00346,"119":0.01039,"120":0.03118,"121":0.10392,"122":2.6846,"123":0.21477,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 113"},E:{"9":0.00346,"14":0.00693,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00693,"12.1":0.00346,"13.1":0.01732,"14.1":0.02425,"15.1":0.00693,"15.2-15.3":0.00346,"15.4":0.01386,"15.5":0.01039,"15.6":0.06928,"16.0":0.00346,"16.1":0.01386,"16.2":0.01732,"16.3":0.03464,"16.4":0.01732,"16.5":0.02078,"16.6":0.07621,"17.0":0.02771,"17.1":0.0381,"17.2":0.09353,"17.3":0.29098,"17.4":0.06928},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00229,"5.0-5.1":0.00115,"6.0-6.1":0.00688,"7.0-7.1":0.00803,"8.1-8.4":0.00229,"9.0-9.2":0.00459,"9.3":0.02866,"10.0-10.2":0.00459,"10.3":0.04816,"11.0-11.2":0.0344,"11.3-11.4":0.01147,"12.0-12.1":0.01032,"12.2-12.5":0.19836,"13.0-13.1":0.00344,"13.2":0.0344,"13.3":0.01032,"13.4-13.7":0.03898,"14.0-14.4":0.07453,"14.5-14.8":0.11695,"15.0-15.1":0.05045,"15.2-15.3":0.05962,"15.4":0.06994,"15.5":0.08943,"15.6-15.8":0.74872,"16.0":0.18231,"16.1":0.37723,"16.2":0.18231,"16.3":0.32448,"16.4":0.0688,"16.5":0.14562,"16.6-16.7":1.10302,"17.0":0.14332,"17.1":0.28665,"17.2":0.46208,"17.3":5.68709,"17.4":0.83472,"17.5":0},P:{"4":0.15377,"20":0.0205,"21":0.0205,"22":0.03075,"23":0.48181,"24":0.48181,"5.0-5.4":0.03075,"6.2-6.4":0.01025,"7.2-7.4":0.06151,_:"8.2 9.2 10.1 12.0 13.0 14.0 15.0 18.0","11.1-11.2":0.01025,"16.0":0.0205,"17.0":0.01025,"19.0":0.0205},I:{"0":0.05208,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0.15689,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00346,"11":0.02771,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":53.87625},R:{_:"0"},M:{"0":0.11767},Q:{_:"14.9"},O:{"0":0.01307},H:{"0":0}}; +module.exports={C:{"4":0.11681,"52":0.00377,"73":0.00377,"78":0.00754,"80":0.00377,"88":0.00377,"101":0.0113,"113":0.00377,"115":0.09043,"119":0.00377,"120":0.01507,"121":0.00754,"122":0.00754,"123":0.03014,"124":0.48607,"125":0.27506,"126":0.00377,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 127 128 3.5 3.6"},D:{"26":0.00377,"38":0.01507,"39":0.00377,"47":0.01507,"49":0.0113,"51":0.00377,"62":0.00377,"63":0.00377,"65":0.00377,"70":0.00377,"72":0.00377,"75":0.00377,"76":0.00377,"79":0.0942,"80":0.00377,"81":0.00377,"83":0.00377,"84":0.00377,"85":0.00377,"86":0.00377,"87":0.06782,"88":0.01884,"89":0.01507,"90":0.00377,"91":0.03014,"92":0.00377,"93":0.0113,"94":0.01884,"95":0.00754,"96":0.00377,"97":0.00754,"98":0.00754,"99":0.0113,"100":0.00754,"101":0.00754,"102":0.00754,"103":0.06029,"104":0.0113,"105":0.00754,"106":0.01884,"107":0.01884,"108":0.02261,"109":1.55618,"110":0.02261,"111":0.0113,"112":0.01884,"113":0.01507,"114":0.06782,"115":0.02261,"116":0.15072,"117":0.02638,"118":0.04898,"119":0.12434,"120":0.16956,"121":0.26753,"122":0.88171,"123":17.12179,"124":7.22326,"125":0.03391,"126":0.00377,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 50 52 53 54 55 56 57 58 59 60 61 64 66 67 68 69 71 73 74 77 78 127"},F:{"86":0.00377,"95":0.03014,"102":0.00377,"106":0.00377,"107":1.6843,"108":0.16202,"109":0.35796,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00377,"92":0.01507,"100":0.00377,"109":0.02261,"114":0.00377,"115":0.00377,"116":0.00377,"117":0.00377,"118":0.00754,"119":0.00754,"120":0.01507,"121":0.01884,"122":0.15072,"123":2.21182,"124":1.08142,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113"},E:{"9":0.00377,"14":0.00754,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00377,"12.1":0.00377,"13.1":0.02261,"14.1":0.02261,"15.1":0.00377,"15.2-15.3":0.00377,"15.4":0.00377,"15.5":0.00377,"15.6":0.06782,"16.0":0.00377,"16.1":0.01507,"16.2":0.00754,"16.3":0.02638,"16.4":0.0113,"16.5":0.01884,"16.6":0.06782,"17.0":0.03014,"17.1":0.02638,"17.2":0.04898,"17.3":0.09797,"17.4":0.32782,"17.5":0.00377},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00225,"5.0-5.1":0.00225,"6.0-6.1":0.00562,"7.0-7.1":0.00899,"8.1-8.4":0.00225,"9.0-9.2":0.00562,"9.3":0.02809,"10.0-10.2":0.00562,"10.3":0.04495,"11.0-11.2":0.0382,"11.3-11.4":0.01124,"12.0-12.1":0.00787,"12.2-12.5":0.18315,"13.0-13.1":0.00337,"13.2":0.03708,"13.3":0.00899,"13.4-13.7":0.03483,"14.0-14.4":0.06854,"14.5-14.8":0.1045,"15.0-15.1":0.04832,"15.2-15.3":0.05506,"15.4":0.06292,"15.5":0.07978,"15.6-15.8":0.69665,"16.0":0.16293,"16.1":0.33934,"16.2":0.16293,"16.3":0.28765,"16.4":0.05955,"16.5":0.12472,"16.6-16.7":0.98542,"17.0":0.11798,"17.1":0.21798,"17.2":0.2899,"17.3":2.11467,"17.4":4.77318,"17.5":0.04382},P:{"4":0.15264,"20":0.02035,"21":0.02035,"22":0.03053,"23":0.10176,"24":0.80388,"5.0-5.4":0.02035,"6.2-6.4":0.01018,"7.2-7.4":0.05088,_:"8.2 9.2 10.1 12.0 13.0 15.0 16.0 18.0","11.1-11.2":0.01018,"14.0":0.01018,"17.0":0.01018,"19.0":0.01018},I:{"0":0.03724,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.00404,"11":0.05248,_:"6 7 9 10 5.5"},K:{"0":0.1558,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0187},H:{"0":0},L:{"0":50.57942},R:{_:"0"},M:{"0":0.1371}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js index 655da7c190e56f..2d52d063742d0e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CR.js @@ -1 +1 @@ -module.exports={C:{"40":0.00386,"52":0.00386,"73":0.05022,"78":0.00386,"88":0.00386,"91":0.00386,"99":0.00386,"102":0.00386,"103":0.00386,"109":0.00386,"115":0.30904,"118":0.00386,"119":0.00386,"120":0.02318,"121":0.00773,"122":0.03477,"123":1.25548,"124":0.4906,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 101 104 105 106 107 108 110 111 112 113 114 116 117 125 126 127 3.5 3.6"},D:{"11":0.00386,"41":0.00386,"42":0.00386,"43":0.00386,"44":0.00386,"45":0.00386,"46":0.00386,"47":0.00773,"49":0.00386,"51":0.00773,"62":0.00386,"67":0.01545,"70":0.00386,"73":0.02318,"76":0.00386,"79":0.03863,"80":0.01545,"81":0.00773,"83":0.02318,"85":0.00386,"86":0.03863,"87":0.05022,"88":0.00386,"90":0.00386,"91":0.00773,"92":0.01545,"93":0.00773,"94":0.01159,"96":0.00773,"97":0.00386,"98":0.00386,"99":0.01159,"101":0.00386,"102":0.00773,"103":0.05408,"104":0.00773,"105":0.01545,"106":0.01932,"107":0.00386,"108":0.01545,"109":0.67603,"110":0.01545,"111":0.00773,"112":0.00386,"113":0.01545,"114":0.01932,"115":0.00386,"116":0.19701,"117":0.01159,"118":0.0309,"119":0.08885,"120":0.32836,"121":1.55293,"122":15.98509,"123":4.42314,"124":0.00386,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 48 50 52 53 54 55 56 57 58 59 60 61 63 64 65 66 68 69 71 72 74 75 77 78 84 89 95 100 125 126"},F:{"28":0.00386,"36":0.00386,"95":0.01159,"104":0.01545,"105":0.00773,"106":0.0309,"107":2.50709,"108":0.17384,"109":0.00773,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00386,"18":0.00386,"92":0.01159,"100":0.00386,"109":0.04636,"111":0.00386,"114":0.00386,"115":0.00773,"116":0.00386,"117":0.00773,"118":0.00773,"119":0.01159,"120":0.03477,"121":0.13521,"122":4.41541,"123":0.33994,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113"},E:{"9":0.01159,"14":0.00773,"15":0.00386,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00773,"13.1":0.0309,"14.1":0.05022,"15.1":0.02704,"15.2-15.3":0.00386,"15.4":0.01545,"15.5":0.0309,"15.6":0.18929,"16.0":0.02318,"16.1":0.03477,"16.2":0.03863,"16.3":0.08499,"16.4":0.03863,"16.5":0.05022,"16.6":0.25496,"17.0":0.03863,"17.1":0.10044,"17.2":0.21247,"17.3":1.15504,"17.4":0.30518},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0026,"5.0-5.1":0.0013,"6.0-6.1":0.00779,"7.0-7.1":0.00909,"8.1-8.4":0.0026,"9.0-9.2":0.00519,"9.3":0.03245,"10.0-10.2":0.00519,"10.3":0.05451,"11.0-11.2":0.03894,"11.3-11.4":0.01298,"12.0-12.1":0.01168,"12.2-12.5":0.22455,"13.0-13.1":0.00389,"13.2":0.03894,"13.3":0.01168,"13.4-13.7":0.04413,"14.0-14.4":0.08437,"14.5-14.8":0.13239,"15.0-15.1":0.05711,"15.2-15.3":0.06749,"15.4":0.07918,"15.5":0.10124,"15.6-15.8":0.84758,"16.0":0.20638,"16.1":0.42703,"16.2":0.20638,"16.3":0.36733,"16.4":0.07788,"16.5":0.16484,"16.6-16.7":1.24865,"17.0":0.16225,"17.1":0.32449,"17.2":0.52308,"17.3":6.43796,"17.4":0.94493,"17.5":0},P:{"4":0.06232,"20":0.03116,"21":0.04155,"22":0.10387,"23":1.18416,"24":1.36074,"5.0-5.4":0.01039,"6.2-6.4":0.01039,"7.2-7.4":0.06232,_:"8.2 9.2 10.1 12.0 14.0 15.0 16.0","11.1-11.2":0.01039,"13.0":0.01039,"17.0":0.02077,"18.0":0.01039,"19.0":0.02077},I:{"0":0.09779,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},K:{"0":0.40504,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00386,"8":0.0309,"9":0.00386,"10":0.00773,"11":0.04636,_:"6 5.5"},S:{"2.5":0.00614,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":45.53974},R:{_:"0"},M:{"0":0.71189},Q:{_:"14.9"},O:{"0":0.0491},H:{"0":0}}; +module.exports={C:{"40":0.00382,"52":0.00764,"73":0.02673,"74":0.00382,"78":0.00382,"88":0.00382,"89":0.00382,"91":0.00382,"95":0.00382,"102":0.00764,"103":0.00764,"113":0.00382,"115":0.28635,"118":0.00382,"119":0.00764,"120":0.01909,"121":0.00382,"122":0.01145,"123":0.03054,"124":1.11486,"125":0.50398,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 75 76 77 79 80 81 82 83 84 85 86 87 90 92 93 94 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 114 116 117 126 127 128 3.5","3.6":0.00382},D:{"41":0.00382,"43":0.00382,"44":0.00382,"45":0.00382,"46":0.00382,"47":0.00764,"51":0.00764,"63":0.00382,"65":0.00382,"67":0.00382,"70":0.00382,"72":0.00382,"73":0.00764,"75":0.00382,"79":0.03054,"80":0.01909,"83":0.01527,"86":0.06109,"87":0.03818,"88":0.00382,"90":0.00382,"91":0.00382,"92":0.00382,"93":0.00764,"94":0.01145,"95":0.00382,"96":0.042,"97":0.00382,"98":0.00764,"99":0.01145,"101":0.00382,"102":0.00382,"103":0.06872,"104":0.01145,"105":0.01145,"106":0.01527,"107":0.00764,"108":0.00764,"109":1.79064,"110":0.01909,"111":0.00764,"112":0.00764,"113":0.00764,"114":0.02673,"115":0.02673,"116":0.17945,"117":0.00764,"118":0.02673,"119":0.06872,"120":0.11836,"121":0.28253,"122":1.02322,"123":15.33309,"124":6.07826,"125":0.01527,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 48 49 50 52 53 54 55 56 57 58 59 60 61 62 64 66 68 69 71 74 76 77 78 81 84 85 89 100 126 127"},F:{"28":0.00382,"36":0.00382,"95":0.01145,"104":0.00382,"107":1.69137,"108":0.31308,"109":0.12218,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00382,"16":0.00382,"17":0.00382,"18":0.00382,"92":0.01145,"100":0.00382,"109":0.042,"113":0.00382,"114":0.00764,"115":0.00764,"117":0.00382,"118":0.00382,"119":0.00764,"120":0.01527,"121":0.05345,"122":0.20617,"123":2.77569,"124":1.23703,_:"12 13 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 116"},E:{"9":0.01145,"14":0.00382,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.00382,"13.1":0.03436,"14.1":0.03818,"15.1":0.01527,"15.2-15.3":0.00382,"15.4":0.01909,"15.5":0.01527,"15.6":0.18326,"16.0":0.01527,"16.1":0.06872,"16.2":0.01909,"16.3":0.05345,"16.4":0.01909,"16.5":0.04963,"16.6":0.26726,"17.0":0.03436,"17.1":0.09545,"17.2":0.14127,"17.3":0.34362,"17.4":1.09577,"17.5":0.00764},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00271,"5.0-5.1":0.00271,"6.0-6.1":0.00678,"7.0-7.1":0.01086,"8.1-8.4":0.00271,"9.0-9.2":0.00678,"9.3":0.03392,"10.0-10.2":0.00678,"10.3":0.05428,"11.0-11.2":0.04614,"11.3-11.4":0.01357,"12.0-12.1":0.0095,"12.2-12.5":0.22118,"13.0-13.1":0.00407,"13.2":0.04478,"13.3":0.01086,"13.4-13.7":0.04207,"14.0-14.4":0.08277,"14.5-14.8":0.1262,"15.0-15.1":0.05835,"15.2-15.3":0.06649,"15.4":0.07599,"15.5":0.09634,"15.6-15.8":0.84131,"16.0":0.19676,"16.1":0.4098,"16.2":0.19676,"16.3":0.34738,"16.4":0.07192,"16.5":0.15062,"16.6-16.7":1.19004,"17.0":0.14248,"17.1":0.26325,"17.2":0.35009,"17.3":2.55378,"17.4":5.76432,"17.5":0.05292},P:{"4":0.07165,"20":0.02047,"21":0.03071,"22":0.09212,"23":0.16377,"24":2.44635,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 18.0","6.2-6.4":0.02047,"7.2-7.4":0.05118,"14.0":0.01024,"16.0":0.01024,"17.0":0.02047,"19.0":0.01024},I:{"0":0.08619,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"7":0.00382,"8":0.02291,"9":0.00382,"10":0.00382,"11":0.03054,_:"6 5.5"},K:{"0":0.34001,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.03709},H:{"0":0},L:{"0":45.01978},R:{_:"0"},M:{"0":0.55638}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js index 6eed7dc22f8ec3..33d4c2b7d856df 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CU.js @@ -1 +1 @@ -module.exports={C:{"4":0.60318,"34":0.01564,"35":0.00223,"37":0.00223,"41":0.00223,"42":0.00223,"43":0.01117,"44":0.00223,"45":0.00447,"46":0.00223,"47":0.00223,"48":0.0067,"49":0.00223,"50":0.0067,"52":0.02011,"53":0.00223,"54":0.06702,"56":0.0067,"57":0.02011,"58":0.00223,"59":0.00447,"60":0.01117,"61":0.00223,"62":0.00223,"63":0.0067,"64":0.02011,"65":0.0134,"66":0.01117,"67":0.0067,"68":0.00894,"69":0.00447,"70":0.0067,"71":0.01117,"72":0.04021,"74":0.00223,"75":0.00447,"76":0.00223,"77":0.00447,"78":0.02011,"79":0.0067,"81":0.00447,"82":0.00894,"83":0.0134,"84":0.0067,"85":0.00447,"86":0.00223,"87":0.00223,"88":0.02681,"89":0.0134,"90":0.00223,"91":0.01564,"92":0.0067,"93":0.00894,"94":0.00894,"95":0.00894,"96":0.02011,"97":0.00894,"98":0.01787,"99":0.02457,"100":0.05138,"101":0.16532,"102":0.02234,"103":0.01787,"104":0.04245,"105":0.0067,"106":0.02234,"107":0.0134,"108":0.02234,"109":0.01787,"110":0.05585,"111":0.02234,"112":0.03798,"113":0.03128,"114":0.02234,"115":1.21753,"116":0.03798,"117":0.08713,"118":0.03128,"119":0.04245,"120":0.05585,"121":0.1117,"122":0.35521,"123":2.87292,"124":1.19072,"125":0.0134,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 38 39 40 51 55 73 80 126 127 3.5 3.6"},D:{"11":0.00223,"23":0.00223,"34":0.0067,"39":0.00223,"40":0.00223,"43":0.00223,"46":0.00223,"49":0.0067,"50":0.00447,"52":0.00223,"53":0.00223,"54":0.00223,"55":0.00223,"56":0.00223,"57":0.00223,"58":0.00447,"60":0.00223,"61":0.04021,"63":0.00223,"67":0.00223,"68":0.02457,"69":0.00223,"70":0.00223,"71":0.0067,"72":0.00894,"73":0.00223,"74":0.01117,"75":0.00223,"76":0.00894,"77":0.00223,"78":0.0067,"79":0.01117,"80":0.00447,"81":0.02681,"83":0.00223,"84":0.00447,"85":0.00447,"86":0.0134,"87":0.00894,"88":0.08489,"89":0.105,"90":0.05808,"91":0.03574,"92":0.0134,"93":0.0067,"94":0.01564,"95":0.0067,"96":0.00894,"97":0.0134,"98":0.02011,"99":0.00894,"100":0.01787,"101":0.01117,"102":0.02234,"103":0.01564,"104":0.01117,"105":0.0134,"106":0.01787,"107":0.01117,"108":0.03128,"109":0.45574,"110":0.01564,"111":0.0134,"112":0.04021,"113":0.0134,"114":0.02904,"115":0.02457,"116":0.05808,"117":0.06925,"118":0.02234,"119":0.07819,"120":0.30829,"121":0.40659,"122":3.08739,"123":0.86456,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 35 36 37 38 41 42 44 45 47 48 51 59 62 64 65 66 124 125 126"},F:{"31":0.00223,"34":0.0067,"36":0.00223,"37":0.00223,"38":0.00223,"42":0.00447,"45":0.00223,"64":0.00447,"79":0.09159,"82":0.00223,"84":0.00223,"86":0.00223,"87":0.00447,"94":0.00223,"95":0.06479,"96":0.00223,"99":0.01117,"100":0.00223,"101":0.0067,"102":0.01564,"103":0.00223,"104":0.02904,"105":0.04691,"106":0.04915,"107":0.54063,"108":0.2167,"109":0.00894,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 39 40 41 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 85 88 89 90 91 92 93 97 98 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00447,"13":0.01787,"14":0.01564,"15":0.0067,"16":0.00894,"17":0.00894,"18":0.04245,"81":0.00223,"84":0.01787,"89":0.00894,"90":0.01787,"92":0.09606,"97":0.00223,"98":0.00223,"99":0.00223,"100":0.05362,"102":0.00223,"103":0.00223,"107":0.00223,"108":0.00223,"109":0.01564,"110":0.00447,"111":0.00447,"112":0.00223,"113":0.0067,"114":0.00894,"115":0.01117,"116":0.00447,"117":0.01564,"118":0.0134,"119":0.03128,"120":0.08266,"121":0.15638,"122":1.24881,"123":0.1184,_:"79 80 83 85 86 87 88 91 93 94 95 96 101 104 105 106"},E:{"13":0.0067,"14":0.00223,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.2-15.3 15.4 16.0 16.1 16.4 17.5","5.1":0.00223,"11.1":0.00223,"13.1":0.01117,"14.1":0.0067,"15.1":0.00223,"15.5":0.00223,"15.6":0.02904,"16.2":0.0067,"16.3":0.00447,"16.5":0.0067,"16.6":0.01117,"17.0":0.00894,"17.1":0.00447,"17.2":0.00894,"17.3":0.07372,"17.4":0.02011},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00122,"5.0-5.1":0.00061,"6.0-6.1":0.00366,"7.0-7.1":0.00427,"8.1-8.4":0.00122,"9.0-9.2":0.00244,"9.3":0.01526,"10.0-10.2":0.00244,"10.3":0.02564,"11.0-11.2":0.01831,"11.3-11.4":0.0061,"12.0-12.1":0.00549,"12.2-12.5":0.1056,"13.0-13.1":0.00183,"13.2":0.01831,"13.3":0.00549,"13.4-13.7":0.02075,"14.0-14.4":0.03968,"14.5-14.8":0.06226,"15.0-15.1":0.02686,"15.2-15.3":0.03174,"15.4":0.03723,"15.5":0.04761,"15.6-15.8":0.3986,"16.0":0.09705,"16.1":0.20082,"16.2":0.09705,"16.3":0.17275,"16.4":0.03662,"16.5":0.07752,"16.6-16.7":0.58721,"17.0":0.0763,"17.1":0.1526,"17.2":0.24599,"17.3":3.02762,"17.4":0.44438,"17.5":0},P:{"4":0.1429,"20":0.07145,"21":0.2756,"22":0.33685,"23":0.69411,"24":0.63286,"5.0-5.4":0.02041,"6.2-6.4":0.02041,"7.2-7.4":0.24498,_:"8.2 10.1 12.0","9.2":0.02041,"11.1-11.2":0.05104,"13.0":0.03062,"14.0":0.04083,"15.0":0.03062,"16.0":0.1327,"17.0":0.10207,"18.0":0.08166,"19.0":0.12249},I:{"0":0.06187,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.84969,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02904,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":71.434},R:{_:"0"},M:{"0":0.48149},Q:{"14.9":0.00777},O:{"0":0.13202},H:{"0":0.09}}; +module.exports={C:{"4":0.46812,"34":0.03137,"36":0.00241,"40":0.00241,"41":0.01207,"42":0.00241,"43":0.00965,"45":0.00241,"47":0.00965,"48":0.00483,"50":0.00965,"51":0.00241,"52":0.09411,"53":0.00241,"54":0.06756,"56":0.01448,"57":0.04585,"58":0.00241,"59":0.00483,"60":0.01207,"61":0.00724,"63":0.00965,"64":0.01207,"65":0.00483,"66":0.00724,"67":0.00965,"68":0.01207,"69":0.00724,"70":0.00965,"72":0.05791,"74":0.00241,"75":0.00965,"77":0.00724,"78":0.03861,"79":0.00483,"81":0.00483,"82":0.00724,"83":0.01448,"84":0.01448,"85":0.01207,"86":0.00241,"87":0.00965,"88":0.02172,"89":0.01689,"90":0.00483,"91":0.02413,"92":0.01689,"93":0.01207,"94":0.01207,"95":0.03137,"96":0.0193,"97":0.00724,"98":0.02654,"99":0.02413,"100":0.05309,"101":0.08687,"102":0.02413,"103":0.00965,"104":0.06274,"105":0.00965,"106":0.04826,"107":0.00965,"108":0.02172,"109":0.01448,"110":0.04826,"111":0.0193,"112":0.0193,"113":0.05309,"114":0.0193,"115":1.27406,"116":0.06033,"117":0.06274,"118":0.0362,"119":0.02654,"120":0.03137,"121":0.0748,"122":0.12306,"123":0.20028,"124":3.43853,"125":1.373,"126":0.02413,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 44 46 49 55 62 71 73 76 80 127 128 3.5 3.6"},D:{"22":0.00483,"34":0.00241,"40":0.00241,"42":0.00483,"44":0.00483,"49":0.00483,"50":0.00241,"51":0.00241,"57":0.00241,"58":0.00724,"60":0.00241,"61":0.00241,"62":0.00241,"63":0.00241,"64":0.00241,"65":0.00241,"67":0.00241,"68":0.02896,"69":0.00241,"70":0.00483,"71":0.00724,"72":0.00483,"73":0.00483,"74":0.00483,"75":0.00483,"76":0.00965,"77":0.00724,"78":0.00724,"79":0.00241,"80":0.00724,"81":0.04102,"83":0.01448,"84":0.00483,"86":0.00965,"87":0.01448,"88":0.12789,"89":0.08687,"90":0.07239,"91":0.0748,"92":0.00724,"93":0.00724,"94":0.01448,"95":0.00483,"96":0.01207,"97":0.01207,"98":0.01689,"99":0.00965,"100":0.00965,"101":0.00965,"102":0.03378,"103":0.02654,"104":0.00483,"105":0.0193,"106":0.01207,"107":0.02172,"108":0.02413,"109":0.6129,"110":0.0193,"111":0.02172,"112":0.0555,"113":0.0193,"114":0.02896,"115":0.03137,"116":0.04102,"117":0.04343,"118":0.04102,"119":0.06998,"120":0.22682,"121":0.15926,"122":0.30404,"123":3.46024,"124":1.20409,"125":0.00483,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 43 45 46 47 48 52 53 54 55 56 59 66 85 126 127"},F:{"30":0.00241,"31":0.00483,"34":0.00483,"35":0.00241,"36":0.00241,"40":0.00241,"42":0.00241,"45":0.00724,"49":0.00241,"50":0.00241,"53":0.0193,"64":0.0193,"72":0.00965,"79":0.09652,"80":0.00241,"82":0.00241,"85":0.00241,"86":0.00241,"89":0.00241,"91":0.00241,"94":0.00241,"95":0.07722,"97":0.00241,"99":0.00724,"100":0.00241,"102":0.01207,"103":0.00241,"104":0.02413,"105":0.02654,"106":0.02654,"107":0.3523,"108":0.39815,"109":0.16891,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 32 33 37 38 39 41 43 44 46 47 48 51 52 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 73 74 75 76 77 78 81 83 84 87 88 90 92 93 96 98 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00241,"13":0.01448,"14":0.02654,"15":0.00483,"16":0.00483,"17":0.01207,"18":0.04343,"84":0.0193,"89":0.02172,"90":0.01448,"92":0.13513,"97":0.00241,"98":0.00241,"99":0.00241,"100":0.06274,"105":0.00724,"108":0.00483,"109":0.02172,"110":0.00483,"111":0.00483,"112":0.00483,"113":0.00483,"114":0.00965,"115":0.00724,"116":0.00724,"117":0.01689,"118":0.00724,"119":0.0193,"120":0.06274,"121":0.04102,"122":0.23647,"123":1.14135,"124":0.42228,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 101 102 103 104 106 107"},E:{"13":0.00241,"14":0.00241,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.2-15.3 17.5","5.1":0.00241,"11.1":0.00241,"13.1":0.00965,"14.1":0.01207,"15.1":0.00483,"15.4":0.00241,"15.5":0.00241,"15.6":0.01207,"16.0":0.00241,"16.1":0.00483,"16.2":0.00241,"16.3":0.01207,"16.4":0.00241,"16.5":0.00241,"16.6":0.02413,"17.0":0.00965,"17.1":0.00483,"17.2":0.00483,"17.3":0.02413,"17.4":0.06033},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0012,"5.0-5.1":0.0012,"6.0-6.1":0.00299,"7.0-7.1":0.00479,"8.1-8.4":0.0012,"9.0-9.2":0.00299,"9.3":0.01497,"10.0-10.2":0.00299,"10.3":0.02394,"11.0-11.2":0.02035,"11.3-11.4":0.00599,"12.0-12.1":0.00419,"12.2-12.5":0.09757,"13.0-13.1":0.0018,"13.2":0.01975,"13.3":0.00479,"13.4-13.7":0.01856,"14.0-14.4":0.03652,"14.5-14.8":0.05567,"15.0-15.1":0.02574,"15.2-15.3":0.02933,"15.4":0.03352,"15.5":0.0425,"15.6-15.8":0.37114,"16.0":0.0868,"16.1":0.18078,"16.2":0.0868,"16.3":0.15325,"16.4":0.03173,"16.5":0.06645,"16.6-16.7":0.52498,"17.0":0.06285,"17.1":0.11613,"17.2":0.15444,"17.3":1.12659,"17.4":2.54291,"17.5":0.02335},P:{"4":0.16369,"20":0.05115,"21":0.25576,"22":0.40922,"23":0.49107,"24":0.80821,"5.0-5.4":0.05115,"6.2-6.4":0.01023,"7.2-7.4":0.19438,_:"8.2 10.1 12.0","9.2":0.03069,"11.1-11.2":0.05115,"13.0":0.02046,"14.0":0.03069,"15.0":0.02046,"16.0":0.09207,"17.0":0.08184,"18.0":0.03069,"19.0":0.11254},I:{"0":0.08311,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"8":0.00241,"11":0.03378,_:"6 7 9 10 5.5"},K:{"0":0.90872,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00759},O:{"0":0.10622},H:{"0":0.07},L:{"0":69.35986},R:{_:"0"},M:{"0":0.50074}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CV.js index 0693d7c8863d28..bf51759177c5a0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CV.js @@ -1 +1 @@ -module.exports={C:{"50":0.00292,"54":0.00292,"61":0.01462,"78":0.00585,"115":0.11692,"120":0.00877,"121":0.00292,"122":0.00292,"123":0.3303,"124":0.18707,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 125 126 127 3.5 3.6"},D:{"11":0.00585,"39":0.00877,"43":0.01169,"49":0.00585,"50":0.00292,"55":0.00292,"57":0.00292,"60":0.00585,"61":0.00292,"64":0.01754,"65":0.00292,"66":0.02046,"68":0.00585,"69":0.00585,"70":0.00292,"71":0.00292,"73":0.00292,"74":0.00585,"75":0.01754,"79":0.01462,"80":0.00585,"83":0.038,"84":0.00292,"87":0.038,"88":0.00585,"89":0.00292,"90":0.01169,"91":0.10523,"93":0.00877,"95":0.00292,"96":0.00585,"99":0.13154,"103":0.13446,"104":0.00292,"105":0.00585,"107":0.00292,"108":0.00585,"109":0.73367,"110":0.00585,"111":0.00585,"112":0.00292,"113":0.14907,"114":0.01169,"115":0.00292,"116":0.22507,"117":0.00292,"118":0.02631,"119":0.18123,"120":0.09646,"121":0.84475,"122":9.63129,"123":2.75054,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 46 47 48 51 52 53 54 56 58 59 62 63 67 72 76 77 78 81 85 86 92 94 97 98 100 101 102 106 124 125 126"},F:{"37":0.00292,"57":0.01169,"95":0.01462,"105":0.00292,"107":1.1312,"108":0.95582,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00292,"13":0.00292,"14":0.00292,"17":0.00292,"18":0.00585,"92":0.01169,"98":0.00292,"99":0.00292,"105":0.00877,"109":0.00877,"112":0.00877,"114":0.00585,"116":0.02338,"117":0.02046,"119":0.00877,"120":0.64598,"121":0.17246,"122":4.43127,"123":0.28645,_:"15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 100 101 102 103 104 106 107 108 110 111 113 115 118"},E:{"14":0.00292,"15":0.00877,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.4 15.5 16.0 17.5","12.1":0.00292,"13.1":0.01754,"14.1":0.038,"15.1":0.01754,"15.2-15.3":0.00292,"15.6":0.07892,"16.1":0.10231,"16.2":0.00292,"16.3":0.02631,"16.4":0.00292,"16.5":0.01754,"16.6":0.10231,"17.0":0.00292,"17.1":0.00585,"17.2":0.09061,"17.3":0.20753,"17.4":0.114},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00211,"5.0-5.1":0.00105,"6.0-6.1":0.00633,"7.0-7.1":0.00738,"8.1-8.4":0.00211,"9.0-9.2":0.00422,"9.3":0.02636,"10.0-10.2":0.00422,"10.3":0.04429,"11.0-11.2":0.03163,"11.3-11.4":0.01054,"12.0-12.1":0.00949,"12.2-12.5":0.18242,"13.0-13.1":0.00316,"13.2":0.03163,"13.3":0.00949,"13.4-13.7":0.03585,"14.0-14.4":0.06854,"14.5-14.8":0.10756,"15.0-15.1":0.0464,"15.2-15.3":0.05483,"15.4":0.06432,"15.5":0.08225,"15.6-15.8":0.68857,"16.0":0.16766,"16.1":0.34692,"16.2":0.16766,"16.3":0.29842,"16.4":0.06327,"16.5":0.13392,"16.6-16.7":1.0144,"17.0":0.13181,"17.1":0.26362,"17.2":0.42495,"17.3":5.23019,"17.4":0.76766,"17.5":0},P:{"4":0.13325,"20":0.03075,"21":0.1025,"22":0.13325,"23":1.76302,"24":0.63551,"5.0-5.4":0.0205,"6.2-6.4":0.01025,"7.2-7.4":0.13325,_:"8.2 10.1 12.0 14.0","9.2":0.01025,"11.1-11.2":0.19475,"13.0":0.03075,"15.0":0.23575,"16.0":0.21525,"17.0":0.0205,"18.0":0.01025,"19.0":0.09225},I:{"0":0.04934,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":0.276,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00292,"11":0.00585,_:"6 7 8 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":60.02756},R:{_:"0"},M:{"0":0.16277},Q:{_:"14.9"},O:{"0":0.14154},H:{"0":0}}; +module.exports={C:{"61":0.00636,"72":0.00636,"78":0.00954,"115":0.09543,"118":0.00636,"123":0.00318,"124":0.35945,"125":0.2004,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 126 127 128 3.5 3.6"},D:{"37":0.00318,"43":0.00318,"49":0.00636,"50":0.00318,"55":0.01909,"59":0.00636,"65":0.00318,"68":0.00318,"69":0.00318,"70":0.00318,"73":0.00636,"74":0.03181,"75":0.02227,"76":0.00318,"79":0.01909,"80":0.00318,"83":0.00954,"84":0.00318,"87":0.02545,"88":0.00954,"90":0.00318,"91":0.06044,"93":0.01272,"95":0.00318,"99":0.23221,"100":0.00318,"102":0.00636,"103":0.03817,"105":0.00954,"106":0.00636,"108":0.00318,"109":0.85569,"112":0.00318,"113":0.09225,"115":0.00318,"116":0.15905,"117":0.00636,"118":0.00636,"119":0.10179,"120":0.09225,"121":0.17814,"122":1.08472,"123":11.27983,"124":4.29753,"125":0.05408,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 44 45 46 47 48 51 52 53 54 56 57 58 60 61 62 63 64 66 67 71 72 77 78 81 85 86 89 92 94 96 97 98 101 104 107 110 111 114 126 127"},F:{"95":0.01909,"106":0.00318,"107":0.95112,"108":0.43898,"109":0.09543,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00318,"83":0.00318,"89":0.00318,"90":0.00318,"92":0.02545,"99":0.00636,"101":0.00318,"109":0.02227,"112":0.01591,"114":0.00954,"115":0.00318,"117":0.01272,"119":0.13678,"120":0.15587,"121":0.02863,"122":0.69664,"123":3.62634,"124":1.42827,_:"12 13 14 15 16 17 79 80 81 84 85 86 87 88 91 93 94 95 96 97 98 100 102 103 104 105 106 107 108 110 111 113 116 118"},E:{"14":0.00954,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.4 16.0","11.1":0.00318,"13.1":0.02227,"14.1":0.0509,"15.1":0.04135,"15.2-15.3":0.00318,"15.5":0.00954,"15.6":0.07316,"16.1":0.06362,"16.2":0.00318,"16.3":0.00636,"16.4":0.00318,"16.5":0.16859,"16.6":0.1336,"17.0":0.00318,"17.1":0.00954,"17.2":0.05408,"17.3":0.13996,"17.4":0.16541,"17.5":0.01272},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00228,"5.0-5.1":0.00228,"6.0-6.1":0.00569,"7.0-7.1":0.00911,"8.1-8.4":0.00228,"9.0-9.2":0.00569,"9.3":0.02847,"10.0-10.2":0.00569,"10.3":0.04556,"11.0-11.2":0.03872,"11.3-11.4":0.01139,"12.0-12.1":0.00797,"12.2-12.5":0.18565,"13.0-13.1":0.00342,"13.2":0.03759,"13.3":0.00911,"13.4-13.7":0.03531,"14.0-14.4":0.06948,"14.5-14.8":0.10592,"15.0-15.1":0.04897,"15.2-15.3":0.05581,"15.4":0.06378,"15.5":0.08086,"15.6-15.8":0.70614,"16.0":0.16515,"16.1":0.34396,"16.2":0.16515,"16.3":0.29157,"16.4":0.06036,"16.5":0.12642,"16.6-16.7":0.99885,"17.0":0.11959,"17.1":0.22095,"17.2":0.29385,"17.3":2.14349,"17.4":4.83822,"17.5":0.04442},P:{"4":0.09343,"20":0.03114,"21":0.15571,"22":0.04152,"23":0.33218,"24":1.22492,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.11419,"11.1-11.2":0.19723,"13.0":0.01038,"14.0":0.02076,"15.0":0.12457,"16.0":0.06228,"17.0":0.02076,"18.0":0.01038,"19.0":0.10381},I:{"0":0.0883,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"11":0.01591,_:"6 7 8 9 10 5.5"},K:{"0":0.16368,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00682,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.11594},H:{"0":0},L:{"0":56.85692},R:{_:"0"},M:{"0":0.25234}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js index dcef21de09a5ec..6728a87d447b5a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CX.js @@ -1 +1 @@ -module.exports={C:{"115":0.7203,"122":2.52722,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 123 124 125 126 127 3.5 3.6"},D:{"109":2.52722,"121":5.41666,"122":14.80114,"123":1.80692,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"122":4.69224,"123":1.44472,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0038,"5.0-5.1":0.0019,"6.0-6.1":0.0114,"7.0-7.1":0.0133,"8.1-8.4":0.0038,"9.0-9.2":0.0076,"9.3":0.04751,"10.0-10.2":0.0076,"10.3":0.07982,"11.0-11.2":0.05702,"11.3-11.4":0.01901,"12.0-12.1":0.0171,"12.2-12.5":0.32879,"13.0-13.1":0.0057,"13.2":0.05702,"13.3":0.0171,"13.4-13.7":0.06462,"14.0-14.4":0.12353,"14.5-14.8":0.19385,"15.0-15.1":0.08362,"15.2-15.3":0.09883,"15.4":0.11593,"15.5":0.14824,"15.6-15.8":1.24105,"16.0":0.30218,"16.1":0.62528,"16.2":0.30218,"16.3":0.53785,"16.4":0.11403,"16.5":0.24137,"16.6-16.7":1.82831,"17.0":0.23757,"17.1":0.47513,"17.2":0.76591,"17.3":9.42664,"17.4":1.38359,"17.5":0},P:{_:"4 20 21 22 23 24 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":47.05414},R:{_:"0"},M:{_:"0"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"115":13.15717,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 124 125 126 127 128 3.5 3.6"},D:{"123":15.78792,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 124 125 126 127"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.2 17.3 17.4 17.5","17.1":5.2615},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00263,"5.0-5.1":0.00263,"6.0-6.1":0.00658,"7.0-7.1":0.01053,"8.1-8.4":0.00263,"9.0-9.2":0.00658,"9.3":0.0329,"10.0-10.2":0.00658,"10.3":0.05263,"11.0-11.2":0.04474,"11.3-11.4":0.01316,"12.0-12.1":0.00921,"12.2-12.5":0.21448,"13.0-13.1":0.00395,"13.2":0.04342,"13.3":0.01053,"13.4-13.7":0.04079,"14.0-14.4":0.08026,"14.5-14.8":0.12237,"15.0-15.1":0.05658,"15.2-15.3":0.06447,"15.4":0.07368,"15.5":0.09342,"15.6-15.8":0.8158,"16.0":0.19079,"16.1":0.39737,"16.2":0.19079,"16.3":0.33684,"16.4":0.06974,"16.5":0.14605,"16.6-16.7":1.15396,"17.0":0.13816,"17.1":0.25527,"17.2":0.33948,"17.3":2.47634,"17.4":5.58952,"17.5":0.05132},P:{"24":2.6316,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":50.0004},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js index 0875ef767a9a1e..d095e47204e27c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CY.js @@ -1 +1 @@ -module.exports={C:{"52":0.02773,"78":0.00792,"88":0.01981,"104":0.00792,"108":0.00396,"109":0.00396,"115":0.17428,"118":0.00396,"121":0.00792,"122":0.43175,"123":0.92687,"124":0.38422,"125":0.00396,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 110 111 112 113 114 116 117 119 120 126 127 3.5","3.6":0.00396},D:{"38":0.00792,"43":0.00396,"44":0.00396,"45":0.00396,"46":0.00396,"47":0.00396,"49":0.00396,"51":0.00396,"56":0.00396,"69":0.00396,"70":0.00396,"78":0.00396,"79":0.06734,"80":0.00396,"81":0.03169,"83":0.00792,"86":0.00792,"87":0.61792,"88":0.00396,"89":0.00396,"91":0.01981,"93":0.22578,"94":0.01188,"95":0.01188,"96":0.00396,"97":0.00396,"98":0.04357,"99":0.01188,"100":0.00396,"101":0.00396,"102":0.00396,"103":0.04357,"104":0.00396,"105":0.03565,"106":0.01188,"107":0.00792,"108":0.02377,"109":1.11304,"110":0.01188,"111":0.00792,"112":0.02773,"113":0.06338,"114":0.01188,"115":0.00396,"116":0.13071,"117":0.03961,"118":0.06734,"119":0.05545,"120":0.19409,"121":2.00031,"122":18.28398,"123":3.98081,"124":0.01188,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 48 50 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 74 75 76 77 84 85 90 92 125 126"},F:{"28":0.00396,"78":0.00792,"88":0.00792,"95":0.01584,"106":0.05149,"107":0.75259,"108":0.17825,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00396,"18":0.01188,"92":0.00396,"107":0.00396,"108":0.00396,"109":0.06734,"114":0.00396,"115":0.00396,"117":0.00396,"118":0.00396,"119":0.00792,"120":0.03169,"121":0.10299,"122":4.83638,"123":0.36045,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 112 113 116"},E:{"9":0.00792,"13":0.00396,"14":0.04753,_:"0 4 5 6 7 8 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00396,"12.1":0.00396,"13.1":0.22182,"14.1":0.06734,"15.1":0.0911,"15.2-15.3":0.00792,"15.4":0.00396,"15.5":0.01188,"15.6":0.1426,"16.0":0.03169,"16.1":0.01981,"16.2":0.01584,"16.3":0.05942,"16.4":0.01981,"16.5":0.01981,"16.6":0.20597,"17.0":0.02377,"17.1":0.09506,"17.2":0.29311,"17.3":0.57038,"17.4":0.27727},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00229,"5.0-5.1":0.00115,"6.0-6.1":0.00688,"7.0-7.1":0.00803,"8.1-8.4":0.00229,"9.0-9.2":0.00459,"9.3":0.02867,"10.0-10.2":0.00459,"10.3":0.04817,"11.0-11.2":0.0344,"11.3-11.4":0.01147,"12.0-12.1":0.01032,"12.2-12.5":0.1984,"13.0-13.1":0.00344,"13.2":0.0344,"13.3":0.01032,"13.4-13.7":0.03899,"14.0-14.4":0.07454,"14.5-14.8":0.11697,"15.0-15.1":0.05046,"15.2-15.3":0.05963,"15.4":0.06996,"15.5":0.08945,"15.6-15.8":0.74886,"16.0":0.18234,"16.1":0.3773,"16.2":0.18234,"16.3":0.32455,"16.4":0.06881,"16.5":0.14564,"16.6-16.7":1.10323,"17.0":0.14335,"17.1":0.2867,"17.2":0.46216,"17.3":5.68816,"17.4":0.83487,"17.5":0},P:{"4":0.12367,"20":0.03092,"21":0.05153,"22":0.09275,"23":2.80322,"24":1.83446,"5.0-5.4":0.01031,"6.2-6.4":0.01031,"7.2-7.4":0.01031,_:"8.2 10.1 12.0 15.0","9.2":0.14428,"11.1-11.2":0.01031,"13.0":0.01031,"14.0":0.01031,"16.0":0.02061,"17.0":0.11337,"18.0":0.01031,"19.0":0.05153},I:{"0":0.07217,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},K:{"0":0.52747,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01981,"9":0.00396,"10":0.00396,"11":0.07922,_:"6 7 5.5"},S:{"2.5":0.00604,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":43.15883},R:{_:"0"},M:{"0":0.18117},Q:{"14.9":0.00604},O:{"0":0.15098},H:{"0":0.01}}; +module.exports={C:{"52":0.01241,"78":0.00414,"80":0.00414,"88":0.00827,"92":0.00414,"94":0.00414,"104":0.00414,"105":0.00414,"108":0.00414,"111":0.02482,"113":0.00414,"115":0.17375,"118":0.00414,"120":0.00414,"121":0.00414,"122":0.43439,"123":0.02896,"124":0.85636,"125":0.54608,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 91 93 95 96 97 98 99 100 101 102 103 106 107 109 110 112 114 116 117 119 126 127 128 3.5","3.6":0.00414},D:{"38":0.00827,"43":0.00414,"44":0.00414,"45":0.00414,"46":0.00414,"47":0.00414,"49":0.00414,"51":0.00827,"56":0.00414,"58":0.00414,"69":0.00414,"70":0.00414,"73":0.00414,"79":0.04964,"83":0.00414,"87":0.04551,"89":0.00414,"91":0.02482,"93":0.15721,"94":0.01655,"95":0.02069,"98":0.05378,"99":0.00827,"100":0.00414,"101":0.00414,"102":0.01241,"103":0.0331,"104":0.00414,"105":0.02069,"106":0.00827,"107":0.00827,"108":0.00827,"109":1.03425,"110":0.01655,"111":0.00414,"112":0.02069,"113":0.08688,"114":0.01655,"115":0.00414,"116":0.13238,"117":0.02069,"118":0.15307,"119":0.06206,"120":0.09515,"121":0.21099,"122":2.5608,"123":16.95343,"124":6.44545,"125":0.02482,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 48 50 52 53 54 55 57 59 60 61 62 63 64 65 66 67 68 71 72 74 75 76 77 78 80 81 84 85 86 88 90 92 96 97 126 127"},F:{"28":0.00414,"78":0.00414,"95":0.00827,"107":0.5585,"108":0.302,"109":0.13238,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00414,"108":0.00414,"109":0.02482,"113":0.00414,"118":0.00827,"119":0.00414,"120":0.01241,"121":0.02482,"122":0.38474,"123":3.73157,"124":1.79132,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 114 115 116 117"},E:{"9":0.00827,"14":0.02896,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00414,"13.1":0.31441,"14.1":0.18203,"15.1":0.16962,"15.2-15.3":0.00414,"15.4":0.00827,"15.5":0.01655,"15.6":0.1448,"16.0":0.02069,"16.1":0.02482,"16.2":0.01241,"16.3":0.08688,"16.4":0.02482,"16.5":0.02896,"16.6":0.26063,"17.0":0.04137,"17.1":0.06619,"17.2":0.09929,"17.3":0.27718,"17.4":0.76948,"17.5":0.00414},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00253,"5.0-5.1":0.00253,"6.0-6.1":0.00633,"7.0-7.1":0.01012,"8.1-8.4":0.00253,"9.0-9.2":0.00633,"9.3":0.03164,"10.0-10.2":0.00633,"10.3":0.05062,"11.0-11.2":0.04303,"11.3-11.4":0.01265,"12.0-12.1":0.00886,"12.2-12.5":0.20627,"13.0-13.1":0.0038,"13.2":0.04176,"13.3":0.01012,"13.4-13.7":0.03923,"14.0-14.4":0.07719,"14.5-14.8":0.11769,"15.0-15.1":0.05441,"15.2-15.3":0.06201,"15.4":0.07087,"15.5":0.08985,"15.6-15.8":0.78458,"16.0":0.18349,"16.1":0.38217,"16.2":0.18349,"16.3":0.32396,"16.4":0.06707,"16.5":0.14047,"16.6-16.7":1.1098,"17.0":0.13287,"17.1":0.2455,"17.2":0.32649,"17.3":2.38158,"17.4":5.37564,"17.5":0.04935},P:{"4":0.08249,"20":0.03093,"21":0.04124,"22":0.07218,"23":0.40212,"24":3.58814,"5.0-5.4":0.02062,"6.2-6.4":0.02062,"7.2-7.4":0.01031,_:"8.2 10.1 12.0 16.0","9.2":0.03093,"11.1-11.2":0.01031,"13.0":0.01031,"14.0":0.01031,"15.0":0.01031,"17.0":0.03093,"18.0":0.01031,"19.0":0.04124},I:{"0":0.0876,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"7":0.00414,"8":0.02482,"9":0.00414,"10":0.00414,"11":0.05378,_:"6 5.5"},K:{"0":0.45739,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02346,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.17006},H:{"0":0},L:{"0":40.40185},R:{_:"0"},M:{"0":0.18765}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js index d550be45d8d166..062c2a8aa7163d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/CZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.10372,"56":0.01638,"65":0.00546,"68":0.00546,"78":0.01092,"80":0.00546,"81":0.00546,"83":0.01638,"88":0.03821,"91":0.01092,"96":0.00546,"97":0.01638,"100":0.07097,"102":0.01092,"103":0.01092,"104":0.00546,"105":0.01092,"106":0.00546,"107":0.01638,"108":0.00546,"109":0.00546,"110":0.00546,"111":0.00546,"112":0.00546,"113":0.02184,"114":0.01092,"115":0.75334,"116":0.00546,"117":0.01638,"118":0.01092,"119":0.0273,"120":0.0273,"121":0.04367,"122":0.19107,"123":4.34536,"124":1.83422,"125":0.00546,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 69 70 71 72 73 74 75 76 77 79 82 84 85 86 87 89 90 92 93 94 95 98 99 101 126 127 3.5 3.6"},D:{"38":0.00546,"41":0.00546,"49":0.01638,"51":0.00546,"67":0.00546,"68":0.01638,"69":0.00546,"70":0.00546,"71":0.00546,"74":0.0273,"75":0.00546,"77":0.00546,"79":0.06005,"80":0.01092,"81":0.01092,"83":0.00546,"84":0.01638,"85":0.0273,"86":0.00546,"87":0.03275,"88":0.00546,"89":0.01092,"90":0.00546,"91":0.01092,"92":0.00546,"93":0.01092,"94":0.04913,"95":0.00546,"96":0.01638,"97":0.0273,"98":0.00546,"99":0.00546,"100":0.01092,"102":0.24566,"103":0.04367,"104":0.0273,"105":0.01638,"106":0.0273,"107":0.02184,"108":0.04913,"109":1.40296,"110":0.01638,"111":0.01638,"112":0.0273,"113":0.02184,"114":0.06005,"115":0.03275,"116":0.10372,"117":0.1201,"118":0.04913,"119":0.11464,"120":1.23373,"121":1.86698,"122":19.16109,"123":5.46992,"124":0.00546,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 72 73 76 78 101 125 126"},F:{"46":0.00546,"69":0.00546,"75":0.00546,"79":0.00546,"84":0.00546,"85":0.02184,"95":0.17469,"99":0.00546,"102":0.00546,"104":0.00546,"105":0.01092,"106":0.03275,"107":2.5166,"108":0.76972,"109":0.00546,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 76 77 78 80 81 82 83 86 87 88 89 90 91 92 93 94 96 97 98 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00546,"17":0.00546,"18":0.00546,"85":0.00546,"92":0.01092,"105":0.00546,"107":0.00546,"108":0.00546,"109":0.11464,"111":0.00546,"112":0.00546,"113":0.00546,"114":0.0273,"115":0.00546,"116":0.01092,"117":0.01638,"118":0.02184,"119":0.01638,"120":0.1201,"121":0.27295,"122":7.0039,"123":0.5459,_:"13 14 15 16 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 110"},E:{"9":0.00546,"13":0.00546,"14":0.01638,_:"0 4 5 6 7 8 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 17.5","9.1":0.01092,"13.1":0.05459,"14.1":0.04913,"15.1":0.01092,"15.2-15.3":0.01092,"15.4":0.0273,"15.5":0.06551,"15.6":0.19652,"16.0":0.01638,"16.1":0.04913,"16.2":0.04367,"16.3":0.07643,"16.4":0.0273,"16.5":0.07097,"16.6":0.2129,"17.0":0.06005,"17.1":0.11464,"17.2":0.27841,"17.3":0.76426,"17.4":0.29479},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00195,"5.0-5.1":0.00098,"6.0-6.1":0.00586,"7.0-7.1":0.00683,"8.1-8.4":0.00195,"9.0-9.2":0.0039,"9.3":0.0244,"10.0-10.2":0.0039,"10.3":0.04099,"11.0-11.2":0.02928,"11.3-11.4":0.00976,"12.0-12.1":0.00878,"12.2-12.5":0.16882,"13.0-13.1":0.00293,"13.2":0.02928,"13.3":0.00878,"13.4-13.7":0.03318,"14.0-14.4":0.06343,"14.5-14.8":0.09954,"15.0-15.1":0.04294,"15.2-15.3":0.05074,"15.4":0.05953,"15.5":0.07612,"15.6-15.8":0.63724,"16.0":0.15516,"16.1":0.32106,"16.2":0.15516,"16.3":0.27617,"16.4":0.05855,"16.5":0.12393,"16.6-16.7":0.93878,"17.0":0.12198,"17.1":0.24397,"17.2":0.39327,"17.3":4.84027,"17.4":0.71043,"17.5":0},P:{"4":0.05238,"20":0.02095,"21":0.04191,"22":0.04191,"23":1.17335,"24":1.12097,"5.0-5.4":0.01048,"6.2-6.4":0.01048,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 16.0","13.0":0.01048,"14.0":0.01048,"17.0":0.01048,"18.0":0.01048,"19.0":0.01048},I:{"0":0.14472,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00035},K:{"0":0.63028,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01112,"10":0.20023,"11":0.08343,_:"6 7 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":32.6149},R:{_:"0"},M:{"0":0.36782},Q:{_:"14.9"},O:{"0":0.10444},H:{"0":0.01}}; +module.exports={C:{"50":0.02657,"52":0.11157,"53":0.03188,"56":0.03188,"68":0.00531,"75":0.00531,"78":0.01594,"80":0.00531,"81":0.00531,"82":0.00531,"83":0.01063,"84":0.00531,"88":0.01063,"91":0.00531,"96":0.00531,"97":0.00531,"99":0.00531,"100":0.0797,"102":0.01063,"103":0.01594,"104":0.00531,"105":0.01063,"106":0.00531,"107":0.01594,"108":0.00531,"109":0.00531,"110":0.00531,"111":0.00531,"112":0.00531,"113":0.02125,"114":0.01063,"115":0.79164,"116":0.00531,"117":0.01063,"118":0.01063,"119":0.01594,"120":0.02657,"121":0.03719,"122":0.03188,"123":0.13814,"124":3.9635,"125":2.21552,"126":0.00531,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 85 86 87 89 90 92 93 94 95 98 101 127 128 3.5 3.6"},D:{"34":0.00531,"38":0.00531,"41":0.01063,"49":0.02125,"51":0.00531,"56":0.00531,"68":0.00531,"69":0.00531,"74":0.02125,"79":0.0425,"80":0.00531,"81":0.01063,"83":0.00531,"84":0.01063,"85":0.03719,"86":0.00531,"87":0.0425,"88":0.00531,"89":0.01594,"90":0.01063,"91":0.01594,"92":0.00531,"93":0.01063,"94":0.0425,"95":0.00531,"96":0.01063,"97":0.00531,"98":0.00531,"99":0.01063,"100":0.00531,"102":0.26565,"103":0.0425,"104":0.02657,"105":0.01063,"106":0.02125,"107":0.01594,"108":0.02125,"109":1.3495,"110":0.01063,"111":0.01594,"112":0.02125,"113":0.0797,"114":0.12751,"115":0.02657,"116":0.08501,"117":0.09563,"118":0.03188,"119":0.05844,"120":1.06791,"121":0.35066,"122":1.30169,"123":17.42664,"124":6.72095,"125":0.01594,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 48 50 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 70 71 72 73 75 76 77 78 101 126 127"},F:{"36":0.00531,"46":0.00531,"69":0.00531,"70":0.00531,"75":0.00531,"79":0.00531,"84":0.00531,"85":0.01594,"95":0.14876,"105":0.00531,"106":0.01063,"107":1.40795,"108":1.2273,"109":0.79695,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 71 72 73 74 76 77 78 80 81 82 83 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00531,"17":0.00531,"18":0.00531,"85":0.00531,"92":0.01063,"96":0.00531,"105":0.00531,"107":0.00531,"108":0.00531,"109":0.10095,"111":0.01063,"112":0.00531,"113":0.01063,"114":0.03719,"116":0.00531,"117":0.00531,"118":0.07438,"119":0.01063,"120":0.07438,"121":0.08501,"122":0.34003,"123":4.97297,"124":2.38554,_:"12 13 14 15 79 80 81 83 84 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 103 104 106 110 115"},E:{"9":0.00531,"13":0.00531,"14":0.01594,_:"0 4 5 6 7 8 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00531,"13.1":0.05313,"14.1":0.03719,"15.1":0.01063,"15.2-15.3":0.01063,"15.4":0.01594,"15.5":0.01594,"15.6":0.17002,"16.0":0.02125,"16.1":0.04782,"16.2":0.0425,"16.3":0.05844,"16.4":0.02125,"16.5":0.06907,"16.6":0.19127,"17.0":0.04782,"17.1":0.09032,"17.2":0.1222,"17.3":0.29753,"17.4":0.92446,"17.5":0.00531},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00192,"5.0-5.1":0.00192,"6.0-6.1":0.00479,"7.0-7.1":0.00767,"8.1-8.4":0.00192,"9.0-9.2":0.00479,"9.3":0.02396,"10.0-10.2":0.00479,"10.3":0.03834,"11.0-11.2":0.03259,"11.3-11.4":0.00958,"12.0-12.1":0.00671,"12.2-12.5":0.15623,"13.0-13.1":0.00288,"13.2":0.03163,"13.3":0.00767,"13.4-13.7":0.02971,"14.0-14.4":0.05847,"14.5-14.8":0.08914,"15.0-15.1":0.04122,"15.2-15.3":0.04697,"15.4":0.05368,"15.5":0.06805,"15.6-15.8":0.59426,"16.0":0.13898,"16.1":0.28946,"16.2":0.13898,"16.3":0.24537,"16.4":0.0508,"16.5":0.10639,"16.6-16.7":0.8406,"17.0":0.10064,"17.1":0.18595,"17.2":0.24729,"17.3":1.80388,"17.4":4.07167,"17.5":0.03738},P:{"4":0.05214,"20":0.02086,"21":0.04171,"22":0.04171,"23":0.19813,"24":2.15853,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","13.0":0.01043,"17.0":0.01043,"18.0":0.01043,"19.0":0.01043},I:{"0":0.12136,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.0003},A:{"8":0.01096,"10":0.07123,"11":0.09314,_:"6 7 9 5.5"},K:{"0":0.68368,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.10311},H:{"0":0.01},L:{"0":33.76537},R:{_:"0"},M:{"0":0.41246}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js index e343b3b3b1db33..d82e0fb6ba1a08 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DE.js @@ -1 +1 @@ -module.exports={C:{"3":0.00528,"38":0.01056,"40":0.00528,"43":0.00528,"47":0.00528,"48":0.01056,"49":0.00528,"50":0.10564,"52":0.21128,"53":0.17431,"54":0.00528,"56":0.1162,"59":0.01585,"68":0.01056,"69":0.00528,"71":0.00528,"72":0.01056,"76":0.00528,"77":0.01056,"78":0.03697,"82":0.00528,"83":0.00528,"84":0.00528,"87":0.00528,"88":0.01585,"89":0.00528,"91":0.01056,"92":0.00528,"94":0.00528,"95":0.00528,"98":0.00528,"99":0.00528,"101":0.00528,"102":0.64969,"103":0.07923,"104":0.01056,"105":0.01056,"106":0.01056,"107":0.01056,"108":0.01585,"109":0.01585,"110":0.01056,"111":0.01056,"112":0.01585,"113":0.02113,"114":0.01056,"115":1.10922,"116":0.02113,"117":0.01056,"118":0.02641,"119":0.07395,"120":0.02641,"121":0.0581,"122":0.20072,"123":4.95452,"124":2.16562,"125":0.00528,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 44 45 46 51 55 57 58 60 61 62 63 64 65 66 67 70 73 74 75 79 80 81 85 86 90 93 96 97 100 126 127 3.5 3.6"},D:{"35":0.07923,"38":0.00528,"41":0.00528,"43":0.03697,"49":0.02113,"52":0.00528,"56":0.01056,"58":0.00528,"60":0.01585,"63":0.00528,"64":0.01056,"66":0.06867,"68":0.00528,"69":0.00528,"70":0.00528,"71":0.00528,"72":0.00528,"73":0.00528,"74":0.01056,"75":0.00528,"76":0.01585,"77":0.02641,"78":0.01056,"79":0.04226,"80":0.02113,"81":0.02113,"83":0.01585,"84":0.01585,"85":0.19015,"86":0.04226,"87":0.06867,"88":0.02113,"89":0.01585,"90":0.01056,"91":0.10564,"92":0.00528,"93":0.07395,"94":0.02113,"95":0.00528,"96":0.02113,"97":0.01056,"98":0.01056,"99":0.03169,"100":0.01056,"101":0.01585,"102":0.02113,"103":0.1162,"104":0.03697,"105":0.04226,"106":0.51764,"107":0.06867,"108":0.10036,"109":1.14619,"110":0.07923,"111":0.0581,"112":0.10036,"113":0.03169,"114":0.09508,"115":0.07395,"116":0.1162,"117":0.06338,"118":0.13733,"119":0.38559,"120":0.45425,"121":2.27654,"122":13.29479,"123":3.95094,"124":0.01056,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 42 44 45 46 47 48 50 51 53 54 55 57 59 61 62 65 67 125 126"},F:{"36":0.00528,"46":0.01585,"81":0.00528,"89":0.04226,"93":0.00528,"94":0.00528,"95":0.07395,"102":0.01056,"105":0.00528,"106":0.05282,"107":2.36105,"108":0.50707,"109":0.01056,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 90 91 92 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00528},B:{"17":0.01056,"18":0.00528,"83":0.00528,"86":0.00528,"90":0.00528,"92":0.01056,"97":0.00528,"98":0.01056,"99":0.00528,"101":0.00528,"103":0.00528,"104":0.01585,"105":0.00528,"106":0.00528,"107":0.01585,"108":0.01585,"109":0.14261,"110":0.01056,"111":0.09508,"112":0.00528,"113":0.00528,"114":0.01585,"115":0.02641,"116":0.01056,"117":0.02113,"118":0.05282,"119":0.02641,"120":0.10036,"121":0.31164,"122":7.22578,"123":0.62856,_:"12 13 14 15 16 79 80 81 84 85 87 88 89 91 93 94 95 96 100 102"},E:{"7":0.02641,"8":0.00528,"13":0.00528,"14":0.03169,"15":0.00528,_:"0 4 5 6 9 10 11 12 3.1 3.2 6.1 7.1 17.5","5.1":0.01056,"9.1":0.03169,"10.1":0.00528,"11.1":0.01585,"12.1":0.01056,"13.1":0.06338,"14.1":0.10564,"15.1":0.01585,"15.2-15.3":0.01056,"15.4":0.02641,"15.5":0.03697,"15.6":0.32748,"16.0":0.08451,"16.1":0.06867,"16.2":0.06338,"16.3":0.13205,"16.4":0.04226,"16.5":0.06867,"16.6":0.43312,"17.0":0.07395,"17.1":0.16374,"17.2":0.43841,"17.3":1.48952,"17.4":0.53348},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00292,"5.0-5.1":0.00146,"6.0-6.1":0.00875,"7.0-7.1":0.01021,"8.1-8.4":0.00292,"9.0-9.2":0.00583,"9.3":0.03646,"10.0-10.2":0.00583,"10.3":0.06126,"11.0-11.2":0.04375,"11.3-11.4":0.01458,"12.0-12.1":0.01313,"12.2-12.5":0.25232,"13.0-13.1":0.00438,"13.2":0.04375,"13.3":0.01313,"13.4-13.7":0.04959,"14.0-14.4":0.0948,"14.5-14.8":0.14877,"15.0-15.1":0.06417,"15.2-15.3":0.07584,"15.4":0.08897,"15.5":0.11376,"15.6-15.8":0.9524,"16.0":0.2319,"16.1":0.47985,"16.2":0.2319,"16.3":0.41275,"16.4":0.08751,"16.5":0.18523,"16.6-16.7":1.40307,"17.0":0.18231,"17.1":0.36462,"17.2":0.58777,"17.3":7.23414,"17.4":1.06179,"17.5":0},P:{"4":0.10524,"20":0.06315,"21":0.11577,"22":0.08419,"23":2.04169,"24":1.98907,"5.0-5.4":0.01052,"6.2-6.4":0.01052,"7.2-7.4":0.01052,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.01052,"13.0":0.02105,"14.0":0.02105,"15.0":0.01052,"16.0":0.02105,"17.0":0.03157,"18.0":0.01052,"19.0":0.03157},I:{"0":0.04228,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.73585,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01147,"9":0.00573,"10":0.00573,"11":0.17778,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":26.55989},R:{_:"0"},M:{"0":0.96227},Q:{"14.9":0.00943},O:{"0":0.15094},H:{"0":0}}; +module.exports={C:{"31":0.00533,"38":0.01066,"40":0.00533,"47":0.00533,"48":0.01066,"50":0.1332,"52":0.15984,"53":0.11722,"56":0.10123,"59":0.01598,"68":0.00533,"72":0.00533,"77":0.01066,"78":0.03197,"83":0.00533,"84":0.00533,"87":0.00533,"88":0.01066,"91":0.01598,"92":0.00533,"95":0.00533,"98":0.00533,"99":0.00533,"100":0.00533,"101":0.00533,"102":0.84715,"103":0.01066,"104":0.01066,"105":0.00533,"106":0.01066,"107":0.01066,"108":0.01066,"109":0.01066,"110":0.01066,"111":0.01066,"112":0.00533,"113":0.01598,"114":0.01598,"115":1.12421,"116":0.02131,"117":0.01066,"118":0.04262,"119":0.02131,"120":0.02131,"121":0.0373,"122":0.05861,"123":0.1705,"124":4.51814,"125":2.60006,"126":0.00533,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 41 42 43 44 45 46 49 51 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 85 86 89 90 93 94 96 97 127 128 3.5 3.6"},D:{"41":0.00533,"43":0.04262,"44":0.00533,"49":0.01598,"52":0.00533,"56":0.00533,"57":0.00533,"58":0.00533,"60":0.01066,"61":0.00533,"62":0.00533,"63":0.00533,"64":0.01066,"66":0.07459,"70":0.00533,"72":0.00533,"74":0.00533,"75":0.00533,"76":0.01066,"77":0.01598,"78":0.00533,"79":0.03197,"80":0.01066,"81":0.03197,"83":0.01066,"84":0.01066,"85":0.03197,"86":0.03197,"87":0.04262,"88":0.01598,"89":0.01066,"90":0.01066,"91":0.0959,"92":0.00533,"93":0.07992,"94":0.05861,"95":0.00533,"96":0.02131,"97":0.02131,"98":0.01066,"99":0.02131,"100":0.01598,"101":0.02664,"102":0.02664,"103":0.10123,"104":0.0373,"105":0.02664,"106":0.50616,"107":0.04262,"108":0.05328,"109":1.02298,"110":0.04795,"111":0.04262,"112":0.0373,"113":0.06394,"114":0.06926,"115":0.21312,"116":0.12254,"117":0.05328,"118":0.14918,"119":0.25042,"120":0.21845,"121":2.55744,"122":1.79021,"123":12.59539,"124":4.7579,"125":0.01598,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 45 46 47 48 50 51 53 54 55 59 65 67 68 69 71 73 126 127"},F:{"36":0.00533,"46":0.01066,"94":0.00533,"95":0.06926,"102":0.01598,"105":0.00533,"106":0.03197,"107":1.55578,"108":0.90576,"109":0.34099,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00533},B:{"17":0.01066,"18":0.00533,"92":0.00533,"97":0.00533,"98":0.00533,"100":0.00533,"101":0.00533,"103":0.00533,"105":0.00533,"106":0.00533,"107":0.01066,"108":0.01066,"109":0.14386,"110":0.01066,"111":0.09058,"112":0.00533,"113":0.00533,"114":0.01598,"115":0.01066,"116":0.01066,"117":0.01598,"118":0.01066,"119":0.01598,"120":0.04795,"121":0.06926,"122":0.4369,"123":5.17349,"124":2.42957,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 99 102 104"},E:{"7":0.02131,"8":0.00533,"11":0.00533,"13":0.00533,"14":0.02664,"15":0.00533,_:"0 4 5 6 9 10 12 3.1 3.2 6.1 7.1 10.1","5.1":0.01066,"9.1":0.00533,"11.1":0.01598,"12.1":0.01066,"13.1":0.06394,"14.1":0.09058,"15.1":0.01066,"15.2-15.3":0.01066,"15.4":0.02131,"15.5":0.03197,"15.6":0.31968,"16.0":0.08525,"16.1":0.06926,"16.2":0.05861,"16.3":0.12254,"16.4":0.03197,"16.5":0.05861,"16.6":0.40493,"17.0":0.05861,"17.1":0.11189,"17.2":0.20246,"17.3":0.5328,"17.4":1.81152,"17.5":0.01066},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00276,"5.0-5.1":0.00276,"6.0-6.1":0.00691,"7.0-7.1":0.01105,"8.1-8.4":0.00276,"9.0-9.2":0.00691,"9.3":0.03455,"10.0-10.2":0.00691,"10.3":0.05527,"11.0-11.2":0.04698,"11.3-11.4":0.01382,"12.0-12.1":0.00967,"12.2-12.5":0.22523,"13.0-13.1":0.00415,"13.2":0.0456,"13.3":0.01105,"13.4-13.7":0.04284,"14.0-14.4":0.08429,"14.5-14.8":0.12851,"15.0-15.1":0.05942,"15.2-15.3":0.06771,"15.4":0.07738,"15.5":0.09811,"15.6-15.8":0.85672,"16.0":0.20036,"16.1":0.41731,"16.2":0.20036,"16.3":0.35374,"16.4":0.07324,"16.5":0.15338,"16.6-16.7":1.21184,"17.0":0.14509,"17.1":0.26807,"17.2":0.35651,"17.3":2.60056,"17.4":5.86991,"17.5":0.05389},P:{"4":0.0849,"20":0.05306,"21":0.10612,"22":0.07429,"23":0.30776,"24":3.38533,_:"5.0-5.4 8.2 9.2 10.1 12.0","6.2-6.4":0.01061,"7.2-7.4":0.02122,"11.1-11.2":0.01061,"13.0":0.01061,"14.0":0.01061,"15.0":0.01061,"16.0":0.02122,"17.0":0.03184,"18.0":0.01061,"19.0":0.03184},I:{"0":0.03723,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.01102,"9":0.00551,"10":0.00551,"11":0.13779,_:"6 7 5.5"},K:{"0":0.73833,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00935},O:{"0":0.14019},H:{"0":0},L:{"0":26.71474},R:{_:"0"},M:{"0":1.03273}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DJ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DJ.js index 3b08af7177632e..195afd4637ef7e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DJ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DJ.js @@ -1 +1 @@ -module.exports={C:{"108":0.00404,"110":0.01817,"115":0.45226,"118":0.00202,"120":0.0101,"121":0.00202,"122":0.00202,"123":0.70665,"124":0.25843,"125":0.00404,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 111 112 113 114 116 117 119 126 127 3.5 3.6"},D:{"40":0.00404,"43":0.00202,"46":0.00202,"52":0.00404,"64":0.00202,"65":0.04846,"68":0.03029,"70":0.00202,"73":0.00404,"76":0.00404,"78":0.02019,"81":0.00404,"83":0.03029,"87":0.00808,"88":0.00404,"89":0.00404,"92":0.00606,"93":0.00202,"94":0.00202,"98":0.00404,"100":0.00202,"102":0.00202,"103":0.00404,"105":0.00404,"106":0.00404,"107":0.00404,"108":0.00808,"109":1.63943,"111":0.01615,"112":0.00808,"113":0.01211,"114":0.0101,"115":0.00202,"116":0.01817,"117":0.02019,"118":0.0323,"119":0.02625,"120":0.29074,"121":0.46639,"122":6.87671,"123":2.11389,"124":0.01211,"125":0.00202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 66 67 69 71 72 74 75 77 79 80 84 85 86 90 91 95 96 97 99 101 104 110 126"},F:{"46":0.00808,"101":0.00404,"106":0.0101,"107":0.96306,"108":0.06865,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00606,"14":0.00202,"15":0.01211,"16":0.00202,"18":0.01413,"84":0.00202,"85":0.00202,"89":0.0101,"92":0.0323,"98":0.00202,"100":0.00404,"109":0.01615,"110":0.02019,"112":0.00202,"113":0.00202,"114":0.0101,"115":0.01413,"116":0.00404,"117":0.00202,"118":0.02019,"119":0.0101,"120":0.05855,"121":0.11912,"122":2.42078,"123":0.15546,_:"13 17 79 80 81 83 86 87 88 90 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 111"},E:{"14":0.00202,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 15.1 15.4 15.5 17.5","12.1":0.00404,"14.1":0.02625,"15.2-15.3":0.0323,"15.6":0.00808,"16.0":0.0323,"16.1":0.00404,"16.2":0.00808,"16.3":0.02019,"16.4":0.01211,"16.5":0.00606,"16.6":0.05653,"17.0":0.00606,"17.1":0.00404,"17.2":0.00404,"17.3":0.0848,"17.4":0.02019},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0.00057,"6.0-6.1":0.00345,"7.0-7.1":0.00402,"8.1-8.4":0.00115,"9.0-9.2":0.0023,"9.3":0.01437,"10.0-10.2":0.0023,"10.3":0.02413,"11.0-11.2":0.01724,"11.3-11.4":0.00575,"12.0-12.1":0.00517,"12.2-12.5":0.09941,"13.0-13.1":0.00172,"13.2":0.01724,"13.3":0.00517,"13.4-13.7":0.01954,"14.0-14.4":0.03735,"14.5-14.8":0.05861,"15.0-15.1":0.02528,"15.2-15.3":0.02988,"15.4":0.03505,"15.5":0.04482,"15.6-15.8":0.37523,"16.0":0.09137,"16.1":0.18905,"16.2":0.09137,"16.3":0.16262,"16.4":0.03448,"16.5":0.07298,"16.6-16.7":0.5528,"17.0":0.07183,"17.1":0.14366,"17.2":0.23158,"17.3":2.85017,"17.4":0.41833,"17.5":0},P:{"4":0.2933,"20":0.04045,"21":0.38432,"22":0.65739,"23":1.72944,"24":0.8091,_:"5.0-5.4 6.2-6.4 10.1 15.0","7.2-7.4":0.32364,"8.2":0.01011,"9.2":0.14159,"11.1-11.2":0.12136,"12.0":0.01011,"13.0":0.01011,"14.0":0.0708,"16.0":0.01011,"17.0":0.01011,"18.0":0.04045,"19.0":0.16182},I:{"0":0.18281,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00044},K:{"0":0.95166,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":68.72002},R:{_:"0"},M:{"0":0.08779},Q:{"14.9":0.08779},O:{"0":1.23706},H:{"0":0.03}}; +module.exports={C:{"54":0.00185,"78":0.01292,"96":0.00369,"107":0.00554,"115":0.43727,"120":0.00369,"121":0.00554,"123":0.01107,"124":0.57195,"125":0.22694,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 114 116 117 118 119 122 126 127 128 3.5 3.6"},D:{"40":0.01476,"46":0.00185,"64":0.00185,"65":0.04982,"68":0.02768,"78":0.01661,"80":0.00185,"83":0.01107,"86":0.01661,"88":0.00185,"90":0.00185,"94":0.0369,"98":0.00185,"99":0.07196,"100":0.01292,"102":0.00738,"103":0.01107,"104":0.00185,"105":0.00185,"107":0.00738,"108":0.00369,"109":1.22508,"110":0.00185,"111":0.00185,"114":0.00554,"115":0.00554,"116":0.02399,"117":0.00738,"118":0.03506,"119":0.01661,"120":0.06089,"121":0.10701,"122":0.32288,"123":5.68445,"124":3.58853,"125":0.00554,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 66 67 69 70 71 72 73 74 75 76 77 79 81 84 85 87 89 91 92 93 95 96 97 101 106 112 113 126 127"},F:{"85":0.00185,"107":1.21586,"108":0.08672,"109":0.06089,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00554,"18":0.01292,"84":0.00554,"92":0.01661,"100":0.00554,"107":0.00554,"108":0.00185,"109":0.00554,"110":0.00738,"113":0.00369,"114":0.00923,"115":0.00554,"117":0.00738,"118":0.03875,"119":0.00923,"120":0.02399,"121":0.02399,"122":0.32841,"123":1.29335,"124":0.67158,_:"12 13 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 111 112 116"},E:{"7":0.00185,_:"0 4 5 6 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.4 15.5 16.2 17.5","12.1":0.00185,"13.1":0.00369,"14.1":0.03875,"15.2-15.3":0.00369,"15.6":0.02399,"16.0":0.00369,"16.1":0.00185,"16.3":0.04059,"16.4":0.00185,"16.5":0.04613,"16.6":0.02399,"17.0":0.00369,"17.1":0.01661,"17.2":0.00185,"17.3":0.05535,"17.4":0.05166},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00114,"5.0-5.1":0.00114,"6.0-6.1":0.00285,"7.0-7.1":0.00457,"8.1-8.4":0.00114,"9.0-9.2":0.00285,"9.3":0.01427,"10.0-10.2":0.00285,"10.3":0.02283,"11.0-11.2":0.01941,"11.3-11.4":0.00571,"12.0-12.1":0.004,"12.2-12.5":0.09304,"13.0-13.1":0.00171,"13.2":0.01884,"13.3":0.00457,"13.4-13.7":0.01769,"14.0-14.4":0.03482,"14.5-14.8":0.05308,"15.0-15.1":0.02454,"15.2-15.3":0.02797,"15.4":0.03196,"15.5":0.04053,"15.6-15.8":0.35388,"16.0":0.08276,"16.1":0.17238,"16.2":0.08276,"16.3":0.14612,"16.4":0.03025,"16.5":0.06336,"16.6-16.7":0.50057,"17.0":0.05993,"17.1":0.11073,"17.2":0.14726,"17.3":1.07421,"17.4":2.42467,"17.5":0.02226},P:{"4":0.12144,"20":0.06072,"21":0.31372,"22":0.4554,"23":0.46552,"24":2.49967,"5.0-5.4":0.01012,"6.2-6.4":0.0506,"7.2-7.4":0.73877,_:"8.2 10.1 15.0","9.2":0.0506,"11.1-11.2":0.02024,"12.0":0.01012,"13.0":0.02024,"14.0":0.03036,"16.0":0.01012,"17.0":0.02024,"18.0":0.03036,"19.0":0.4554},I:{"0":0.06496,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"11":0.00923,_:"6 7 8 9 10 5.5"},K:{"0":2.50143,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.04892},O:{"0":1.28018},H:{"0":0.01},L:{"0":67.71404},R:{_:"0"},M:{"0":0.08154}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js index 74d99db339b46c..817941a869efa2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DK.js @@ -1 +1 @@ -module.exports={C:{"52":0.03928,"59":0.00655,"78":0.02618,"87":0.02618,"88":0.02618,"115":0.19638,"118":0.00655,"119":0.00655,"120":0.00655,"121":0.01309,"122":0.04582,"123":1.2241,"124":0.55641,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 125 126 127 3.5 3.6"},D:{"38":0.00655,"44":0.01309,"49":0.01964,"52":0.03928,"66":0.02618,"70":0.00655,"79":0.01309,"86":0.00655,"87":0.03273,"88":0.01309,"89":0.00655,"91":0.00655,"92":0.00655,"93":0.06546,"94":0.01309,"95":0.01309,"97":0.00655,"98":0.01964,"99":0.00655,"100":0.00655,"102":0.01309,"103":0.22256,"104":0.01309,"105":0.03928,"106":0.01309,"107":0.01309,"108":0.01309,"109":1.07354,"110":0.03273,"111":0.05891,"112":0.02618,"113":0.09819,"114":0.0851,"115":0.04582,"116":0.55641,"117":0.26184,"118":0.11128,"119":0.37967,"120":1.20446,"121":4.69348,"122":29.88249,"123":7.16787,"124":0.00655,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 71 72 73 74 75 76 77 78 80 81 83 84 85 90 96 101 125 126"},F:{"46":0.00655,"85":0.00655,"95":0.01964,"102":0.01309,"106":0.01964,"107":1.31575,"108":0.11128,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00655,"96":0.00655,"105":0.00655,"107":0.00655,"108":0.00655,"109":0.09819,"110":0.00655,"112":0.00655,"114":0.05237,"115":0.01309,"116":0.01309,"117":0.01309,"118":0.01964,"119":0.03273,"120":0.09819,"121":0.36003,"122":8.03194,"123":0.57605,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 103 104 106 111 113"},E:{"13":0.00655,"14":0.04582,"15":0.01309,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00655,"12.1":0.00655,"13.1":0.05891,"14.1":0.18983,"15.1":0.03273,"15.2-15.3":0.02618,"15.4":0.04582,"15.5":0.07201,"15.6":0.52368,"16.0":0.05891,"16.1":0.0851,"16.2":0.07855,"16.3":0.23566,"16.4":0.12437,"16.5":0.13092,"16.6":0.72006,"17.0":0.12437,"17.1":0.2422,"17.2":0.42549,"17.3":1.4663,"17.4":0.39276},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00359,"5.0-5.1":0.00179,"6.0-6.1":0.01077,"7.0-7.1":0.01256,"8.1-8.4":0.00359,"9.0-9.2":0.00718,"9.3":0.04485,"10.0-10.2":0.00718,"10.3":0.07536,"11.0-11.2":0.05383,"11.3-11.4":0.01794,"12.0-12.1":0.01615,"12.2-12.5":0.31039,"13.0-13.1":0.00538,"13.2":0.05383,"13.3":0.01615,"13.4-13.7":0.061,"14.0-14.4":0.11662,"14.5-14.8":0.18301,"15.0-15.1":0.07894,"15.2-15.3":0.0933,"15.4":0.10945,"15.5":0.13995,"15.6-15.8":1.1716,"16.0":0.28527,"16.1":0.59029,"16.2":0.28527,"16.3":0.50775,"16.4":0.10765,"16.5":0.22786,"16.6-16.7":1.726,"17.0":0.22427,"17.1":0.44855,"17.2":0.72306,"17.3":8.89914,"17.4":1.30616,"17.5":0},P:{"4":0.02159,"20":0.0108,"21":0.0108,"22":0.02159,"23":0.80977,"24":1.07969,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 18.0","13.0":0.02159,"19.0":0.0108},I:{"0":0.06538,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.19348,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01378,"11":0.11714,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":14.37787},R:{_:"0"},M:{"0":0.2764},Q:{_:"14.9"},O:{"0":0.01037},H:{"0":0}}; +module.exports={C:{"52":0.02614,"59":0.00653,"61":0.00653,"78":0.0196,"88":0.0196,"97":0.00653,"102":0.00653,"115":0.21562,"116":0.00653,"121":0.00653,"122":0.01307,"123":0.05227,"124":1.14998,"125":0.60766,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 117 118 119 120 126 127 128 3.5 3.6"},D:{"38":0.00653,"44":0.01307,"49":0.0196,"52":0.0392,"66":0.0392,"76":0.00653,"77":0.00653,"79":0.01307,"87":0.09148,"88":0.0196,"89":0.00653,"90":0.00653,"91":0.00653,"92":0.01307,"93":0.05881,"94":0.00653,"95":0.01307,"97":0.01307,"98":0.00653,"99":0.00653,"100":0.00653,"102":0.0196,"103":0.3071,"104":0.00653,"105":0.02614,"106":0.00653,"107":0.0196,"108":0.01307,"109":0.86249,"110":0.05227,"111":0.05881,"112":0.04574,"113":0.21562,"114":0.05881,"115":0.04574,"116":0.48352,"117":0.25483,"118":0.08494,"119":0.58153,"120":0.54886,"121":0.77755,"122":3.84853,"123":28.22035,"124":10.23878,"125":0.0196,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 78 80 81 83 84 85 86 96 101 126 127"},F:{"46":0.00653,"95":0.0196,"102":0.01307,"106":0.00653,"107":1.13038,"108":0.24176,"109":0.12415,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00653,"86":0.00653,"92":0.00653,"94":0.00653,"102":0.00653,"107":0.00653,"108":0.01307,"109":0.07187,"110":0.00653,"113":0.00653,"114":0.01307,"115":0.00653,"116":0.01307,"117":0.02614,"118":0.0196,"119":0.02614,"120":0.02614,"121":0.07187,"122":0.59459,"123":5.36441,"124":2.31304,_:"12 13 14 15 16 18 79 80 81 83 84 85 87 88 89 90 91 93 95 96 97 98 99 100 101 103 104 105 106 111 112"},E:{"13":0.00653,"14":0.04574,"15":0.01307,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00653,"12.1":0.00653,"13.1":0.05227,"14.1":0.17642,"15.1":0.0196,"15.2-15.3":0.03267,"15.4":0.0392,"15.5":0.07841,"15.6":0.47698,"16.0":0.09148,"16.1":0.07841,"16.2":0.07187,"16.3":0.23522,"16.4":0.08494,"16.5":0.11761,"16.6":0.68607,"17.0":0.11761,"17.1":0.22869,"17.2":0.25483,"17.3":0.56192,"17.4":1.6531,"17.5":0.01307},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00348,"5.0-5.1":0.00348,"6.0-6.1":0.00871,"7.0-7.1":0.01393,"8.1-8.4":0.00348,"9.0-9.2":0.00871,"9.3":0.04355,"10.0-10.2":0.00871,"10.3":0.06967,"11.0-11.2":0.05922,"11.3-11.4":0.01742,"12.0-12.1":0.01219,"12.2-12.5":0.28392,"13.0-13.1":0.00523,"13.2":0.05748,"13.3":0.01393,"13.4-13.7":0.054,"14.0-14.4":0.10625,"14.5-14.8":0.16199,"15.0-15.1":0.0749,"15.2-15.3":0.08535,"15.4":0.09754,"15.5":0.12367,"15.6-15.8":1.07993,"16.0":0.25256,"16.1":0.52603,"16.2":0.25256,"16.3":0.44591,"16.4":0.09232,"16.5":0.19334,"16.6-16.7":1.52758,"17.0":0.18289,"17.1":0.33791,"17.2":0.44939,"17.3":3.27811,"17.4":7.39925,"17.5":0.06793},P:{"4":0.02156,"20":0.01078,"21":0.02156,"22":0.01078,"23":0.09704,"24":1.66043,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.01078},I:{"0":0.06215,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"8":0.00653,"11":0.08494,_:"6 7 9 10 5.5"},K:{"0":0.16642,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02427},H:{"0":0},L:{"0":14.82409},R:{_:"0"},M:{"0":0.28429}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js index a21891f11d5c93..185cf152ddc265 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DM.js @@ -1 +1 @@ -module.exports={C:{"78":0.00403,"87":0.00403,"108":0.00403,"113":0.00403,"115":0.06454,"122":0.02824,"123":0.76646,"124":0.29045,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"47":0.00807,"49":0.0242,"65":0.0242,"69":0.09278,"70":0.00403,"74":0.0121,"75":0.04437,"76":0.52845,"77":0.17346,"78":0.00403,"79":0.0121,"81":0.00807,"83":0.05648,"86":0.00403,"87":0.06051,"88":0.00807,"91":0.00403,"92":0.00403,"93":0.03227,"94":0.02017,"99":0.0121,"101":0.00807,"102":0.00403,"103":0.12102,"104":0.0121,"105":0.02017,"106":0.0121,"107":0.00807,"108":0.00403,"109":1.0327,"110":0.00403,"111":0.00403,"112":0.04841,"113":0.0121,"114":0.00403,"115":0.01614,"116":0.01614,"117":0.00403,"118":0.57686,"119":0.07665,"120":0.25414,"121":2.19853,"122":15.08313,"123":4.26394,"124":0.01614,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 73 80 84 85 89 90 95 96 97 98 100 125 126"},F:{"81":0.00403,"94":0.01614,"95":0.0121,"106":0.0121,"107":0.67771,"108":0.04034,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00403,"92":0.00807,"105":0.00403,"107":0.00807,"109":0.08875,"111":0.00403,"113":0.00403,"116":0.00403,"117":0.01614,"118":0.0121,"120":0.0121,"121":0.08875,"122":6.08731,"123":0.2138,_:"12 13 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 108 110 112 114 115 119"},E:{"13":0.00403,"14":0.04034,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 13.1 15.2-15.3 15.4 17.5","11.1":0.00807,"14.1":0.05244,"15.1":0.0121,"15.5":0.03227,"15.6":0.1775,"16.0":0.0121,"16.1":0.05244,"16.2":0.0121,"16.3":0.00403,"16.4":0.00403,"16.5":0.14926,"16.6":0.13716,"17.0":0.0121,"17.1":0.01614,"17.2":0.10488,"17.3":0.47198,"17.4":0.18153},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00211,"5.0-5.1":0.00106,"6.0-6.1":0.00634,"7.0-7.1":0.0074,"8.1-8.4":0.00211,"9.0-9.2":0.00423,"9.3":0.02641,"10.0-10.2":0.00423,"10.3":0.04438,"11.0-11.2":0.0317,"11.3-11.4":0.01057,"12.0-12.1":0.00951,"12.2-12.5":0.18279,"13.0-13.1":0.00317,"13.2":0.0317,"13.3":0.00951,"13.4-13.7":0.03592,"14.0-14.4":0.06868,"14.5-14.8":0.10777,"15.0-15.1":0.04649,"15.2-15.3":0.05494,"15.4":0.06445,"15.5":0.08241,"15.6-15.8":0.68995,"16.0":0.168,"16.1":0.34761,"16.2":0.168,"16.3":0.29901,"16.4":0.06339,"16.5":0.13419,"16.6-16.7":1.01643,"17.0":0.13207,"17.1":0.26414,"17.2":0.4258,"17.3":5.24063,"17.4":0.76919,"17.5":0},P:{"4":0.11329,"20":0.01133,"21":0.03399,"22":0.03399,"23":1.33683,"24":2.48106,"5.0-5.4":0.02266,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 14.0 15.0 18.0","7.2-7.4":0.11329,"12.0":0.01133,"13.0":0.01133,"16.0":0.03399,"17.0":0.01133,"19.0":0.04532},I:{"0":0.05347,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0.56677,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01936,"11":0.01291,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":48.74742},R:{_:"0"},M:{"0":0.20284},Q:{"14.9":0.00597},O:{"0":0.11335},H:{"0":0}}; +module.exports={C:{"115":0.00814,"121":0.00814,"123":0.00814,"124":0.52529,"125":0.13438,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 126 127 128 3.5 3.6"},D:{"47":0.00407,"49":0.01222,"56":0.00407,"65":0.03258,"69":0.05294,"70":0.00814,"71":0.00407,"73":0.00407,"75":0.03258,"76":0.41534,"77":0.25654,"78":0.00407,"79":0.02036,"83":0.00814,"88":0.00814,"90":0.00814,"91":0.02443,"93":0.05701,"94":0.01222,"97":0.02443,"98":0.00407,"102":0.00407,"103":0.25246,"105":0.00407,"106":0.00407,"107":0.06108,"109":0.50086,"110":0.01629,"111":0.00814,"112":0.00814,"113":0.00407,"114":0.01222,"115":0.00407,"116":0.01629,"117":0.00407,"118":1.03429,"119":0.02036,"120":0.05701,"121":0.30133,"122":1.23789,"123":16.0559,"124":5.2936,"125":0.02036,"126":0.00407,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 66 67 68 72 74 80 81 84 85 86 87 89 92 95 96 99 100 101 104 108 127"},F:{"95":0.08144,"106":0.01222,"107":0.36648,"108":0.36648,"109":0.16288,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00814,"18":0.01629,"84":0.00407,"90":0.05294,"92":0.02036,"103":0.00407,"105":0.00407,"107":0.00814,"109":0.01222,"111":0.00407,"117":0.01222,"118":0.04072,"120":0.01629,"121":0.02443,"122":0.32169,"123":4.11272,"124":1.64509,_:"12 13 14 15 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 104 106 108 110 112 113 114 115 116 119"},E:{"13":0.06515,"14":0.00814,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.01629,"13.1":0.01629,"14.1":0.06515,"15.1":0.02036,"15.2-15.3":0.01222,"15.4":0.00814,"15.5":0.05294,"15.6":0.09773,"16.0":0.00407,"16.1":0.06108,"16.2":0.00407,"16.3":0.01629,"16.4":0.01222,"16.5":0.02036,"16.6":0.26061,"17.0":0.01222,"17.1":0.07737,"17.2":0.11809,"17.3":0.15474,"17.4":0.54972},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0022,"5.0-5.1":0.0022,"6.0-6.1":0.00551,"7.0-7.1":0.00882,"8.1-8.4":0.0022,"9.0-9.2":0.00551,"9.3":0.02756,"10.0-10.2":0.00551,"10.3":0.0441,"11.0-11.2":0.03748,"11.3-11.4":0.01102,"12.0-12.1":0.00772,"12.2-12.5":0.17969,"13.0-13.1":0.00331,"13.2":0.03638,"13.3":0.00882,"13.4-13.7":0.03418,"14.0-14.4":0.06725,"14.5-14.8":0.10253,"15.0-15.1":0.0474,"15.2-15.3":0.05402,"15.4":0.06174,"15.5":0.07827,"15.6-15.8":0.6835,"16.0":0.15985,"16.1":0.33293,"16.2":0.15985,"16.3":0.28222,"16.4":0.05843,"16.5":0.12237,"16.6-16.7":0.96682,"17.0":0.11575,"17.1":0.21387,"17.2":0.28442,"17.3":2.07476,"17.4":4.68309,"17.5":0.04299},P:{"4":0.30789,"20":0.0114,"21":0.05702,"22":0.03421,"23":0.17105,"24":2.96484,"5.0-5.4":0.03421,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.21666,"11.1-11.2":0.0114,"13.0":0.0114,"16.0":0.03421,"17.0":0.0114,"18.0":0.0114,"19.0":0.02281},I:{"0":0.01181,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.04072,_:"6 7 8 9 10 5.5"},K:{"0":0.20152,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.23708},H:{"0":0},L:{"0":48.06098},R:{_:"0"},M:{"0":0.33191}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js index 6a2e5f7991e717..0a41b74d58ee6b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DO.js @@ -1 +1 @@ -module.exports={C:{"4":0.06207,"48":0.00365,"52":0.01095,"60":0.00365,"61":0.00365,"73":0.11683,"78":0.00365,"81":0.0146,"84":0.00365,"102":0.00365,"105":0.01095,"108":0.0146,"109":0.01095,"110":0.02191,"111":0.00365,"113":0.00365,"115":0.08397,"118":0.00365,"120":0.01095,"121":0.0073,"122":0.02921,"123":0.46733,"124":0.1716,"125":0.00365,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 112 114 116 117 119 126 127 3.5 3.6"},D:{"38":0.01095,"45":0.00365,"47":0.0073,"48":0.0073,"49":0.01095,"65":0.01095,"68":0.00365,"69":0.14969,"70":0.0073,"71":0.00365,"72":0.01095,"73":0.01826,"74":0.00365,"75":0.0073,"76":0.0073,"77":0.0146,"78":0.00365,"79":0.03651,"80":0.00365,"81":0.0073,"83":0.0073,"84":0.03286,"85":0.0073,"86":0.01095,"87":0.12779,"88":0.01095,"89":0.00365,"90":0.0073,"91":0.0146,"92":0.00365,"93":0.03286,"94":0.0073,"95":0.01095,"96":0.00365,"97":0.0146,"98":0.00365,"99":0.0073,"100":0.00365,"101":0.01095,"102":0.01095,"103":0.16064,"104":0.01826,"105":0.02921,"106":0.03286,"107":0.06207,"108":0.10223,"109":1.41659,"110":0.05477,"111":0.05842,"112":0.04746,"113":0.0146,"114":0.02191,"115":0.0146,"116":0.13144,"117":0.0146,"118":0.02921,"119":0.12413,"120":0.24097,"121":1.25594,"122":14.86322,"123":3.69116,"124":0.00365,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 125 126"},F:{"69":0.0073,"93":0.00365,"94":0.0146,"95":0.01826,"97":0.0073,"102":0.00365,"105":0.00365,"106":0.01095,"107":1.68311,"108":0.24827,"109":0.00365,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 96 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00365,"17":0.00365,"18":0.02191,"89":0.00365,"92":0.04381,"100":0.00365,"103":0.00365,"104":0.00365,"107":0.0146,"108":0.02556,"109":0.01826,"110":0.00365,"112":0.01095,"114":0.00365,"115":0.0073,"116":0.00365,"117":0.00365,"118":0.01095,"119":0.0146,"120":0.04016,"121":0.13144,"122":3.35892,"123":0.24462,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 105 106 111 113"},E:{"14":0.02556,"15":0.00365,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.0073,"12.1":0.0073,"13.1":0.02921,"14.1":0.04381,"15.1":0.0073,"15.2-15.3":0.0073,"15.4":0.01095,"15.5":0.01095,"15.6":0.13509,"16.0":0.0073,"16.1":0.02921,"16.2":0.05477,"16.3":0.05842,"16.4":0.01826,"16.5":0.04016,"16.6":0.12048,"17.0":0.05111,"17.1":0.10223,"17.2":0.16795,"17.3":0.55495,"17.4":0.09493},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00364,"5.0-5.1":0.00182,"6.0-6.1":0.01091,"7.0-7.1":0.01272,"8.1-8.4":0.00364,"9.0-9.2":0.00727,"9.3":0.04544,"10.0-10.2":0.00727,"10.3":0.07634,"11.0-11.2":0.05453,"11.3-11.4":0.01818,"12.0-12.1":0.01636,"12.2-12.5":0.31447,"13.0-13.1":0.00545,"13.2":0.05453,"13.3":0.01636,"13.4-13.7":0.0618,"14.0-14.4":0.11815,"14.5-14.8":0.18541,"15.0-15.1":0.07998,"15.2-15.3":0.09452,"15.4":0.11088,"15.5":0.14178,"15.6-15.8":1.18697,"16.0":0.28902,"16.1":0.59803,"16.2":0.28902,"16.3":0.51441,"16.4":0.10906,"16.5":0.23085,"16.6-16.7":1.74865,"17.0":0.22721,"17.1":0.45443,"17.2":0.73254,"17.3":9.01588,"17.4":1.3233,"17.5":0},P:{"4":0.07495,"20":0.02141,"21":0.06424,"22":0.05353,"23":0.65312,"24":0.63171,"5.0-5.4":0.01071,"6.2-6.4":0.01071,"7.2-7.4":0.08566,_:"8.2 10.1 12.0","9.2":0.01071,"11.1-11.2":0.04283,"13.0":0.01071,"14.0":0.01071,"15.0":0.01071,"16.0":0.04283,"17.0":0.02141,"18.0":0.01071,"19.0":0.04283},I:{"0":0.03161,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.27301,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00791,"9":0.00396,"11":0.0356,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":47.00316},R:{_:"0"},M:{"0":0.40634},Q:{_:"14.9"},O:{"0":0.03175},H:{"0":0}}; +module.exports={C:{"4":0.19793,"52":0.01164,"73":0.06986,"75":0.00388,"76":0.00388,"78":0.00388,"105":0.00388,"106":0.00776,"108":0.00388,"109":0.00388,"110":0.00388,"113":0.00388,"115":0.09703,"118":0.00388,"120":0.01164,"121":0.00388,"122":0.00388,"123":0.01164,"124":0.54334,"125":0.24838,"126":0.00388,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 107 111 112 114 116 117 119 127 128 3.5 3.6"},D:{"38":0.00776,"43":0.00388,"45":0.00776,"47":0.00388,"49":0.01941,"65":0.01164,"69":0.00776,"70":0.00776,"72":0.00776,"73":0.00776,"75":0.00388,"76":0.01164,"79":0.01941,"81":0.01164,"83":0.00388,"84":0.01552,"85":0.01552,"86":0.00388,"87":0.12419,"88":0.01941,"89":0.00388,"90":0.01164,"91":0.02717,"92":0.00388,"93":0.03881,"94":0.00388,"95":0.00776,"96":0.00388,"97":0.02329,"98":0.00388,"99":0.01552,"100":0.00388,"101":0.00388,"102":0.02717,"103":0.1436,"104":0.00776,"105":0.01941,"106":0.05433,"107":0.03881,"108":0.04657,"109":1.48254,"110":0.04657,"111":0.0621,"112":0.02717,"113":0.00776,"114":0.01941,"115":0.01164,"116":0.11255,"117":0.01552,"118":0.01941,"119":0.14748,"120":0.12031,"121":0.33765,"122":1.07116,"123":15.06604,"124":5.82538,"125":0.02329,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 74 77 78 80 126 127"},F:{"46":0.00388,"69":0.01552,"95":0.01941,"102":0.00388,"106":0.00388,"107":1.48254,"108":0.41527,"109":0.26003,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00388,"15":0.00776,"18":0.02717,"85":0.00388,"89":0.00388,"92":0.03493,"100":0.00388,"107":0.00388,"108":0.01941,"109":0.02717,"110":0.01164,"111":0.00388,"113":0.00388,"114":0.00388,"115":0.00388,"116":0.00388,"117":0.00388,"118":0.00388,"119":0.01552,"120":0.01941,"121":0.07374,"122":0.23674,"123":2.72446,"124":1.16042,_:"13 14 16 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 112"},E:{"14":0.01941,"15":0.01552,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00388,"12.1":0.00388,"13.1":0.02717,"14.1":0.04269,"15.1":0.00776,"15.2-15.3":0.00776,"15.4":0.01552,"15.5":0.02329,"15.6":0.15912,"16.0":0.01164,"16.1":0.02717,"16.2":0.03105,"16.3":0.04269,"16.4":0.01552,"16.5":0.02717,"16.6":0.13584,"17.0":0.05822,"17.1":0.09314,"17.2":0.09703,"17.3":0.23674,"17.4":0.60932,"17.5":0.00776},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00351,"5.0-5.1":0.00351,"6.0-6.1":0.00878,"7.0-7.1":0.01404,"8.1-8.4":0.00351,"9.0-9.2":0.00878,"9.3":0.04388,"10.0-10.2":0.00878,"10.3":0.07021,"11.0-11.2":0.05968,"11.3-11.4":0.01755,"12.0-12.1":0.01229,"12.2-12.5":0.28611,"13.0-13.1":0.00527,"13.2":0.05792,"13.3":0.01404,"13.4-13.7":0.05441,"14.0-14.4":0.10707,"14.5-14.8":0.16324,"15.0-15.1":0.07548,"15.2-15.3":0.08601,"15.4":0.09829,"15.5":0.12462,"15.6-15.8":1.08826,"16.0":0.25451,"16.1":0.53009,"16.2":0.25451,"16.3":0.44935,"16.4":0.09303,"16.5":0.19483,"16.6-16.7":1.53936,"17.0":0.1843,"17.1":0.34052,"17.2":0.45286,"17.3":3.30339,"17.4":7.45632,"17.5":0.06845},P:{"4":0.0844,"20":0.0211,"21":0.05275,"22":0.0422,"23":0.15824,"24":1.22373,"5.0-5.4":0.01055,"6.2-6.4":0.01055,"7.2-7.4":0.09494,_:"8.2 10.1 12.0 15.0","9.2":0.01055,"11.1-11.2":0.03165,"13.0":0.01055,"14.0":0.01055,"16.0":0.03165,"17.0":0.01055,"18.0":0.01055,"19.0":0.0211},I:{"0":0.03656,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.01242,"9":0.00414,"11":0.04554,_:"6 7 10 5.5"},K:{"0":0.27531,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00612},O:{"0":0.03671},H:{"0":0},L:{"0":44.20587},R:{_:"0"},M:{"0":0.43438}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js index c9f1a8c76dc651..58ddf70cc86cfc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/DZ.js @@ -1 +1 @@ -module.exports={C:{"34":0.00258,"40":0.00258,"42":0.00258,"43":0.00258,"47":0.00515,"52":0.04635,"56":0.00258,"57":0.00258,"68":0.00258,"72":0.00515,"78":0.00515,"88":0.00258,"89":0.00258,"90":0.00258,"91":0.00258,"97":0.00515,"99":0.00258,"102":0.00515,"103":0.00773,"104":0.00258,"105":0.00258,"106":0.00258,"107":0.00773,"108":0.00515,"109":0.00258,"110":0.00258,"111":0.00258,"112":0.00258,"113":0.00515,"114":0.00258,"115":0.69268,"116":0.00515,"118":0.00258,"119":0.00258,"120":0.00258,"121":0.00773,"122":0.02575,"123":0.69268,"124":0.29098,"125":0.00258,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 44 45 46 48 49 50 51 53 54 55 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 92 93 94 95 96 98 100 101 117 126 127 3.5 3.6"},D:{"11":0.00515,"26":0.00258,"29":0.00258,"31":0.00258,"32":0.00515,"33":0.00515,"34":0.00258,"35":0.00258,"37":0.00258,"38":0.00515,"39":0.00258,"40":0.00515,"42":0.00515,"43":0.0309,"44":0.00258,"45":0.00258,"46":0.00258,"47":0.00515,"48":0.00258,"49":0.05923,"50":0.00773,"51":0.00258,"52":0.00258,"53":0.00258,"55":0.00515,"56":0.01803,"58":0.0412,"59":0.00258,"60":0.00773,"61":0.00258,"62":0.00258,"63":0.00515,"64":0.00258,"65":0.00773,"66":0.00258,"67":0.00258,"68":0.00773,"69":0.00773,"70":0.00773,"71":0.0103,"72":0.00773,"73":0.00258,"74":0.00773,"75":0.00515,"76":0.00515,"77":0.0103,"78":0.0103,"79":0.0515,"80":0.00515,"81":0.0206,"83":0.03863,"84":0.01803,"85":0.01288,"86":0.01288,"87":0.04893,"88":0.00773,"89":0.0103,"90":0.00515,"91":0.0103,"92":0.00515,"93":0.00515,"94":0.00773,"95":0.04635,"96":0.0103,"97":0.01288,"98":0.03863,"99":0.01288,"100":0.01288,"101":0.0103,"102":0.0515,"103":0.03863,"104":0.02575,"105":0.02318,"106":0.0515,"107":0.0412,"108":0.07468,"109":5.3251,"110":0.04635,"111":0.02318,"112":0.0412,"113":0.0103,"114":0.0206,"115":0.0103,"116":0.04378,"117":0.0206,"118":0.01545,"119":0.12875,"120":0.2369,"121":0.47638,"122":7.04778,"123":2.28918,"124":0.00515,"125":0.00258,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 36 41 54 57 126"},F:{"25":0.00258,"28":0.00773,"36":0.00258,"63":0.00258,"71":0.00258,"79":0.02575,"81":0.00258,"83":0.00258,"84":0.00515,"85":0.01545,"86":0.00258,"87":0.00258,"93":0.00258,"95":0.15965,"102":0.00258,"105":0.00515,"106":0.0103,"107":0.84975,"108":0.19055,"109":0.00258,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 82 88 89 90 91 92 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00258,"13":0.00258,"14":0.00258,"16":0.00258,"17":0.00258,"18":0.01288,"83":0.00258,"84":0.00515,"89":0.00258,"92":0.02833,"100":0.00258,"106":0.00515,"107":0.00515,"108":0.00258,"109":0.0618,"110":0.00773,"111":0.00258,"112":0.00258,"113":0.00258,"114":0.00773,"115":0.00258,"117":0.00773,"118":0.00515,"119":0.00515,"120":0.02318,"121":0.0721,"122":1.41625,"123":0.13133,_:"15 79 80 81 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 116"},E:{"9":0.00258,"14":0.00515,"15":0.00258,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00515,"13.1":0.00773,"14.1":0.0103,"15.1":0.00773,"15.2-15.3":0.00515,"15.4":0.00773,"15.5":0.00773,"15.6":0.05665,"16.0":0.00258,"16.1":0.00773,"16.2":0.00773,"16.3":0.01545,"16.4":0.00773,"16.5":0.01545,"16.6":0.0721,"17.0":0.01545,"17.1":0.03605,"17.2":0.05665,"17.3":0.10558,"17.4":0.0515},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00137,"5.0-5.1":0.00068,"6.0-6.1":0.00411,"7.0-7.1":0.00479,"8.1-8.4":0.00137,"9.0-9.2":0.00274,"9.3":0.01711,"10.0-10.2":0.00274,"10.3":0.02875,"11.0-11.2":0.02054,"11.3-11.4":0.00685,"12.0-12.1":0.00616,"12.2-12.5":0.11843,"13.0-13.1":0.00205,"13.2":0.02054,"13.3":0.00616,"13.4-13.7":0.02328,"14.0-14.4":0.0445,"14.5-14.8":0.06983,"15.0-15.1":0.03012,"15.2-15.3":0.0356,"15.4":0.04176,"15.5":0.0534,"15.6-15.8":0.44703,"16.0":0.10885,"16.1":0.22523,"16.2":0.10885,"16.3":0.19374,"16.4":0.04108,"16.5":0.08694,"16.6-16.7":0.65857,"17.0":0.08557,"17.1":0.17115,"17.2":0.27589,"17.3":3.39554,"17.4":0.49838,"17.5":0},P:{"4":0.16583,"20":0.03109,"21":0.08291,"22":0.09328,"23":0.74621,"24":0.44565,"5.0-5.4":0.01036,"6.2-6.4":0.01036,"7.2-7.4":0.16583,_:"8.2 10.1","9.2":0.02073,"11.1-11.2":0.01036,"12.0":0.01036,"13.0":0.02073,"14.0":0.02073,"15.0":0.01036,"16.0":0.02073,"17.0":0.03109,"18.0":0.02073,"19.0":0.07255},I:{"0":0.11092,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00027},K:{"0":0.68765,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0272,"9":0.00544,"10":0.00544,"11":0.15504,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":66.61985},R:{_:"0"},M:{"0":0.14108},Q:{"14.9":0.00743},O:{"0":0.5049},H:{"0":0.04}}; +module.exports={C:{"15":0.00415,"34":0.00208,"43":0.00208,"47":0.00415,"48":0.00208,"52":0.03944,"66":0.00208,"68":0.00208,"72":0.00415,"75":0.00208,"78":0.0083,"88":0.00208,"89":0.00208,"91":0.01246,"94":0.00208,"97":0.00208,"99":0.00208,"102":0.00208,"103":0.0083,"104":0.00208,"105":0.00208,"106":0.00208,"107":0.00208,"108":0.00208,"109":0.00208,"110":0.00415,"111":0.00208,"112":0.00208,"113":0.00415,"114":0.00208,"115":0.59581,"116":0.00208,"118":0.00208,"120":0.00415,"121":0.00623,"122":0.0083,"123":0.02076,"124":0.42143,"125":0.31348,"126":0.00208,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 90 92 93 95 96 98 100 101 117 119 127 128 3.5 3.6"},D:{"5":0.00208,"11":0.00623,"26":0.00208,"31":0.00415,"32":0.00208,"33":0.00415,"34":0.00623,"35":0.00208,"38":0.00415,"39":0.00208,"40":0.00415,"42":0.00415,"43":0.02906,"44":0.00208,"45":0.00208,"46":0.00208,"47":0.00623,"48":0.00208,"49":0.0436,"50":0.00623,"51":0.00208,"52":0.00208,"53":0.00208,"54":0.00208,"56":0.02284,"57":0.00208,"58":0.03529,"59":0.00208,"60":0.00415,"61":0.00208,"62":0.00415,"63":0.00415,"64":0.00415,"65":0.0083,"66":0.00415,"67":0.00208,"68":0.0083,"69":0.01038,"70":0.0083,"71":0.00623,"72":0.00623,"73":0.00623,"74":0.02076,"75":0.00415,"76":0.00623,"77":0.0083,"78":0.00415,"79":0.05813,"80":0.00623,"81":0.02491,"83":0.0436,"84":0.0083,"85":0.01661,"86":0.0083,"87":0.04152,"88":0.0083,"89":0.0083,"90":0.00415,"91":0.0083,"92":0.00415,"93":0.00415,"94":0.0083,"95":0.03737,"96":0.0083,"97":0.0083,"98":0.03737,"99":0.01038,"100":0.00623,"101":0.0083,"102":0.03529,"103":0.03944,"104":0.01661,"105":0.01246,"106":0.03529,"107":0.02491,"108":0.04152,"109":4.24542,"110":0.04775,"111":0.01246,"112":0.01661,"113":0.01038,"114":0.01246,"115":0.00415,"116":0.04775,"117":0.0083,"118":0.01868,"119":0.09965,"120":0.13494,"121":0.1121,"122":0.28026,"123":5.05298,"124":2.33965,"125":0.02284,"126":0.00208,_:"4 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 36 37 41 55 127"},F:{"25":0.00415,"28":0.01038,"36":0.00208,"46":0.00208,"63":0.00208,"64":0.00208,"79":0.01868,"82":0.00208,"83":0.00208,"84":0.00208,"85":0.01246,"86":0.00623,"87":0.00208,"91":0.00208,"93":0.00208,"95":0.1121,"105":0.00208,"106":0.00208,"107":0.43804,"108":0.2595,"109":0.14117,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 88 89 90 92 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00208,"13":0.00208,"14":0.00208,"15":0.00208,"16":0.00208,"17":0.00208,"18":0.00623,"84":0.00208,"89":0.00208,"92":0.02076,"100":0.00208,"107":0.00208,"109":0.04775,"110":0.00208,"112":0.00208,"113":0.00208,"114":0.00415,"116":0.00415,"117":0.00415,"118":0.00208,"119":0.0083,"120":0.01661,"121":0.01246,"122":0.08304,"123":0.74321,"124":0.40067,_:"79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 111 115"},E:{"9":0.00208,"13":0.00208,"14":0.0083,"15":0.00415,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1","11.1":0.00208,"13.1":0.0083,"14.1":0.01453,"15.1":0.0083,"15.2-15.3":0.00208,"15.4":0.00415,"15.5":0.00415,"15.6":0.03322,"16.0":0.00208,"16.1":0.01453,"16.2":0.00415,"16.3":0.01661,"16.4":0.00623,"16.5":0.01038,"16.6":0.03944,"17.0":0.00623,"17.1":0.02076,"17.2":0.02906,"17.3":0.03944,"17.4":0.14947,"17.5":0.00208},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00108,"5.0-5.1":0.00108,"6.0-6.1":0.00269,"7.0-7.1":0.00431,"8.1-8.4":0.00108,"9.0-9.2":0.00269,"9.3":0.01347,"10.0-10.2":0.00269,"10.3":0.02155,"11.0-11.2":0.01832,"11.3-11.4":0.00539,"12.0-12.1":0.00377,"12.2-12.5":0.08783,"13.0-13.1":0.00162,"13.2":0.01778,"13.3":0.00431,"13.4-13.7":0.0167,"14.0-14.4":0.03287,"14.5-14.8":0.05011,"15.0-15.1":0.02317,"15.2-15.3":0.0264,"15.4":0.03017,"15.5":0.03826,"15.6-15.8":0.33408,"16.0":0.07813,"16.1":0.16273,"16.2":0.07813,"16.3":0.13794,"16.4":0.02856,"16.5":0.05981,"16.6-16.7":0.47256,"17.0":0.05658,"17.1":0.10453,"17.2":0.13902,"17.3":1.01408,"17.4":2.28896,"17.5":0.02101},P:{"4":0.18384,"20":0.04085,"21":0.09192,"22":0.11234,"23":0.31661,"24":0.91918,"5.0-5.4":0.03064,"6.2-6.4":0.04085,"7.2-7.4":0.20426,_:"8.2 10.1","9.2":0.02043,"11.1-11.2":0.01021,"12.0":0.01021,"13.0":0.03064,"14.0":0.03064,"15.0":0.01021,"16.0":0.03064,"17.0":0.04085,"18.0":0.03064,"19.0":0.09192},I:{"0":0.11048,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"8":0.01526,"9":0.00654,"11":0.06539,_:"6 7 10 5.5"},K:{"0":0.81202,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00792},O:{"0":0.55468},H:{"0":0.02},L:{"0":72.40605},R:{_:"0"},M:{"0":0.13471}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js index ef00c727b8445b..a63a3b38264ae3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EC.js @@ -1 +1 @@ -module.exports={C:{"4":0.02459,"52":0.0082,"73":0.02459,"77":0.0082,"78":0.0082,"88":0.01229,"89":0.0041,"100":0.0041,"102":0.0041,"105":0.0041,"106":0.0041,"108":0.0082,"109":0.0041,"110":0.0041,"112":0.0041,"113":0.01229,"114":0.0041,"115":0.30325,"116":0.0082,"117":0.0082,"118":0.0082,"119":0.0082,"120":0.01229,"121":0.03688,"122":0.08606,"123":1.71296,"124":0.90156,"125":0.0041,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 79 80 81 82 83 84 85 86 87 90 91 92 93 94 95 96 97 98 99 101 103 104 107 111 126 127 3.5 3.6"},D:{"38":0.02049,"47":0.02869,"49":0.0082,"50":0.0041,"55":0.0082,"56":0.0041,"63":0.0041,"65":0.0082,"66":0.0082,"70":0.0041,"73":0.0041,"74":0.0082,"75":0.0082,"76":0.0082,"77":0.0041,"78":0.01229,"79":0.24588,"81":0.0041,"83":0.0041,"84":0.01229,"85":0.0041,"86":0.0041,"87":0.05327,"88":0.0082,"89":0.0041,"90":0.01229,"91":0.1967,"92":0.0041,"93":0.0082,"94":0.0082,"95":0.0041,"96":0.0041,"97":0.01229,"98":0.0041,"99":0.0082,"100":0.0082,"101":0.0041,"102":0.0082,"103":0.10245,"104":0.0082,"105":0.01639,"106":0.02049,"107":0.02869,"108":0.03278,"109":1.97114,"110":0.03278,"111":0.03688,"112":0.02459,"113":0.02459,"114":0.03278,"115":0.01639,"116":0.23359,"117":0.02049,"118":0.05737,"119":0.11884,"120":0.23359,"121":1.04499,"122":18.66639,"123":5.24544,"124":0.0041,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 57 58 59 60 61 62 64 67 68 69 71 72 80 125 126"},F:{"28":0.0041,"91":0.0041,"95":0.05327,"102":0.0041,"106":0.02049,"107":1.77443,"108":0.26227,"109":0.0041,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0041,"92":0.01229,"100":0.0041,"105":0.0041,"107":0.0041,"108":0.0041,"109":0.02869,"111":0.0041,"113":0.0041,"114":0.0041,"115":0.0041,"116":0.0041,"117":0.0041,"118":0.0041,"119":0.01229,"120":0.05327,"121":0.10655,"122":2.92597,"123":0.2049,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106 110 112"},E:{"9":0.0041,"14":0.0082,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.01639,"13.1":0.02459,"14.1":0.03278,"15.1":0.0082,"15.2-15.3":0.02049,"15.4":0.0041,"15.5":0.02459,"15.6":0.07786,"16.0":0.0082,"16.1":0.01639,"16.2":0.01229,"16.3":0.02869,"16.4":0.0082,"16.5":0.02049,"16.6":0.07786,"17.0":0.02869,"17.1":0.05327,"17.2":0.14753,"17.3":0.30735,"17.4":0.05737},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0.00065,"6.0-6.1":0.00391,"7.0-7.1":0.00457,"8.1-8.4":0.0013,"9.0-9.2":0.00261,"9.3":0.0163,"10.0-10.2":0.00261,"10.3":0.02739,"11.0-11.2":0.01957,"11.3-11.4":0.00652,"12.0-12.1":0.00587,"12.2-12.5":0.11283,"13.0-13.1":0.00196,"13.2":0.01957,"13.3":0.00587,"13.4-13.7":0.02217,"14.0-14.4":0.04239,"14.5-14.8":0.06652,"15.0-15.1":0.0287,"15.2-15.3":0.03391,"15.4":0.03978,"15.5":0.05087,"15.6-15.8":0.42587,"16.0":0.1037,"16.1":0.21456,"16.2":0.1037,"16.3":0.18456,"16.4":0.03913,"16.5":0.08283,"16.6-16.7":0.62739,"17.0":0.08152,"17.1":0.16304,"17.2":0.26282,"17.3":3.23477,"17.4":0.47478,"17.5":0},P:{"4":0.15737,"20":0.03372,"21":0.07868,"22":0.0562,"23":0.9442,"24":0.69691,"5.0-5.4":0.01124,_:"6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.13489,"11.1-11.2":0.01124,"13.0":0.01124,"14.0":0.01124,"16.0":0.02248,"17.0":0.03372,"18.0":0.01124,"19.0":0.02248},I:{"0":0.05878,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00014},K:{"0":0.37183,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0082,"9":0.0041,"11":0.04098,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":51.66184},R:{_:"0"},M:{"0":0.18886},Q:{_:"14.9"},O:{"0":0.03541},H:{"0":0}}; +module.exports={C:{"4":0.0623,"52":0.00958,"73":0.01917,"78":0.01438,"88":0.01438,"89":0.00479,"95":0.00479,"96":0.00479,"102":0.00479,"105":0.00479,"107":0.00479,"108":0.00479,"109":0.00479,"110":0.00479,"112":0.00479,"113":0.00958,"114":0.00479,"115":0.30669,"116":0.00479,"117":0.00479,"118":0.00479,"119":0.00958,"120":0.00958,"121":0.02396,"122":0.02875,"123":0.07188,"124":1.96472,"125":0.95361,"126":0.00479,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 90 91 92 93 94 97 98 99 100 101 103 104 106 111 127 128 3.5 3.6"},D:{"38":0.01917,"44":0.00479,"46":0.00479,"47":0.01917,"49":0.00958,"51":0.00479,"55":0.00479,"56":0.00479,"65":0.00958,"66":0.00479,"70":0.00479,"73":0.00479,"74":0.00958,"75":0.00479,"76":0.01438,"77":0.00479,"78":0.00958,"79":0.15334,"81":0.02396,"83":0.00479,"84":0.01438,"86":0.00479,"87":0.04792,"88":0.01438,"89":0.00479,"90":0.00479,"91":0.1198,"92":0.00479,"93":0.00958,"94":0.00479,"95":0.00479,"96":0.00479,"97":0.00958,"98":0.00479,"99":0.01438,"100":0.00479,"101":0.01438,"102":0.00958,"103":0.11501,"104":0.01438,"105":0.00958,"106":0.01917,"107":0.01917,"108":0.01917,"109":2.13723,"110":0.03354,"111":0.02875,"112":0.01917,"113":0.03354,"114":0.02875,"115":0.00958,"116":0.2971,"117":0.02396,"118":0.02875,"119":0.11501,"120":0.22522,"121":0.33065,"122":1.1357,"123":20.13119,"124":8.90354,"125":0.04792,"126":0.00479,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 48 50 52 53 54 57 58 59 60 61 62 63 64 67 68 69 71 72 80 85 127"},F:{"28":0.00479,"95":0.05271,"99":0.00958,"102":0.00479,"106":0.00479,"107":1.71554,"108":0.54629,"109":0.20126,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01917,"100":0.00479,"108":0.01438,"109":0.03834,"111":0.00479,"113":0.00479,"114":0.00479,"116":0.00479,"117":0.00479,"118":0.00479,"119":0.00958,"120":0.04792,"121":0.04792,"122":0.20606,"123":2.49663,"124":1.31301,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 112 115"},E:{"9":0.00479,"14":0.00479,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.02396,"13.1":0.02396,"14.1":0.03354,"15.1":0.00958,"15.2-15.3":0.02875,"15.4":0.00479,"15.5":0.01438,"15.6":0.07667,"16.0":0.00479,"16.1":0.01438,"16.2":0.00958,"16.3":0.03354,"16.4":0.00958,"16.5":0.01917,"16.6":0.08626,"17.0":0.01917,"17.1":0.04792,"17.2":0.10542,"17.3":0.11501,"17.4":0.36419,"17.5":0.00479},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00136,"6.0-6.1":0.00339,"7.0-7.1":0.00543,"8.1-8.4":0.00136,"9.0-9.2":0.00339,"9.3":0.01697,"10.0-10.2":0.00339,"10.3":0.02714,"11.0-11.2":0.02307,"11.3-11.4":0.00679,"12.0-12.1":0.00475,"12.2-12.5":0.11061,"13.0-13.1":0.00204,"13.2":0.02239,"13.3":0.00543,"13.4-13.7":0.02104,"14.0-14.4":0.04139,"14.5-14.8":0.06311,"15.0-15.1":0.02918,"15.2-15.3":0.03325,"15.4":0.038,"15.5":0.04818,"15.6-15.8":0.42073,"16.0":0.0984,"16.1":0.20494,"16.2":0.0984,"16.3":0.17372,"16.4":0.03597,"16.5":0.07532,"16.6-16.7":0.59513,"17.0":0.07125,"17.1":0.13165,"17.2":0.17508,"17.3":1.27713,"17.4":2.8827,"17.5":0.02647},P:{"4":0.13578,"20":0.01044,"21":0.04178,"22":0.04178,"23":0.19844,"24":1.18022,"5.0-5.4":0.01044,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 18.0","7.2-7.4":0.094,"11.1-11.2":0.01044,"13.0":0.01044,"16.0":0.04178,"17.0":0.03133,"19.0":0.02089},I:{"0":0.05187,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.01438,"9":0.00479,"10":0.00479,"11":0.07188,_:"6 7 5.5"},K:{"0":0.18228,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00521},O:{"0":0.03646},H:{"0":0},L:{"0":44.19992},R:{_:"0"},M:{"0":0.18228}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js index 9732fc5d92dc54..e099f51c1a0e05 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EE.js @@ -1 +1 @@ -module.exports={C:{"78":0.00778,"88":0.07776,"92":0.0311,"102":0.00778,"103":0.00778,"104":0.00778,"108":0.00778,"109":0.00778,"115":4.43232,"117":0.00778,"118":0.00778,"119":0.00778,"121":0.01555,"122":0.08554,"123":1.5863,"124":0.59875,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 105 106 107 110 111 112 113 114 116 120 125 126 127 3.5 3.6"},D:{"44":0.00778,"49":0.00778,"51":0.00778,"76":0.00778,"79":0.00778,"80":0.00778,"83":0.00778,"84":0.00778,"85":0.01555,"86":0.00778,"87":0.02333,"88":0.00778,"90":0.00778,"91":0.00778,"93":0.18662,"96":0.00778,"98":0.01555,"102":0.01555,"103":0.08554,"104":0.02333,"105":0.04666,"106":0.11664,"107":0.03888,"108":0.03888,"109":1.51632,"110":0.06998,"111":0.0311,"112":0.04666,"113":0.01555,"114":0.01555,"115":0.07776,"116":0.47434,"117":0.06998,"118":0.13219,"119":0.13997,"120":0.90202,"121":5.61427,"122":35.62186,"123":7.07616,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 81 89 92 94 95 97 99 100 101 124 125 126"},F:{"36":0.00778,"46":0.01555,"85":0.01555,"93":0.01555,"95":0.10109,"106":0.09331,"107":2.51942,"108":2.89267,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00778,"18":0.01555,"92":0.01555,"108":0.00778,"109":0.03888,"110":0.00778,"111":0.00778,"112":0.01555,"113":0.00778,"116":0.02333,"117":0.00778,"118":0.01555,"119":0.01555,"120":0.06221,"121":1.46189,"122":7.0295,"123":0.3577,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 114 115"},E:{"9":0.00778,"14":0.0311,"15":0.00778,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00778,"12.1":0.01555,"13.1":0.0311,"14.1":0.08554,"15.1":0.01555,"15.2-15.3":0.01555,"15.4":0.02333,"15.5":0.21773,"15.6":0.2255,"16.0":0.02333,"16.1":0.04666,"16.2":0.06998,"16.3":0.06221,"16.4":0.10886,"16.5":0.05443,"16.6":0.25661,"17.0":0.07776,"17.1":0.13219,"17.2":0.2255,"17.3":0.5521,"17.4":0.17107},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00147,"5.0-5.1":0.00073,"6.0-6.1":0.00441,"7.0-7.1":0.00514,"8.1-8.4":0.00147,"9.0-9.2":0.00294,"9.3":0.01837,"10.0-10.2":0.00294,"10.3":0.03086,"11.0-11.2":0.02204,"11.3-11.4":0.00735,"12.0-12.1":0.00661,"12.2-12.5":0.12712,"13.0-13.1":0.0022,"13.2":0.02204,"13.3":0.00661,"13.4-13.7":0.02498,"14.0-14.4":0.04776,"14.5-14.8":0.07495,"15.0-15.1":0.03233,"15.2-15.3":0.03821,"15.4":0.04482,"15.5":0.05732,"15.6-15.8":0.47983,"16.0":0.11683,"16.1":0.24175,"16.2":0.11683,"16.3":0.20795,"16.4":0.04409,"16.5":0.09332,"16.6-16.7":0.70689,"17.0":0.09185,"17.1":0.1837,"17.2":0.29613,"17.3":3.64466,"17.4":0.53494,"17.5":0},P:{"4":0.02134,"20":0.01067,"21":0.02134,"22":0.02134,"23":0.77907,"24":0.71504,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01067,"19.0":0.01067},I:{"0":0.05316,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0.30024,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02333,"9":0.00778,"10":0.00778,"11":0.07776,_:"6 7 5.5"},S:{"2.5":0.00222,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":12.86317},R:{_:"0"},M:{"0":0.2313},Q:{_:"14.9"},O:{"0":0.02446},H:{"0":0}}; +module.exports={C:{"52":0.00768,"78":0.00768,"88":0.0691,"92":0.02303,"102":0.00768,"103":0.00768,"107":0.00768,"108":0.00768,"109":0.01536,"113":0.01536,"115":4.63751,"117":0.00768,"118":0.00768,"119":0.03839,"121":0.00768,"122":0.01536,"123":0.0691,"124":1.58167,"125":0.79851,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 93 94 95 96 97 98 99 100 101 104 105 106 110 111 112 114 116 120 126 127 128 3.5 3.6"},D:{"44":0.00768,"51":0.00768,"72":0.01536,"77":0.01536,"79":0.00768,"80":0.0691,"83":0.00768,"85":0.01536,"86":0.00768,"87":0.02303,"88":0.00768,"90":0.00768,"93":0.14588,"96":0.00768,"98":0.01536,"100":0.00768,"102":0.02303,"103":0.05375,"104":0.00768,"105":0.01536,"106":0.07678,"107":0.00768,"108":0.02303,"109":1.19777,"110":0.15356,"111":0.02303,"112":0.03839,"113":0.01536,"114":0.02303,"115":0.07678,"116":0.40693,"117":0.04607,"118":0.06142,"119":0.13053,"120":0.35319,"121":0.40693,"122":3.71615,"123":34.24388,"124":12.26944,"125":0.01536,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 78 81 84 89 91 92 94 95 97 99 101 126 127"},F:{"46":0.01536,"83":0.00768,"86":0.00768,"95":0.11517,"97":0.00768,"106":0.01536,"107":1.19777,"108":4.47627,"109":0.453,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 87 88 89 90 91 92 93 94 96 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00768,"16":0.00768,"17":0.00768,"18":0.01536,"86":0.00768,"92":0.00768,"107":0.00768,"108":0.01536,"109":0.05375,"110":0.00768,"112":0.00768,"116":0.00768,"117":0.01536,"118":0.01536,"119":0.01536,"120":0.0691,"121":0.03839,"122":0.19963,"123":3.84668,"124":1.79665,_:"12 13 15 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 111 113 114 115"},E:{"9":0.01536,"14":0.02303,"15":0.00768,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.06142,"13.1":0.03839,"14.1":0.06142,"15.1":0.00768,"15.2-15.3":0.01536,"15.4":0.02303,"15.5":0.07678,"15.6":0.19195,"16.0":0.03071,"16.1":0.04607,"16.2":0.09981,"16.3":0.05375,"16.4":0.02303,"16.5":0.03071,"16.6":0.2457,"17.0":0.04607,"17.1":0.08446,"17.2":0.14588,"17.3":0.19963,"17.4":0.71405,"17.5":0.00768},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00155,"5.0-5.1":0.00155,"6.0-6.1":0.00388,"7.0-7.1":0.0062,"8.1-8.4":0.00155,"9.0-9.2":0.00388,"9.3":0.01939,"10.0-10.2":0.00388,"10.3":0.03102,"11.0-11.2":0.02637,"11.3-11.4":0.00776,"12.0-12.1":0.00543,"12.2-12.5":0.12641,"13.0-13.1":0.00233,"13.2":0.02559,"13.3":0.0062,"13.4-13.7":0.02404,"14.0-14.4":0.04731,"14.5-14.8":0.07213,"15.0-15.1":0.03335,"15.2-15.3":0.038,"15.4":0.04343,"15.5":0.05506,"15.6-15.8":0.48084,"16.0":0.11245,"16.1":0.23422,"16.2":0.11245,"16.3":0.19854,"16.4":0.0411,"16.5":0.08609,"16.6-16.7":0.68016,"17.0":0.08143,"17.1":0.15046,"17.2":0.20009,"17.3":1.45958,"17.4":3.29453,"17.5":0.03025},P:{"4":0.01067,"20":0.01067,"21":0.02134,"22":0.02134,"23":0.11738,"24":1.17381,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","6.2-6.4":0.01067,"17.0":0.01067,"19.0":0.01067},I:{"0":0.06012,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.03481,"9":0.0087,"10":0.0087,"11":0.07832,_:"6 7 5.5"},K:{"0":0.19505,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00464,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01625},H:{"0":0},L:{"0":13.47803},R:{_:"0"},M:{"0":0.2531}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js index 73d4f1201e278f..786c4149f0b72e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/EG.js @@ -1 +1 @@ -module.exports={C:{"40":0.0023,"43":0.0023,"45":0.0115,"47":0.0023,"48":0.0023,"49":0.0023,"52":0.02759,"55":0.0023,"56":0.0023,"64":0.0023,"66":0.0023,"72":0.0069,"78":0.0046,"94":0.0092,"95":0.0023,"99":0.0023,"102":0.0023,"103":0.0023,"105":0.0046,"106":0.0023,"107":0.0023,"108":0.0069,"109":0.0023,"110":0.0023,"111":0.0069,"113":0.0023,"114":0.0023,"115":0.59544,"116":0.0023,"117":0.0023,"118":0.0046,"119":0.0046,"120":0.0069,"121":0.0092,"122":0.02069,"123":0.67131,"124":0.29197,"125":0.0023,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 46 50 51 53 54 57 58 59 60 61 62 63 65 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 100 101 104 112 126 127 3.5 3.6"},D:{"26":0.0023,"33":0.0046,"34":0.0023,"38":0.0046,"40":0.0046,"43":0.14484,"44":0.0023,"47":0.0069,"48":0.0069,"49":0.01839,"51":0.0023,"53":0.0023,"56":0.0023,"58":0.0115,"62":0.0023,"63":0.0023,"65":0.0023,"66":0.0023,"68":0.0092,"69":0.0046,"70":0.0046,"71":0.0046,"72":0.0023,"73":0.0023,"74":0.0069,"75":0.0023,"76":0.0069,"77":0.0046,"78":0.0046,"79":0.03908,"80":0.0115,"81":0.02069,"83":0.0069,"84":0.0069,"85":0.0115,"86":0.01609,"87":0.02989,"88":0.0046,"89":0.0046,"90":0.0023,"91":0.01609,"92":0.0046,"93":0.0046,"94":0.0046,"95":0.0046,"96":0.0046,"97":0.0069,"98":0.03219,"99":0.01839,"100":0.0092,"101":0.0069,"102":0.03219,"103":0.02759,"104":0.0115,"105":0.01379,"106":0.03219,"107":0.04138,"108":0.06437,"109":3.10365,"110":0.02529,"111":0.02759,"112":0.02759,"113":0.0069,"114":0.01839,"115":0.0092,"116":0.04368,"117":0.02069,"118":0.01379,"119":0.05288,"120":0.19771,"121":0.55176,"122":9.05576,"123":2.7565,"124":0.0092,"125":0.0023,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 36 37 39 41 42 45 46 50 52 54 55 57 59 60 61 64 67 126"},F:{"28":0.0023,"46":0.0023,"56":0.0023,"64":0.0046,"69":0.0023,"70":0.0023,"72":0.0069,"73":0.0092,"74":0.0023,"76":0.0023,"79":0.01609,"81":0.0023,"82":0.02299,"83":0.0069,"84":0.0046,"86":0.0023,"87":0.0069,"89":0.0046,"90":0.0046,"92":0.0046,"93":0.0023,"94":0.0069,"95":0.0092,"97":0.0023,"98":0.0023,"99":0.0069,"100":0.0069,"101":0.0069,"102":0.01379,"103":0.0023,"104":0.0092,"105":0.02069,"106":0.03449,"107":0.06437,"108":0.0046,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 57 58 60 62 63 65 66 67 68 71 75 77 78 80 85 88 91 96 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0092,"14":0.0023,"15":0.0023,"16":0.0023,"18":0.0046,"84":0.0023,"89":0.0023,"92":0.01839,"100":0.0023,"106":0.0046,"107":0.0092,"108":0.0046,"109":0.05518,"110":0.0046,"111":0.0023,"112":0.0023,"113":0.0023,"114":0.0069,"115":0.0023,"116":0.0069,"117":0.0023,"118":0.0069,"119":0.0092,"120":0.02989,"121":0.07817,"122":1.96794,"123":0.20231,_:"13 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"4":0.0023,"14":0.0046,"15":0.0023,_:"0 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.02529,"12.1":0.0023,"13.1":0.0069,"14.1":0.01379,"15.1":0.0023,"15.2-15.3":0.0023,"15.4":0.0023,"15.5":0.0046,"15.6":0.03449,"16.0":0.0115,"16.1":0.0092,"16.2":0.0092,"16.3":0.0115,"16.4":0.0069,"16.5":0.0069,"16.6":0.03219,"17.0":0.0092,"17.1":0.01839,"17.2":0.03678,"17.3":0.08736,"17.4":0.02299},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00156,"5.0-5.1":0.00078,"6.0-6.1":0.00469,"7.0-7.1":0.00547,"8.1-8.4":0.00156,"9.0-9.2":0.00312,"9.3":0.01952,"10.0-10.2":0.00312,"10.3":0.0328,"11.0-11.2":0.02343,"11.3-11.4":0.00781,"12.0-12.1":0.00703,"12.2-12.5":0.13509,"13.0-13.1":0.00234,"13.2":0.02343,"13.3":0.00703,"13.4-13.7":0.02655,"14.0-14.4":0.05076,"14.5-14.8":0.07965,"15.0-15.1":0.03436,"15.2-15.3":0.04061,"15.4":0.04763,"15.5":0.06091,"15.6-15.8":0.50992,"16.0":0.12416,"16.1":0.25691,"16.2":0.12416,"16.3":0.22099,"16.4":0.04685,"16.5":0.09917,"16.6-16.7":0.75121,"17.0":0.09761,"17.1":0.19522,"17.2":0.3147,"17.3":3.87317,"17.4":0.56848,"17.5":0},P:{"4":0.22922,"20":0.03126,"21":0.06251,"22":0.09377,"23":1.0419,"24":1.00022,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.01042,"7.2-7.4":0.09377,"11.1-11.2":0.02084,"12.0":0.01042,"13.0":0.03126,"14.0":0.03126,"15.0":0.01042,"16.0":0.04168,"17.0":0.0521,"18.0":0.03126,"19.0":0.04168},I:{"0":0.12271,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.0003},K:{"0":0.49286,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02044,"9":0.00876,"10":0.00876,"11":0.28619,_:"6 7 5.5"},S:{"2.5":0.0154,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":65.40007},R:{_:"0"},M:{"0":0.16942},Q:{_:"14.9"},O:{"0":0.63148},H:{"0":0}}; +module.exports={C:{"34":0.00218,"43":0.00218,"45":0.00437,"47":0.00437,"48":0.00218,"49":0.00218,"50":0.00218,"51":0.00218,"52":0.03275,"55":0.00218,"56":0.00218,"57":0.00218,"66":0.00218,"72":0.00437,"78":0.00218,"80":0.00437,"88":0.00218,"89":0.00218,"91":0.00218,"99":0.00218,"102":0.00218,"103":0.00437,"105":0.00218,"106":0.00218,"108":0.00437,"109":0.00218,"110":0.00218,"111":0.00437,"113":0.00218,"114":0.00218,"115":0.58068,"116":0.00218,"117":0.00218,"118":0.00218,"119":0.00437,"120":0.00218,"121":0.00655,"122":0.01092,"123":0.0262,"124":0.60251,"125":0.39076,"126":0.00218,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 46 53 54 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 79 81 82 83 84 85 86 87 90 92 93 94 95 96 97 98 100 101 104 107 112 127 128 3.5 3.6"},D:{"11":0.00218,"26":0.00218,"33":0.00218,"34":0.00218,"38":0.00437,"39":0.00218,"40":0.00437,"42":0.00218,"43":0.06331,"44":0.00218,"46":0.00218,"47":0.00873,"48":0.00218,"49":0.02401,"51":0.00218,"53":0.00218,"55":0.00218,"56":0.00218,"58":0.05021,"62":0.00218,"63":0.00437,"66":0.00437,"67":0.00218,"68":0.00873,"69":0.00655,"70":0.00655,"71":0.00437,"72":0.00437,"73":0.00437,"74":0.00437,"75":0.00218,"76":0.00873,"77":0.00437,"78":0.00655,"79":0.05458,"80":0.0131,"81":0.01965,"83":0.00655,"84":0.00873,"85":0.01528,"86":0.02183,"87":0.03929,"88":0.00437,"89":0.00437,"90":0.00437,"91":0.0131,"92":0.00437,"93":0.00437,"94":0.00655,"95":0.00437,"96":0.00655,"97":0.00655,"98":0.02838,"99":0.01965,"100":0.00655,"101":0.00655,"102":0.03493,"103":0.02401,"104":0.01092,"105":0.0131,"106":0.01965,"107":0.0262,"108":0.04584,"109":3.01691,"110":0.01092,"111":0.01528,"112":0.02401,"113":0.00655,"114":0.0131,"115":0.00873,"116":0.04584,"117":0.0262,"118":0.01092,"119":0.03711,"120":0.11352,"121":0.17901,"122":0.5392,"123":7.60339,"124":3.72856,"125":0.04148,"126":0.00218,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 36 37 41 45 50 52 54 57 59 60 61 64 65 127"},F:{"28":0.00437,"46":0.00218,"64":0.00437,"68":0.00218,"70":0.00218,"72":0.00437,"73":0.01092,"74":0.00218,"76":0.00218,"79":0.01528,"81":0.00218,"82":0.02183,"83":0.00873,"84":0.00437,"86":0.00218,"87":0.00218,"89":0.00218,"90":0.00218,"92":0.00218,"93":0.00218,"94":0.00437,"95":0.02183,"96":0.00218,"97":0.00218,"98":0.00437,"99":0.00437,"100":0.00437,"101":0.00655,"102":0.0131,"103":0.00218,"104":0.00437,"105":0.01746,"106":0.01746,"107":0.07204,"108":0.01528,"109":0.00655,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 69 71 75 77 78 80 85 88 91 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00218,"16":0.00218,"18":0.00655,"84":0.00218,"87":0.00218,"89":0.00218,"90":0.00218,"92":0.01746,"100":0.00218,"106":0.00218,"107":0.00655,"108":0.00218,"109":0.04584,"110":0.00218,"111":0.00218,"112":0.00218,"113":0.00218,"114":0.00437,"115":0.00218,"116":0.00218,"117":0.00218,"118":0.00437,"119":0.00873,"120":0.01528,"121":0.0262,"122":0.08077,"123":1.25304,"124":0.71602,_:"13 14 15 17 79 80 81 83 85 86 88 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"9":0.00218,"14":0.00873,"15":0.00218,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.0131,"13.1":0.00437,"14.1":0.0131,"15.1":0.00218,"15.2-15.3":0.00437,"15.4":0.00218,"15.5":0.00437,"15.6":0.03275,"16.0":0.00873,"16.1":0.00655,"16.2":0.00873,"16.3":0.00655,"16.4":0.00655,"16.5":0.01092,"16.6":0.03056,"17.0":0.00655,"17.1":0.01746,"17.2":0.01746,"17.3":0.04148,"17.4":0.11788},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00146,"5.0-5.1":0.00146,"6.0-6.1":0.00365,"7.0-7.1":0.00585,"8.1-8.4":0.00146,"9.0-9.2":0.00365,"9.3":0.01827,"10.0-10.2":0.00365,"10.3":0.02924,"11.0-11.2":0.02485,"11.3-11.4":0.00731,"12.0-12.1":0.00512,"12.2-12.5":0.11915,"13.0-13.1":0.00219,"13.2":0.02412,"13.3":0.00585,"13.4-13.7":0.02266,"14.0-14.4":0.04459,"14.5-14.8":0.06798,"15.0-15.1":0.03143,"15.2-15.3":0.03582,"15.4":0.04094,"15.5":0.0519,"15.6-15.8":0.45321,"16.0":0.10599,"16.1":0.22076,"16.2":0.10599,"16.3":0.18713,"16.4":0.03874,"16.5":0.08114,"16.6-16.7":0.64107,"17.0":0.07675,"17.1":0.14181,"17.2":0.18859,"17.3":1.37571,"17.4":3.10522,"17.5":0.02851},P:{"4":0.28119,"20":0.03124,"21":0.05207,"22":0.08332,"23":0.22912,"24":1.71841,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.02083,"7.2-7.4":0.08332,"11.1-11.2":0.03124,"12.0":0.01041,"13.0":0.03124,"14.0":0.02083,"15.0":0.01041,"16.0":0.04166,"17.0":0.05207,"18.0":0.03124,"19.0":0.04166},I:{"0":0.11679,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00029},A:{"8":0.00682,"9":0.00227,"10":0.00227,"11":0.09997,_:"6 7 5.5"},K:{"0":0.54726,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00782,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.6098},H:{"0":0},L:{"0":66.6674},R:{_:"0"},M:{"0":0.20327}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js index 5c8c8f2fb07fa3..c8301017d34186 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ER.js @@ -1 +1 @@ -module.exports={C:{"43":0.00538,"47":0.00269,"50":0.00269,"60":0.00269,"64":0.03769,"99":0.00269,"102":0.00269,"107":0.00269,"115":0.06461,"118":0.00269,"120":0.00538,"122":0.08884,"123":0.98796,"124":0.83183,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 51 52 53 54 55 56 57 58 59 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 103 104 105 106 108 109 110 111 112 113 114 116 117 119 121 125 126 127 3.5 3.6"},D:{"30":0.02154,"32":0.00808,"38":0.00269,"42":0.00269,"43":0.04307,"49":0.00269,"51":0.00269,"62":0.00269,"63":0.00538,"69":0.02961,"70":0.00269,"73":0.00269,"74":0.00538,"76":0.00538,"78":0.00808,"79":0.17229,"80":0.02154,"83":0.00269,"85":0.00808,"87":0.11306,"88":0.00538,"90":0.00269,"92":0.01346,"94":0.00269,"95":0.00538,"96":0.00269,"98":0.11037,"101":0.02154,"102":0.02154,"103":0.035,"104":0.00269,"105":0.035,"106":0.01615,"109":3.62882,"112":0.02154,"114":0.01077,"115":0.01615,"116":0.00538,"117":0.00808,"118":0.01884,"119":0.11306,"120":0.27458,"121":0.2019,"122":3.60997,"123":1.346,"124":0.05384,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 33 34 35 36 37 39 40 41 44 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 64 65 66 67 68 71 72 75 77 81 84 86 89 91 93 97 99 100 107 108 110 111 113 125 126"},F:{"36":0.00538,"57":0.00538,"67":0.01077,"79":0.01077,"84":0.00538,"95":0.00808,"100":0.00808,"105":0.00538,"107":1.01758,"108":0.34996,"109":0.00269,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00538,"14":0.01077,"15":0.00269,"16":0.00269,"17":0.12652,"18":0.01077,"85":0.00269,"89":0.00808,"90":0.01884,"92":0.05384,"98":0.00269,"99":0.00538,"100":0.03769,"103":0.00269,"106":0.00538,"107":0.00538,"108":0.00808,"109":0.00808,"114":0.00808,"115":0.00269,"116":0.00538,"117":0.01346,"119":0.00269,"120":0.1346,"121":0.36342,"122":7.11496,"123":0.70261,_:"13 79 80 81 83 84 86 87 88 91 93 94 95 96 97 101 102 104 105 110 111 112 113 118"},E:{"11":0.00269,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00015,"5.0-5.1":0.00007,"6.0-6.1":0.00044,"7.0-7.1":0.00052,"8.1-8.4":0.00015,"9.0-9.2":0.0003,"9.3":0.00185,"10.0-10.2":0.0003,"10.3":0.0031,"11.0-11.2":0.00221,"11.3-11.4":0.00074,"12.0-12.1":0.00066,"12.2-12.5":0.01277,"13.0-13.1":0.00022,"13.2":0.00221,"13.3":0.00066,"13.4-13.7":0.00251,"14.0-14.4":0.0048,"14.5-14.8":0.00753,"15.0-15.1":0.00325,"15.2-15.3":0.00384,"15.4":0.0045,"15.5":0.00576,"15.6-15.8":0.04819,"16.0":0.01173,"16.1":0.02428,"16.2":0.01173,"16.3":0.02089,"16.4":0.00443,"16.5":0.00937,"16.6-16.7":0.071,"17.0":0.00923,"17.1":0.01845,"17.2":0.02974,"17.3":0.36605,"17.4":0.05373,"17.5":0},P:{"4":0.23232,"20":0.0404,"21":0.0101,"23":0.11111,"24":0.0404,_:"22 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0 17.0","7.2-7.4":0.0202,"11.1-11.2":0.0202,"13.0":0.0101,"14.0":0.0202,"16.0":0.0404,"18.0":0.0101,"19.0":0.13131},I:{"0":0.07277,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},K:{"0":1.60801,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02692,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00731,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":69.08183},R:{_:"0"},M:{"0":0.03654},Q:{_:"14.9"},O:{"0":0.78916},H:{"0":3.2}}; +module.exports={C:{"44":0.01315,"64":0.01315,"65":0.00789,"112":0.00263,"115":0.07627,"122":0.00263,"123":0.01052,"124":1.27292,"125":0.56282,"126":0.00263,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 127 128 3.5 3.6"},D:{"11":0.00789,"18":0.01315,"43":0.00263,"49":0.02104,"57":0.02104,"64":0.00526,"65":0.00526,"69":0.00789,"71":0.00789,"72":0.00263,"74":0.01841,"75":0.00263,"78":0.00263,"80":0.00789,"85":0.00263,"86":0.00263,"87":0.0263,"92":0.01315,"93":0.00526,"94":0.00789,"98":0.04997,"102":0.01052,"103":0.01052,"105":0.00263,"106":0.89946,"107":0.00263,"108":0.01052,"109":3.4453,"112":0.04471,"114":0.00526,"115":0.00263,"116":0.02367,"117":0.00263,"118":0.03419,"119":0.00526,"120":0.4997,"121":0.06575,"122":0.18936,"123":4.84972,"124":3.156,"125":0.08679,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 62 63 66 67 68 70 73 76 77 79 81 83 84 88 89 90 91 95 96 97 99 100 101 104 110 111 113 126 127"},F:{"33":0.00526,"42":0.01052,"57":0.00263,"63":0.01315,"64":0.00263,"67":0.00263,"70":0.00263,"77":0.00263,"79":0.03419,"82":0.00789,"83":0.00263,"95":0.00789,"99":0.00263,"107":0.01052,"108":0.43921,"109":0.83108,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 65 66 68 69 71 72 73 74 75 76 78 80 81 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.06049,"14":0.00263,"15":0.0263,"17":0.02104,"18":0.01315,"84":0.00789,"90":0.00526,"92":0.04208,"97":0.00789,"100":0.03419,"104":0.0526,"106":0.00263,"109":0.00526,"113":0.00526,"115":0.01052,"116":0.00263,"119":0.00263,"120":0.01052,"121":0.05523,"122":0.26826,"123":3.16126,"124":0.87579,_:"13 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 98 99 101 102 103 105 107 108 110 111 112 114 117 118"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00006,"5.0-5.1":0.00006,"6.0-6.1":0.00016,"7.0-7.1":0.00026,"8.1-8.4":0.00006,"9.0-9.2":0.00016,"9.3":0.00081,"10.0-10.2":0.00016,"10.3":0.0013,"11.0-11.2":0.0011,"11.3-11.4":0.00032,"12.0-12.1":0.00023,"12.2-12.5":0.00529,"13.0-13.1":0.0001,"13.2":0.00107,"13.3":0.00026,"13.4-13.7":0.00101,"14.0-14.4":0.00198,"14.5-14.8":0.00302,"15.0-15.1":0.00139,"15.2-15.3":0.00159,"15.4":0.00182,"15.5":0.0023,"15.6-15.8":0.02011,"16.0":0.0047,"16.1":0.00979,"16.2":0.0047,"16.3":0.0083,"16.4":0.00172,"16.5":0.0036,"16.6-16.7":0.02844,"17.0":0.0034,"17.1":0.00629,"17.2":0.00837,"17.3":0.06103,"17.4":0.13775,"17.5":0.00126},P:{"4":0.10935,"21":0.00994,"22":0.06959,"23":0.05965,"24":0.03976,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 17.0","7.2-7.4":0.02982,"13.0":0.00994,"16.0":0.05965,"18.0":0.00994,"19.0":0.02982},I:{"0":0.09542,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},A:{"11":0.00263,_:"6 7 8 9 10 5.5"},K:{"0":1.57903,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.04422,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.41272},H:{"0":3.72},L:{"0":70.46152},R:{_:"0"},M:{"0":0.02211}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ES.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ES.js index 6881b1ef06e8fd..674fe7fbbe7000 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ES.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ES.js @@ -1 +1 @@ -module.exports={C:{"4":0.0061,"48":0.00305,"50":0.00305,"52":0.02747,"53":0.00305,"56":0.00305,"59":0.0061,"67":0.00305,"68":0.0061,"78":0.02442,"81":0.00305,"86":0.00305,"88":0.00916,"89":0.00305,"91":0.00305,"95":0.00305,"99":0.00305,"100":0.01221,"101":0.00305,"102":0.00916,"103":0.00305,"105":0.00305,"107":0.00305,"108":0.00305,"109":0.03357,"110":0.00305,"111":0.00305,"112":0.00305,"113":0.00916,"114":0.00305,"115":0.27773,"116":0.00305,"117":0.00305,"118":0.00916,"119":0.0061,"120":0.01831,"121":0.01526,"122":0.03662,"123":1.1445,"124":0.47001,"125":0.00305,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 60 61 62 63 64 65 66 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 87 90 92 93 94 96 97 98 104 106 126 127 3.5 3.6"},D:{"38":0.00305,"46":0.0061,"49":0.02747,"58":0.00305,"60":0.0061,"63":0.00305,"65":0.00305,"66":0.02442,"67":0.00305,"68":0.00305,"70":0.00305,"73":0.0061,"74":0.00305,"75":0.01221,"76":0.00305,"77":0.00305,"78":0.00305,"79":0.03662,"80":0.0061,"81":0.0061,"83":0.0061,"84":0.00916,"85":0.0061,"86":0.00916,"87":0.04273,"88":0.01221,"89":0.0061,"90":0.0061,"91":0.0061,"92":0.00305,"93":0.03357,"94":0.01221,"95":0.00916,"96":0.00305,"97":0.0061,"98":0.0061,"99":0.01221,"100":0.01221,"101":0.0061,"102":0.00916,"103":0.0702,"104":0.0061,"105":0.01221,"106":0.01831,"107":0.03968,"108":0.03662,"109":1.04989,"110":0.01221,"111":0.02136,"112":0.03662,"113":0.01526,"114":0.03052,"115":0.02442,"116":0.1465,"117":0.02747,"118":0.02747,"119":0.0763,"120":0.25026,"121":1.19028,"122":12.61697,"123":3.53116,"124":0.0061,"125":0.00305,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 59 61 62 64 69 71 72 126"},F:{"28":0.00305,"46":0.0061,"95":0.02136,"102":0.00305,"106":0.01221,"107":1.03158,"108":0.18617,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00305,"84":0.0061,"90":0.00305,"92":0.0061,"106":0.00305,"107":0.00305,"108":0.0061,"109":0.04883,"110":0.00305,"111":0.00305,"112":0.00305,"113":0.00305,"114":0.0061,"115":0.00305,"116":0.0061,"117":0.0061,"118":0.00305,"119":0.01526,"120":0.03357,"121":0.10377,"122":2.63388,"123":0.24416,_:"12 13 14 15 16 18 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"13":0.0061,"14":0.03357,"15":0.0061,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.0061,"11.1":0.0061,"12.1":0.00916,"13.1":0.06104,"14.1":0.07935,"15.1":0.01831,"15.2-15.3":0.00916,"15.4":0.02136,"15.5":0.02747,"15.6":0.20448,"16.0":0.02136,"16.1":0.03662,"16.2":0.04273,"16.3":0.08851,"16.4":0.02747,"16.5":0.05494,"16.6":0.25637,"17.0":0.04273,"17.1":0.09156,"17.2":0.21364,"17.3":0.72943,"17.4":0.15565},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00245,"5.0-5.1":0.00123,"6.0-6.1":0.00736,"7.0-7.1":0.00859,"8.1-8.4":0.00245,"9.0-9.2":0.00491,"9.3":0.03068,"10.0-10.2":0.00491,"10.3":0.05153,"11.0-11.2":0.03681,"11.3-11.4":0.01227,"12.0-12.1":0.01104,"12.2-12.5":0.21227,"13.0-13.1":0.00368,"13.2":0.03681,"13.3":0.01104,"13.4-13.7":0.04172,"14.0-14.4":0.07976,"14.5-14.8":0.12516,"15.0-15.1":0.05399,"15.2-15.3":0.0638,"15.4":0.07485,"15.5":0.09571,"15.6-15.8":0.80124,"16.0":0.1951,"16.1":0.40369,"16.2":0.1951,"16.3":0.34725,"16.4":0.07362,"16.5":0.15583,"16.6-16.7":1.18039,"17.0":0.15338,"17.1":0.30675,"17.2":0.49449,"17.3":6.086,"17.4":0.89327,"17.5":0},P:{"4":0.04169,"20":0.03127,"21":0.06253,"22":0.07295,"23":1.7509,"24":1.2298,"5.0-5.4":0.01042,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.02084,"13.0":0.02084,"14.0":0.01042,"16.0":0.02084,"17.0":0.01042,"18.0":0.01042,"19.0":0.04169},I:{"0":0.04152,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.30571,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00318,"11":0.07312,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":54.64496},R:{_:"0"},M:{"0":0.35435},Q:{_:"14.9"},O:{"0":0.02084},H:{"0":0}}; +module.exports={C:{"4":0.00317,"48":0.00317,"52":0.02534,"56":0.00317,"59":0.00317,"67":0.00317,"68":0.00317,"78":0.02218,"81":0.00317,"83":0.00317,"88":0.0095,"91":0.00317,"95":0.00634,"99":0.00317,"100":0.0095,"101":0.00317,"102":0.0095,"103":0.00317,"105":0.00317,"106":0.00317,"107":0.00634,"108":0.00317,"109":0.04118,"110":0.00317,"111":0.00317,"112":0.00317,"113":0.0095,"114":0.00317,"115":0.28829,"116":0.00317,"117":0.00317,"118":0.01584,"119":0.00634,"120":0.01267,"121":0.01267,"122":0.01584,"123":0.04435,"124":1.05178,"125":0.60826,"126":0.00317,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 69 70 71 72 73 74 75 76 77 79 80 82 84 85 86 87 89 90 92 93 94 96 97 98 104 127 128 3.5 3.6"},D:{"38":0.00317,"46":0.00634,"49":0.02851,"63":0.00317,"65":0.00317,"66":0.01267,"67":0.00317,"68":0.00317,"70":0.00317,"73":0.00634,"75":0.01267,"76":0.00317,"77":0.00317,"78":0.00317,"79":0.03485,"80":0.00634,"81":0.00634,"83":0.00634,"84":0.0095,"85":0.00634,"86":0.00634,"87":0.04118,"88":0.0095,"89":0.00317,"90":0.00634,"91":0.0095,"92":0.00317,"93":0.02534,"94":0.01267,"95":0.00634,"96":0.00317,"97":0.00634,"98":0.00634,"99":0.01267,"100":0.0095,"101":0.00317,"102":0.0095,"103":0.0792,"104":0.0095,"105":0.01267,"106":0.01584,"107":0.04435,"108":0.0697,"109":1.08029,"110":0.01267,"111":0.01584,"112":0.03168,"113":0.01267,"114":0.03168,"115":0.12355,"116":0.13939,"117":0.02851,"118":0.02218,"119":0.06336,"120":0.13622,"121":0.19642,"122":0.99475,"123":12.01939,"124":5.38243,"125":0.01901,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 69 71 72 74 126 127"},F:{"46":0.00634,"69":0.00317,"95":0.02218,"102":0.00317,"106":0.00317,"107":0.792,"108":0.37699,"109":0.11722,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00317,"84":0.00634,"90":0.00317,"92":0.00317,"97":0.00317,"101":0.00317,"106":0.00317,"107":0.00317,"108":0.00317,"109":0.04435,"110":0.00634,"111":0.00317,"112":0.00317,"113":0.00317,"114":0.00634,"115":0.00317,"116":0.00634,"117":0.00317,"118":0.00317,"119":0.01267,"120":0.02218,"121":0.02218,"122":0.1679,"123":1.86912,"124":0.97574,_:"12 13 14 15 16 18 79 80 81 83 85 86 87 88 89 91 93 94 95 96 98 99 100 102 103 104 105"},E:{"11":0.0095,"13":0.00634,"14":0.02851,"15":0.00634,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00317,"12.1":0.0095,"13.1":0.05386,"14.1":0.0697,"15.1":0.17107,"15.2-15.3":0.0095,"15.4":0.01901,"15.5":0.02534,"15.6":0.19958,"16.0":0.02534,"16.1":0.03485,"16.2":0.03802,"16.3":0.0792,"16.4":0.02534,"16.5":0.04752,"16.6":0.23126,"17.0":0.03485,"17.1":0.0697,"17.2":0.10771,"17.3":0.27878,"17.4":0.77616,"17.5":0.00317},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00239,"5.0-5.1":0.00239,"6.0-6.1":0.00597,"7.0-7.1":0.00955,"8.1-8.4":0.00239,"9.0-9.2":0.00597,"9.3":0.02986,"10.0-10.2":0.00597,"10.3":0.04777,"11.0-11.2":0.0406,"11.3-11.4":0.01194,"12.0-12.1":0.00836,"12.2-12.5":0.19466,"13.0-13.1":0.00358,"13.2":0.03941,"13.3":0.00955,"13.4-13.7":0.03702,"14.0-14.4":0.07285,"14.5-14.8":0.11106,"15.0-15.1":0.05135,"15.2-15.3":0.05852,"15.4":0.06688,"15.5":0.08479,"15.6-15.8":0.74042,"16.0":0.17316,"16.1":0.36066,"16.2":0.17316,"16.3":0.30572,"16.4":0.06329,"16.5":0.13256,"16.6-16.7":1.04734,"17.0":0.12539,"17.1":0.23168,"17.2":0.30811,"17.3":2.24755,"17.4":5.0731,"17.5":0.04658},P:{"4":0.04193,"20":0.03145,"21":0.0629,"22":0.0629,"23":0.30401,"24":2.40065,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01048,"13.0":0.01048,"14.0":0.01048,"16.0":0.01048,"17.0":0.01048,"18.0":0.01048,"19.0":0.03145},I:{"0":0.03402,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.0033,"11":0.0759,_:"6 7 9 10 5.5"},K:{"0":0.32794,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0205},H:{"0":0},L:{"0":53.49277},R:{_:"0"},M:{"0":0.38942}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js index 9e5f39e584214d..f8f73f0e1b2a6c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ET.js @@ -1 +1 @@ -module.exports={C:{"30":0.00314,"34":0.00314,"43":0.0157,"47":0.02825,"52":0.01256,"56":0.00314,"60":0.00314,"66":0.00314,"68":0.00942,"72":0.00942,"77":0.15067,"79":0.00314,"82":0.00628,"84":0.00628,"88":0.00314,"89":0.07848,"95":0.17578,"97":0.00314,"102":0.00314,"103":0.00942,"106":0.00628,"108":0.10359,"110":0.03767,"111":0.00314,"112":0.00628,"113":0.00314,"114":0.00628,"115":0.53991,"116":0.00314,"118":0.00314,"119":0.00314,"120":0.01256,"121":0.01256,"122":0.05336,"123":1.4973,"124":0.67175,"125":0.03139,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 57 58 59 61 62 63 64 65 67 69 70 71 73 74 75 76 78 80 81 83 85 86 87 90 91 92 93 94 96 98 99 100 101 104 105 107 109 117 126 127 3.5 3.6"},D:{"11":0.0157,"31":0.00314,"33":0.00628,"38":0.00628,"40":0.00314,"42":0.00314,"43":0.01883,"49":0.00314,"50":0.00628,"55":0.00314,"56":0.00628,"57":0.00314,"58":0.00314,"63":0.00314,"64":0.00314,"65":0.01256,"68":0.00942,"69":0.00314,"70":0.00942,"71":0.01256,"72":0.00314,"73":0.00942,"74":0.00314,"75":0.0157,"76":0.00628,"77":0.00628,"78":0.00628,"79":0.23229,"80":0.02197,"81":0.01883,"83":0.00942,"84":0.00314,"85":0.00628,"86":0.05022,"87":0.04709,"88":0.01256,"89":0.00628,"90":0.00628,"91":0.00942,"92":0.04709,"93":0.14439,"94":0.00314,"95":0.01883,"96":0.01256,"97":0.00314,"98":0.23856,"99":0.00628,"100":0.00314,"102":0.04081,"103":0.04709,"104":0.00628,"105":0.01256,"106":0.01883,"107":0.03453,"108":0.01256,"109":2.70896,"110":0.00628,"111":0.03139,"112":0.00314,"113":0.00942,"114":0.02511,"115":0.0157,"116":0.03453,"117":0.01883,"118":0.01883,"119":0.06906,"120":0.22287,"121":0.6435,"122":10.34614,"123":3.10761,"124":0.01256,"125":0.00628,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 39 41 44 45 46 47 48 51 52 53 54 59 60 61 62 66 67 101 126"},F:{"46":0.0157,"72":0.00314,"79":0.01883,"80":0.01883,"86":0.01256,"95":0.09103,"106":0.0157,"107":0.70628,"108":0.30134,"109":0.00314,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01883,"13":0.00314,"14":0.0157,"15":0.0157,"16":0.00628,"17":0.00628,"18":0.09103,"84":0.00314,"88":0.00314,"89":0.00628,"90":0.00314,"92":0.06278,"100":0.00314,"108":0.00314,"109":0.03139,"110":0.00314,"111":0.00314,"112":0.00314,"113":0.00628,"114":0.02197,"115":0.00628,"116":0.00628,"117":0.00942,"118":0.00628,"119":0.02825,"120":0.08475,"121":0.16637,"122":2.80313,"123":0.2574,_:"79 80 81 83 85 86 87 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107"},E:{"7":0.00314,"13":0.00628,"14":0.00314,_:"0 4 5 6 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.1 16.2 16.4 17.5","12.1":0.00314,"13.1":0.00628,"14.1":0.00628,"15.6":0.02197,"16.0":0.00314,"16.3":0.00314,"16.5":0.02197,"16.6":0.00628,"17.0":0.00314,"17.1":0.00314,"17.2":0.00942,"17.3":0.01256,"17.4":0.00628},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00041,"5.0-5.1":0.00021,"6.0-6.1":0.00123,"7.0-7.1":0.00144,"8.1-8.4":0.00041,"9.0-9.2":0.00082,"9.3":0.00515,"10.0-10.2":0.00082,"10.3":0.00864,"11.0-11.2":0.00617,"11.3-11.4":0.00206,"12.0-12.1":0.00185,"12.2-12.5":0.0356,"13.0-13.1":0.00062,"13.2":0.00617,"13.3":0.00185,"13.4-13.7":0.007,"14.0-14.4":0.01338,"14.5-14.8":0.02099,"15.0-15.1":0.00906,"15.2-15.3":0.0107,"15.4":0.01255,"15.5":0.01605,"15.6-15.8":0.13439,"16.0":0.03272,"16.1":0.06771,"16.2":0.03272,"16.3":0.05824,"16.4":0.01235,"16.5":0.02614,"16.6-16.7":0.19798,"17.0":0.02573,"17.1":0.05145,"17.2":0.08294,"17.3":1.02077,"17.4":0.14982,"17.5":0},P:{"4":0.28577,"20":0.03175,"21":0.05292,"22":0.08467,"23":0.39161,"24":0.27518,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0","7.2-7.4":0.15876,"9.2":0.01058,"11.1-11.2":0.01058,"13.0":0.02117,"14.0":0.01058,"16.0":0.02117,"17.0":0.02117,"18.0":0.03175,"19.0":0.07409},I:{"0":0.09565,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},K:{"0":2.28982,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02511,_:"6 7 8 9 10 5.5"},S:{"2.5":0.05488,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":63.47924},R:{_:"0"},M:{"0":0.06174},Q:{"14.9":0.00686},O:{"0":0.24696},H:{"0":2.08}}; +module.exports={C:{"34":0.00297,"44":0.00297,"47":0.00593,"52":0.0089,"60":0.00297,"67":0.00297,"68":0.02077,"72":0.00297,"77":0.16615,"82":0.00593,"84":0.0089,"88":0.00297,"89":0.04451,"95":0.31747,"97":0.00593,"103":0.01187,"106":0.00297,"108":0.07121,"110":0.04747,"112":0.00593,"113":0.00297,"114":0.00297,"115":0.45098,"116":0.00593,"119":0.00297,"120":0.00593,"121":0.00593,"122":0.0089,"123":0.04451,"124":1.22537,"125":0.78626,"126":0.0267,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 69 70 71 73 74 75 76 78 79 80 81 83 85 86 87 90 91 92 93 94 96 98 99 100 101 102 104 105 107 109 111 117 118 127 128 3.5 3.6"},D:{"11":0.00593,"32":0.00297,"33":0.00297,"38":0.00593,"40":0.00297,"42":0.00297,"43":0.01187,"50":0.00593,"53":0.00297,"56":0.00297,"57":0.00593,"58":0.00297,"63":0.00297,"64":0.00297,"65":0.01187,"67":0.00297,"68":0.01187,"69":0.00593,"70":0.0089,"71":0.00297,"72":0.00593,"73":0.01187,"74":0.00297,"75":0.01484,"76":0.01187,"77":0.00593,"78":0.00593,"79":0.20176,"80":0.01187,"81":0.0178,"83":0.01484,"84":0.00297,"85":0.0089,"86":0.04154,"87":0.04747,"88":0.01484,"89":0.00593,"90":0.00593,"91":0.00593,"92":0.03857,"93":0.09494,"94":0.01484,"95":0.0267,"96":0.00593,"97":0.00297,"98":0.19879,"99":0.0089,"100":0.00297,"102":0.02077,"103":0.06824,"104":0.01187,"105":0.00593,"106":0.0178,"107":0.01484,"108":0.02077,"109":2.40327,"110":0.00593,"111":0.02374,"112":0.00297,"113":0.00593,"114":0.02077,"115":0.01187,"116":0.02077,"117":0.01484,"118":0.01187,"119":0.06231,"120":0.18692,"121":0.14538,"122":0.43022,"123":9.09089,"124":4.37929,"125":0.08604,"126":0.00593,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 34 35 36 37 39 41 44 45 46 47 48 49 51 52 54 55 59 60 61 62 66 101 127"},F:{"40":0.00297,"46":0.01187,"79":0.0178,"80":0.00297,"82":0.00297,"86":0.02077,"89":0.00297,"95":0.08901,"106":0.00297,"107":0.07121,"108":0.54296,"109":0.21066,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 85 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01484,"13":0.00297,"14":0.01484,"15":0.01484,"16":0.0089,"17":0.00297,"18":0.06527,"84":0.00297,"89":0.00297,"90":0.00297,"92":0.0356,"100":0.00297,"108":0.00297,"109":0.03264,"111":0.00297,"112":0.00297,"113":0.00297,"114":0.0267,"115":0.00297,"116":0.00297,"117":0.00593,"118":0.00297,"119":0.01484,"120":0.03857,"121":0.04747,"122":0.20176,"123":2.09767,"124":0.89307,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110"},E:{"7":0.00297,"13":0.01187,"14":0.00593,_:"0 4 5 6 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.5","11.1":0.00297,"12.1":0.00297,"13.1":0.00297,"14.1":0.01484,"15.2-15.3":0.00297,"15.6":0.03264,"16.5":0.00297,"16.6":0.00297,"17.0":0.00297,"17.1":0.00297,"17.2":0.00297,"17.3":0.00593,"17.4":0.01484},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00039,"5.0-5.1":0.00039,"6.0-6.1":0.00098,"7.0-7.1":0.00156,"8.1-8.4":0.00039,"9.0-9.2":0.00098,"9.3":0.00489,"10.0-10.2":0.00098,"10.3":0.00782,"11.0-11.2":0.00665,"11.3-11.4":0.00196,"12.0-12.1":0.00137,"12.2-12.5":0.03187,"13.0-13.1":0.00059,"13.2":0.00645,"13.3":0.00156,"13.4-13.7":0.00606,"14.0-14.4":0.01193,"14.5-14.8":0.01818,"15.0-15.1":0.00841,"15.2-15.3":0.00958,"15.4":0.01095,"15.5":0.01388,"15.6-15.8":0.12122,"16.0":0.02835,"16.1":0.05905,"16.2":0.02835,"16.3":0.05005,"16.4":0.01036,"16.5":0.0217,"16.6-16.7":0.17147,"17.0":0.02053,"17.1":0.03793,"17.2":0.05044,"17.3":0.36796,"17.4":0.83056,"17.5":0.00763},P:{"4":0.30676,"20":0.02045,"21":0.0409,"22":0.0818,"23":0.19428,"24":0.37834,"5.0-5.4":0.03068,"6.2-6.4":0.01023,"7.2-7.4":0.17383,_:"8.2 10.1 12.0 14.0 15.0","9.2":0.01023,"11.1-11.2":0.01023,"13.0":0.01023,"16.0":0.03068,"17.0":0.03068,"18.0":0.05113,"19.0":0.05113},I:{"0":0.10506,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00026},A:{"11":0.01484,_:"6 7 8 9 10 5.5"},K:{"0":2.6242,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.05626,_:"3.0-3.1"},Q:{"14.9":0.00703},O:{"0":0.17583},H:{"0":1.68},L:{"0":64.88981},R:{_:"0"},M:{"0":0.0633}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FI.js index f85b57c6fe7bcb..67e2d675a04929 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FI.js @@ -1 +1 @@ -module.exports={C:{"44":0.00716,"47":0.00716,"50":0.67313,"52":0.90229,"53":0.98106,"56":0.40818,"59":0.02864,"68":0.00716,"72":0.03581,"75":0.01432,"78":0.00716,"83":0.00716,"91":0.00716,"95":0.01432,"99":0.00716,"102":0.05013,"103":0.02148,"104":0.02864,"105":0.01432,"106":0.00716,"107":0.00716,"108":0.00716,"109":0.02148,"110":0.01432,"111":0.00716,"112":0.00716,"113":0.02148,"114":0.02148,"115":0.34373,"116":0.03581,"117":0.83068,"118":0.5872,"119":0.03581,"120":0.01432,"121":0.02864,"122":0.05729,"123":1.73296,"124":0.7161,"125":0.00716,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 51 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 94 96 97 98 100 101 126 127 3.5 3.6"},D:{"38":0.00716,"42":0.02148,"49":0.00716,"56":0.00716,"61":0.02148,"66":0.1289,"71":0.00716,"73":0.00716,"74":0.00716,"75":0.02148,"76":0.00716,"78":0.00716,"79":0.02864,"80":0.01432,"81":0.01432,"83":0.03581,"85":0.02864,"86":0.94525,"87":0.10025,"88":0.00716,"89":0.02148,"90":0.00716,"91":0.74474,"92":0.01432,"93":0.02864,"94":0.01432,"95":0.00716,"96":0.10025,"97":0.00716,"98":0.00716,"99":0.22915,"100":0.93809,"101":1.91199,"102":0.95957,"103":1.14576,"104":0.98106,"105":0.07877,"106":0.04297,"107":0.15754,"108":0.13606,"109":2.42042,"110":0.15754,"111":0.17186,"112":0.13606,"113":0.15038,"114":1.27466,"115":0.4225,"116":5.93647,"117":8.96557,"118":0.17903,"119":0.22915,"120":1.4322,"121":3.09355,"122":16.33424,"123":3.09355,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 62 63 64 65 67 68 69 70 72 77 84 124 125 126"},F:{"46":0.00716,"68":0.00716,"72":0.00716,"94":0.00716,"95":0.01432,"102":0.00716,"106":0.01432,"107":1.06699,"108":0.1647,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01432,"92":0.00716,"100":0.00716,"101":0.01432,"103":0.00716,"105":0.00716,"106":0.01432,"107":0.02148,"108":0.00716,"109":0.03581,"110":0.01432,"111":0.00716,"112":0.00716,"114":0.01432,"115":0.02864,"116":0.07161,"117":1.10996,"118":0.02148,"119":0.01432,"120":0.02148,"121":0.27928,"122":3.49457,"123":0.26496,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 102 104 113"},E:{"13":0.00716,"14":0.01432,"15":0.00716,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 12.1 17.5","5.1":0.00716,"9.1":0.00716,"11.1":0.02148,"13.1":0.03581,"14.1":0.05013,"15.1":0.01432,"15.2-15.3":0.01432,"15.4":0.05729,"15.5":0.02864,"15.6":0.22199,"16.0":0.03581,"16.1":0.10025,"16.2":0.04297,"16.3":0.1289,"16.4":0.12174,"16.5":0.27928,"16.6":0.60869,"17.0":0.15038,"17.1":0.12174,"17.2":0.19335,"17.3":0.65165,"17.4":0.20051},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00152,"5.0-5.1":0.00076,"6.0-6.1":0.00457,"7.0-7.1":0.00534,"8.1-8.4":0.00152,"9.0-9.2":0.00305,"9.3":0.01906,"10.0-10.2":0.00305,"10.3":0.03202,"11.0-11.2":0.02287,"11.3-11.4":0.00762,"12.0-12.1":0.00686,"12.2-12.5":0.13187,"13.0-13.1":0.00229,"13.2":0.02287,"13.3":0.00686,"13.4-13.7":0.02592,"14.0-14.4":0.04955,"14.5-14.8":0.07775,"15.0-15.1":0.03354,"15.2-15.3":0.03964,"15.4":0.0465,"15.5":0.05946,"15.6-15.8":0.49776,"16.0":0.1212,"16.1":0.25079,"16.2":0.1212,"16.3":0.21572,"16.4":0.04574,"16.5":0.09681,"16.6-16.7":0.73331,"17.0":0.09528,"17.1":0.19057,"17.2":0.3072,"17.3":3.78087,"17.4":0.55493,"17.5":0},P:{"4":0.02161,"20":0.02161,"21":0.05403,"22":0.08644,"23":0.71316,"24":0.78879,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 15.0","12.0":0.01081,"13.0":0.01081,"14.0":0.01081,"16.0":0.02161,"17.0":0.01081,"18.0":0.01081,"19.0":0.02161},I:{"0":0.02545,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.40449,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00716,"9":0.00716,"11":0.05013,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":18.29591},R:{_:"0"},M:{"0":0.55644},Q:{_:"14.9"},O:{"0":0.06814},H:{"0":0.01}}; +module.exports={C:{"50":0.76758,"52":0.8234,"53":1.06066,"56":0.56522,"59":0.02093,"60":0.00698,"72":0.00698,"78":0.00698,"83":0.00698,"91":0.00698,"95":0.00698,"102":0.03489,"103":0.02791,"104":0.03489,"105":0.00698,"106":0.00698,"108":0.01396,"109":0.01396,"110":0.00698,"111":0.00698,"112":0.00698,"113":0.01396,"114":0.01396,"115":0.36286,"116":0.03489,"117":0.70478,"118":0.50242,"119":0.03489,"120":0.00698,"121":0.01396,"122":0.02093,"123":0.05582,"124":1.6189,"125":0.87225,"126":0.00698,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 107 127 128 3.5 3.6"},D:{"38":0.01396,"41":0.00698,"42":0.01396,"53":0.00698,"56":0.00698,"61":0.01396,"66":0.11863,"69":0.00698,"71":0.02093,"73":0.00698,"74":0.00698,"75":0.01396,"76":0.00698,"77":0.00698,"78":0.01396,"79":0.01396,"80":0.00698,"81":0.00698,"83":0.03489,"85":0.00698,"86":1.69565,"87":0.18143,"88":0.00698,"89":0.02093,"90":0.00698,"91":0.62802,"92":0.00698,"93":0.15352,"94":0.01396,"95":0.00698,"96":0.03489,"97":0.00698,"98":0.00698,"99":0.23725,"100":1.70961,"101":3.41922,"102":1.70263,"103":1.77939,"104":1.73054,"105":0.15352,"106":0.04187,"107":0.1256,"108":0.07676,"109":1.15137,"110":0.11165,"111":0.16049,"112":0.09769,"113":0.13258,"114":0.8234,"115":0.36286,"116":5.1079,"117":7.57113,"118":0.13956,"119":0.20934,"120":1.08159,"121":0.89318,"122":2.21203,"123":13.09771,"124":5.06603,"125":0.01396,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 48 49 50 51 52 54 55 57 58 59 60 62 63 64 65 67 68 70 72 84 126 127"},F:{"46":0.00698,"57":0.00698,"68":0.00698,"94":0.00698,"95":0.02093,"106":0.00698,"107":0.72571,"108":0.30005,"109":0.09769,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01396,"84":0.00698,"92":0.00698,"100":0.00698,"103":0.00698,"104":0.00698,"105":0.00698,"107":0.00698,"108":0.00698,"109":0.03489,"110":0.00698,"111":0.01396,"112":0.00698,"113":0.00698,"114":0.01396,"115":0.02093,"116":0.0628,"117":0.93505,"118":0.02093,"119":0.01396,"120":0.01396,"121":0.02791,"122":0.18841,"123":2.14922,"124":1.03274,_:"12 13 14 15 16 18 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 106"},E:{"13":0.00698,"14":0.04187,"15":0.00698,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00698,"11.1":0.02093,"12.1":0.00698,"13.1":0.04187,"14.1":0.04885,"15.1":0.01396,"15.2-15.3":0.01396,"15.4":0.04885,"15.5":0.03489,"15.6":0.18841,"16.0":0.03489,"16.1":0.08374,"16.2":0.03489,"16.3":0.11863,"16.4":0.10467,"16.5":0.24423,"16.6":0.53731,"17.0":0.13258,"17.1":0.0628,"17.2":0.08374,"17.3":0.23027,"17.4":0.96994,"17.5":0.00698},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00143,"5.0-5.1":0.00143,"6.0-6.1":0.00357,"7.0-7.1":0.00571,"8.1-8.4":0.00143,"9.0-9.2":0.00357,"9.3":0.01785,"10.0-10.2":0.00357,"10.3":0.02856,"11.0-11.2":0.02428,"11.3-11.4":0.00714,"12.0-12.1":0.005,"12.2-12.5":0.1164,"13.0-13.1":0.00214,"13.2":0.02357,"13.3":0.00571,"13.4-13.7":0.02214,"14.0-14.4":0.04356,"14.5-14.8":0.06641,"15.0-15.1":0.03071,"15.2-15.3":0.03499,"15.4":0.03999,"15.5":0.0507,"15.6-15.8":0.44274,"16.0":0.10354,"16.1":0.21566,"16.2":0.10354,"16.3":0.18281,"16.4":0.03785,"16.5":0.07926,"16.6-16.7":0.62626,"17.0":0.07498,"17.1":0.13854,"17.2":0.18424,"17.3":1.34393,"17.4":3.03349,"17.5":0.02785},P:{"4":0.02094,"20":0.0314,"21":0.05234,"22":0.09421,"23":0.28263,"24":1.31896,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2","7.2-7.4":0.01047,"12.0":0.01047,"13.0":0.02094,"14.0":0.01047,"15.0":0.01047,"16.0":0.0314,"17.0":0.0314,"18.0":0.02094,"19.0":0.0314},I:{"0":0.02408,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.00698,"9":0.02093,"11":0.09071,_:"6 7 10 5.5"},K:{"0":0.55907,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00302},O:{"0":0.07857},H:{"0":0},L:{"0":20.05476},R:{_:"0"},M:{"0":0.60138}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js index 0c3e1f13587a4c..d8b386fd77e7af 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FJ.js @@ -1 +1 @@ -module.exports={C:{"34":0.00316,"43":0.00316,"52":0.00316,"78":0.04733,"81":0.00631,"98":0.01262,"115":0.17037,"116":0.00947,"117":0.00316,"119":0.00631,"120":0.01578,"121":0.0284,"122":0.04102,"123":1.04115,"124":0.37545,"125":0.00631,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 118 126 127 3.5 3.6"},D:{"49":0.00316,"56":0.00316,"63":0.00631,"67":0.00316,"68":0.00947,"69":0.00947,"70":0.00631,"73":0.00947,"74":0.00316,"75":0.00316,"76":0.00947,"77":0.00316,"78":0.00631,"79":0.01578,"80":0.00316,"81":0.01262,"83":0.00631,"84":0.00316,"86":0.02209,"87":0.01578,"88":0.11358,"89":0.01262,"90":0.00316,"91":0.01262,"92":0.00947,"93":0.00631,"94":0.00631,"95":0.01578,"97":0.00631,"98":0.00631,"99":0.00316,"100":0.00316,"102":0.01578,"103":0.04102,"104":0.01262,"105":0.03471,"106":0.00631,"107":0.01262,"108":0.01262,"109":0.46694,"110":0.00631,"111":0.03155,"112":0.00316,"113":0.00631,"114":0.01578,"115":0.01578,"116":0.07572,"117":0.06941,"118":0.05048,"119":0.13567,"120":0.29026,"121":1.02222,"122":10.46514,"123":3.23703,"124":0.00631,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 71 72 85 96 101 125 126"},F:{"46":0.00316,"95":0.00947,"100":0.00316,"102":0.00316,"104":0.00631,"106":0.01578,"107":0.82661,"108":0.1546,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 103 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00316,"14":0.00316,"15":0.00631,"17":0.00316,"18":0.01262,"84":0.00947,"92":0.01893,"100":0.00631,"105":0.00316,"106":0.00316,"107":0.00316,"109":0.05679,"111":0.00631,"112":0.01262,"113":0.00947,"114":0.00631,"115":0.01262,"116":0.00631,"117":0.01262,"118":0.05048,"119":0.01893,"120":0.05364,"121":0.21454,"122":4.61577,"123":0.26818,_:"12 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 108 110"},E:{"14":0.02524,"15":0.00316,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00316,"13.1":0.01578,"14.1":0.0284,"15.1":0.00947,"15.2-15.3":0.00316,"15.4":0.01893,"15.5":0.00631,"15.6":0.07257,"16.0":0.00947,"16.1":0.02524,"16.2":0.03155,"16.3":0.01893,"16.4":0.01262,"16.5":0.05679,"16.6":0.22716,"17.0":0.01578,"17.1":0.10412,"17.2":0.37229,"17.3":0.58683,"17.4":0.20192},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00194,"5.0-5.1":0.00097,"6.0-6.1":0.00582,"7.0-7.1":0.00679,"8.1-8.4":0.00194,"9.0-9.2":0.00388,"9.3":0.02427,"10.0-10.2":0.00388,"10.3":0.04077,"11.0-11.2":0.02912,"11.3-11.4":0.00971,"12.0-12.1":0.00874,"12.2-12.5":0.16792,"13.0-13.1":0.00291,"13.2":0.02912,"13.3":0.00874,"13.4-13.7":0.033,"14.0-14.4":0.06309,"14.5-14.8":0.099,"15.0-15.1":0.04271,"15.2-15.3":0.05047,"15.4":0.05921,"15.5":0.07571,"15.6-15.8":0.63382,"16.0":0.15433,"16.1":0.31933,"16.2":0.15433,"16.3":0.27469,"16.4":0.05824,"16.5":0.12327,"16.6-16.7":0.93374,"17.0":0.12133,"17.1":0.24266,"17.2":0.39116,"17.3":4.81428,"17.4":0.70661,"17.5":0},P:{"4":0.32408,"20":0.06273,"21":0.3868,"22":0.26135,"23":3.97259,"24":2.71809,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.03136,"7.2-7.4":0.3659,"11.1-11.2":0.07318,"12.0":0.02091,"13.0":0.01045,"14.0":0.03136,"15.0":0.02091,"16.0":0.07318,"17.0":0.03136,"18.0":0.06273,"19.0":0.17772},I:{"0":0.02727,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.50022,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01641,"11":0.06562,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.96335},R:{_:"0"},M:{"0":0.18482},Q:{"14.9":0.06161},O:{"0":0.65712},H:{"0":0.02}}; +module.exports={C:{"48":0.00325,"52":0.013,"78":0.0325,"81":0.00325,"87":0.0065,"91":0.00325,"105":0.00325,"112":0.00325,"115":0.2535,"116":0.00325,"119":0.00325,"120":0.00325,"121":0.00325,"122":0.00325,"123":0.02925,"124":1.04,"125":0.44525,"126":0.00325,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 113 114 117 118 127 128 3.5 3.6"},D:{"33":0.00325,"49":0.0065,"50":0.0065,"52":0.00975,"63":0.0065,"65":0.00325,"69":0.013,"70":0.00325,"73":0.0065,"74":0.013,"76":0.0065,"78":0.013,"79":0.01625,"80":0.00325,"81":0.0195,"84":0.00975,"86":0.00975,"87":0.00975,"88":0.15925,"89":0.0065,"91":0.052,"92":0.02275,"93":0.0195,"94":0.013,"95":0.00325,"97":0.00325,"98":0.00325,"99":0.013,"102":0.02275,"103":0.02275,"104":0.00975,"105":0.039,"106":0.0065,"107":0.00975,"108":0.065,"109":0.663,"111":0.04225,"112":0.0065,"113":0.00325,"114":0.013,"115":0.00975,"116":0.11375,"117":0.065,"118":0.02275,"119":0.07475,"120":0.169,"121":0.15275,"122":0.871,"123":10.41625,"124":3.90975,"125":0.01625,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 53 54 55 56 57 58 59 60 61 62 64 66 67 68 71 72 75 77 83 85 90 96 100 101 110 126 127"},F:{"106":0.00325,"107":0.1885,"108":0.36725,"109":0.04875,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00325,"13":0.00325,"15":0.0065,"16":0.0065,"17":0.00325,"18":0.026,"84":0.0065,"90":0.00325,"92":0.02925,"99":0.00325,"100":0.00325,"102":0.00325,"103":0.00325,"109":0.0065,"111":0.0065,"112":0.0065,"114":0.0065,"115":0.00975,"116":0.00325,"117":0.00975,"118":0.06175,"119":0.00975,"120":0.04225,"121":0.052,"122":0.2795,"123":4.03,"124":2.0865,_:"14 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 101 104 105 106 107 108 110 113"},E:{"12":0.0065,"14":0.0195,"15":0.00975,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.4","12.1":0.00325,"13.1":0.00975,"14.1":0.078,"15.1":0.00325,"15.2-15.3":0.00325,"15.5":0.04225,"15.6":0.36075,"16.0":0.00975,"16.1":0.02925,"16.2":0.013,"16.3":0.01625,"16.4":0.00975,"16.5":0.039,"16.6":0.273,"17.0":0.00975,"17.1":0.0585,"17.2":0.18525,"17.3":0.43225,"17.4":1.06925,"17.5":0.0065},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00179,"5.0-5.1":0.00179,"6.0-6.1":0.00447,"7.0-7.1":0.00714,"8.1-8.4":0.00179,"9.0-9.2":0.00447,"9.3":0.02233,"10.0-10.2":0.00447,"10.3":0.03572,"11.0-11.2":0.03036,"11.3-11.4":0.00893,"12.0-12.1":0.00625,"12.2-12.5":0.14556,"13.0-13.1":0.00268,"13.2":0.02947,"13.3":0.00714,"13.4-13.7":0.02768,"14.0-14.4":0.05447,"14.5-14.8":0.08305,"15.0-15.1":0.0384,"15.2-15.3":0.04376,"15.4":0.05001,"15.5":0.0634,"15.6-15.8":0.55368,"16.0":0.12949,"16.1":0.26969,"16.2":0.12949,"16.3":0.22861,"16.4":0.04733,"16.5":0.09913,"16.6-16.7":0.78318,"17.0":0.09377,"17.1":0.17325,"17.2":0.2304,"17.3":1.68067,"17.4":3.79357,"17.5":0.03483},P:{"4":0.19772,"20":0.07284,"21":0.22894,"22":0.27056,"23":1.57134,"24":4.42266,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01041,"7.2-7.4":0.36422,"9.2":0.01041,"11.1-11.2":0.02081,"12.0":0.01041,"13.0":0.02081,"14.0":0.01041,"15.0":0.02081,"16.0":0.03122,"17.0":0.01041,"18.0":0.02081,"19.0":0.18731},I:{"0":0.04033,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"11":0.0195,_:"6 7 8 9 10 5.5"},K:{"0":0.82025,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00675},O:{"0":0.513},H:{"0":0.01},L:{"0":52.3385},R:{_:"0"},M:{"0":0.216}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FK.js index 6f1dd13286ea00..529989478541bf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FK.js @@ -1 +1 @@ -module.exports={C:{"69":0.02314,"77":0.02314,"90":0.15534,"103":0.08924,"106":0.08924,"108":0.95184,"113":0.04297,"114":0.02314,"115":0.0661,"117":0.08924,"118":1.25921,"120":0.15534,"121":0.02314,"122":0.02314,"123":0.57507,"124":0.10907,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 104 105 107 109 110 111 112 116 119 125 126 127 3.5 3.6"},D:{"49":0.0661,"87":0.37677,"103":0.17847,"109":0.88574,"116":0.0661,"119":0.0661,"120":0.08924,"121":0.24457,"122":10.32482,"123":1.21624,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 113 114 115 117 118 124 125 126"},F:{"107":0.28754,"108":0.08924,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.02314,"89":0.02314,"91":0.28754,"92":0.0661,"109":0.0661,"110":0.04297,"113":0.75024,"114":1.06091,"116":0.10907,"117":0.3305,"118":1.43768,"119":0.02314,"120":1.54674,"121":0.04297,"122":4.95089,"123":0.1983,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 115"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1 12.1 13.1 14.1 15.2-15.3 15.4 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.5","10.1":0.0661,"15.1":0.04297,"15.5":0.0661,"15.6":1.01794,"16.0":0.02314,"16.6":0.35364,"17.2":0.1322,"17.3":0.3305,"17.4":0.4627},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00295,"5.0-5.1":0.00148,"6.0-6.1":0.00886,"7.0-7.1":0.01034,"8.1-8.4":0.00295,"9.0-9.2":0.00591,"9.3":0.03692,"10.0-10.2":0.00591,"10.3":0.06203,"11.0-11.2":0.04431,"11.3-11.4":0.01477,"12.0-12.1":0.01329,"12.2-12.5":0.25551,"13.0-13.1":0.00443,"13.2":0.04431,"13.3":0.01329,"13.4-13.7":0.05022,"14.0-14.4":0.096,"14.5-14.8":0.15065,"15.0-15.1":0.06498,"15.2-15.3":0.0768,"15.4":0.09009,"15.5":0.1152,"15.6-15.8":0.96443,"16.0":0.23483,"16.1":0.48591,"16.2":0.23483,"16.3":0.41797,"16.4":0.08862,"16.5":0.18757,"16.6-16.7":1.42079,"17.0":0.18461,"17.1":0.36923,"17.2":0.5952,"17.3":7.32551,"17.4":1.0752,"17.5":0},P:{"21":0.25094,"22":0.32413,"23":11.24015,"24":1.20243,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0 18.0 19.0","14.0":1.03514},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.11382,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.10907,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":38.82051},R:{_:"0"},M:{"0":0.92391},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"69":0.0847,"106":0.10395,"108":1.1781,"115":0.6006,"116":0.04235,"117":0.10395,"118":0.88935,"121":0.1232,"122":0.04235,"124":6.06375,"125":0.4158,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 109 110 111 112 113 114 119 120 123 126 127 128 3.5 3.6"},D:{"85":0.0847,"103":0.10395,"109":0.539,"119":0.0847,"122":0.2079,"123":6.5604,"124":7.20335,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 113 114 115 116 117 118 120 121 125 126 127"},F:{"108":0.70455,"109":1.94425,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01925,"89":0.04235,"91":0.0847,"92":0.1848,"109":0.01925,"110":0.31185,"111":0.01925,"113":0.0847,"114":0.10395,"115":0.0616,"116":0.0616,"117":0.16555,"118":0.31185,"122":0.37345,"123":3.35335,"124":0.847,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 112 119 120 121"},E:{"13":0.04235,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.1 16.5 17.0 17.5","15.6":0.01925,"16.0":0.0616,"16.2":0.0847,"16.3":0.10395,"16.4":0.01925,"16.6":0.25025,"17.1":0.01925,"17.2":0.04235,"17.3":0.35035,"17.4":0.68145},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00203,"5.0-5.1":0.00203,"6.0-6.1":0.00507,"7.0-7.1":0.00811,"8.1-8.4":0.00203,"9.0-9.2":0.00507,"9.3":0.02535,"10.0-10.2":0.00507,"10.3":0.04057,"11.0-11.2":0.03448,"11.3-11.4":0.01014,"12.0-12.1":0.0071,"12.2-12.5":0.1653,"13.0-13.1":0.00304,"13.2":0.03347,"13.3":0.00811,"13.4-13.7":0.03144,"14.0-14.4":0.06186,"14.5-14.8":0.09431,"15.0-15.1":0.04361,"15.2-15.3":0.04969,"15.4":0.05679,"15.5":0.072,"15.6-15.8":0.62876,"16.0":0.14705,"16.1":0.30627,"16.2":0.14705,"16.3":0.25962,"16.4":0.05375,"16.5":0.11257,"16.6-16.7":0.8894,"17.0":0.10648,"17.1":0.19674,"17.2":0.26165,"17.3":1.9086,"17.4":4.30805,"17.5":0.03955},P:{"4":0.02071,"21":0.08284,"22":0.30031,"23":3.18952,"24":15.00524,_:"20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 18.0 19.0","14.0":1.5844,"16.0":0.04142,"17.0":0.06213},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":1.11315,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":33.0015},R:{_:"0"},M:{"0":0.4059}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js index 60f14f08d5f0d4..3f22a18c2a6785 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FM.js @@ -1 +1 @@ -module.exports={C:{"78":0.02068,"111":0.00827,"113":0.03722,"115":0.07858,"117":0.00827,"122":0.22748,"123":1.3897,"124":0.8272,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 114 116 118 119 120 121 125 126 127 3.5 3.6"},D:{"23":0.00827,"91":0.00827,"93":0.32261,"97":0.00827,"102":0.01654,"103":3.42461,"109":3.67277,"112":0.01654,"113":0.02068,"114":0.07445,"116":0.01654,"117":0.06618,"118":0.00827,"119":0.0455,"120":0.21921,"121":1.54273,"122":12.47004,"123":2.41542,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 92 94 95 96 98 99 100 101 104 105 106 107 108 110 111 115 124 125 126"},F:{"95":0.02068,"107":0.1034,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"112":0.00827,"113":0.02068,"116":0.00827,"117":0.04963,"118":0.01654,"119":0.00827,"120":0.0579,"121":0.50459,"122":7.64333,"123":0.55009,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 114 115"},E:{"14":0.19853,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 16.1 16.4 17.5","14.1":0.02068,"15.2-15.3":0.02068,"15.4":0.00827,"15.5":0.02895,"15.6":0.0579,"16.0":0.01654,"16.2":0.23989,"16.3":0.0455,"16.5":0.00827,"16.6":0.34329,"17.0":0.00827,"17.1":0.04963,"17.2":0.34329,"17.3":0.86442,"17.4":0.0579},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00198,"5.0-5.1":0.00099,"6.0-6.1":0.00594,"7.0-7.1":0.00693,"8.1-8.4":0.00198,"9.0-9.2":0.00396,"9.3":0.02474,"10.0-10.2":0.00396,"10.3":0.04156,"11.0-11.2":0.02968,"11.3-11.4":0.00989,"12.0-12.1":0.0089,"12.2-12.5":0.17117,"13.0-13.1":0.00297,"13.2":0.02968,"13.3":0.0089,"13.4-13.7":0.03364,"14.0-14.4":0.06431,"14.5-14.8":0.10092,"15.0-15.1":0.04353,"15.2-15.3":0.05145,"15.4":0.06035,"15.5":0.07718,"15.6-15.8":0.64609,"16.0":0.15732,"16.1":0.32552,"16.2":0.15732,"16.3":0.28001,"16.4":0.05937,"16.5":0.12566,"16.6-16.7":0.95183,"17.0":0.12368,"17.1":0.24736,"17.2":0.39874,"17.3":4.90755,"17.4":0.7203,"17.5":0},P:{"4":5.15298,"20":0.02183,"21":0.04367,"22":0.0655,"23":0.51311,"24":0.40394,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 17.0 18.0","7.2-7.4":0.10917,"11.1-11.2":0.15284,"13.0":0.01092,"15.0":0.01092,"16.0":0.02183,"19.0":0.02183},I:{"0":0.04673,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":0.15249,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00827,"11":0.01654,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":43.9942},R:{_:"0"},M:{"0":0.25806},Q:{"14.9":0.00587},O:{"0":0.63929},H:{"0":0}}; +module.exports={C:{"56":0.0081,"78":0.01215,"111":0.01215,"115":0.03239,"123":0.06883,"124":0.73692,"125":0.68023,"126":0.0081,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 116 117 118 119 120 121 122 127 128 3.5 3.6"},D:{"60":0.0081,"74":0.03644,"79":0.02429,"93":0.11337,"97":0.02429,"102":0.02025,"103":0.11742,"105":0.04859,"108":0.15791,"109":2.38486,"110":0.0081,"111":0.0081,"112":0.04454,"113":0.05669,"115":0.0081,"116":0.01215,"118":0.01215,"119":0.14981,"120":0.02025,"121":0.10123,"122":0.72882,"123":13.26048,"124":2.39701,"125":0.02025,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 94 95 96 98 99 100 101 104 106 107 114 117 126 127"},F:{"107":0.02429,"108":0.03239,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0081,"104":0.01215,"109":0.03644,"116":0.0081,"117":0.01215,"118":0.02025,"120":0.01215,"121":0.06883,"122":0.63164,"123":5.69694,"124":6.50269,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 110 111 112 113 114 115 119"},E:{"14":0.08908,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 15.4 15.5 16.0 16.3 16.4 17.5","13.1":0.0081,"14.1":0.03239,"15.1":0.0081,"15.6":0.02025,"16.1":0.02429,"16.2":0.12552,"16.5":0.03644,"16.6":0.06074,"17.0":0.0081,"17.1":0.0081,"17.2":0.43729,"17.3":2.4213,"17.4":0.33202},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00158,"5.0-5.1":0.00158,"6.0-6.1":0.00395,"7.0-7.1":0.00633,"8.1-8.4":0.00158,"9.0-9.2":0.00395,"9.3":0.01977,"10.0-10.2":0.00395,"10.3":0.03164,"11.0-11.2":0.02689,"11.3-11.4":0.00791,"12.0-12.1":0.00554,"12.2-12.5":0.12891,"13.0-13.1":0.00237,"13.2":0.0261,"13.3":0.00633,"13.4-13.7":0.02452,"14.0-14.4":0.04824,"14.5-14.8":0.07355,"15.0-15.1":0.03401,"15.2-15.3":0.03875,"15.4":0.04429,"15.5":0.05615,"15.6-15.8":0.49035,"16.0":0.11468,"16.1":0.23885,"16.2":0.11468,"16.3":0.20247,"16.4":0.04192,"16.5":0.08779,"16.6-16.7":0.69361,"17.0":0.08304,"17.1":0.15343,"17.2":0.20405,"17.3":1.48845,"17.4":3.35969,"17.5":0.03084},P:{"4":1.12048,"21":0.08703,"22":0.26108,"23":0.1523,"24":0.88115,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 17.0 19.0","7.2-7.4":0.05439,"11.1-11.2":0.01088,"13.0":0.01088,"16.0":0.05439,"18.0":0.04351},I:{"0":0.01778,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.0081,_:"6 7 8 9 10 5.5"},K:{"0":0.17258,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00595},O:{"0":0.37491},H:{"0":0},L:{"0":50.59041},R:{_:"0"},M:{"0":0.09522}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js index 79f51d8acd6e33..3bfbdf92a2b63e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FO.js @@ -1 +1 @@ -module.exports={C:{"68":0.00371,"78":0.00371,"107":0.00371,"109":0.22631,"112":0.00371,"113":0.00371,"115":1.09445,"121":0.02226,"122":0.01113,"123":0.97573,"124":0.41181,"125":0.00371,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 114 116 117 118 119 120 126 127 3.5 3.6"},D:{"49":0.01113,"76":0.01484,"86":0.00371,"87":0.04823,"88":0.00371,"103":0.01113,"106":0.01113,"107":0.05565,"108":0.7049,"109":1.06477,"110":0.17808,"111":0.20776,"112":0.00371,"113":0.00371,"114":0.00371,"115":0.00371,"116":0.0742,"117":0.02226,"118":0.01855,"119":0.13356,"120":0.28196,"121":1.02767,"122":6.65574,"123":1.94775,"124":0.00371,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 125 126"},F:{"107":0.63812,"108":0.00742,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"91":0.00371,"92":0.00371,"109":0.00742,"117":0.00371,"119":0.02968,"120":0.00742,"121":0.20405,"122":3.1164,"123":0.40439,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 118"},E:{"13":0.00371,"14":0.10017,"15":0.00371,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.00371,"12.1":0.01113,"13.1":0.03339,"14.1":0.09275,"15.1":0.01855,"15.2-15.3":0.04823,"15.4":0.05936,"15.5":0.13356,"15.6":1.9663,"16.0":0.01113,"16.1":0.20405,"16.2":0.43036,"16.3":0.60473,"16.4":0.09275,"16.5":0.28938,"16.6":3.25367,"17.0":0.15953,"17.1":0.48972,"17.2":1.20204,"17.3":6.72623,"17.4":1.0388,"17.5":0.00742},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01036,"5.0-5.1":0.00518,"6.0-6.1":0.03107,"7.0-7.1":0.03625,"8.1-8.4":0.01036,"9.0-9.2":0.02072,"9.3":0.12947,"10.0-10.2":0.02072,"10.3":0.21751,"11.0-11.2":0.15536,"11.3-11.4":0.05179,"12.0-12.1":0.04661,"12.2-12.5":0.89592,"13.0-13.1":0.01554,"13.2":0.15536,"13.3":0.04661,"13.4-13.7":0.17608,"14.0-14.4":0.33662,"14.5-14.8":0.52823,"15.0-15.1":0.22787,"15.2-15.3":0.2693,"15.4":0.3159,"15.5":0.40394,"15.6-15.8":3.38172,"16.0":0.82342,"16.1":1.70381,"16.2":0.82342,"16.3":1.46559,"16.4":0.31073,"16.5":0.6577,"16.6-16.7":4.98196,"17.0":0.64734,"17.1":1.29469,"17.2":2.08704,"17.3":25.68661,"17.4":3.77013,"17.5":0},P:{"20":0.04122,"21":0.01031,"22":0.03092,"23":1.24702,"24":1.17488,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","16.0":0.01031},I:{"0":0.01253,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.03775,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00371,"11":0.00742,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":8.54237},R:{_:"0"},M:{"0":0.04404},Q:{_:"14.9"},O:{"0":0.00629},H:{"0":0}}; +module.exports={C:{"78":0.00404,"84":0.08884,"107":0.00808,"108":0.02019,"115":0.80356,"123":0.00808,"124":0.67838,"125":0.39572,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 110 111 112 113 114 116 117 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"49":0.01211,"76":0.01615,"79":0.02423,"87":0.05653,"88":0.00404,"95":0.00808,"101":0.01615,"103":0.01211,"105":0.00404,"107":0.2019,"108":0.01211,"109":0.37957,"110":0.04846,"111":0.08884,"112":0.27862,"114":0.01615,"116":0.09287,"117":0.00404,"118":0.02019,"119":0.06461,"120":0.05249,"121":0.27458,"122":1.87767,"123":7.99928,"124":4.37315,"125":0.00404,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 83 84 85 86 89 90 91 92 93 94 96 97 98 99 100 102 104 106 113 115 126 127"},F:{"107":0.34323,"108":0.02827,"109":0.08884,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00808,"111":0.00808,"117":0.01615,"119":0.02423,"120":0.00808,"121":0.01211,"122":0.15344,"123":1.7848,"124":0.62993,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 112 113 114 115 116 118"},E:{"13":0.00404,"14":0.14537,"15":0.01211,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01615,"13.1":0.02827,"14.1":0.13325,"15.1":0.02019,"15.2-15.3":0.06057,"15.4":0.05653,"15.5":0.13729,"15.6":1.79287,"16.0":0.02019,"16.1":0.2867,"16.2":0.46033,"16.3":0.79952,"16.4":0.21401,"16.5":0.26651,"16.6":2.73373,"17.0":0.12518,"17.1":0.48456,"17.2":0.60974,"17.3":3.48076,"17.4":6.8323,"17.5":0.02423},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00978,"5.0-5.1":0.00978,"6.0-6.1":0.02446,"7.0-7.1":0.03914,"8.1-8.4":0.00978,"9.0-9.2":0.02446,"9.3":0.1223,"10.0-10.2":0.02446,"10.3":0.19569,"11.0-11.2":0.16633,"11.3-11.4":0.04892,"12.0-12.1":0.03425,"12.2-12.5":0.79743,"13.0-13.1":0.01468,"13.2":0.16144,"13.3":0.03914,"13.4-13.7":0.15166,"14.0-14.4":0.29842,"14.5-14.8":0.45497,"15.0-15.1":0.21036,"15.2-15.3":0.23972,"15.4":0.27396,"15.5":0.34735,"15.6-15.8":3.03316,"16.0":0.70937,"16.1":1.47744,"16.2":0.70937,"16.3":1.2524,"16.4":0.25929,"16.5":0.54303,"16.6-16.7":4.29045,"17.0":0.51368,"17.1":0.94909,"17.2":1.26219,"17.3":9.20711,"17.4":20.78203,"17.5":0.1908},P:{"20":0.01035,"21":0.01035,"22":0.03106,"23":0.08283,"24":1.68759,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.01035},I:{"0":0.01781,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.01211,"9":0.00404,"11":0.01615,_:"6 7 10 5.5"},K:{"0":0.02981,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01788},H:{"0":0},L:{"0":8.64306},R:{_:"0"},M:{"0":0.06557}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js index 6967eeaa88f8a5..66217b2d5053e1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/FR.js @@ -1 +1 @@ -module.exports={C:{"4":0.01409,"45":0.0047,"48":0.00939,"52":0.03288,"54":0.03758,"56":0.0047,"59":0.03758,"68":0.0047,"72":0.0047,"75":0.01879,"78":0.06576,"82":0.0047,"83":0.0047,"88":0.00939,"91":0.01879,"93":0.00939,"94":0.00939,"100":0.0047,"101":0.0047,"102":0.03758,"103":1.57819,"104":0.01409,"105":0.0047,"106":0.0047,"107":0.00939,"108":0.00939,"109":0.00939,"110":0.00939,"111":0.0047,"112":0.0047,"113":0.01409,"114":0.0047,"115":0.7891,"116":0.00939,"117":0.0047,"118":0.00939,"119":0.00939,"120":0.01409,"121":0.03758,"122":0.10803,"123":2.86047,"124":1.23531,"125":0.0047,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 50 51 53 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 84 85 86 87 89 90 92 95 96 97 98 99 126 127 3.5 3.6"},D:{"4":0.0047,"38":0.0047,"41":0.0047,"42":0.0047,"48":0.0047,"49":0.05167,"52":0.0047,"56":0.0047,"58":0.0047,"60":0.03758,"65":0.0047,"66":0.14091,"67":0.0047,"68":0.0047,"69":0.0047,"70":0.0047,"71":0.01879,"72":0.0047,"73":0.0047,"74":0.0047,"75":0.0047,"76":0.00939,"77":0.0047,"78":0.0047,"79":0.02818,"80":0.00939,"81":0.01879,"83":0.00939,"84":0.0047,"85":0.02349,"86":0.09864,"87":0.10803,"88":0.01879,"89":0.0047,"90":0.01409,"91":0.00939,"92":0.0047,"93":0.01409,"94":0.24424,"95":0.01409,"96":0.00939,"97":0.0047,"98":0.01409,"99":0.01409,"100":0.08455,"101":0.16909,"102":0.1503,"103":0.19727,"104":0.09864,"105":0.06106,"106":0.05636,"107":0.08924,"108":0.10333,"109":1.4138,"110":0.04697,"111":0.06576,"112":0.07515,"113":0.03758,"114":0.08924,"115":0.03288,"116":0.23485,"117":0.03758,"118":0.07046,"119":0.29121,"120":0.465,"121":2.78062,"122":13.14221,"123":5.45322,"124":0.00939,_:"5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 50 51 53 54 55 57 59 61 62 63 64 125 126"},F:{"28":0.00939,"46":0.0047,"89":0.0047,"91":0.0047,"92":0.0047,"93":0.0047,"94":0.0047,"95":0.04697,"96":0.0047,"102":0.0047,"105":0.0047,"106":0.06106,"107":0.96289,"108":0.22076,"109":0.0047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.5 11.6 12.1","11.1":0.04227},B:{"17":0.01879,"18":0.0047,"92":0.00939,"99":0.0047,"103":0.0047,"104":0.0047,"105":0.0047,"106":0.00939,"107":0.01409,"108":0.01879,"109":0.13152,"110":0.01409,"111":0.00939,"112":0.0047,"113":0.0047,"114":0.05636,"115":0.00939,"116":0.00939,"117":0.00939,"118":0.00939,"119":0.01879,"120":0.09394,"121":0.17849,"122":5.36867,"123":0.58713,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 100 101 102"},E:{"13":0.0047,"14":0.04697,"15":0.00939,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 17.5","5.1":0.0047,"9.1":0.01879,"10.1":0.0047,"11.1":0.03758,"12.1":0.155,"13.1":0.12212,"14.1":0.155,"15.1":0.01879,"15.2-15.3":0.02349,"15.4":0.02818,"15.5":0.04227,"15.6":0.34288,"16.0":0.04227,"16.1":0.05636,"16.2":0.05167,"16.3":0.12212,"16.4":0.04697,"16.5":0.09394,"16.6":0.42273,"17.0":0.07046,"17.1":0.1644,"17.2":0.36637,"17.3":0.92531,"17.4":0.24424},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00289,"5.0-5.1":0.00144,"6.0-6.1":0.00866,"7.0-7.1":0.01011,"8.1-8.4":0.00289,"9.0-9.2":0.00578,"9.3":0.0361,"10.0-10.2":0.00578,"10.3":0.06065,"11.0-11.2":0.04332,"11.3-11.4":0.01444,"12.0-12.1":0.013,"12.2-12.5":0.24981,"13.0-13.1":0.00433,"13.2":0.04332,"13.3":0.013,"13.4-13.7":0.0491,"14.0-14.4":0.09386,"14.5-14.8":0.14729,"15.0-15.1":0.06354,"15.2-15.3":0.07509,"15.4":0.08808,"15.5":0.11263,"15.6-15.8":0.94294,"16.0":0.2296,"16.1":0.47508,"16.2":0.2296,"16.3":0.40865,"16.4":0.08664,"16.5":0.18339,"16.6-16.7":1.38913,"17.0":0.1805,"17.1":0.361,"17.2":0.58193,"17.3":7.16227,"17.4":1.05124,"17.5":0},P:{"4":0.07479,"20":0.03205,"21":0.07479,"22":0.0641,"23":1.35683,"24":1.14316,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.01068,"9.2":0.01068,"11.1-11.2":0.02137,"13.0":0.02137,"14.0":0.01068,"15.0":0.01068,"16.0":0.02137,"17.0":0.01068,"18.0":0.02137,"19.0":0.03205},I:{"0":0.10034,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},K:{"0":0.61515,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0155,"9":0.0155,"10":0.00517,"11":0.11883,_:"6 7 5.5"},S:{"2.5":0.0053,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":34.73739},R:{_:"0"},M:{"0":0.50909},Q:{_:"14.9"},O:{"0":0.46136},H:{"0":0}}; +module.exports={C:{"4":0.01577,"48":0.00526,"52":0.02629,"54":0.0368,"56":0.00526,"59":0.03154,"68":0.00526,"75":0.01577,"78":0.05257,"83":0.00526,"88":0.00526,"91":0.01577,"93":0.00526,"94":0.01051,"96":0.00526,"102":0.02629,"103":4.6577,"104":0.01051,"105":0.00526,"106":0.01051,"107":0.01051,"108":0.01051,"109":0.01051,"110":0.01051,"111":0.01051,"112":0.00526,"113":0.01577,"114":0.00526,"115":0.6729,"116":0.00526,"117":0.00526,"118":0.00526,"119":0.01051,"120":0.00526,"121":0.02103,"122":0.02629,"123":0.09463,"124":2.23423,"125":1.28271,"126":0.00526,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 81 82 84 85 86 87 89 90 92 95 97 98 99 100 101 127 128 3.5 3.6"},D:{"49":0.06308,"52":0.02103,"65":0.00526,"66":0.13143,"70":0.00526,"71":0.01577,"74":0.00526,"76":0.01051,"77":0.00526,"78":0.00526,"79":0.02629,"80":0.00526,"81":0.01577,"83":0.00526,"84":0.00526,"85":0.02629,"86":0.1472,"87":0.07886,"88":0.01577,"89":0.00526,"90":0.01051,"91":0.00526,"92":0.00526,"93":0.01051,"94":0.21028,"95":0.01577,"96":0.01051,"97":0.00526,"98":0.01051,"99":0.01051,"100":0.14194,"101":0.28388,"102":0.15245,"103":0.28388,"104":0.1472,"105":0.05257,"106":0.04731,"107":0.0736,"108":0.08411,"109":1.51402,"110":0.04731,"111":0.06308,"112":0.06308,"113":0.03154,"114":0.09463,"115":0.16297,"116":0.28388,"117":0.02629,"118":0.05257,"119":0.17874,"120":0.46787,"121":0.32068,"122":1.96086,"123":15.52392,"124":6.84461,"125":0.02629,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 67 68 69 72 73 75 126 127"},F:{"28":0.00526,"46":0.00526,"79":0.00526,"94":0.00526,"95":0.0368,"102":0.00526,"106":0.0368,"107":0.58353,"108":0.38902,"109":0.12617,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01577,"18":0.00526,"92":0.01051,"101":0.00526,"106":0.00526,"107":0.01577,"108":0.01577,"109":0.12091,"110":0.01051,"111":0.01051,"112":0.00526,"113":0.00526,"114":0.06308,"115":0.00526,"116":0.00526,"117":0.01051,"118":0.00526,"119":0.01577,"120":0.04206,"121":0.04731,"122":0.46262,"123":4.43165,"124":2.12909,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 102 103 104 105"},E:{"13":0.00526,"14":0.04206,"15":0.01051,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00526,"11.1":0.03154,"12.1":0.11565,"13.1":0.09988,"14.1":0.12091,"15.1":0.02103,"15.2-15.3":0.02103,"15.4":0.02103,"15.5":0.03154,"15.6":0.28914,"16.0":0.0368,"16.1":0.05257,"16.2":0.04206,"16.3":0.09463,"16.4":0.0368,"16.5":0.06834,"16.6":0.34696,"17.0":0.04731,"17.1":0.10514,"17.2":0.15771,"17.3":0.31016,"17.4":0.91998,"17.5":0.00526},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.00248,"6.0-6.1":0.0062,"7.0-7.1":0.00992,"8.1-8.4":0.00248,"9.0-9.2":0.0062,"9.3":0.031,"10.0-10.2":0.0062,"10.3":0.04959,"11.0-11.2":0.04215,"11.3-11.4":0.0124,"12.0-12.1":0.00868,"12.2-12.5":0.20209,"13.0-13.1":0.00372,"13.2":0.04091,"13.3":0.00992,"13.4-13.7":0.03843,"14.0-14.4":0.07563,"14.5-14.8":0.1153,"15.0-15.1":0.05331,"15.2-15.3":0.06075,"15.4":0.06943,"15.5":0.08803,"15.6-15.8":0.76869,"16.0":0.17977,"16.1":0.37443,"16.2":0.17977,"16.3":0.31739,"16.4":0.06571,"16.5":0.13762,"16.6-16.7":1.08732,"17.0":0.13018,"17.1":0.24053,"17.2":0.31987,"17.3":2.33334,"17.4":5.26676,"17.5":0.04835},P:{"4":0.05321,"20":0.02128,"21":0.05321,"22":0.05321,"23":0.22347,"24":1.79839,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.01064,"9.2":0.01064,"11.1-11.2":0.01064,"13.0":0.02128,"14.0":0.01064,"15.0":0.02128,"16.0":0.02128,"17.0":0.01064,"18.0":0.01064,"19.0":0.02128},I:{"0":0.07558,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"8":0.01646,"9":0.01646,"11":0.09325,_:"6 7 10 5.5"},K:{"0":0.59288,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00474,_:"3.0-3.1"},Q:{"14.9":0.00474},O:{"0":0.39841},H:{"0":0},L:{"0":31.35957},R:{_:"0"},M:{"0":0.54545}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js index 7e92d91ab4232b..8be4a53cef8428 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GA.js @@ -1 +1 @@ -module.exports={C:{"52":0.03507,"64":0.00251,"78":0.00251,"88":0.00251,"91":0.01002,"107":0.01002,"112":0.00752,"115":0.18036,"116":0.00251,"120":0.00251,"121":0.00251,"122":0.01002,"123":1.41783,"124":0.63627,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 113 114 117 118 119 125 126 127 3.5 3.6"},D:{"11":0.00251,"38":0.00251,"40":0.00251,"49":0.00501,"50":0.00251,"55":0.00251,"56":0.04509,"64":0.00251,"66":0.04259,"68":0.00251,"69":0.00501,"70":0.00251,"71":0.00251,"73":0.01002,"74":0.00251,"75":0.01253,"76":0.00251,"78":0.00251,"79":0.06513,"81":0.02505,"83":0.11523,"84":0.03006,"86":0.00752,"87":0.04259,"88":0.0501,"89":0.04008,"90":0.01002,"92":0.00251,"93":0.00501,"95":0.01754,"96":0.01754,"98":0.0476,"99":0.00251,"101":0.00251,"102":0.00251,"103":0.05762,"106":0.01253,"109":1.86372,"110":0.03257,"112":0.00501,"113":0.00251,"114":0.03507,"115":0.02255,"116":0.01253,"117":0.00251,"118":0.00501,"119":0.15782,"120":0.13527,"121":0.57365,"122":7.74797,"123":1.93136,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 48 51 52 53 54 57 58 59 60 61 62 63 65 67 72 77 80 85 91 94 97 100 104 105 107 108 111 124 125 126"},F:{"28":0.00752,"46":0.00501,"81":0.01754,"82":0.00251,"95":0.0501,"102":0.00501,"105":0.00251,"106":0.00251,"107":0.54359,"108":0.29559,"109":0.00501,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00251,"17":0.00251,"18":0.00501,"90":0.00251,"92":0.01503,"100":0.00251,"109":0.02756,"113":0.00251,"114":0.00251,"115":0.00251,"118":0.00752,"119":0.00251,"120":0.02004,"121":0.08267,"122":3.19388,"123":0.36573,_:"12 13 14 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 116 117"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 9.1 10.1 11.1 15.2-15.3 15.5 17.0 17.5","7.1":0.00251,"12.1":0.00251,"13.1":0.01503,"14.1":0.35321,"15.1":0.00251,"15.4":0.00501,"15.6":0.05511,"16.0":0.00251,"16.1":0.00501,"16.2":0.00752,"16.3":0.01503,"16.4":0.01253,"16.5":0.00251,"16.6":0.01002,"17.1":0.02004,"17.2":0.01002,"17.3":0.04008,"17.4":0.01253},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00246,"5.0-5.1":0.00123,"6.0-6.1":0.00739,"7.0-7.1":0.00863,"8.1-8.4":0.00246,"9.0-9.2":0.00493,"9.3":0.0308,"10.0-10.2":0.00493,"10.3":0.05175,"11.0-11.2":0.03697,"11.3-11.4":0.01232,"12.0-12.1":0.01109,"12.2-12.5":0.21317,"13.0-13.1":0.0037,"13.2":0.03697,"13.3":0.01109,"13.4-13.7":0.04189,"14.0-14.4":0.08009,"14.5-14.8":0.12568,"15.0-15.1":0.05422,"15.2-15.3":0.06407,"15.4":0.07516,"15.5":0.09611,"15.6-15.8":0.80461,"16.0":0.19592,"16.1":0.40539,"16.2":0.19592,"16.3":0.34871,"16.4":0.07393,"16.5":0.15649,"16.6-16.7":1.18536,"17.0":0.15402,"17.1":0.30804,"17.2":0.49657,"17.3":6.1116,"17.4":0.89703,"17.5":0},P:{"4":0.18501,"20":0.2364,"21":0.02056,"22":0.08222,"23":0.87364,"24":0.43168,"5.0-5.4":0.01028,"6.2-6.4":0.03083,"7.2-7.4":0.3289,_:"8.2 9.2 10.1 12.0 14.0 15.0 18.0","11.1-11.2":0.12334,"13.0":0.01028,"16.0":0.38029,"17.0":0.01028,"19.0":0.07195},I:{"0":0.00746,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.86369,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00501,_:"6 7 8 9 10 5.5"},S:{"2.5":0.0075,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":60.88477},R:{_:"0"},M:{"0":0.06746},Q:{_:"14.9"},O:{"0":0.12742},H:{"0":0.1}}; +module.exports={C:{"47":0.00253,"52":0.00759,"78":0.00253,"88":0.00253,"91":0.02276,"98":0.00253,"107":0.01265,"112":0.00759,"115":0.20738,"120":0.00253,"122":0.00253,"123":0.01517,"124":1.31508,"125":0.63478,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 99 100 101 102 103 104 105 106 108 109 110 111 113 114 116 117 118 119 121 126 127 128 3.5 3.6"},D:{"11":0.00253,"38":0.00253,"49":0.00506,"50":0.00253,"56":0.01265,"58":0.00253,"65":0.00253,"66":0.03288,"69":0.01517,"70":0.00253,"73":0.02023,"74":0.00506,"75":0.01012,"79":0.06828,"81":0.08093,"83":0.0961,"84":0.0607,"86":0.02276,"87":0.05564,"88":0.02529,"89":0.03794,"90":0.01517,"92":0.00253,"93":0.00253,"95":0.02529,"96":0.01265,"98":0.01265,"102":0.00506,"103":0.04552,"107":0.00759,"108":0.00253,"109":1.63626,"110":0.0607,"114":0.03035,"116":0.02023,"117":0.00253,"118":0.00506,"119":0.18462,"120":0.05058,"121":0.04552,"122":0.29589,"123":7.0989,"124":2.91341,"125":0.0177,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 55 57 59 60 61 62 63 64 67 68 71 72 76 77 78 80 85 91 94 97 99 100 101 104 105 106 111 112 113 115 126 127"},F:{"17":0.00253,"28":0.01517,"42":0.00506,"95":0.14668,"102":0.00253,"107":0.16439,"108":0.51592,"109":0.27566,_:"9 11 12 15 16 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00253,"13":0.00253,"17":0.00253,"18":0.00506,"84":0.00253,"90":0.00253,"92":0.01012,"100":0.00253,"109":0.02276,"119":0.00759,"120":0.00506,"121":0.0177,"122":0.07081,"123":2.71615,"124":1.30244,_:"14 15 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118"},E:{"11":0.00253,"13":0.00253,_:"0 4 5 6 7 8 9 10 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 17.0 17.5","13.1":0.10116,"14.1":0.24278,"15.4":0.00506,"15.5":0.00506,"15.6":0.04299,"16.1":0.00253,"16.2":0.00506,"16.3":0.07334,"16.4":0.00253,"16.5":0.00253,"16.6":0.04046,"17.1":0.02023,"17.2":0.01517,"17.3":0.0177,"17.4":0.04046},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.00248,"6.0-6.1":0.00619,"7.0-7.1":0.00991,"8.1-8.4":0.00248,"9.0-9.2":0.00619,"9.3":0.03097,"10.0-10.2":0.00619,"10.3":0.04955,"11.0-11.2":0.04212,"11.3-11.4":0.01239,"12.0-12.1":0.00867,"12.2-12.5":0.20191,"13.0-13.1":0.00372,"13.2":0.04088,"13.3":0.00991,"13.4-13.7":0.0384,"14.0-14.4":0.07556,"14.5-14.8":0.1152,"15.0-15.1":0.05326,"15.2-15.3":0.0607,"15.4":0.06937,"15.5":0.08795,"15.6-15.8":0.76799,"16.0":0.17961,"16.1":0.37408,"16.2":0.17961,"16.3":0.31711,"16.4":0.06565,"16.5":0.13749,"16.6-16.7":1.08633,"17.0":0.13006,"17.1":0.24031,"17.2":0.31958,"17.3":2.33122,"17.4":5.26196,"17.5":0.04831},P:{"4":0.12159,"20":0.0608,"21":0.0304,"22":0.10133,"23":0.32425,"24":0.96261,"5.0-5.4":0.02027,"6.2-6.4":0.05066,"7.2-7.4":0.34451,_:"8.2 9.2 10.1 12.0 15.0 18.0","11.1-11.2":0.05066,"13.0":0.01013,"14.0":0.01013,"16.0":0.31411,"17.0":0.01013,"19.0":0.04053},I:{"0":0.01488,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.00759,_:"6 7 8 9 10 5.5"},K:{"0":1.66063,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03736,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0523},H:{"0":0.11},L:{"0":61.02145},R:{_:"0"},M:{"0":0.08965}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js index 8ce4e507e134eb..6ad7c23ddffc1f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GB.js @@ -1 +1 @@ -module.exports={C:{"48":0.00488,"52":0.01463,"59":0.0195,"78":0.01463,"83":0.00488,"88":0.00975,"91":0.00488,"93":0.00488,"94":0.00488,"102":0.00488,"103":0.00975,"104":0.00488,"105":0.00488,"108":0.00488,"112":0.00488,"113":0.00488,"114":0.00488,"115":0.156,"117":0.00975,"118":0.00488,"119":0.00488,"120":0.00975,"121":0.01463,"122":0.11213,"123":1.0335,"124":0.351,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 95 96 97 98 99 100 101 106 107 109 110 111 116 125 126 127 3.5 3.6"},D:{"38":0.00488,"49":0.01463,"52":0.00488,"60":0.01463,"62":0.00488,"63":0.00488,"65":0.00488,"66":0.08775,"68":0.00488,"69":0.00488,"70":0.00488,"71":0.00488,"72":0.00488,"74":0.01463,"75":0.00488,"76":0.01463,"77":0.00488,"78":0.00488,"79":0.02438,"80":0.00975,"81":0.01463,"83":0.02438,"84":0.00975,"85":0.00975,"86":0.05363,"87":0.03413,"88":0.02925,"89":0.00975,"90":0.00975,"91":0.00975,"92":0.00488,"93":0.04388,"94":0.02438,"95":0.00975,"96":0.04388,"97":0.00488,"98":0.00488,"99":0.00488,"100":0.039,"101":0.07313,"102":0.04875,"103":0.39975,"104":0.0585,"105":0.039,"106":0.01463,"107":0.02438,"108":0.02438,"109":0.83363,"110":0.02438,"111":0.0195,"112":0.02925,"113":0.02925,"114":0.078,"115":0.03413,"116":0.32663,"117":0.06338,"118":0.09263,"119":0.19013,"120":0.63863,"121":3.31013,"122":17.68163,"123":4.60688,"124":0.0195,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 64 67 73 125 126"},F:{"46":0.00975,"95":0.01463,"102":0.00488,"105":0.00488,"106":0.02438,"107":0.75563,"108":0.11213,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00975,"85":0.00488,"92":0.00488,"95":0.00488,"104":0.00488,"106":0.00488,"107":0.00488,"108":0.00975,"109":0.07313,"110":0.00488,"111":0.00488,"112":0.00488,"113":0.00488,"114":0.00975,"115":0.00488,"116":0.00975,"117":0.00975,"118":0.00975,"119":0.0195,"120":0.06825,"121":0.45338,"122":8.31188,"123":0.57525,_:"12 13 14 15 16 18 79 80 81 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 105"},E:{"8":0.00488,"13":0.00488,"14":0.0585,"15":0.00975,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.02925,"11.1":0.0195,"12.1":0.01463,"13.1":0.08288,"14.1":0.156,"15.1":0.0195,"15.2-15.3":0.0195,"15.4":0.03413,"15.5":0.05363,"15.6":0.51188,"16.0":0.05363,"16.1":0.08288,"16.2":0.09263,"16.3":0.20475,"16.4":0.05363,"16.5":0.0975,"16.6":0.7605,"17.0":0.08775,"17.1":0.19013,"17.2":0.40463,"17.3":2.43263,"17.4":0.40463},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00457,"5.0-5.1":0.00229,"6.0-6.1":0.01371,"7.0-7.1":0.016,"8.1-8.4":0.00457,"9.0-9.2":0.00914,"9.3":0.05713,"10.0-10.2":0.00914,"10.3":0.09598,"11.0-11.2":0.06856,"11.3-11.4":0.02285,"12.0-12.1":0.02057,"12.2-12.5":0.39535,"13.0-13.1":0.00686,"13.2":0.06856,"13.3":0.02057,"13.4-13.7":0.0777,"14.0-14.4":0.14854,"14.5-14.8":0.23309,"15.0-15.1":0.10055,"15.2-15.3":0.11883,"15.4":0.1394,"15.5":0.17825,"15.6-15.8":1.49226,"16.0":0.36335,"16.1":0.75184,"16.2":0.36335,"16.3":0.64672,"16.4":0.13711,"16.5":0.29023,"16.6-16.7":2.1984,"17.0":0.28565,"17.1":0.57131,"17.2":0.92095,"17.3":11.33478,"17.4":1.66365,"17.5":0},P:{"4":0.04433,"20":0.02217,"21":0.0665,"22":0.0665,"23":1.75106,"24":1.92838,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01108,"13.0":0.01108,"16.0":0.01108,"17.0":0.01108,"18.0":0.01108,"19.0":0.02217},I:{"0":0.03573,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":0.22038,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00536,"11":0.04826,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":24.17563},R:{_:"0"},M:{"0":0.28188},Q:{"14.9":0.00513},O:{"0":0.08713},H:{"0":0}}; +module.exports={C:{"48":0.00482,"50":0.00482,"52":0.01928,"53":0.00482,"56":0.00482,"59":0.02411,"78":0.02893,"83":0.00482,"88":0.00964,"91":0.00482,"93":0.00482,"94":0.00482,"102":0.00482,"103":0.00482,"104":0.00482,"113":0.00482,"115":0.14945,"116":0.00482,"117":0.00482,"118":0.00482,"119":0.00482,"120":0.00482,"121":0.00964,"122":0.00964,"123":0.08678,"124":1.19561,"125":0.42425,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 95 96 97 98 99 100 101 105 106 107 108 109 110 111 112 114 126 127 128 3.5 3.6"},D:{"37":0.00482,"38":0.00482,"49":0.01446,"52":0.00482,"65":0.00482,"66":0.0916,"68":0.00482,"70":0.00482,"72":0.00482,"74":0.00964,"75":0.00482,"76":0.01446,"77":0.00482,"78":0.00482,"79":0.01928,"80":0.00482,"81":0.02411,"83":0.03857,"84":0.00964,"85":0.00964,"86":0.06267,"87":0.02893,"88":0.01446,"89":0.00482,"90":0.00482,"91":0.01446,"92":0.00482,"93":0.03857,"94":0.02411,"95":0.00964,"96":0.04339,"97":0.00482,"98":0.00482,"99":0.00964,"100":0.05785,"101":0.11088,"102":0.07232,"103":0.40979,"104":0.06749,"105":0.02411,"106":0.00964,"107":0.01928,"108":0.01446,"109":0.77618,"110":0.01928,"111":0.01928,"112":0.01928,"113":0.01928,"114":0.06749,"115":0.1157,"116":0.28926,"117":0.04339,"118":0.05785,"119":0.1157,"120":0.26998,"121":0.49656,"122":2.79136,"123":16.38176,"124":5.98286,"125":0.02893,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 67 69 71 73 126 127"},F:{"46":0.00964,"95":0.01928,"102":0.00482,"106":0.00964,"107":0.62191,"108":0.2073,"109":0.0916,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00964,"85":0.00482,"92":0.00482,"95":0.00482,"107":0.00482,"108":0.00482,"109":0.07232,"110":0.00482,"112":0.00482,"113":0.01446,"114":0.00964,"115":0.00482,"116":0.00482,"117":0.00482,"118":0.00482,"119":0.01928,"120":0.03857,"121":0.06749,"122":0.67494,"123":5.92501,"124":2.5262,_:"12 13 14 15 16 18 79 80 81 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 106 111"},E:{"13":0.00482,"14":0.04821,"15":0.00964,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01446,"11.1":0.01928,"12.1":0.01446,"13.1":0.08678,"14.1":0.14945,"15.1":0.01928,"15.2-15.3":0.01446,"15.4":0.02893,"15.5":0.05303,"15.6":0.50138,"16.0":0.05303,"16.1":0.07714,"16.2":0.08196,"16.3":0.18802,"16.4":0.04821,"16.5":0.08678,"16.6":0.72315,"17.0":0.08196,"17.1":0.13017,"17.2":0.18802,"17.3":0.86296,"17.4":2.40568,"17.5":0.01446},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00447,"5.0-5.1":0.00447,"6.0-6.1":0.01116,"7.0-7.1":0.01786,"8.1-8.4":0.00447,"9.0-9.2":0.01116,"9.3":0.05582,"10.0-10.2":0.01116,"10.3":0.08931,"11.0-11.2":0.07591,"11.3-11.4":0.02233,"12.0-12.1":0.01563,"12.2-12.5":0.36392,"13.0-13.1":0.0067,"13.2":0.07368,"13.3":0.01786,"13.4-13.7":0.06921,"14.0-14.4":0.13619,"14.5-14.8":0.20764,"15.0-15.1":0.096,"15.2-15.3":0.1094,"15.4":0.12503,"15.5":0.15852,"15.6-15.8":1.38425,"16.0":0.32374,"16.1":0.67427,"16.2":0.32374,"16.3":0.57156,"16.4":0.11833,"16.5":0.24783,"16.6-16.7":1.95805,"17.0":0.23443,"17.1":0.43314,"17.2":0.57603,"17.3":4.20188,"17.4":9.48437,"17.5":0.08707},P:{"4":0.03333,"20":0.02222,"21":0.06667,"22":0.05556,"23":0.18889,"24":3.03331,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","13.0":0.01111,"16.0":0.01111,"17.0":0.01111,"18.0":0.01111,"19.0":0.02222},I:{"0":0.03095,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.00522,"11":0.05745,_:"6 7 9 10 5.5"},K:{"0":0.24859,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00518},O:{"0":0.08286},H:{"0":0},L:{"0":24.76891},R:{_:"0"},M:{"0":0.51272}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js index 50c5d795313d9f..6b6af7b02b7de6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GD.js @@ -1 +1 @@ -module.exports={C:{"52":0.01187,"75":0.00791,"77":0.00791,"102":0.00396,"115":0.16611,"119":0.00396,"121":0.00396,"122":0.09888,"123":0.50624,"124":0.24126,"125":0.01582,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 126 127 3.5 3.6"},D:{"63":0.00396,"69":0.01187,"71":0.00791,"73":0.01187,"74":0.00791,"75":0.01187,"76":0.01582,"78":0.01978,"79":0.01187,"81":0.00791,"83":0.01187,"87":0.01582,"88":0.00396,"89":0.00791,"92":0.02769,"93":0.01187,"94":0.00396,"95":0.01582,"96":0.00396,"98":0.00396,"99":0.00396,"100":0.00396,"101":0.00396,"103":0.34013,"105":0.00791,"106":0.00396,"108":0.00396,"109":0.64862,"110":0.00396,"111":0.00791,"112":0.0356,"113":0.01582,"114":0.05142,"115":0.02373,"116":0.05142,"117":0.01582,"118":0.03164,"119":0.03164,"120":0.13843,"121":1.27351,"122":16.78898,"123":4.65108,"124":0.02769,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 70 72 77 80 84 85 86 90 91 97 102 104 107 125 126"},F:{"28":0.00396,"54":0.00791,"55":0.00791,"81":0.00396,"102":0.00791,"105":0.00396,"107":0.51415,"108":0.1147,"109":0.02373,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00791,"17":0.01978,"18":0.01582,"80":0.00791,"92":0.03955,"108":0.00396,"109":0.08306,"114":0.00791,"116":0.03164,"117":0.01978,"118":0.00396,"119":0.01582,"120":0.02373,"121":0.20566,"122":4.2279,"123":0.26103,_:"12 13 14 16 79 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 115"},E:{"13":0.00396,"14":0.00396,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00791,"13.1":0.07515,"14.1":0.11074,"15.1":0.01187,"15.2-15.3":0.00396,"15.4":0.00791,"15.5":0.02373,"15.6":0.54975,"16.0":0.04351,"16.1":0.03164,"16.2":0.01978,"16.3":0.13843,"16.4":0.02373,"16.5":0.03164,"16.6":0.46274,"17.0":0.39155,"17.1":1.51081,"17.2":0.17798,"17.3":1.3012,"17.4":0.34409},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0039,"5.0-5.1":0.00195,"6.0-6.1":0.01169,"7.0-7.1":0.01363,"8.1-8.4":0.0039,"9.0-9.2":0.00779,"9.3":0.04869,"10.0-10.2":0.00779,"10.3":0.0818,"11.0-11.2":0.05843,"11.3-11.4":0.01948,"12.0-12.1":0.01753,"12.2-12.5":0.33695,"13.0-13.1":0.00584,"13.2":0.05843,"13.3":0.01753,"13.4-13.7":0.06622,"14.0-14.4":0.1266,"14.5-14.8":0.19867,"15.0-15.1":0.0857,"15.2-15.3":0.10128,"15.4":0.11881,"15.5":0.15192,"15.6-15.8":1.27185,"16.0":0.30968,"16.1":0.64079,"16.2":0.30968,"16.3":0.5512,"16.4":0.11686,"16.5":0.24736,"16.6-16.7":1.87369,"17.0":0.24346,"17.1":0.48692,"17.2":0.78492,"17.3":9.66059,"17.4":1.41792,"17.5":0},P:{"4":0.05415,"20":0.03249,"21":0.15161,"22":0.04332,"23":1.42946,"24":1.87347,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 17.0","7.2-7.4":0.23824,"11.1-11.2":0.02166,"13.0":0.02166,"14.0":0.01083,"15.0":0.02166,"16.0":0.02166,"18.0":0.09746,"19.0":0.03249},I:{"0":0.15051,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00036},K:{"0":0.3427,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":38.79921},R:{_:"0"},M:{"0":0.37479},Q:{_:"14.9"},O:{"0":0.0665},H:{"0":0.02}}; +module.exports={C:{"52":0.02863,"68":0.01227,"78":0.00409,"102":0.00409,"103":0.08998,"115":0.22086,"120":0.00818,"121":0.0409,"122":0.00409,"123":0.01636,"124":0.79755,"125":0.29448,"126":0.00409,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 127 128 3.5 3.6"},D:{"36":0.00818,"63":0.00409,"76":0.00409,"79":0.0409,"81":0.00409,"85":0.00818,"87":0.02454,"91":0.01636,"92":0.01227,"93":0.00818,"94":0.00818,"95":0.01227,"97":0.00409,"99":0.00818,"100":0.03272,"102":0.00409,"103":0.07362,"104":0.03681,"105":0.00409,"106":0.00409,"108":0.01227,"109":1.68917,"110":0.01227,"114":0.01227,"115":0.02454,"116":0.06953,"117":0.00409,"118":0.01227,"119":0.02454,"120":0.09407,"121":0.76892,"122":1.09612,"123":15.84057,"124":6.59308,"125":0.04908,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 83 84 86 88 89 90 96 98 101 107 111 112 113 126 127"},F:{"107":0.28221,"108":0.29448,"109":0.11043,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00818},B:{"90":0.02454,"92":0.00409,"100":0.00818,"108":0.00818,"109":0.05726,"112":0.0409,"114":0.00818,"119":0.00409,"120":0.01227,"121":0.04908,"122":0.27403,"123":3.28018,"124":1.38651,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 113 115 116 117 118"},E:{"14":0.00409,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.01227,"13.1":0.03272,"14.1":0.07771,"15.1":0.00409,"15.2-15.3":0.00409,"15.4":0.02045,"15.5":0.00818,"15.6":0.37628,"16.0":0.0818,"16.1":0.11861,"16.2":0.01227,"16.3":0.10225,"16.4":0.02045,"16.5":0.05726,"16.6":0.27812,"17.0":0.30266,"17.1":0.8589,"17.2":0.18814,"17.3":0.34356,"17.4":1.01023},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00379,"5.0-5.1":0.00379,"6.0-6.1":0.00947,"7.0-7.1":0.01515,"8.1-8.4":0.00379,"9.0-9.2":0.00947,"9.3":0.04735,"10.0-10.2":0.00947,"10.3":0.07577,"11.0-11.2":0.0644,"11.3-11.4":0.01894,"12.0-12.1":0.01326,"12.2-12.5":0.30875,"13.0-13.1":0.00568,"13.2":0.06251,"13.3":0.01515,"13.4-13.7":0.05872,"14.0-14.4":0.11554,"14.5-14.8":0.17616,"15.0-15.1":0.08145,"15.2-15.3":0.09281,"15.4":0.10607,"15.5":0.13449,"15.6-15.8":1.17438,"16.0":0.27465,"16.1":0.57203,"16.2":0.27465,"16.3":0.4849,"16.4":0.10039,"16.5":0.21025,"16.6-16.7":1.66117,"17.0":0.19889,"17.1":0.36747,"17.2":0.48869,"17.3":3.5648,"17.4":8.04637,"17.5":0.07387},P:{"4":0.03314,"20":0.01105,"21":0.09941,"22":0.02209,"23":0.1215,"24":2.63996,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","7.2-7.4":0.34242,"18.0":0.01105,"19.0":0.03314},I:{"0":0.0412,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"11":0.06953,_:"6 7 8 9 10 5.5"},K:{"0":0.27777,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.15957},H:{"0":0},L:{"0":38.50668},R:{_:"0"},M:{"0":0.43143}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js index c5fd457ac0151a..1b9dfff31d4a95 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GE.js @@ -1 +1 @@ -module.exports={C:{"34":0.00805,"52":0.00805,"68":0.0161,"78":0.03623,"88":0.0161,"91":0.00403,"103":0.00403,"105":0.00403,"113":0.00403,"115":0.22948,"119":0.00403,"120":1.55001,"121":0.00403,"122":0.0161,"123":0.44689,"124":0.20533,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 104 106 107 108 109 110 111 112 114 116 117 118 125 126 127 3.5 3.6"},D:{"11":0.00403,"22":0.00403,"26":0.00403,"38":0.00805,"39":0.00805,"43":0.00403,"44":0.00403,"45":0.00403,"46":0.00403,"47":0.02013,"49":0.02818,"50":0.00805,"51":0.00403,"55":0.00805,"56":0.01208,"59":0.00403,"61":0.00403,"62":0.00805,"63":0.00805,"64":0.00403,"65":0.00403,"66":0.02013,"68":0.0161,"69":0.00403,"70":0.00403,"73":0.06039,"74":0.00403,"75":0.00403,"76":0.00805,"77":0.00403,"78":0.02818,"79":0.28987,"80":0.00403,"83":0.22948,"84":0.00403,"85":0.00403,"86":0.00805,"87":0.30598,"88":0.1087,"89":0.00403,"90":0.00805,"91":0.00403,"92":0.00805,"93":0.00403,"94":0.04429,"95":0.00805,"96":0.01208,"97":0.00805,"98":0.07247,"99":0.0161,"100":0.01208,"101":0.01208,"102":0.03221,"103":0.08455,"104":0.01208,"105":0.00403,"106":0.03623,"107":0.01208,"108":0.03623,"109":4.36821,"110":0.02013,"111":0.02013,"112":0.01208,"113":0.00805,"114":0.03623,"115":0.0161,"116":0.18922,"117":0.02818,"118":0.02818,"119":0.06844,"120":0.3865,"121":0.93403,"122":14.50165,"123":5.00834,"124":0.00805,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 34 35 36 37 40 41 42 48 52 53 54 57 58 60 67 71 72 81 125 126"},F:{"28":0.02013,"36":0.00403,"40":0.00403,"46":0.09662,"66":0.01208,"67":0.00805,"69":0.00403,"70":0.00403,"79":0.0161,"82":0.00403,"84":0.00403,"85":0.02013,"86":0.00403,"87":0.02818,"94":0.00805,"95":0.63208,"102":0.00805,"104":0.00403,"106":0.02013,"107":2.03716,"108":0.69247,"109":0.00403,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 68 71 72 73 74 75 76 77 78 80 81 83 88 89 90 91 92 93 96 97 98 99 100 101 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00403,"13":0.03221,"14":0.02416,"16":0.02013,"17":0.00403,"18":0.0161,"92":0.01208,"98":0.00403,"100":0.00805,"108":0.00805,"109":0.02013,"110":0.01208,"111":0.00805,"112":0.00403,"113":0.00403,"114":0.00805,"115":0.00403,"116":0.02013,"117":0.01208,"118":0.00805,"119":0.03221,"120":0.06039,"121":0.2013,"122":2.76586,"123":0.20533,_:"15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 101 102 103 104 105 106 107"},E:{"8":0.00403,"9":0.00403,"13":0.00403,"14":0.01208,"15":0.00403,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00403,"12.1":0.00403,"13.1":0.06039,"14.1":0.04026,"15.1":0.00805,"15.2-15.3":0.00403,"15.4":0.01208,"15.5":0.02013,"15.6":0.07247,"16.0":0.00805,"16.1":0.03623,"16.2":0.02416,"16.3":0.05234,"16.4":0.02416,"16.5":0.03623,"16.6":0.09662,"17.0":0.04429,"17.1":0.06442,"17.2":0.12883,"17.3":0.29792,"17.4":0.0926},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00234,"5.0-5.1":0.00117,"6.0-6.1":0.00703,"7.0-7.1":0.0082,"8.1-8.4":0.00234,"9.0-9.2":0.00469,"9.3":0.02928,"10.0-10.2":0.00469,"10.3":0.04919,"11.0-11.2":0.03514,"11.3-11.4":0.01171,"12.0-12.1":0.01054,"12.2-12.5":0.20264,"13.0-13.1":0.00351,"13.2":0.03514,"13.3":0.01054,"13.4-13.7":0.03982,"14.0-14.4":0.07613,"14.5-14.8":0.11947,"15.0-15.1":0.05154,"15.2-15.3":0.06091,"15.4":0.07145,"15.5":0.09136,"15.6-15.8":0.76486,"16.0":0.18624,"16.1":0.38536,"16.2":0.18624,"16.3":0.33148,"16.4":0.07028,"16.5":0.14876,"16.6-16.7":1.1268,"17.0":0.14641,"17.1":0.29283,"17.2":0.47204,"17.3":5.80967,"17.4":0.85271,"17.5":0},P:{"4":0.74249,"20":0.02152,"21":0.06456,"22":0.08609,"23":0.86086,"24":0.67792,"5.0-5.4":0.03228,"6.2-6.4":0.10761,"7.2-7.4":0.0538,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01076,"13.0":0.03228,"16.0":0.01076,"17.0":0.02152,"18.0":0.01076,"19.0":0.03228},I:{"0":0.14871,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00036},K:{"0":0.29865,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0161,"9":0.00403,"10":0.00403,"11":0.04429,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":45.46512},R:{_:"0"},M:{"0":0.0896},Q:{_:"14.9"},O:{"0":0.0896},H:{"0":0}}; +module.exports={C:{"34":0.00392,"52":0.03916,"68":0.01175,"78":0.0235,"88":0.01175,"102":0.00392,"103":0.00783,"107":0.00392,"108":0.01566,"110":0.00392,"113":0.00392,"115":0.28195,"118":0.01175,"119":0.01566,"121":0.00392,"122":0.00392,"123":0.0235,"124":0.44251,"125":0.27412,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 109 111 112 114 116 117 120 126 127 128 3.5 3.6"},D:{"22":0.00392,"38":0.00392,"39":0.01175,"43":0.00392,"44":0.00392,"45":0.00392,"46":0.00392,"47":0.01566,"49":0.02741,"51":0.00392,"56":0.00783,"61":0.00392,"63":0.01566,"65":0.00392,"66":0.01566,"68":0.00783,"69":0.00392,"70":0.00392,"73":0.0235,"75":0.00783,"76":0.0235,"78":0.01175,"79":0.29762,"80":0.00392,"81":0.00392,"83":0.16056,"84":0.00392,"85":0.00392,"86":0.01175,"87":0.25062,"88":0.06657,"89":0.00392,"90":0.00392,"91":0.00783,"92":0.00783,"93":0.00392,"94":0.05874,"95":0.00783,"96":0.01175,"97":0.00392,"98":0.0744,"99":0.0235,"100":0.00783,"101":0.00783,"102":0.03916,"103":0.05091,"104":0.01175,"105":0.01175,"106":0.03133,"107":0.01958,"108":0.0235,"109":4.2097,"110":0.0235,"111":0.03916,"112":0.01175,"113":0.01958,"114":0.01958,"115":0.01566,"116":0.14881,"117":0.01958,"118":0.01566,"119":0.05482,"120":0.25062,"121":0.19972,"122":0.59523,"123":15.46037,"124":5.81134,"125":0.03133,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 48 50 52 53 54 55 57 58 59 60 62 64 67 71 72 74 77 126 127"},F:{"28":0.0235,"46":0.06657,"66":0.01566,"67":0.00783,"70":0.00392,"79":0.01958,"82":0.00783,"83":0.00392,"84":0.00392,"85":0.01566,"86":0.00783,"87":0.01958,"91":0.00392,"94":0.00783,"95":0.59132,"102":0.00392,"105":0.00392,"106":0.00783,"107":0.91634,"108":1.18655,"109":0.33678,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 68 69 71 72 73 74 75 76 77 78 80 81 88 89 90 92 93 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00392,"13":0.03133,"14":0.01958,"16":0.00783,"18":0.01958,"92":0.00783,"98":0.00783,"99":0.00392,"100":0.00392,"108":0.00783,"109":0.01958,"110":0.00392,"111":0.00783,"113":0.02741,"114":0.01175,"116":0.03524,"117":0.00783,"118":0.01566,"119":0.03524,"120":0.05482,"121":0.09007,"122":0.16056,"123":1.87576,"124":0.8067,_:"15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 101 102 103 104 105 106 107 112 115"},E:{"9":0.00783,"14":0.00783,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00392,"13.1":0.04699,"14.1":0.04308,"15.1":0.00392,"15.2-15.3":0.00392,"15.4":0.01175,"15.5":0.01175,"15.6":0.10965,"16.0":0.00783,"16.1":0.04699,"16.2":0.01175,"16.3":0.03524,"16.4":0.01566,"16.5":0.03524,"16.6":0.11356,"17.0":0.05091,"17.1":0.05874,"17.2":0.05874,"17.3":0.16447,"17.4":0.41901,"17.5":0.01175},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00236,"5.0-5.1":0.00236,"6.0-6.1":0.00591,"7.0-7.1":0.00946,"8.1-8.4":0.00236,"9.0-9.2":0.00591,"9.3":0.02955,"10.0-10.2":0.00591,"10.3":0.04728,"11.0-11.2":0.04019,"11.3-11.4":0.01182,"12.0-12.1":0.00827,"12.2-12.5":0.19269,"13.0-13.1":0.00355,"13.2":0.03901,"13.3":0.00946,"13.4-13.7":0.03665,"14.0-14.4":0.07211,"14.5-14.8":0.10994,"15.0-15.1":0.05083,"15.2-15.3":0.05792,"15.4":0.0662,"15.5":0.08393,"15.6-15.8":0.73292,"16.0":0.17141,"16.1":0.357,"16.2":0.17141,"16.3":0.30262,"16.4":0.06265,"16.5":0.13122,"16.6-16.7":1.03672,"17.0":0.12412,"17.1":0.22933,"17.2":0.30499,"17.3":2.22475,"17.4":5.02165,"17.5":0.0461},P:{"4":0.64907,"20":0.01064,"21":0.04256,"22":0.09576,"23":0.15961,"24":1.14916,"5.0-5.4":0.0532,"6.2-6.4":0.08512,"7.2-7.4":0.0532,_:"8.2 9.2 10.1 12.0 14.0 15.0 16.0 18.0","11.1-11.2":0.01064,"13.0":0.02128,"17.0":0.03192,"19.0":0.02128},I:{"0":0.14542,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00037},A:{"8":0.0244,"9":0.00407,"10":0.00407,"11":0.0732,_:"6 7 5.5"},K:{"0":0.33462,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.03042},H:{"0":0},L:{"0":46.39068},R:{_:"0"},M:{"0":0.12168}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js index a30a7f2913802e..11ddd47a84a9a2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GF.js @@ -1 +1 @@ -module.exports={C:{"52":0.00419,"78":0.17195,"87":0.01258,"88":0.00839,"91":0.00419,"94":0.00419,"101":0.00419,"102":0.04194,"107":0.00419,"110":0.00419,"112":0.02516,"113":0.02936,"115":0.59555,"116":0.01678,"117":0.00419,"118":0.00839,"119":0.02516,"120":0.00419,"121":0.10066,"122":0.12582,"123":2.82256,"124":1.14916,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 92 93 95 96 97 98 99 100 103 104 105 106 108 109 111 114 125 126 127 3.5 3.6"},D:{"56":0.00839,"69":0.01258,"76":0.02936,"79":0.00839,"81":0.00839,"83":0.00419,"85":0.00419,"86":0.19712,"87":0.05033,"94":0.00419,"102":0.00419,"103":0.05033,"105":0.10485,"109":0.72137,"110":0.00419,"111":0.01678,"112":0.00839,"114":0.2768,"116":0.16776,"117":0.01258,"118":0.04613,"119":0.09227,"120":0.2768,"121":1.37563,"122":13.10206,"123":3.61103,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 78 80 84 88 89 90 91 92 93 95 96 97 98 99 100 101 104 106 107 108 113 115 124 125 126"},F:{"40":0.00839,"46":0.01678,"82":0.00419,"95":0.00839,"105":0.00419,"106":0.00419,"107":0.50328,"108":0.17615,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00419,"80":0.00419,"86":0.00419,"92":0.05452,"99":0.00419,"100":0.00839,"107":0.00839,"108":0.00419,"109":0.01678,"111":0.00419,"112":0.00419,"113":0.00419,"114":0.01258,"115":0.03775,"116":0.00419,"117":0.02097,"119":0.08388,"120":0.11324,"121":0.281,"122":7.00817,"123":0.45715,_:"12 13 14 15 16 17 79 81 83 84 85 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 106 110 118"},E:{"12":0.01258,"14":0.00839,_:"0 4 5 6 7 8 9 10 11 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00419,"13.1":0.09227,"14.1":0.17615,"15.1":0.00419,"15.2-15.3":0.00419,"15.4":0.02936,"15.5":0.00419,"15.6":0.35649,"16.0":0.01678,"16.1":0.05872,"16.2":0.01678,"16.3":0.16776,"16.4":0.00419,"16.5":0.06291,"16.6":0.32294,"17.0":0.01678,"17.1":3.53135,"17.2":0.18873,"17.3":0.88074,"17.4":0.1426},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00282,"5.0-5.1":0.00141,"6.0-6.1":0.00847,"7.0-7.1":0.00988,"8.1-8.4":0.00282,"9.0-9.2":0.00565,"9.3":0.0353,"10.0-10.2":0.00565,"10.3":0.0593,"11.0-11.2":0.04236,"11.3-11.4":0.01412,"12.0-12.1":0.01271,"12.2-12.5":0.24428,"13.0-13.1":0.00424,"13.2":0.04236,"13.3":0.01271,"13.4-13.7":0.04801,"14.0-14.4":0.09178,"14.5-14.8":0.14403,"15.0-15.1":0.06213,"15.2-15.3":0.07342,"15.4":0.08613,"15.5":0.11014,"15.6-15.8":0.92205,"16.0":0.22451,"16.1":0.46455,"16.2":0.22451,"16.3":0.3996,"16.4":0.08472,"16.5":0.17933,"16.6-16.7":1.35836,"17.0":0.1765,"17.1":0.353,"17.2":0.56904,"17.3":7.00362,"17.4":1.02795,"17.5":0},P:{"4":0.06372,"20":0.03186,"21":0.09558,"22":0.03186,"23":2.46384,"24":1.26378,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.08496,"11.1-11.2":0.02124,"13.0":0.01062,"14.0":0.01062,"15.0":0.01062,"16.0":0.02124,"17.0":0.01062,"18.0":0.01062,"19.0":0.08496},I:{"0":0.01156,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.06387,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00419,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":40.47873},R:{_:"0"},M:{"0":0.26708},Q:{_:"14.9"},O:{"0":0.00581},H:{"0":0}}; +module.exports={C:{"52":0.00804,"76":0.00402,"78":0.04018,"87":0.01607,"91":0.02009,"96":0.00804,"101":0.00804,"102":0.03616,"103":0.00804,"105":0.00402,"112":0.02009,"115":0.50225,"116":0.02813,"118":0.00804,"119":0.06027,"121":0.02813,"122":0.03616,"123":0.12858,"124":2.67197,"125":1.18933,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 97 98 99 100 104 106 107 108 109 110 111 113 114 117 120 126 127 128 3.5 3.6"},D:{"47":0.00402,"56":0.00804,"57":0.02411,"58":0.00804,"69":0.00804,"74":0.00402,"76":0.04018,"79":0.01205,"83":0.00402,"86":0.15268,"87":0.06429,"88":0.01205,"89":0.02411,"90":0.00402,"93":0.03616,"94":0.28126,"96":0.00402,"97":0.00402,"102":0.00402,"103":0.03214,"105":0.01607,"108":0.02009,"109":0.75137,"110":0.00402,"111":0.01205,"112":0.01205,"113":0.00402,"114":0.13661,"115":0.02009,"116":0.18081,"117":0.00402,"118":0.01607,"119":0.06831,"120":0.07232,"121":0.0884,"122":0.9603,"123":11.11379,"124":3.83317,"125":0.02411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 59 60 61 62 63 64 65 66 67 68 70 71 72 73 75 77 78 80 81 84 85 91 92 95 98 99 100 101 104 106 107 126 127"},F:{"28":0.01607,"36":0.00804,"40":0.02009,"46":0.00804,"75":0.00402,"95":0.00402,"107":0.4018,"108":0.39376,"109":0.16072,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00402,"92":0.08438,"100":0.00402,"108":0.00402,"109":0.01607,"112":0.00402,"113":0.00402,"114":0.00402,"115":0.02009,"116":0.01205,"117":0.02009,"118":0.00402,"119":0.00402,"120":0.03214,"121":0.03616,"122":0.39376,"123":6.19977,"124":3.5278,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111"},E:{"14":0.00804,"15":0.00402,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00804,"12.1":0.00402,"13.1":0.10045,"14.1":0.1567,"15.1":0.01205,"15.2-15.3":0.00402,"15.4":0.01607,"15.5":0.02411,"15.6":0.17679,"16.0":0.07232,"16.1":0.03616,"16.2":0.01205,"16.3":0.22099,"16.4":0.02411,"16.5":0.0884,"16.6":0.38975,"17.0":0.04822,"17.1":0.93619,"17.2":0.1125,"17.3":0.45805,"17.4":1.42237,"17.5":0.00402},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00322,"5.0-5.1":0.00322,"6.0-6.1":0.00806,"7.0-7.1":0.0129,"8.1-8.4":0.00322,"9.0-9.2":0.00806,"9.3":0.0403,"10.0-10.2":0.00806,"10.3":0.06449,"11.0-11.2":0.05481,"11.3-11.4":0.01612,"12.0-12.1":0.01129,"12.2-12.5":0.26278,"13.0-13.1":0.00484,"13.2":0.0532,"13.3":0.0129,"13.4-13.7":0.04998,"14.0-14.4":0.09834,"14.5-14.8":0.14993,"15.0-15.1":0.06932,"15.2-15.3":0.079,"15.4":0.09028,"15.5":0.11446,"15.6-15.8":0.99953,"16.0":0.23376,"16.1":0.48687,"16.2":0.23376,"16.3":0.41271,"16.4":0.08544,"16.5":0.17895,"16.6-16.7":1.41385,"17.0":0.16928,"17.1":0.31276,"17.2":0.41593,"17.3":3.03406,"17.4":6.84841,"17.5":0.06287},P:{"4":0.04203,"20":0.04203,"21":0.07355,"22":0.12608,"23":0.34673,"24":3.08901,"5.0-5.4":0.07355,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 17.0","7.2-7.4":0.05253,"14.0":0.02101,"16.0":0.01051,"18.0":0.02101,"19.0":0.07355},I:{"0":0.02979,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.02813,_:"6 7 8 9 10 5.5"},K:{"0":0.11964,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.02991},O:{"0":0.02393},H:{"0":0},L:{"0":40.24099},R:{_:"0"},M:{"0":0.23928}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js index 41ffe3cd2eef5f..ee4da0c483de65 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GG.js @@ -1 +1 @@ -module.exports={C:{"78":0.05532,"102":0.07659,"103":0.00851,"115":0.14042,"116":0.00426,"121":0.00851,"122":0.01702,"123":1.02971,"124":0.38295,"125":0.00426,"126":0.00426,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 113 114 117 118 119 120 127 3.5 3.6"},D:{"55":0.00426,"76":0.05957,"77":0.04255,"79":0.01277,"84":0.00851,"87":0.00426,"93":0.05957,"99":0.00851,"100":0.01277,"101":0.00426,"103":0.07234,"104":0.00426,"105":0.00426,"107":0.00426,"109":1.28501,"112":0.02979,"113":0.01702,"114":0.00851,"115":0.02553,"116":0.1234,"117":0.11914,"118":0.01277,"119":0.2936,"120":0.22552,"121":1.44245,"122":10.13116,"123":2.82532,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 80 81 83 85 86 88 89 90 91 92 94 95 96 97 98 102 106 108 110 111 124 125 126"},F:{"81":0.00426,"106":0.00851,"107":0.42976,"108":0.02979,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"100":0.00426,"111":0.00426,"114":0.00426,"115":0.00426,"116":0.00426,"118":0.00426,"119":0.06383,"120":0.02128,"121":0.30636,"122":7.05054,"123":0.64676,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 112 113 117"},E:{"10":0.00426,"13":0.01277,"14":0.02979,"15":0.00851,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3 17.5","11.1":0.01702,"12.1":0.01702,"13.1":0.19573,"14.1":0.13191,"15.1":0.01277,"15.4":0.15744,"15.5":0.10638,"15.6":1.59563,"16.0":1.66796,"16.1":0.08085,"16.2":0.16595,"16.3":0.36593,"16.4":0.21275,"16.5":0.08085,"16.6":2.52747,"17.0":0.10638,"17.1":0.28083,"17.2":0.56592,"17.3":5.42513,"17.4":1.03397},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00693,"5.0-5.1":0.00346,"6.0-6.1":0.02078,"7.0-7.1":0.02424,"8.1-8.4":0.00693,"9.0-9.2":0.01385,"9.3":0.08658,"10.0-10.2":0.01385,"10.3":0.14545,"11.0-11.2":0.10389,"11.3-11.4":0.03463,"12.0-12.1":0.03117,"12.2-12.5":0.59911,"13.0-13.1":0.01039,"13.2":0.10389,"13.3":0.03117,"13.4-13.7":0.11774,"14.0-14.4":0.2251,"14.5-14.8":0.35323,"15.0-15.1":0.15238,"15.2-15.3":0.18008,"15.4":0.21125,"15.5":0.27012,"15.6-15.8":2.2614,"16.0":0.55063,"16.1":1.13936,"16.2":0.55063,"16.3":0.98005,"16.4":0.20779,"16.5":0.43981,"16.6-16.7":3.33149,"17.0":0.43289,"17.1":0.86577,"17.2":1.39562,"17.3":17.17691,"17.4":2.52113,"17.5":0},P:{"20":0.01114,"21":0.02229,"22":0.01114,"23":1.99483,"24":1.80538,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","9.2":0.03343,"19.0":0.01114},I:{"0":0.02289,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.01149,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03404,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":18.33566},R:{_:"0"},M:{"0":0.58599},Q:{_:"14.9"},O:{"0":0.00575},H:{"0":0}}; +module.exports={C:{"78":0.07392,"102":0.01739,"115":0.13044,"121":0.02609,"123":0.06522,"124":1.26092,"125":1.22614,"126":0.0087,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 127 128 3.5 3.6"},D:{"38":0.00435,"41":0.00435,"49":0.00435,"76":0.1,"77":0.03913,"79":0.00435,"83":0.01304,"84":0.00435,"91":0.0087,"92":0.00435,"93":0.06087,"99":0.00435,"100":0.00435,"103":0.04783,"109":0.90873,"111":0.00435,"112":0.02609,"114":0.00435,"116":0.14783,"117":0.05218,"118":0.00435,"119":0.24349,"120":0.08696,"121":0.11305,"122":2.01312,"123":10.3352,"124":4.36539,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 80 81 85 86 87 88 89 90 94 95 96 97 98 101 102 104 105 106 107 108 110 113 115 125 126 127"},F:{"107":0.22175,"108":0.25218,"109":0.02609,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.01739,"110":0.01304,"115":0.00435,"118":0.0087,"119":0.09131,"120":0.01304,"121":0.00435,"122":0.54785,"123":4.52627,"124":2.37836,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 113 114 116 117"},E:{"10":0.00435,"14":0.04348,"15":0.00435,_:"0 4 5 6 7 8 9 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3","12.1":0.0087,"13.1":0.22175,"14.1":0.13044,"15.1":0.02174,"15.4":0.10435,"15.5":0.1174,"15.6":1.70876,"16.0":0.82177,"16.1":0.12174,"16.2":0.20001,"16.3":0.39567,"16.4":0.12174,"16.5":0.04783,"16.6":1.50441,"17.0":0.1,"17.1":0.29566,"17.2":0.28262,"17.3":1.82616,"17.4":5.42196,"17.5":0.00435},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00665,"5.0-5.1":0.00665,"6.0-6.1":0.01663,"7.0-7.1":0.02661,"8.1-8.4":0.00665,"9.0-9.2":0.01663,"9.3":0.08316,"10.0-10.2":0.01663,"10.3":0.13305,"11.0-11.2":0.11309,"11.3-11.4":0.03326,"12.0-12.1":0.02328,"12.2-12.5":0.54217,"13.0-13.1":0.00998,"13.2":0.10976,"13.3":0.02661,"13.4-13.7":0.10311,"14.0-14.4":0.2029,"14.5-14.8":0.30934,"15.0-15.1":0.14303,"15.2-15.3":0.16298,"15.4":0.18627,"15.5":0.23616,"15.6-15.8":2.06225,"16.0":0.4823,"16.1":1.00451,"16.2":0.4823,"16.3":0.85151,"16.4":0.17629,"16.5":0.36921,"16.6-16.7":2.91708,"17.0":0.34925,"17.1":0.64528,"17.2":0.85816,"17.3":6.25991,"17.4":14.12971,"17.5":0.12972},P:{"4":0.01127,"20":0.14657,"21":0.07892,"22":0.01127,"23":0.10147,"24":3.64171,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","9.2":0.01127},I:{"0":0.01126,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.0087,_:"6 7 8 9 10 5.5"},K:{"0":0.05087,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.00565},H:{"0":0},L:{"0":18.13033},R:{_:"0"},M:{"0":0.54824}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js index 91087129e00889..81c189ec4788f0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GH.js @@ -1 +1 @@ -module.exports={C:{"43":0.00235,"46":0.00235,"47":0.00235,"52":0.00235,"56":0.00235,"57":0.00235,"60":0.00235,"67":0.00235,"68":0.00235,"72":0.00471,"76":0.00235,"78":0.00471,"85":0.00235,"87":0.00471,"96":0.00471,"101":0.00706,"102":0.00235,"103":0.00235,"104":0.00235,"107":0.00235,"109":0.00235,"110":0.00235,"111":0.00235,"112":0.00471,"113":0.00235,"114":0.00235,"115":0.1953,"116":0.00706,"117":0.00235,"118":0.00706,"119":0.00235,"120":0.00471,"121":0.01177,"122":0.06118,"123":0.71531,"124":0.31766,"125":0.01177,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 48 49 50 51 53 54 55 58 59 61 62 63 64 65 66 69 70 71 73 74 75 77 79 80 81 82 83 84 86 88 89 90 91 92 93 94 95 97 98 99 100 105 106 108 126 127 3.5 3.6"},D:{"11":0.00471,"25":0.00235,"29":0.00471,"30":0.00706,"31":0.00235,"34":0.00235,"35":0.00235,"37":0.00235,"38":0.00471,"39":0.00235,"43":0.00235,"44":0.00235,"45":0.00235,"46":0.00235,"47":0.00471,"48":0.00235,"49":0.00706,"50":0.00941,"51":0.00235,"54":0.00235,"55":0.00235,"58":0.00235,"59":0.00235,"63":0.00941,"64":0.00471,"65":0.00706,"66":0.00235,"67":0.00706,"68":0.01412,"69":0.02118,"70":0.01412,"71":0.00471,"72":0.00471,"73":0.00941,"74":0.02118,"75":0.01647,"76":0.02824,"77":0.02118,"78":0.00706,"79":0.02353,"80":0.01647,"81":0.01177,"83":0.00941,"84":0.00706,"85":0.01647,"86":0.01647,"87":0.01647,"88":0.01882,"89":0.00941,"90":0.02118,"91":0.00941,"92":0.00941,"93":0.05177,"94":0.00941,"95":0.01882,"96":0.00706,"97":0.00235,"98":0.00706,"99":0.01177,"100":0.00471,"101":0.00471,"102":0.02824,"103":0.08236,"104":0.01177,"105":0.01647,"106":0.05177,"107":0.01177,"108":0.02588,"109":1.69651,"110":0.00706,"111":0.01882,"112":0.00941,"113":0.01647,"114":0.02824,"115":0.01882,"116":0.10118,"117":0.02353,"118":0.03294,"119":0.06824,"120":0.19765,"121":0.65413,"122":5.93662,"123":1.9177,"124":0.01177,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 32 33 36 40 41 42 52 53 56 57 60 61 62 125 126"},F:{"20":0.00235,"34":0.00235,"35":0.00235,"36":0.00235,"37":0.00471,"40":0.00235,"42":0.00706,"58":0.00235,"68":0.00706,"79":0.01882,"80":0.00235,"81":0.00706,"83":0.00235,"84":0.00235,"85":0.00471,"86":0.00235,"91":0.00235,"95":0.08236,"99":0.00235,"102":0.00941,"103":0.00235,"104":0.00235,"105":0.00941,"106":0.02824,"107":0.65649,"108":0.34119,"109":0.01412,_:"9 11 12 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 38 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 82 87 88 89 90 92 93 94 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01882,"13":0.00706,"14":0.00941,"15":0.00706,"16":0.00471,"17":0.00706,"18":0.06588,"80":0.00235,"84":0.01412,"85":0.00471,"86":0.00235,"88":0.00235,"89":0.01882,"90":0.05177,"91":0.00235,"92":0.09412,"100":0.03059,"103":0.00235,"105":0.00235,"107":0.00235,"108":0.00235,"109":0.03765,"110":0.00235,"111":0.00471,"112":0.00706,"113":0.00235,"114":0.00941,"115":0.00706,"116":0.00706,"117":0.01177,"118":0.00941,"119":0.02824,"120":0.09412,"121":0.18824,"122":1.88475,"123":0.13883,_:"79 81 83 87 93 94 95 96 97 98 99 101 102 104 106"},E:{"9":0.00235,"11":0.00941,"12":0.00235,"13":0.00706,"14":0.00941,"15":0.00235,_:"0 4 5 6 7 8 10 3.1 3.2 5.1 6.1 10.1 17.5","7.1":0.00235,"9.1":0.01177,"11.1":0.01647,"12.1":0.00471,"13.1":0.05177,"14.1":0.01882,"15.1":0.00471,"15.2-15.3":0.00235,"15.4":0.00471,"15.5":0.00471,"15.6":0.06824,"16.0":0.00941,"16.1":0.00941,"16.2":0.01177,"16.3":0.01177,"16.4":0.00706,"16.5":0.00941,"16.6":0.05412,"17.0":0.01882,"17.1":0.02118,"17.2":0.04706,"17.3":0.09177,"17.4":0.0353},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00217,"5.0-5.1":0.00108,"6.0-6.1":0.0065,"7.0-7.1":0.00758,"8.1-8.4":0.00217,"9.0-9.2":0.00433,"9.3":0.02707,"10.0-10.2":0.00433,"10.3":0.04548,"11.0-11.2":0.03248,"11.3-11.4":0.01083,"12.0-12.1":0.00975,"12.2-12.5":0.18733,"13.0-13.1":0.00325,"13.2":0.03248,"13.3":0.00975,"13.4-13.7":0.03682,"14.0-14.4":0.07038,"14.5-14.8":0.11045,"15.0-15.1":0.04764,"15.2-15.3":0.05631,"15.4":0.06605,"15.5":0.08446,"15.6-15.8":0.70708,"16.0":0.17217,"16.1":0.35625,"16.2":0.17217,"16.3":0.30644,"16.4":0.06497,"16.5":0.13752,"16.6-16.7":1.04167,"17.0":0.13535,"17.1":0.2707,"17.2":0.43637,"17.3":5.37076,"17.4":0.78829,"17.5":0},P:{"4":0.18256,"20":0.04057,"21":0.18256,"22":0.13185,"23":0.43612,"24":0.42598,"5.0-5.4":0.04057,"6.2-6.4":0.02028,"7.2-7.4":0.10142,_:"8.2 10.1 12.0","9.2":0.12171,"11.1-11.2":0.04057,"13.0":0.02028,"14.0":0.02028,"15.0":0.01014,"16.0":0.03043,"17.0":0.02028,"18.0":0.02028,"19.0":0.08114},I:{"0":0.08377,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},K:{"0":11.76461,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00941,"9":0.00235,"10":0.00471,"11":0.01647,_:"6 7 5.5"},S:{"2.5":0.01529,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":54.89153},R:{_:"0"},M:{"0":0.34412},Q:{"14.9":0.02294},O:{"0":0.71117},H:{"0":1.09}}; +module.exports={C:{"47":0.00217,"52":0.00217,"56":0.00217,"66":0.00217,"68":0.00217,"69":0.00217,"72":0.00433,"76":0.00217,"78":0.00867,"84":0.00217,"85":0.00217,"91":0.00217,"95":0.00217,"96":0.00433,"99":0.00217,"101":0.00433,"103":0.00217,"104":0.00217,"106":0.00217,"107":0.00433,"110":0.00433,"111":0.00217,"112":0.00433,"113":0.00217,"115":0.17769,"116":0.00217,"118":0.0065,"119":0.00217,"120":0.00433,"121":0.0065,"122":0.02384,"123":0.05851,"124":0.6696,"125":0.30555,"126":0.01517,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 70 71 73 74 75 77 79 80 81 82 83 86 87 88 89 90 92 93 94 97 98 100 102 105 108 109 114 117 127 128 3.5 3.6"},D:{"11":0.00433,"19":0.00433,"20":0.00433,"26":0.00433,"30":0.0065,"33":0.0065,"34":0.00217,"36":0.00217,"38":0.00217,"42":0.00217,"43":0.01517,"44":0.00217,"45":0.00217,"46":0.00217,"47":0.00217,"49":0.0065,"50":0.01734,"51":0.00217,"54":0.00217,"55":0.00217,"56":0.00217,"58":0.00433,"59":0.00217,"61":0.00217,"62":0.00217,"63":0.0065,"64":0.00433,"65":0.00433,"66":0.00217,"67":0.00217,"68":0.013,"69":0.0065,"70":0.013,"71":0.00433,"72":0.00433,"73":0.00433,"74":0.013,"75":0.013,"76":0.02167,"77":0.01734,"78":0.00217,"79":0.0195,"80":0.00867,"81":0.00867,"83":0.01084,"84":0.0065,"85":0.013,"86":0.01734,"87":0.0195,"88":0.013,"89":0.00867,"90":0.013,"91":0.013,"92":0.01084,"93":0.04117,"94":0.0065,"95":0.026,"96":0.00433,"97":0.0065,"98":0.00433,"99":0.01084,"100":0.00433,"101":0.00217,"102":0.02167,"103":0.08018,"104":0.01084,"105":0.0195,"106":0.05201,"107":0.0065,"108":0.01734,"109":1.60791,"110":0.0065,"111":0.01517,"112":0.00867,"113":0.01084,"114":0.02817,"115":0.00867,"116":0.08235,"117":0.01734,"118":0.0195,"119":0.06284,"120":0.11052,"121":0.16469,"122":0.50058,"123":5.97225,"124":2.23201,"125":0.02167,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 21 22 23 24 25 27 28 29 31 32 35 37 39 40 41 48 52 53 57 60 126 127"},F:{"34":0.00217,"36":0.00433,"42":0.00867,"79":0.02384,"81":0.00217,"82":0.00217,"83":0.00217,"84":0.00217,"85":0.00217,"86":0.00217,"90":0.00217,"95":0.09318,"99":0.00217,"102":0.00433,"103":0.00217,"104":0.00217,"105":0.00433,"106":0.013,"107":0.14952,"108":0.6631,"109":0.2297,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 87 88 89 91 92 93 94 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01517,"13":0.0065,"14":0.00867,"15":0.0065,"16":0.00867,"17":0.01084,"18":0.06934,"84":0.01517,"88":0.00217,"89":0.0195,"90":0.03467,"92":0.09535,"100":0.04117,"103":0.00217,"107":0.00433,"108":0.00217,"109":0.03684,"111":0.00433,"112":0.0065,"113":0.00217,"114":0.01734,"115":0.00433,"116":0.00867,"117":0.01084,"118":0.01084,"119":0.02384,"120":0.05418,"121":0.06718,"122":0.24704,"123":1.43455,"124":0.52658,_:"79 80 81 83 85 86 87 91 93 94 95 96 97 98 99 101 102 104 105 106 110"},E:{"9":0.00433,"11":0.0065,"13":0.00433,"14":0.01084,_:"0 4 5 6 7 8 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.013,"12.1":0.00433,"13.1":0.04551,"14.1":0.02167,"15.1":0.00433,"15.2-15.3":0.00217,"15.4":0.00217,"15.5":0.00433,"15.6":0.06068,"16.0":0.0065,"16.1":0.00867,"16.2":0.0065,"16.3":0.00867,"16.4":0.0065,"16.5":0.00867,"16.6":0.04984,"17.0":0.0195,"17.1":0.01734,"17.2":0.03034,"17.3":0.03901,"17.4":0.13219},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00219,"5.0-5.1":0.00219,"6.0-6.1":0.00547,"7.0-7.1":0.00875,"8.1-8.4":0.00219,"9.0-9.2":0.00547,"9.3":0.02736,"10.0-10.2":0.00547,"10.3":0.04377,"11.0-11.2":0.03721,"11.3-11.4":0.01094,"12.0-12.1":0.00766,"12.2-12.5":0.17837,"13.0-13.1":0.00328,"13.2":0.03611,"13.3":0.00875,"13.4-13.7":0.03392,"14.0-14.4":0.06675,"14.5-14.8":0.10177,"15.0-15.1":0.04705,"15.2-15.3":0.05362,"15.4":0.06128,"15.5":0.07769,"15.6-15.8":0.67845,"16.0":0.15867,"16.1":0.33047,"16.2":0.15867,"16.3":0.28013,"16.4":0.058,"16.5":0.12146,"16.6-16.7":0.95967,"17.0":0.1149,"17.1":0.21229,"17.2":0.28232,"17.3":2.05942,"17.4":4.64846,"17.5":0.04268},P:{"4":0.19504,"20":0.05133,"21":0.13345,"22":0.17451,"23":0.21557,"24":0.67751,"5.0-5.4":0.04106,"6.2-6.4":0.02053,"7.2-7.4":0.12318,_:"8.2 10.1 12.0","9.2":0.07186,"11.1-11.2":0.04106,"13.0":0.01027,"14.0":0.02053,"15.0":0.01027,"16.0":0.02053,"17.0":0.02053,"18.0":0.01027,"19.0":0.08212},I:{"0":0.08581,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"8":0.01084,"9":0.00217,"10":0.0065,"11":0.02167,_:"6 7 5.5"},K:{"0":11.42262,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01567,_:"3.0-3.1"},Q:{"14.9":0.0235},O:{"0":0.72064},H:{"0":1.4},L:{"0":54.6926},R:{_:"0"},M:{"0":0.45431}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GI.js index 9f1f7b8a9ab51c..edd35247e20e1b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GI.js @@ -1 +1 @@ -module.exports={C:{"78":0.01481,"115":0.07403,"117":0.00987,"122":0.10364,"123":0.987,"124":0.31091,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 118 119 120 121 125 126 127 3.5 3.6"},D:{"49":0.00494,"64":0.00494,"69":0.00494,"72":0.00987,"76":0.01974,"86":0.00494,"87":0.00987,"91":0.00494,"92":0.00987,"101":0.46883,"102":0.01974,"103":0.26649,"105":1.52492,"106":1.45583,"107":1.33739,"108":1.31765,"109":0.66129,"110":0.58233,"111":0.01481,"112":0.22701,"113":0.01481,"114":0.00494,"115":0.12831,"116":0.10857,"117":0.03948,"118":0.02961,"119":0.2961,"120":0.47376,"121":1.5792,"122":16.45823,"123":3.91839,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 70 71 73 74 75 77 78 79 80 81 83 84 85 88 89 90 93 94 95 96 97 98 99 100 104 124 125 126"},F:{"93":0.6909,"95":0.00987,"106":0.00494,"107":0.69584,"108":0.10857,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.02468,"107":0.00494,"109":0.01974,"112":0.00987,"117":0.03948,"120":0.00987,"121":0.12831,"122":7.06692,"123":1.05609,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 113 114 115 116 118 119"},E:{"8":0.00494,"14":0.06416,"15":0.01974,_:"0 4 5 6 7 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00494,"13.1":0.1826,"14.1":0.12831,"15.1":0.00987,"15.2-15.3":0.01481,"15.4":0.04935,"15.5":0.10857,"15.6":0.67116,"16.0":0.00987,"16.1":0.18753,"16.2":0.05429,"16.3":0.1826,"16.4":0.23688,"16.5":0.24675,"16.6":0.70077,"17.0":0.0839,"17.1":0.32078,"17.2":0.83402,"17.3":1.2831,"17.4":0.17766},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00427,"5.0-5.1":0.00213,"6.0-6.1":0.0128,"7.0-7.1":0.01494,"8.1-8.4":0.00427,"9.0-9.2":0.00854,"9.3":0.05335,"10.0-10.2":0.00854,"10.3":0.08962,"11.0-11.2":0.06402,"11.3-11.4":0.02134,"12.0-12.1":0.0192,"12.2-12.5":0.36916,"13.0-13.1":0.0064,"13.2":0.06402,"13.3":0.0192,"13.4-13.7":0.07255,"14.0-14.4":0.1387,"14.5-14.8":0.21766,"15.0-15.1":0.09389,"15.2-15.3":0.11096,"15.4":0.13017,"15.5":0.16644,"15.6-15.8":1.39343,"16.0":0.33929,"16.1":0.70205,"16.2":0.33929,"16.3":0.60389,"16.4":0.12803,"16.5":0.271,"16.6-16.7":2.0528,"17.0":0.26674,"17.1":0.53347,"17.2":0.85996,"17.3":10.58407,"17.4":1.55347,"17.5":0},P:{"4":0.09651,"20":0.02145,"21":0.01072,"22":0.01072,"23":1.58711,"24":1.10454,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 15.0 16.0 17.0","14.0":0.04289,"18.0":0.02145,"19.0":0.02145},I:{"0":0.03531,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":0.32936,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01481,"11":0.02961,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":25.74954},R:{_:"0"},M:{"0":0.28364},Q:{"14.9":0.02026},O:{"0":0.1165},H:{"0":0.01}}; +module.exports={C:{"52":0.01972,"65":0.00493,"78":0.00493,"102":0.02959,"103":0.00493,"105":0.00493,"106":0.47338,"107":0.00493,"108":0.02466,"109":0.02466,"110":0.03452,"111":0.04438,"115":0.03945,"123":0.00986,"124":0.86293,"125":0.38462,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 112 113 114 116 117 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"61":0.00493,"65":0.00493,"79":0.00986,"80":0.04438,"102":0.02466,"103":0.09862,"105":0.00986,"106":0.93689,"107":0.75937,"108":0.20217,"109":1.52861,"110":1.12427,"111":0.01972,"112":0.06903,"113":0.04931,"115":0.25641,"116":0.18738,"117":0.07397,"118":0.01972,"119":0.0641,"120":0.11834,"121":0.44872,"122":1.10948,"123":15.04448,"124":8.08684,"125":0.04931,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 114 126 127"},F:{"93":0.00493,"94":0.02466,"106":0.01479,"107":0.95661,"108":0.429,"109":0.05424,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01479,"92":0.00493,"104":0.00493,"106":0.00493,"107":0.00493,"108":0.00493,"111":0.02466,"120":0.01479,"121":0.00493,"122":0.36983,"123":5.59175,"124":1.75544,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 109 110 112 113 114 115 116 117 118 119"},E:{"14":0.08876,"15":0.00493,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3","13.1":0.40927,"14.1":0.10355,"15.4":0.0641,"15.5":0.16765,"15.6":0.43886,"16.0":0.00986,"16.1":0.31558,"16.2":0.03945,"16.3":0.11834,"16.4":0.09369,"16.5":0.26627,"16.6":0.79882,"17.0":0.02466,"17.1":0.27121,"17.2":0.15286,"17.3":0.45858,"17.4":2.14005,"17.5":0.00986},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00477,"5.0-5.1":0.00477,"6.0-6.1":0.01193,"7.0-7.1":0.01909,"8.1-8.4":0.00477,"9.0-9.2":0.01193,"9.3":0.05965,"10.0-10.2":0.01193,"10.3":0.09544,"11.0-11.2":0.08112,"11.3-11.4":0.02386,"12.0-12.1":0.0167,"12.2-12.5":0.38891,"13.0-13.1":0.00716,"13.2":0.07874,"13.3":0.01909,"13.4-13.7":0.07396,"14.0-14.4":0.14554,"14.5-14.8":0.22189,"15.0-15.1":0.1026,"15.2-15.3":0.11691,"15.4":0.13361,"15.5":0.1694,"15.6-15.8":1.47928,"16.0":0.34596,"16.1":0.72055,"16.2":0.34596,"16.3":0.6108,"16.4":0.12645,"16.5":0.26484,"16.6-16.7":2.09247,"17.0":0.25052,"17.1":0.46287,"17.2":0.61557,"17.3":4.49034,"17.4":10.13548,"17.5":0.09305},P:{"4":0.04208,"20":0.03156,"21":0.01052,"23":0.24197,"24":2.72474,_:"22 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 13.0 14.0 15.0 16.0 17.0","6.2-6.4":0.01052,"12.0":0.01052,"18.0":0.01052,"19.0":0.03156},I:{"0":0.01515,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.12491,"9":0.04996,"10":0.005,"11":0.94933,_:"6 7 5.5"},K:{"0":0.11154,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.21801},H:{"0":0},L:{"0":22.99925},R:{_:"0"},M:{"0":0.41067}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js index 171382d75abee7..949bb5e40e6024 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GL.js @@ -1 +1 @@ -module.exports={C:{"2":0.01709,"3":0.02991,"4":0.01282,"5":0.02564,"6":0.02564,"7":0.00427,"10":0.01282,"11":0.00855,"12":0.01709,"13":0.00855,"15":0.01282,"16":0.01709,"17":0.00427,"18":0.00427,"19":0.02137,"20":0.01709,"21":0.00427,"22":0.01282,"24":0.01282,"25":0.00427,"26":0.01282,"27":0.02137,"28":0.01282,"29":0.01282,"30":0.00855,"31":0.00427,"33":0.02137,"34":0.01282,"35":0.02137,"36":0.01282,"37":0.02564,"38":0.05982,"39":0.02564,"40":0.06837,"41":0.01709,"42":0.00855,"43":0.00855,"48":0.00427,"54":0.00427,"78":0.10255,"114":0.00427,"115":0.02137,"116":0.04273,"117":0.04273,"120":0.00427,"121":0.02564,"122":0.02564,"123":1.0127,"124":0.51703,_:"8 9 14 23 32 44 45 46 47 49 50 51 52 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 118 119 125 126 127","3.5":0.02137,"3.6":0.04273},D:{"4":0.00855,"6":0.01709,"7":0.00427,"10":0.00427,"11":0.01709,"12":0.00855,"14":0.00427,"15":0.01282,"17":0.00855,"18":0.00427,"19":0.01282,"21":0.04273,"22":0.01282,"23":0.00427,"24":0.01282,"25":0.00427,"26":0.01282,"27":0.02137,"28":0.02137,"29":0.01709,"30":0.00855,"31":0.05128,"32":0.02564,"33":0.02137,"34":0.02564,"35":0.02564,"36":0.02991,"37":0.02564,"38":0.15383,"39":0.03418,"40":0.08973,"41":0.06837,"42":0.047,"43":0.17092,"44":0.22647,"45":0.14528,"46":0.16665,"47":0.10683,"51":0.19229,"70":0.08546,"72":0.00427,"84":0.00855,"87":0.01709,"88":0.05555,"98":0.00427,"102":0.00427,"103":0.01282,"107":0.02564,"109":0.61531,"110":0.00427,"111":0.01282,"116":5.24724,"117":0.07264,"118":0.02137,"119":0.19656,"120":0.17092,"121":1.40582,"122":9.35787,"123":2.35442,_:"5 8 9 13 16 20 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 73 74 75 76 77 78 79 80 81 83 85 86 89 90 91 92 93 94 95 96 97 99 100 101 104 105 106 108 112 113 114 115 124 125 126"},F:{"9":0.00427,"11":0.00427,"12":0.01709,"24":0.01282,"26":0.00855,"30":0.01709,"31":0.047,"32":0.02137,"33":0.01282,"96":0.00855,"100":0.01709,"107":3.96534,"108":0.09828,_:"15 16 17 18 19 20 21 22 23 25 27 28 29 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 101 102 103 104 105 106 109 10.0-10.1 10.5 11.6","9.5-9.6":0.00855,"10.6":0.00855,"11.1":0.00427,"11.5":0.00855,"12.1":0.05128},B:{"12":0.00855,"13":0.00855,"16":0.00427,"83":0.02564,"90":0.02137,"92":0.00427,"105":0.00427,"107":0.03418,"109":0.02564,"115":0.00427,"120":0.05982,"121":0.36748,"122":4.78576,"123":0.40166,_:"14 15 17 18 79 80 81 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 106 108 110 111 112 113 114 116 117 118 119"},E:{"4":0.00427,"5":0.01282,"6":0.01282,"7":0.01709,"8":0.02137,"9":0.26065,"13":0.01709,"14":0.01282,"15":0.02137,_:"0 10 11 12 9.1 10.1 11.1 12.1 17.5","3.1":0.00427,"3.2":0.00855,"5.1":0.02564,"6.1":0.00855,"7.1":0.00855,"13.1":0.13246,"14.1":0.10255,"15.1":0.2051,"15.2-15.3":0.047,"15.4":0.03418,"15.5":0.05128,"15.6":0.36748,"16.0":0.20083,"16.1":0.02991,"16.2":0.07264,"16.3":0.0641,"16.4":0.03418,"16.5":0.08119,"16.6":0.42303,"17.0":0.00427,"17.1":0.12819,"17.2":0.48712,"17.3":1.7092,"17.4":0.18374},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00454,"5.0-5.1":0.00227,"6.0-6.1":0.01361,"7.0-7.1":0.01588,"8.1-8.4":0.00454,"9.0-9.2":0.00907,"9.3":0.0567,"10.0-10.2":0.00907,"10.3":0.09525,"11.0-11.2":0.06804,"11.3-11.4":0.02268,"12.0-12.1":0.02041,"12.2-12.5":0.39235,"13.0-13.1":0.0068,"13.2":0.06804,"13.3":0.02041,"13.4-13.7":0.07711,"14.0-14.4":0.14741,"14.5-14.8":0.23132,"15.0-15.1":0.09979,"15.2-15.3":0.11793,"15.4":0.13834,"15.5":0.1769,"15.6-15.8":1.48093,"16.0":0.36059,"16.1":0.74614,"16.2":0.36059,"16.3":0.64181,"16.4":0.13607,"16.5":0.28802,"16.6-16.7":2.18171,"17.0":0.28349,"17.1":0.56697,"17.2":0.91396,"17.3":11.24874,"17.4":1.65103,"17.5":0},P:{"4":0.28967,"20":0.09656,"21":0.01073,"23":1.82387,"24":4.8708,_:"22 5.0-5.4 8.2 9.2 10.1 11.1-11.2 13.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.17166,"7.2-7.4":0.01073,"12.0":0.01073},I:{"0":1.57987,"3":0,"4":0.00016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00016,"4.2-4.3":0.00095,"4.4":0,"4.4.3-4.4.4":0.00381},K:{"0":0.38089,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.05597,"7":0.09041,"8":1.06334,"9":0.18942,"10":0.1679,"11":0.62853,"5.5":0.00431},S:{"2.5":0.08018,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":24.26082},R:{_:"0"},M:{"0":0.46961},Q:{_:"14.9"},O:{"0":0.20617},H:{"0":0.02}}; +module.exports={C:{"2":0.00407,"3":0.05692,"4":0.03253,"5":0.02033,"6":0.00813,"7":0.00813,"9":0.0122,"10":0.0122,"11":0.0122,"12":0.02033,"13":0.02033,"15":0.01626,"16":0.01626,"17":0.00813,"18":0.00407,"19":0.0122,"20":0.01626,"21":0.0122,"22":0.00813,"23":0.02033,"24":0.00813,"25":0.00407,"26":0.0122,"28":0.02033,"29":0.00813,"30":0.01626,"31":0.0122,"32":0.0244,"33":0.04473,"34":0.03253,"35":0.04473,"36":0.0122,"37":0.00813,"38":0.01626,"39":0.0244,"40":0.07319,"41":0.02846,"42":0.0122,"43":0.0122,"44":0.00407,"48":0.00407,"78":0.00407,"91":0.00407,"96":0.0122,"108":0.26429,"115":0.05692,"118":0.00407,"120":0.0122,"121":0.06506,"122":0.0122,"123":0.10165,"124":1.60607,"125":0.69529,_:"8 14 27 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 119 126 127 128","3.5":0.02846,"3.6":0.09758},D:{"4":0.0122,"5":0.0122,"6":0.00813,"7":0.00407,"9":0.00407,"10":0.00813,"11":0.02846,"12":0.01626,"13":0.00407,"14":0.00813,"16":0.00813,"17":0.01626,"18":0.00813,"19":0.0122,"20":0.01626,"21":0.02846,"22":0.00813,"23":0.00813,"25":0.00813,"27":0.0122,"28":0.01626,"29":0.00813,"30":0.01626,"31":0.05286,"32":0.00813,"33":0.02846,"34":0.01626,"35":0.00813,"36":0.04066,"37":0.04879,"38":0.04473,"39":0.04879,"40":0.07319,"41":0.07725,"42":0.06099,"43":0.13824,"44":0.19517,"45":0.17077,"46":0.15857,"47":0.08539,"51":0.21956,"68":0.00407,"70":0.08945,"80":0.0122,"87":0.04066,"88":0.02846,"94":0.00813,"102":0.00813,"103":0.08132,"105":0.00813,"106":0.00407,"107":0.02846,"109":0.91892,"111":0.00407,"113":0.0122,"114":0.0122,"116":0.42286,"117":0.04473,"118":0.01626,"119":0.35374,"120":0.15857,"121":0.39034,"122":0.77661,"123":7.24155,"124":4.45227,_:"8 15 24 26 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 71 72 73 74 75 76 77 78 79 81 83 84 85 86 89 90 91 92 93 95 96 97 98 99 100 101 104 108 110 112 115 125 126 127"},F:{"11":0.00813,"12":0.02033,"15":0.00407,"19":0.00407,"20":0.00407,"26":0.00813,"28":0.00407,"29":0.00407,"30":0.01626,"31":0.05692,"32":0.00813,"33":0.00407,"36":0.0244,"83":0.00407,"107":5.5135,"108":0.37001,"109":0.04879,_:"9 16 17 18 21 22 23 24 25 27 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 10.0-10.1 10.5 11.1","9.5-9.6":0.00407,"10.6":0.00407,"11.5":0.00813,"11.6":0.00813,"12.1":0.05286},B:{"12":0.03253,"92":0.00813,"100":0.02846,"107":0.00407,"109":0.60177,"110":0.02846,"114":0.00813,"120":0.00813,"121":0.02846,"122":0.1789,"123":2.72422,"124":1.20354,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 111 112 113 115 116 117 118 119"},E:{"4":0.00813,"5":0.04066,"6":0.00813,"7":0.00407,"8":0.03659,"9":0.44319,"13":0.00407,"14":0.0122,"15":0.0122,_:"0 10 11 12 9.1 10.1 11.1 12.1 16.1","3.1":0.0122,"3.2":0.00407,"5.1":0.03253,"6.1":0.01626,"7.1":0.03253,"13.1":0.11385,"14.1":0.11385,"15.1":0.26836,"15.2-15.3":0.05286,"15.4":0.02033,"15.5":0.08132,"15.6":0.32121,"16.0":0.08539,"16.2":0.15044,"16.3":0.12198,"16.4":0.03659,"16.5":0.71562,"16.6":0.45133,"17.0":0.0122,"17.1":0.03253,"17.2":0.18297,"17.3":0.68309,"17.4":1.31332,"17.5":0.04879},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00462,"5.0-5.1":0.00462,"6.0-6.1":0.01154,"7.0-7.1":0.01847,"8.1-8.4":0.00462,"9.0-9.2":0.01154,"9.3":0.05772,"10.0-10.2":0.01154,"10.3":0.09236,"11.0-11.2":0.0785,"11.3-11.4":0.02309,"12.0-12.1":0.01616,"12.2-12.5":0.37635,"13.0-13.1":0.00693,"13.2":0.07619,"13.3":0.01847,"13.4-13.7":0.07158,"14.0-14.4":0.14084,"14.5-14.8":0.21473,"15.0-15.1":0.09928,"15.2-15.3":0.11314,"15.4":0.1293,"15.5":0.16393,"15.6-15.8":1.43153,"16.0":0.33479,"16.1":0.69729,"16.2":0.33479,"16.3":0.59108,"16.4":0.12237,"16.5":0.25629,"16.6-16.7":2.02492,"17.0":0.24244,"17.1":0.44793,"17.2":0.5957,"17.3":4.34539,"17.4":9.80829,"17.5":0.09005},P:{"4":0.3145,"20":0.01084,"21":0.01084,"22":0.08676,"23":0.10845,"24":4.64162,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 13.0 14.0 15.0 16.0 17.0 18.0 19.0","6.2-6.4":0.17352,"12.0":0.01084},I:{"0":2.00338,"3":0,"4":0.0002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0004,"4.2-4.3":0.00121,"4.4":0,"4.4.3-4.4.4":0.00503},A:{"6":0.05323,"7":0.09828,"8":1.05241,"9":0.18837,"10":0.18837,"11":0.61015,"5.5":0.02047},K:{"0":0.14428,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.07714,_:"3.0-3.1"},Q:{"14.9":0.01187},O:{"0":0.2611},H:{"0":0.01},L:{"0":26.9418},R:{_:"0"},M:{"0":0.20769}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js index db52b4e6f28da6..53af486d413522 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GM.js @@ -1 +1 @@ -module.exports={C:{"34":0.00228,"43":0.00228,"44":0.00114,"68":0.00114,"69":0.00114,"70":0.00114,"71":0.00228,"72":0.00342,"73":0.00114,"74":0.00228,"75":0.00114,"76":0.00114,"77":0.00114,"78":0.00114,"79":0.00114,"80":0.00228,"81":0.00114,"82":0.00228,"83":0.00114,"89":0.00114,"102":0.00114,"111":0.00114,"115":0.13554,"120":0.00456,"122":0.00456,"123":0.41801,"124":0.13896,"125":0.00228,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 112 113 114 116 117 118 119 121 126 127 3.5 3.6"},D:{"34":0.0057,"49":0.00228,"50":0.02164,"53":0.00114,"54":0.04784,"58":0.00228,"60":0.00114,"63":0.00342,"64":0.00228,"65":0.00114,"68":0.01253,"69":0.04898,"70":0.00911,"71":0.00911,"72":0.01139,"73":0.00456,"74":0.01253,"75":0.00797,"76":0.00911,"77":0.0057,"78":0.01025,"79":0.01481,"80":0.01595,"81":0.01709,"83":0.01481,"84":0.00683,"85":0.01253,"86":0.01822,"87":0.01367,"88":0.01822,"89":0.01481,"90":0.01822,"91":0.00456,"92":0.00114,"93":0.00342,"95":0.00456,"96":0.00114,"98":0.00456,"99":0.00228,"100":0.00114,"103":0.01139,"104":0.00114,"105":0.01025,"106":0.04442,"107":0.00797,"108":0.00114,"109":1.08547,"111":0.00456,"112":0.00114,"114":0.00797,"115":0.00456,"116":0.02961,"117":0.00228,"118":0.00228,"119":0.0729,"120":0.06151,"121":0.17996,"122":2.4386,"123":0.52394,"124":0.00114,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 51 52 55 56 57 59 61 62 66 67 94 97 101 102 110 113 125 126"},F:{"53":0.00114,"54":0.00114,"55":0.00228,"67":0.00114,"93":0.03645,"95":0.01139,"105":0.00114,"106":0.01595,"107":0.11618,"108":0.03987,"109":0.00114,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00114,"15":0.00797,"16":0.00228,"18":0.01367,"79":0.00114,"80":0.00342,"81":0.00114,"83":0.00228,"84":0.00456,"85":0.00114,"86":0.00228,"87":0.00114,"88":0.00228,"89":0.00342,"90":0.0057,"92":0.03303,"99":0.00456,"100":0.00114,"109":0.00797,"110":0.00342,"118":0.00228,"119":0.02164,"120":0.0467,"121":0.10023,"122":0.55583,"123":0.04328,_:"13 14 17 91 93 94 95 96 97 98 101 102 103 104 105 106 107 108 111 112 113 114 115 116 117"},E:{"13":0.00114,"14":0.00456,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 15.4 16.0 17.5","9.1":0.06606,"11.1":0.00342,"12.1":0.00114,"13.1":0.03075,"14.1":0.02506,"15.1":0.00342,"15.2-15.3":0.00114,"15.5":0.00114,"15.6":0.01367,"16.1":0.00456,"16.2":0.00114,"16.3":0.0467,"16.4":0.00114,"16.5":0.00228,"16.6":0.01481,"17.0":0.00228,"17.1":0.00342,"17.2":0.01709,"17.3":0.05353,"17.4":0.01025},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00376,"5.0-5.1":0.00188,"6.0-6.1":0.01127,"7.0-7.1":0.01315,"8.1-8.4":0.00376,"9.0-9.2":0.00751,"9.3":0.04696,"10.0-10.2":0.00751,"10.3":0.0789,"11.0-11.2":0.05636,"11.3-11.4":0.01879,"12.0-12.1":0.01691,"12.2-12.5":0.32499,"13.0-13.1":0.00564,"13.2":0.05636,"13.3":0.01691,"13.4-13.7":0.06387,"14.0-14.4":0.1221,"14.5-14.8":0.19161,"15.0-15.1":0.08266,"15.2-15.3":0.09768,"15.4":0.11459,"15.5":0.14653,"15.6-15.8":1.22668,"16.0":0.29869,"16.1":0.61804,"16.2":0.29869,"16.3":0.53162,"16.4":0.11271,"16.5":0.23857,"16.6-16.7":1.80715,"17.0":0.23482,"17.1":0.46963,"17.2":0.75705,"17.3":9.31752,"17.4":1.36757,"17.5":0},P:{"4":0.31325,"20":0.03132,"21":0.04177,"22":0.06265,"23":0.63694,"24":0.31325,_:"5.0-5.4 8.2 10.1 12.0 14.0 17.0","6.2-6.4":0.06265,"7.2-7.4":0.13574,"9.2":0.01044,"11.1-11.2":0.01044,"13.0":0.09397,"15.0":0.03132,"16.0":0.07309,"18.0":0.01044,"19.0":0.10442},I:{"0":0.00882,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.71749,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00114,"11":0.0057,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":70.76445},R:{_:"0"},M:{"0":0.06203},Q:{_:"14.9"},O:{"0":0.43419},H:{"0":0.08}}; +module.exports={C:{"34":0.00217,"50":0.00109,"66":0.00109,"72":0.00217,"91":0.00217,"115":0.05104,"121":0.00434,"122":0.00109,"123":0.01738,"124":0.2172,"125":0.14227,"126":0.00109,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 127 128 3.5 3.6"},D:{"11":0.00109,"34":0.00109,"38":0.00109,"49":0.0076,"50":0.00217,"54":0.03041,"55":0.00217,"58":0.00217,"60":0.00109,"61":0.00109,"63":0.0076,"64":0.00109,"65":0.00543,"68":0.00217,"69":0.0391,"70":0.00109,"71":0.00109,"72":0.00109,"73":0.00217,"74":0.00217,"75":0.00326,"76":0.00543,"77":0.00217,"78":0.00109,"79":0.00217,"80":0.00217,"81":0.0076,"83":0.00652,"84":0.00217,"85":0.00109,"86":0.00217,"87":0.00326,"88":0.00434,"89":0.00543,"90":0.01412,"91":0.00217,"93":0.00217,"95":0.00217,"99":0.00109,"101":0.00109,"102":0.00109,"103":0.00977,"104":0.00217,"105":0.00434,"106":0.07168,"107":0.00217,"108":0.00109,"109":1.34555,"110":0.00109,"111":0.00109,"113":0.00217,"114":0.00217,"116":0.02063,"118":0.00543,"119":0.02715,"120":0.05213,"121":0.0619,"122":0.0695,"123":1.84077,"124":0.8688,"125":0.00326,"126":0.00109,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 56 57 59 62 66 67 92 94 96 97 98 100 112 115 117 127"},F:{"40":0.00109,"46":0.00434,"47":0.00109,"54":0.00109,"83":0.00109,"93":0.03041,"95":0.00217,"101":0.00109,"107":0.00977,"108":0.23675,"109":0.04453,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00326,"15":0.00217,"18":0.02172,"79":0.00109,"84":0.00109,"85":0.00109,"86":0.00109,"89":0.00109,"92":0.08145,"100":0.00217,"105":0.00109,"109":0.01195,"110":0.00217,"112":0.00109,"118":0.00326,"119":0.00217,"120":0.01738,"121":0.10534,"122":0.05321,"123":0.53648,"124":0.21503,_:"13 14 16 17 80 81 83 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 106 107 108 111 113 114 115 116 117"},E:{"14":0.00326,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 12.1 15.4 15.5 16.0 17.5","9.1":0.00869,"11.1":0.00109,"13.1":0.08579,"14.1":0.01303,"15.1":0.00109,"15.2-15.3":0.00109,"15.6":0.04018,"16.1":0.00434,"16.2":0.00217,"16.3":0.03149,"16.4":0.00326,"16.5":0.0152,"16.6":0.02606,"17.0":0.00543,"17.1":0.01086,"17.2":0.01195,"17.3":0.0152,"17.4":0.05539},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00369,"5.0-5.1":0.00369,"6.0-6.1":0.00922,"7.0-7.1":0.01475,"8.1-8.4":0.00369,"9.0-9.2":0.00922,"9.3":0.04611,"10.0-10.2":0.00922,"10.3":0.07377,"11.0-11.2":0.06271,"11.3-11.4":0.01844,"12.0-12.1":0.01291,"12.2-12.5":0.30062,"13.0-13.1":0.00553,"13.2":0.06086,"13.3":0.01475,"13.4-13.7":0.05717,"14.0-14.4":0.1125,"14.5-14.8":0.17152,"15.0-15.1":0.07931,"15.2-15.3":0.09037,"15.4":0.10328,"15.5":0.13095,"15.6-15.8":1.14347,"16.0":0.26742,"16.1":0.55698,"16.2":0.26742,"16.3":0.47214,"16.4":0.09775,"16.5":0.20472,"16.6-16.7":1.61746,"17.0":0.19365,"17.1":0.3578,"17.2":0.47583,"17.3":3.47099,"17.4":7.83461,"17.5":0.07193},P:{"4":0.1563,"20":0.04168,"21":0.02084,"22":0.07294,"23":0.36469,"24":0.48973,"5.0-5.4":0.02084,"6.2-6.4":0.03126,"7.2-7.4":0.11462,_:"8.2 10.1 12.0 14.0 15.0 17.0","9.2":0.02084,"11.1-11.2":0.01042,"13.0":0.09378,"16.0":0.0521,"18.0":0.01042,"19.0":0.02084},I:{"0":0.01775,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"10":0.00109,"11":0.00326,_:"6 7 8 9 5.5"},K:{"0":0.68878,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00891,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.32982},H:{"0":0.06},L:{"0":71.70193},R:{_:"0"},M:{"0":0.25851}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js index b10ded3c01fa67..24184a8aa0f1d5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GN.js @@ -1 +1 @@ -module.exports={C:{"34":0.00241,"46":0.00121,"72":0.00241,"92":0.00121,"107":0.00121,"115":0.00845,"116":0.00121,"118":0.01207,"119":0.00241,"121":0.03018,"122":0.00362,"123":0.16777,"124":0.07725,"125":0.00121,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 114 117 120 126 127 3.5 3.6"},D:{"19":0.00241,"29":0.00362,"33":0.00121,"43":0.00121,"48":0.00121,"50":0.00241,"54":0.00362,"55":0.00121,"56":0.00121,"59":0.00121,"64":0.00241,"68":0.00724,"69":0.00121,"70":0.00121,"72":0.00121,"74":0.00241,"76":0.00121,"78":0.00121,"79":0.00845,"80":0.00121,"81":0.00604,"83":0.00121,"86":0.00241,"87":0.00724,"91":0.00121,"92":0.00121,"93":0.00121,"95":0.00121,"99":0.00966,"100":0.00121,"102":0.00604,"103":0.00966,"105":0.00604,"106":0.00483,"108":0.00121,"109":0.04345,"110":0.00121,"111":0.00241,"112":0.00483,"114":0.00241,"115":0.00121,"116":0.01207,"117":0.00241,"118":0.00121,"119":0.03621,"120":0.02052,"121":0.13036,"122":1.31684,"123":0.31865,"124":0.00121,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 49 51 52 53 57 58 60 61 62 63 65 66 67 71 73 75 77 84 85 88 89 90 94 96 97 98 101 104 107 113 125 126"},F:{"79":0.00241,"95":0.00483,"106":0.00241,"107":0.07483,"108":0.02897,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00483,"17":0.00483,"18":0.01931,"84":0.00121,"85":0.00121,"89":0.00121,"90":0.00241,"92":0.00845,"100":0.00604,"109":0.00604,"113":0.00121,"114":0.00121,"115":0.00121,"116":0.00241,"117":0.00121,"118":0.00121,"119":0.00362,"120":0.00604,"121":0.01811,"122":0.33917,"123":0.02414,_:"13 14 15 16 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112"},E:{"11":0.00241,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 16.4 17.5","11.1":0.00121,"13.1":0.05914,"14.1":0.00121,"15.4":0.00241,"15.6":0.04828,"16.3":0.00121,"16.5":0.00241,"16.6":0.00845,"17.0":0.02897,"17.1":0.00241,"17.2":0.00121,"17.3":0.00604,"17.4":0.00121},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00176,"5.0-5.1":0.00088,"6.0-6.1":0.00528,"7.0-7.1":0.00616,"8.1-8.4":0.00176,"9.0-9.2":0.00352,"9.3":0.022,"10.0-10.2":0.00352,"10.3":0.03697,"11.0-11.2":0.02641,"11.3-11.4":0.0088,"12.0-12.1":0.00792,"12.2-12.5":0.15227,"13.0-13.1":0.00264,"13.2":0.02641,"13.3":0.00792,"13.4-13.7":0.02993,"14.0-14.4":0.05721,"14.5-14.8":0.08978,"15.0-15.1":0.03873,"15.2-15.3":0.04577,"15.4":0.05369,"15.5":0.06865,"15.6-15.8":0.57476,"16.0":0.13995,"16.1":0.28958,"16.2":0.13995,"16.3":0.24909,"16.4":0.05281,"16.5":0.11178,"16.6-16.7":0.84673,"17.0":0.11002,"17.1":0.22004,"17.2":0.35471,"17.3":4.36569,"17.4":0.64077,"17.5":0},P:{"4":0.12116,"20":0.06058,"21":0.2928,"22":0.32309,"23":0.67648,"24":0.37358,"5.0-5.4":0.03029,"6.2-6.4":0.0101,"7.2-7.4":0.20193,"8.2":0.0101,"9.2":0.09087,"10.1":0.0101,"11.1-11.2":0.03029,_:"12.0","13.0":0.05048,"14.0":0.02019,"15.0":0.03029,"16.0":0.16155,"17.0":0.03029,"18.0":0.04039,"19.0":0.63609},I:{"0":0.00876,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.97669,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00483,_:"6 7 8 9 10 5.5"},S:{"2.5":0.15827,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":81.85508},R:{_:"0"},M:{"0":0.00879},Q:{"14.9":0.02638},O:{"0":0.07034},H:{"0":1.67}}; +module.exports={C:{"37":0.00115,"81":0.00115,"115":0.00462,"118":0.01731,"119":0.00115,"122":0.00115,"123":0.00462,"124":0.10155,"125":0.06001,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 120 121 126 127 128 3.5 3.6"},D:{"33":0.00115,"43":0.00346,"45":0.00231,"58":0.00231,"64":0.00231,"65":0.00115,"68":0.00346,"69":0.00231,"70":0.00231,"75":0.00115,"76":0.00231,"77":0.00115,"78":0.00115,"79":0.00231,"81":0.00346,"83":0.00115,"84":0.00115,"87":0.00231,"88":0.00231,"91":0.00346,"93":0.00115,"95":0.00231,"99":0.01154,"102":0.00231,"103":0.01154,"105":0.00115,"106":0.00115,"107":0.00115,"108":0.00115,"109":0.09117,"111":0.00115,"113":0.00115,"114":0.00115,"115":0.00231,"116":0.00808,"117":0.00462,"118":0.00115,"119":0.02077,"120":0.01385,"121":0.01385,"122":0.10271,"123":1.07091,"124":0.40275,"125":0.00115,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 66 67 71 72 73 74 80 85 86 89 90 92 94 96 97 98 100 101 104 110 112 126 127"},F:{"79":0.00115,"95":0.00346,"102":0.00115,"106":0.00115,"107":0.03231,"108":0.04962,"109":0.01962,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00346,"13":0.00115,"14":0.00808,"16":0.00115,"17":0.00115,"18":0.03462,"84":0.00231,"89":0.00231,"90":0.00115,"92":0.00462,"100":0.00115,"109":0.00115,"112":0.00115,"114":0.00115,"117":0.00231,"118":0.00115,"119":0.00231,"120":0.00923,"121":0.01385,"122":0.02539,"123":0.23888,"124":0.16502,_:"15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 115 116"},E:{"13":0.00115,"14":0.00115,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.5 16.0 16.1 16.4 17.1 17.5","13.1":0.04039,"14.1":0.00692,"15.4":0.00115,"15.6":0.03347,"16.2":0.00115,"16.3":0.00115,"16.5":0.00231,"16.6":0.00231,"17.0":0.00231,"17.2":0.00231,"17.3":0.00115,"17.4":0.01039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00182,"5.0-5.1":0.00182,"6.0-6.1":0.00455,"7.0-7.1":0.00727,"8.1-8.4":0.00182,"9.0-9.2":0.00455,"9.3":0.02273,"10.0-10.2":0.00455,"10.3":0.03637,"11.0-11.2":0.03092,"11.3-11.4":0.00909,"12.0-12.1":0.00637,"12.2-12.5":0.14823,"13.0-13.1":0.00273,"13.2":0.03001,"13.3":0.00727,"13.4-13.7":0.02819,"14.0-14.4":0.05547,"14.5-14.8":0.08457,"15.0-15.1":0.0391,"15.2-15.3":0.04456,"15.4":0.05092,"15.5":0.06457,"15.6-15.8":0.56381,"16.0":0.13186,"16.1":0.27463,"16.2":0.13186,"16.3":0.2328,"16.4":0.0482,"16.5":0.10094,"16.6-16.7":0.79752,"17.0":0.09548,"17.1":0.17642,"17.2":0.23462,"17.3":1.71143,"17.4":3.863,"17.5":0.03547},P:{"4":0.0813,"20":0.10163,"21":0.28456,"22":0.47766,"23":0.44717,"24":0.61994,"5.0-5.4":0.01016,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.22358,"9.2":0.06098,"11.1-11.2":0.07114,"13.0":0.04065,"14.0":0.01016,"15.0":0.05081,"16.0":0.18293,"17.0":0.02033,"18.0":0.03049,"19.0":0.40652},I:{"0":0.00881,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"9":0.00128,"11":0.01026,_:"6 7 8 10 5.5"},K:{"0":1.11919,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.16807,_:"3.0-3.1"},Q:{"14.9":0.00885},O:{"0":0.08846},H:{"0":1.34},L:{"0":82.13258},R:{_:"0"},M:{"0":0.01769}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js index 4a4fb341dced24..da79807b7d1e8e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GP.js @@ -1 +1 @@ -module.exports={C:{"52":0.00393,"78":0.02752,"88":0.00393,"91":0.00786,"98":0.00393,"102":0.00393,"109":0.00393,"112":0.12186,"115":0.60144,"117":0.02752,"118":0.00393,"119":0.01179,"120":0.03931,"121":0.00393,"122":0.58965,"123":1.97336,"124":1.07316,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 99 100 101 103 104 105 106 107 108 110 111 113 114 116 125 126 127 3.5 3.6"},D:{"38":0.00393,"49":0.00786,"55":0.00393,"56":0.00393,"57":0.00786,"63":0.00393,"67":0.01179,"68":0.00393,"76":0.00393,"79":0.01572,"87":0.00786,"88":0.00393,"91":0.02359,"100":0.00786,"101":0.00393,"102":0.01572,"103":0.05503,"105":0.01179,"106":0.00393,"107":0.00393,"109":0.86089,"110":0.00786,"111":0.00393,"112":0.00393,"113":0.00393,"114":0.00786,"115":0.01179,"116":0.12579,"117":0.00786,"118":0.01179,"119":0.16117,"120":0.19262,"121":1.5095,"122":12.37479,"123":3.99783,"124":0.01179,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 58 59 60 61 62 64 65 66 69 70 71 72 73 74 75 77 78 80 81 83 84 85 86 89 90 92 93 94 95 96 97 98 99 104 108 125 126"},F:{"28":0.00393,"95":0.00393,"102":0.00393,"106":0.02359,"107":1.64316,"108":0.22014,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00393,"92":0.01179,"96":0.00393,"103":0.00393,"107":0.02359,"108":0.00393,"109":0.04717,"113":0.00393,"114":0.05897,"115":0.00393,"116":0.00393,"117":0.00393,"118":0.19655,"119":0.05897,"120":0.03931,"121":0.342,"122":5.63312,"123":0.29483,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 104 105 106 110 111 112"},E:{"13":0.00393,"14":0.05897,"15":0.01179,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00393,"12.1":0.00786,"13.1":0.14938,"14.1":0.2791,"15.1":0.04324,"15.2-15.3":0.03931,"15.4":0.01572,"15.5":0.03931,"15.6":0.37345,"16.0":0.04324,"16.1":0.21227,"16.2":0.09041,"16.3":0.114,"16.4":0.05897,"16.5":0.16903,"16.6":0.42848,"17.0":0.08255,"17.1":0.14938,"17.2":0.60537,"17.3":1.45447,"17.4":0.51496},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00351,"5.0-5.1":0.00176,"6.0-6.1":0.01054,"7.0-7.1":0.0123,"8.1-8.4":0.00351,"9.0-9.2":0.00703,"9.3":0.04393,"10.0-10.2":0.00703,"10.3":0.07381,"11.0-11.2":0.05272,"11.3-11.4":0.01757,"12.0-12.1":0.01582,"12.2-12.5":0.30401,"13.0-13.1":0.00527,"13.2":0.05272,"13.3":0.01582,"13.4-13.7":0.05975,"14.0-14.4":0.11422,"14.5-14.8":0.17924,"15.0-15.1":0.07732,"15.2-15.3":0.09138,"15.4":0.10719,"15.5":0.13707,"15.6-15.8":1.14749,"16.0":0.27941,"16.1":0.57814,"16.2":0.27941,"16.3":0.49731,"16.4":0.10544,"16.5":0.22317,"16.6-16.7":1.69049,"17.0":0.21966,"17.1":0.43932,"17.2":0.70818,"17.3":8.71603,"17.4":1.27929,"17.5":0},P:{"4":0.02141,"20":0.2891,"21":0.07495,"22":0.26768,"23":2.32349,"24":1.756,_:"5.0-5.4 8.2 9.2 10.1 12.0 17.0","6.2-6.4":0.01071,"7.2-7.4":0.05354,"11.1-11.2":0.01071,"13.0":0.02141,"14.0":0.10707,"15.0":0.01071,"16.0":0.01071,"18.0":0.03212,"19.0":0.1499},I:{"0":0.02418,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.22459,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.09041,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":38.35354},R:{_:"0"},M:{"0":0.40669},Q:{_:"14.9"},O:{"0":0.00607},H:{"0":0}}; +module.exports={C:{"64":0.00448,"78":0.02239,"84":0.00448,"89":0.00448,"91":0.00448,"109":0.00448,"112":0.03582,"113":0.00448,"115":0.60901,"117":0.04478,"120":0.00448,"121":0.00448,"122":0.02687,"123":0.10747,"124":2.00167,"125":1.01651,"126":0.00448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 114 116 118 119 127 128 3.5 3.6"},D:{"47":0.00448,"49":0.01343,"56":0.00448,"58":0.00896,"63":0.01791,"66":0.00448,"67":0.01343,"72":0.00448,"75":0.00448,"79":0.00896,"85":0.00896,"87":0.00448,"88":0.00448,"90":0.00448,"91":0.00448,"94":0.00448,"99":0.00448,"102":0.01343,"103":0.04926,"105":0.00896,"106":0.00448,"108":0.00448,"109":0.69409,"110":0.00448,"111":0.00448,"112":0.00448,"113":0.00896,"114":0.00448,"115":0.00896,"116":0.13882,"117":0.04478,"118":0.00448,"119":0.03135,"120":0.04926,"121":0.17016,"122":0.89112,"123":19.77933,"124":5.01984,"125":0.03135,"126":0.00448,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 59 60 61 62 64 65 68 69 70 71 73 74 76 77 78 80 81 83 84 86 89 92 93 95 96 97 98 100 101 104 107 127"},F:{"46":0.00448,"86":0.00448,"95":0.00896,"106":0.00448,"107":0.8956,"108":0.36272,"109":0.10747,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00448},B:{"15":0.00448,"92":0.00896,"107":0.01343,"109":0.04926,"110":0.00448,"114":0.04478,"115":0.00896,"116":0.01343,"117":0.00448,"118":0.13882,"119":0.01791,"120":0.02687,"121":0.05374,"122":0.25525,"123":3.65853,"124":2.10018,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 111 112 113"},E:{"13":0.00448,"14":0.04478,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00896,"13.1":0.13434,"14.1":0.12986,"15.1":0.00896,"15.2-15.3":0.00896,"15.4":0.00448,"15.5":0.04478,"15.6":0.41645,"16.0":0.01791,"16.1":0.12538,"16.2":0.08956,"16.3":0.07613,"16.4":0.06717,"16.5":0.06269,"16.6":0.61796,"17.0":0.06717,"17.1":0.12091,"17.2":0.34481,"17.3":0.57766,"17.4":1.60312,"17.5":0.00448},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00324,"5.0-5.1":0.00324,"6.0-6.1":0.00811,"7.0-7.1":0.01298,"8.1-8.4":0.00324,"9.0-9.2":0.00811,"9.3":0.04056,"10.0-10.2":0.00811,"10.3":0.06489,"11.0-11.2":0.05516,"11.3-11.4":0.01622,"12.0-12.1":0.01136,"12.2-12.5":0.26445,"13.0-13.1":0.00487,"13.2":0.05354,"13.3":0.01298,"13.4-13.7":0.05029,"14.0-14.4":0.09896,"14.5-14.8":0.15088,"15.0-15.1":0.06976,"15.2-15.3":0.0795,"15.4":0.09085,"15.5":0.11519,"15.6-15.8":1.00587,"16.0":0.23524,"16.1":0.48995,"16.2":0.23524,"16.3":0.41533,"16.4":0.08599,"16.5":0.18008,"16.6-16.7":1.42281,"17.0":0.17035,"17.1":0.31474,"17.2":0.41857,"17.3":3.05329,"17.4":6.8918,"17.5":0.06327},P:{"4":0.03153,"20":0.17866,"21":0.06306,"22":0.10509,"23":0.35731,"24":3.59416,_:"5.0-5.4 8.2 10.1 12.0 15.0 17.0","6.2-6.4":0.06306,"7.2-7.4":0.02102,"9.2":0.01051,"11.1-11.2":0.02102,"13.0":0.07356,"14.0":0.06306,"16.0":0.04204,"18.0":0.01051,"19.0":0.13662},I:{"0":0.0165,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.00448,_:"6 7 8 9 10 5.5"},K:{"0":0.12148,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01104},H:{"0":0},L:{"0":34.19837},R:{_:"0"},M:{"0":0.5025}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js index 3fbcf46a7ed250..075d96cd89b808 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GQ.js @@ -1 +1 @@ -module.exports={C:{"57":0.01002,"60":0.01002,"64":0.0451,"72":0.01002,"78":0.02004,"93":0.01002,"97":0.05011,"99":0.03508,"115":0.27561,"118":0.01002,"119":0.01002,"121":0.00501,"122":0.02004,"123":0.42092,"124":0.11525,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 61 62 63 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 95 96 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 120 125 126 127 3.5 3.6"},D:{"11":0.00501,"38":0.01002,"52":0.02004,"64":0.01002,"65":0.00501,"66":0.00501,"72":0.14031,"77":0.01002,"79":0.03007,"81":0.00501,"83":0.01002,"87":0.02506,"88":0.00501,"90":0.00501,"92":0.02506,"93":0.00501,"94":0.00501,"97":0.00501,"98":0.00501,"99":0.01503,"102":0.00501,"103":0.00501,"105":0.00501,"106":0.01002,"109":1.38304,"110":0.00501,"114":0.02506,"115":0.00501,"116":0.02506,"117":0.00501,"118":0.06514,"119":0.02004,"120":0.14532,"121":0.31068,"122":7.26094,"123":1.78392,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 67 68 69 70 71 73 74 75 76 78 80 84 85 86 89 91 95 96 100 101 104 107 108 111 112 113 124 125 126"},F:{"46":0.00501,"56":0.00501,"95":0.00501,"106":0.00501,"107":0.10022,"108":0.08018,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00501,"13":0.00501,"18":0.03508,"85":0.02506,"89":0.00501,"92":0.05512,"104":0.06013,"109":0.03508,"110":0.01002,"112":0.01002,"114":0.00501,"115":0.02004,"117":0.10022,"118":0.09521,"119":3.0968,"120":0.53117,"121":1.07737,"122":24.08788,"123":4.27939,_:"14 15 16 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 111 113 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 16.1 16.2 16.5 17.0 17.5","13.1":0.00501,"14.1":0.00501,"15.4":0.06514,"15.5":0.00501,"15.6":0.01503,"16.3":0.00501,"16.4":0.00501,"16.6":0.00501,"17.1":0.00501,"17.2":0.00501,"17.3":0.02004,"17.4":0.00501},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00204,"5.0-5.1":0.00102,"6.0-6.1":0.00611,"7.0-7.1":0.00713,"8.1-8.4":0.00204,"9.0-9.2":0.00407,"9.3":0.02546,"10.0-10.2":0.00407,"10.3":0.04278,"11.0-11.2":0.03056,"11.3-11.4":0.01019,"12.0-12.1":0.00917,"12.2-12.5":0.17621,"13.0-13.1":0.00306,"13.2":0.03056,"13.3":0.00917,"13.4-13.7":0.03463,"14.0-14.4":0.06621,"14.5-14.8":0.10389,"15.0-15.1":0.04482,"15.2-15.3":0.05296,"15.4":0.06213,"15.5":0.07945,"15.6-15.8":0.66511,"16.0":0.16195,"16.1":0.3351,"16.2":0.16195,"16.3":0.28825,"16.4":0.06111,"16.5":0.12936,"16.6-16.7":0.97984,"17.0":0.12732,"17.1":0.25464,"17.2":0.41048,"17.3":5.05201,"17.4":0.7415,"17.5":0},P:{"4":0.0857,"21":0.05356,"22":0.07499,"23":0.20354,"24":0.46065,_:"20 6.2-6.4 7.2-7.4 8.2 10.1 12.0 13.0 14.0 15.0 18.0","5.0-5.4":0.01071,"9.2":0.01071,"11.1-11.2":0.01071,"16.0":0.01071,"17.0":0.01071,"19.0":0.01071},I:{"0":0.03974,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.33916,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01503,_:"6 7 8 9 10 5.5"},S:{"2.5":1.72086,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":39.91557},R:{_:"0"},M:{"0":0.01995},Q:{"14.9":0.01496},O:{"0":0.21947},H:{"0":0.01}}; +module.exports={C:{"34":0.00663,"63":0.00663,"68":0.00663,"78":0.01325,"93":0.00663,"97":0.02651,"99":0.03314,"100":0.01988,"115":0.84163,"118":0.01325,"124":0.47714,"125":0.4904,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 95 96 98 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"52":0.01325,"72":0.15242,"79":0.01325,"80":0.01325,"81":0.03314,"83":0.00663,"86":0.02651,"87":0.01325,"88":0.00663,"89":0.01325,"92":0.01325,"93":0.01325,"103":0.00663,"105":0.00663,"106":0.00663,"109":2.26643,"114":0.00663,"116":0.00663,"117":0.02651,"118":0.03314,"119":0.01325,"120":0.19881,"121":0.01325,"122":0.26508,"123":7.52165,"124":3.10806,"125":0.00663,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 84 85 90 91 94 95 96 97 98 99 100 101 102 104 107 108 110 111 112 113 115 126 127"},F:{"107":0.00663,"108":0.10603,"109":0.03314,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01325,"17":0.00663,"18":0.03976,"92":0.00663,"97":0.00663,"100":0.00663,"104":0.08615,"109":0.10603,"110":0.05302,"112":0.00663,"114":0.00663,"115":0.00663,"117":0.00663,"118":0.13917,"119":3.9033,"120":0.53679,"121":0.48377,"122":4.02922,"123":24.97054,"124":13.71126,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 101 102 103 105 106 107 108 111 113 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.5","14.1":0.00663,"15.6":0.00663,"16.6":0.01325,"17.3":0.00663,"17.4":0.01325},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00149,"5.0-5.1":0.00149,"6.0-6.1":0.00373,"7.0-7.1":0.00597,"8.1-8.4":0.00149,"9.0-9.2":0.00373,"9.3":0.01864,"10.0-10.2":0.00373,"10.3":0.02983,"11.0-11.2":0.02536,"11.3-11.4":0.00746,"12.0-12.1":0.00522,"12.2-12.5":0.12156,"13.0-13.1":0.00224,"13.2":0.02461,"13.3":0.00597,"13.4-13.7":0.02312,"14.0-14.4":0.04549,"14.5-14.8":0.06936,"15.0-15.1":0.03207,"15.2-15.3":0.03654,"15.4":0.04176,"15.5":0.05295,"15.6-15.8":0.46238,"16.0":0.10814,"16.1":0.22522,"16.2":0.10814,"16.3":0.19092,"16.4":0.03953,"16.5":0.08278,"16.6-16.7":0.65404,"17.0":0.07831,"17.1":0.14468,"17.2":0.19241,"17.3":1.40354,"17.4":3.16803,"17.5":0.02909},P:{"4":0.0771,"21":0.03304,"22":0.17622,"23":0.05507,"24":0.17622,_:"20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.01101},I:{"0":0.0168,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.05302,_:"6 7 8 9 10 5.5"},K:{"0":0.27333,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":1.1873,_:"3.0-3.1"},Q:{"14.9":0.00337},O:{"0":0.0877},H:{"0":0.01},L:{"0":26.04469},R:{_:"0"},M:{"0":0.01349}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GR.js index ec32433490e8a6..174a76b041ffa4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GR.js @@ -1 +1 @@ -module.exports={C:{"43":0.00389,"52":0.30707,"68":0.11272,"71":0.00389,"72":0.00389,"75":0.00389,"78":0.01555,"86":0.00777,"88":0.01944,"99":0.00389,"102":0.00777,"103":0.00389,"105":0.15548,"108":0.00777,"109":0.00389,"111":0.00389,"112":0.04664,"113":0.00777,"114":0.00389,"115":1.39543,"116":0.00389,"117":0.00389,"118":0.01166,"119":0.00389,"120":0.00389,"121":0.01166,"122":0.03498,"123":1.71805,"124":0.76963,"125":0.00389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 73 74 76 77 79 80 81 82 83 84 85 87 89 90 91 92 93 94 95 96 97 98 100 101 104 106 107 110 126 127 3.5 3.6"},D:{"34":0.11272,"38":0.25266,"39":0.10495,"47":0.18269,"49":0.08551,"57":0.00389,"64":0.01166,"71":0.00389,"73":0.23711,"75":0.00389,"76":0.00389,"78":0.00389,"79":0.24099,"80":0.00389,"81":0.01166,"83":0.00389,"85":0.00777,"86":0.00777,"87":0.02332,"88":0.29541,"89":0.01555,"90":0.00389,"91":0.00777,"92":0.00389,"93":0.02332,"94":0.00777,"95":0.00777,"96":0.00389,"98":0.00389,"99":0.0311,"100":0.00777,"101":0.01166,"102":0.1205,"103":0.0311,"104":0.06608,"105":0.05053,"106":0.02332,"107":0.00777,"108":0.01555,"109":4.70716,"110":0.00777,"111":0.00777,"112":0.01944,"113":0.00777,"114":0.01166,"115":0.01555,"116":0.10106,"117":0.03498,"118":0.01166,"119":0.06608,"120":0.2099,"121":0.68411,"122":12.85042,"123":3.94531,"124":0.00389,"125":0.00389,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 58 59 60 61 62 63 65 66 67 68 69 70 72 74 77 84 97 126"},F:{"25":0.06219,"28":0.00389,"31":0.45867,"40":0.31485,"46":0.24099,"77":0.00777,"95":0.04276,"102":0.00389,"106":0.00389,"107":0.59471,"108":0.20212,"109":0.00389,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.14771,"17":0.24877,"92":0.00389,"104":0.05831,"108":0.00389,"109":0.03887,"114":0.00389,"116":0.00389,"119":0.00777,"120":0.01166,"121":0.04276,"122":2.43326,"123":0.15937,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 110 111 112 113 115 117 118"},E:{"11":0.06608,"14":0.01166,"15":0.00389,_:"0 4 5 6 7 8 9 10 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00389,"13.1":0.02332,"14.1":0.05442,"15.1":0.00389,"15.2-15.3":0.00389,"15.4":0.01166,"15.5":0.00777,"15.6":0.07774,"16.0":0.00777,"16.1":0.01555,"16.2":0.01166,"16.3":0.0311,"16.4":0.01166,"16.5":0.01555,"16.6":0.13993,"17.0":0.01166,"17.1":0.03887,"17.2":0.08163,"17.3":0.31873,"17.4":0.08163},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0.0006,"6.0-6.1":0.00362,"7.0-7.1":0.00423,"8.1-8.4":0.00121,"9.0-9.2":0.00242,"9.3":0.0151,"10.0-10.2":0.00242,"10.3":0.02537,"11.0-11.2":0.01812,"11.3-11.4":0.00604,"12.0-12.1":0.00544,"12.2-12.5":0.10449,"13.0-13.1":0.00181,"13.2":0.01812,"13.3":0.00544,"13.4-13.7":0.02053,"14.0-14.4":0.03926,"14.5-14.8":0.0616,"15.0-15.1":0.02657,"15.2-15.3":0.03141,"15.4":0.03684,"15.5":0.04711,"15.6-15.8":0.39439,"16.0":0.09603,"16.1":0.1987,"16.2":0.09603,"16.3":0.17092,"16.4":0.03624,"16.5":0.0767,"16.6-16.7":0.58101,"17.0":0.0755,"17.1":0.15099,"17.2":0.2434,"17.3":2.99566,"17.4":0.43969,"17.5":0},P:{"4":0.24687,"20":0.02147,"21":0.10733,"22":0.0644,"23":1.41679,"24":0.7406,"5.0-5.4":0.0322,"6.2-6.4":0.02147,"7.2-7.4":0.01073,_:"8.2 10.1 12.0 15.0","9.2":0.02147,"11.1-11.2":0.01073,"13.0":0.01073,"14.0":0.01073,"16.0":0.01073,"17.0":0.01073,"18.0":0.01073,"19.0":0.02147},I:{"0":0.51139,"3":0,"4":0.00005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00031,"4.4":0,"4.4.3-4.4.4":0.00123},K:{"0":0.20396,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00796,"11":0.15529,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.89164},R:{_:"0"},M:{"0":0.23841},Q:{_:"14.9"},O:{"0":0.03668},H:{"0":0.01}}; +module.exports={C:{"28":0.00434,"52":0.36439,"56":0.00434,"68":0.09544,"71":0.00434,"72":0.00434,"75":0.00434,"78":0.01735,"86":0.00868,"88":0.01735,"91":0.00434,"99":0.00434,"102":0.00434,"103":0.00434,"105":0.19955,"108":0.00868,"109":0.00434,"111":0.00434,"112":0.01735,"113":0.00868,"115":1.60506,"116":0.00868,"117":0.00434,"118":0.00434,"119":0.00434,"120":0.00434,"121":0.00868,"122":0.02169,"123":0.06073,"124":1.7352,"125":0.98473,"126":0.00434,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 73 74 76 77 79 80 81 82 83 84 85 87 89 90 92 93 94 95 96 97 98 100 101 104 106 107 110 114 127 128 3.5 3.6"},D:{"34":0.14315,"38":0.31234,"39":0.14315,"47":0.15617,"49":0.06073,"56":0.00434,"57":0.00434,"73":0.29498,"76":0.00434,"78":0.00434,"79":0.35138,"80":0.00434,"81":0.00868,"83":0.00434,"85":0.00868,"86":0.00868,"87":0.02603,"88":0.0911,"89":0.01735,"91":0.00434,"93":0.02169,"94":0.00434,"95":0.00868,"96":0.00434,"97":0.00434,"99":0.06073,"100":0.00434,"101":0.01301,"102":0.13448,"103":0.03037,"104":0.00434,"105":0.04772,"106":0.01301,"107":0.00868,"108":0.01301,"109":5.73917,"110":0.00434,"111":0.00868,"112":0.01301,"113":0.00434,"114":0.00868,"115":0.02603,"116":0.09977,"117":0.0347,"118":0.00868,"119":0.04338,"120":0.07808,"121":0.07375,"122":0.50321,"123":13.73411,"124":5.40081,"125":0.0911,"126":0.00434,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 48 50 51 52 53 54 55 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 77 84 90 92 98 127"},F:{"25":0.15183,"28":0.00434,"31":0.5596,"36":0.00434,"40":0.36005,"46":0.27763,"77":0.00868,"95":0.03904,"102":0.00434,"106":0.00434,"107":0.32101,"108":0.35572,"109":0.14315,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.15617,"17":0.26028,"92":0.00434,"109":0.0347,"114":0.00434,"116":0.00434,"119":0.00434,"120":0.00868,"121":0.01301,"122":0.07375,"123":2.09525,"124":0.89363,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 117 118"},E:{"14":0.01301,"15":0.00434,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00434,"12.1":0.00434,"13.1":0.01735,"14.1":0.0347,"15.1":0.00434,"15.2-15.3":0.00434,"15.4":0.14315,"15.5":0.01301,"15.6":0.06941,"16.0":0.00868,"16.1":0.01735,"16.2":0.01301,"16.3":0.02603,"16.4":0.01735,"16.5":0.01301,"16.6":0.15617,"17.0":0.00868,"17.1":0.02603,"17.2":0.04772,"17.3":0.12146,"17.4":0.41645,"17.5":0.00434},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00123,"6.0-6.1":0.00309,"7.0-7.1":0.00494,"8.1-8.4":0.00123,"9.0-9.2":0.00309,"9.3":0.01543,"10.0-10.2":0.00309,"10.3":0.02468,"11.0-11.2":0.02098,"11.3-11.4":0.00617,"12.0-12.1":0.00432,"12.2-12.5":0.10058,"13.0-13.1":0.00185,"13.2":0.02036,"13.3":0.00494,"13.4-13.7":0.01913,"14.0-14.4":0.03764,"14.5-14.8":0.05739,"15.0-15.1":0.02653,"15.2-15.3":0.03024,"15.4":0.03455,"15.5":0.04381,"15.6-15.8":0.38257,"16.0":0.08947,"16.1":0.18635,"16.2":0.08947,"16.3":0.15796,"16.4":0.0327,"16.5":0.06849,"16.6-16.7":0.54115,"17.0":0.06479,"17.1":0.11971,"17.2":0.1592,"17.3":1.16129,"17.4":2.62122,"17.5":0.02406},P:{"4":0.2835,"20":0.021,"21":0.063,"22":0.063,"23":0.1785,"24":1.58548,"5.0-5.4":0.021,"6.2-6.4":0.0315,_:"7.2-7.4 10.1 12.0 15.0","8.2":0.042,"9.2":0.021,"11.1-11.2":0.0105,"13.0":0.0105,"14.0":0.0105,"16.0":0.0105,"17.0":0.0105,"18.0":0.0105,"19.0":0.021},I:{"0":0.57505,"3":0,"4":0.00006,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00012,"4.2-4.3":0.00035,"4.4":0,"4.4.3-4.4.4":0.00144},A:{"8":0.00434,"11":0.17786,_:"6 7 9 10 5.5"},K:{"0":0.19946,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.03963},H:{"0":0.01},L:{"0":48.15023},R:{_:"0"},M:{"0":0.24908}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js index 350acb17017580..ac4cb5a7d642b0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GT.js @@ -1 +1 @@ -module.exports={C:{"73":0.17342,"78":0.00327,"88":0.00327,"96":0.00327,"101":0.00327,"113":0.00654,"115":0.11125,"119":0.00327,"120":0.00982,"121":0.00982,"122":0.04254,"123":0.80818,"124":0.25194,"125":0.00982,"126":0.00327,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 127 3.5 3.6"},D:{"38":0.00327,"49":0.00327,"63":0.00327,"73":0.00327,"74":0.00327,"75":0.00327,"76":0.00327,"78":0.03926,"79":0.03599,"81":0.00327,"86":0.00327,"87":0.02945,"88":0.00982,"89":0.00327,"91":0.04254,"93":0.00654,"94":0.00654,"97":0.00982,"99":0.01309,"100":0.00327,"101":0.00327,"102":0.00327,"103":0.04908,"104":0.00327,"105":0.01309,"106":0.00654,"107":0.00654,"108":0.00982,"109":1.26626,"110":0.00654,"111":0.03272,"112":0.00982,"113":0.00982,"114":0.01309,"115":0.00654,"116":0.1865,"117":0.01636,"118":0.01963,"119":0.05235,"120":0.20286,"121":0.80164,"122":15.05774,"123":2.97752,"124":0.00654,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 77 80 83 84 85 90 92 95 96 98 125 126"},F:{"94":0.00327,"95":0.01963,"102":0.00327,"106":0.01963,"107":1.61964,"108":0.1636,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00982,"100":0.00327,"109":0.0229,"112":0.00327,"114":0.00327,"116":0.00327,"117":0.01309,"118":0.00327,"119":0.00654,"120":0.0229,"121":0.08507,"122":2.90881,"123":0.17014,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 115"},E:{"14":0.00327,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00982,"12.1":0.00327,"13.1":0.03272,"14.1":0.02945,"15.1":0.00327,"15.2-15.3":0.00327,"15.4":0.00654,"15.5":0.00982,"15.6":0.09816,"16.0":0.00982,"16.1":0.01963,"16.2":0.0229,"16.3":0.04254,"16.4":0.03272,"16.5":0.04581,"16.6":0.15706,"17.0":0.05235,"17.1":0.07526,"17.2":0.27812,"17.3":0.61514,"17.4":0.1865},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00228,"5.0-5.1":0.00114,"6.0-6.1":0.00685,"7.0-7.1":0.008,"8.1-8.4":0.00228,"9.0-9.2":0.00457,"9.3":0.02856,"10.0-10.2":0.00457,"10.3":0.04798,"11.0-11.2":0.03427,"11.3-11.4":0.01142,"12.0-12.1":0.01028,"12.2-12.5":0.19764,"13.0-13.1":0.00343,"13.2":0.03427,"13.3":0.01028,"13.4-13.7":0.03884,"14.0-14.4":0.07426,"14.5-14.8":0.11653,"15.0-15.1":0.05027,"15.2-15.3":0.05941,"15.4":0.06969,"15.5":0.08911,"15.6-15.8":0.746,"16.0":0.18164,"16.1":0.37585,"16.2":0.18164,"16.3":0.3233,"16.4":0.06854,"16.5":0.14509,"16.6-16.7":1.099,"17.0":0.1428,"17.1":0.2856,"17.2":0.46039,"17.3":5.66638,"17.4":0.83168,"17.5":0},P:{"4":0.07188,"20":0.02054,"21":0.06161,"22":0.07188,"23":1.37592,"24":1.64288,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.09241,"11.1-11.2":0.04107,"13.0":0.02054,"14.0":0.01027,"16.0":0.02054,"17.0":0.01027,"18.0":0.01027,"19.0":0.07188},I:{"0":0.0335,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.32967,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00654,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":54.63899},R:{_:"0"},M:{"0":0.26912},Q:{_:"14.9"},O:{"0":0.05382},H:{"0":0}}; +module.exports={C:{"52":0.00353,"73":0.07411,"78":0.01412,"88":0.00353,"96":0.00353,"103":0.00353,"104":0.00353,"113":0.00353,"115":0.1094,"118":0.00353,"120":0.01059,"121":0.00706,"122":0.00706,"123":0.0247,"124":0.87166,"125":0.37055,"126":0.01765,"127":0.00353,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 97 98 99 100 101 102 105 106 107 108 109 110 111 112 114 116 117 119 128 3.5 3.6"},D:{"38":0.00353,"49":0.00706,"65":0.00353,"68":0.00353,"70":0.00353,"75":0.00706,"76":0.00353,"78":0.0247,"79":0.04235,"80":0.00353,"81":0.00353,"83":0.00353,"84":0.00353,"86":0.00353,"87":0.0247,"88":0.00706,"90":0.00353,"91":0.01765,"92":0.00353,"93":0.00706,"94":0.00353,"97":0.01059,"99":0.01059,"100":0.00353,"101":0.00706,"102":0.00353,"103":0.05999,"104":0.00353,"105":0.01412,"106":0.00353,"107":0.00353,"108":0.01412,"109":1.33749,"110":0.01059,"111":0.0247,"112":0.00706,"113":0.00706,"114":0.01412,"115":0.00706,"116":0.15528,"117":0.00706,"118":0.01412,"119":0.07058,"120":0.09175,"121":0.15881,"122":0.67757,"123":14.3842,"124":6.09811,"125":0.01765,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 71 72 73 74 77 85 89 95 96 98 126 127"},F:{"94":0.01059,"95":0.0247,"102":0.00353,"106":0.00706,"107":1.42572,"108":0.42348,"109":0.15528,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"90":0.00353,"92":0.00706,"100":0.00353,"109":0.02823,"110":0.00353,"112":0.00353,"113":0.00353,"114":0.00353,"115":0.00353,"116":0.00353,"117":0.01059,"118":0.00706,"119":0.00706,"120":0.0247,"121":0.03176,"122":0.16233,"123":2.33267,"124":1.05164,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111"},E:{"14":0.01059,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00706,"12.1":0.00353,"13.1":0.02117,"14.1":0.02823,"15.1":0.00706,"15.2-15.3":0.00706,"15.4":0.00353,"15.5":0.02117,"15.6":0.09528,"16.0":0.01059,"16.1":0.02823,"16.2":0.01412,"16.3":0.04235,"16.4":0.02117,"16.5":0.04588,"16.6":0.15175,"17.0":0.04588,"17.1":0.05999,"17.2":0.14822,"17.3":0.25762,"17.4":0.76226,"17.5":0.00706},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0022,"5.0-5.1":0.0022,"6.0-6.1":0.00551,"7.0-7.1":0.00882,"8.1-8.4":0.0022,"9.0-9.2":0.00551,"9.3":0.02756,"10.0-10.2":0.00551,"10.3":0.0441,"11.0-11.2":0.03748,"11.3-11.4":0.01102,"12.0-12.1":0.00772,"12.2-12.5":0.17971,"13.0-13.1":0.00331,"13.2":0.03638,"13.3":0.00882,"13.4-13.7":0.03418,"14.0-14.4":0.06725,"14.5-14.8":0.10253,"15.0-15.1":0.04741,"15.2-15.3":0.05402,"15.4":0.06174,"15.5":0.07828,"15.6-15.8":0.68354,"16.0":0.15986,"16.1":0.33295,"16.2":0.15986,"16.3":0.28224,"16.4":0.05843,"16.5":0.12238,"16.6-16.7":0.96688,"17.0":0.11576,"17.1":0.21388,"17.2":0.28444,"17.3":2.07488,"17.4":4.68337,"17.5":0.043},P:{"4":0.05086,"20":0.02035,"21":0.05086,"22":0.07121,"23":0.23398,"24":2.40079,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.08138,"11.1-11.2":0.06104,"13.0":0.02035,"14.0":0.01017,"15.0":0.01017,"16.0":0.03052,"17.0":0.02035,"18.0":0.01017,"19.0":0.06104},I:{"0":0.03222,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"11":0.00706,_:"6 7 8 9 10 5.5"},K:{"0":0.32997,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.07117},H:{"0":0},L:{"0":52.11225},R:{_:"0"},M:{"0":0.23939}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js index 85372eded3cced..310dba3c131743 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GU.js @@ -1 +1 @@ -module.exports={C:{"48":0.00444,"78":0.01777,"104":0.00444,"114":0.00889,"115":0.07997,"121":0.01333,"122":0.07109,"123":1.50173,"124":0.63091,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 113 116 117 118 119 120 125 126 127 3.5 3.6"},D:{"49":0.00444,"74":0.00444,"76":0.01333,"79":0.00444,"84":0.00444,"87":0.01333,"91":0.00889,"92":0.00444,"93":0.01333,"94":0.00444,"95":0.00444,"98":0.06665,"99":0.02222,"103":0.15106,"104":0.00444,"105":0.00889,"108":0.00444,"109":0.70644,"110":0.00444,"111":0.02666,"112":0.02666,"113":0.00889,"114":0.00889,"115":0.00444,"116":0.10663,"117":0.0622,"118":0.04887,"119":0.07109,"120":0.16883,"121":1.6839,"122":15.03956,"123":3.85652,"124":0.00889,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 77 78 80 81 83 85 86 88 89 90 96 97 100 101 102 106 107 125 126"},F:{"106":0.00444,"107":0.4443,"108":0.0622,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00444,"18":0.00889,"98":0.00444,"99":0.00444,"100":0.00444,"103":0.00444,"109":0.03554,"113":0.00444,"114":0.03554,"116":0.00444,"117":0.00444,"118":0.00444,"119":0.03554,"120":0.0622,"121":0.41764,"122":4.67404,"123":0.28435,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 101 102 104 105 106 107 108 110 111 112 115"},E:{"14":0.1244,"15":0.00889,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.01777,"13.1":0.03999,"14.1":0.19105,"15.1":0.04887,"15.2-15.3":0.11552,"15.4":0.02666,"15.5":0.05332,"15.6":0.65756,"16.0":0.07553,"16.1":0.18661,"16.2":0.24437,"16.3":0.70199,"16.4":0.12885,"16.5":0.3821,"16.6":1.09742,"17.0":0.14218,"17.1":0.62202,"17.2":1.16851,"17.3":5.2694,"17.4":0.60869},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00632,"5.0-5.1":0.00316,"6.0-6.1":0.01897,"7.0-7.1":0.02213,"8.1-8.4":0.00632,"9.0-9.2":0.01265,"9.3":0.07903,"10.0-10.2":0.01265,"10.3":0.13278,"11.0-11.2":0.09484,"11.3-11.4":0.03161,"12.0-12.1":0.02845,"12.2-12.5":0.54692,"13.0-13.1":0.00948,"13.2":0.09484,"13.3":0.02845,"13.4-13.7":0.10749,"14.0-14.4":0.20549,"14.5-14.8":0.32246,"15.0-15.1":0.1391,"15.2-15.3":0.16439,"15.4":0.19284,"15.5":0.24659,"15.6-15.8":2.06437,"16.0":0.50266,"16.1":1.04009,"16.2":0.50266,"16.3":0.89467,"16.4":0.18968,"16.5":0.40149,"16.6-16.7":3.04123,"17.0":0.39517,"17.1":0.79034,"17.2":1.27403,"17.3":15.68037,"17.4":2.30147,"17.5":0},P:{"4":0.49234,"20":0.0107,"21":0.02141,"22":0.04281,"23":1.66968,"24":1.88374,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 17.0","13.0":0.0107,"14.0":0.02141,"16.0":0.02141,"18.0":0.0107,"19.0":0.03211},I:{"0":0.02213,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.03889,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00444,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":20.35878},R:{_:"0"},M:{"0":0.5556},Q:{_:"14.9"},O:{"0":0.03889},H:{"0":0}}; +module.exports={C:{"78":0.013,"107":0.00433,"115":0.18199,"121":0.00433,"123":0.00867,"124":1.23924,"125":0.76261,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 114 116 117 118 119 120 122 126 127 128 3.5 3.6"},D:{"49":0.00433,"65":0.08666,"71":0.00433,"73":0.00867,"74":0.00433,"75":0.00433,"76":0.00433,"87":0.02167,"92":0.00433,"93":0.02167,"97":0.00433,"98":0.04766,"99":0.02167,"103":0.12132,"107":0.00433,"108":0.00433,"109":0.60229,"110":0.00433,"111":0.00433,"112":0.00867,"113":0.00433,"114":0.013,"115":0.00433,"116":0.22965,"117":0.09966,"118":0.01733,"119":0.25998,"120":0.35531,"121":0.25131,"122":1.55121,"123":14.12125,"124":5.26026,"125":0.06933,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 72 77 78 79 80 81 83 84 85 86 88 89 90 91 94 95 96 100 101 102 104 105 106 126 127"},F:{"102":0.00433,"107":0.31198,"108":0.052,"109":0.02167,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00433,"18":0.00433,"92":0.00433,"98":0.00867,"109":0.065,"114":0.01733,"115":0.00433,"116":0.00433,"119":0.02167,"120":0.013,"121":0.052,"122":0.29031,"123":3.38841,"124":1.48622,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 104 105 106 107 108 110 111 112 113 117 118"},E:{"14":0.06066,"15":0.01733,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00867,"13.1":0.02167,"14.1":0.14299,"15.1":0.12566,"15.2-15.3":0.05633,"15.4":0.04766,"15.5":0.18632,"15.6":0.4203,"16.0":0.04766,"16.1":0.09966,"16.2":0.17765,"16.3":0.3943,"16.4":0.07799,"16.5":0.46796,"16.6":1.08758,"17.0":0.21232,"17.1":0.51563,"17.2":0.54163,"17.3":1.46022,"17.4":4.29834,"17.5":0.03033},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00621,"5.0-5.1":0.00621,"6.0-6.1":0.01552,"7.0-7.1":0.02484,"8.1-8.4":0.00621,"9.0-9.2":0.01552,"9.3":0.07762,"10.0-10.2":0.01552,"10.3":0.1242,"11.0-11.2":0.10557,"11.3-11.4":0.03105,"12.0-12.1":0.02173,"12.2-12.5":0.50611,"13.0-13.1":0.00931,"13.2":0.10246,"13.3":0.02484,"13.4-13.7":0.09625,"14.0-14.4":0.1894,"14.5-14.8":0.28876,"15.0-15.1":0.13351,"15.2-15.3":0.15214,"15.4":0.17388,"15.5":0.22045,"15.6-15.8":1.92507,"16.0":0.45022,"16.1":0.93769,"16.2":0.45022,"16.3":0.79487,"16.4":0.16456,"16.5":0.34465,"16.6-16.7":2.72304,"17.0":0.32602,"17.1":0.60236,"17.2":0.80108,"17.3":5.84351,"17.4":13.18982,"17.5":0.12109},P:{"4":0.35626,"21":0.03143,"22":0.04191,"23":0.75442,"24":2.97578,_:"20 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 16.0 17.0","5.0-5.4":0.02096,"13.0":0.01048,"14.0":0.01048,"18.0":0.02096,"19.0":0.02096},I:{"0":0.01129,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.00433,_:"6 7 8 9 10 5.5"},K:{"0":0.06234,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.09067},H:{"0":0},L:{"0":21.24575},R:{_:"0"},M:{"0":0.47036}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js index f6eef4cd6f44e6..166979062d0583 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GW.js @@ -1 +1 @@ -module.exports={C:{"34":0.00186,"66":0.00186,"78":0.00186,"115":0.00743,"120":0.00186,"123":0.05388,"124":0.02044,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 122 125 126 127 3.5 3.6"},D:{"11":0.00372,"33":0.00186,"40":0.00186,"43":0.00186,"46":0.00557,"47":0.00186,"49":0.00186,"50":0.00557,"64":0.00929,"66":0.00186,"68":0.00186,"70":0.00743,"75":0.00186,"78":0.00186,"79":0.00557,"81":0.01301,"83":0.02601,"86":0.00743,"90":0.00186,"93":0.00186,"94":0.00186,"97":0.00186,"101":0.00186,"102":0.00186,"103":0.01672,"104":0.00186,"106":0.12077,"107":0.02973,"109":1.3935,"111":0.04088,"112":0.00743,"113":0.00186,"114":0.00372,"115":0.01858,"116":0.00186,"117":0.00186,"119":0.06875,"120":0.06317,"121":0.615,"122":3.29423,"123":0.94201,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 41 42 44 45 48 51 52 53 54 55 56 57 58 59 60 61 62 63 65 67 69 71 72 73 74 76 77 80 84 85 87 88 89 91 92 95 96 98 99 100 105 108 110 118 124 125 126"},F:{"95":0.01672,"104":0.04645,"107":0.03716,"108":0.02787,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00186,"14":0.01115,"17":0.00557,"18":0.00557,"84":0.00186,"92":0.00372,"107":0.01115,"109":0.02044,"111":0.00186,"114":0.00186,"115":0.00186,"116":0.00186,"118":0.00372,"119":0.02044,"120":0.05946,"121":0.08918,"122":2.95236,"123":0.30843,_:"13 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 112 113 117"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.3 16.5 16.6 17.1 17.2 17.3 17.5","15.6":0.04088,"16.2":0.00372,"16.4":0.00186,"17.0":0.00372,"17.4":0.00372},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00133,"5.0-5.1":0.00066,"6.0-6.1":0.00398,"7.0-7.1":0.00464,"8.1-8.4":0.00133,"9.0-9.2":0.00265,"9.3":0.01657,"10.0-10.2":0.00265,"10.3":0.02784,"11.0-11.2":0.01988,"11.3-11.4":0.00663,"12.0-12.1":0.00596,"12.2-12.5":0.11466,"13.0-13.1":0.00199,"13.2":0.01988,"13.3":0.00596,"13.4-13.7":0.02253,"14.0-14.4":0.04308,"14.5-14.8":0.0676,"15.0-15.1":0.02916,"15.2-15.3":0.03446,"15.4":0.04043,"15.5":0.0517,"15.6-15.8":0.43278,"16.0":0.10538,"16.1":0.21805,"16.2":0.10538,"16.3":0.18756,"16.4":0.03977,"16.5":0.08417,"16.6-16.7":0.63757,"17.0":0.08284,"17.1":0.16569,"17.2":0.26709,"17.3":3.28728,"17.4":0.48249,"17.5":0},P:{"4":0.27479,"20":0.01018,"21":0.06107,"22":0.05089,"23":0.14249,"24":0.11195,"5.0-5.4":0.01018,_:"6.2-6.4 8.2 10.1 11.1-11.2 12.0 14.0","7.2-7.4":0.26462,"9.2":0.01018,"13.0":0.01018,"15.0":0.03053,"16.0":0.01018,"17.0":0.01018,"18.0":0.01018,"19.0":0.17302},I:{"0":0.00811,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.38967,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00186,_:"6 7 8 9 10 5.5"},S:{"2.5":0.85491,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":80.26911},R:{_:"0"},M:{"0":0.00814},Q:{_:"14.9"},O:{"0":0.01628},H:{"0":0.05}}; +module.exports={C:{"56":0.0254,"78":0.00318,"115":0.02223,"124":0.19685,"125":0.18415,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"11":0.17145,"33":0.00635,"46":0.00318,"51":0.00318,"64":0.00318,"68":0.00318,"70":0.00318,"73":0.00318,"75":0.00635,"81":0.05398,"83":0.0127,"87":0.00635,"88":0.00318,"89":0.0254,"103":0.0508,"106":0.24765,"108":0.00318,"109":4.21323,"111":0.00635,"114":0.00635,"116":0.00318,"117":0.00953,"118":0.00318,"119":0.02858,"120":0.01588,"121":0.05715,"122":0.20638,"123":7.28663,"124":4.63233,"125":0.19685,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 69 71 72 74 76 77 78 79 80 84 85 86 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 107 110 112 113 115 126 127"},F:{"40":0.00318,"95":0.00635,"104":0.01588,"108":0.3556,"109":0.0127,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 105 106 107 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00318,"15":0.00635,"18":0.0127,"90":0.01905,"92":0.00635,"107":0.01588,"109":0.17463,"114":0.00635,"119":0.02858,"120":0.1143,"121":0.30163,"122":0.24765,"123":3.72745,"124":3.28613,_:"12 13 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112 113 115 116 117 118"},E:{"13":0.00318,_:"0 4 5 6 7 8 9 10 11 12 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.4 16.5 17.1 17.2 17.5","15.6":0.01905,"16.2":0.00318,"16.3":0.01588,"16.6":0.00953,"17.0":0.00318,"17.3":0.00318,"17.4":0.03175},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00109,"5.0-5.1":0.00109,"6.0-6.1":0.00272,"7.0-7.1":0.00435,"8.1-8.4":0.00109,"9.0-9.2":0.00272,"9.3":0.0136,"10.0-10.2":0.00272,"10.3":0.02176,"11.0-11.2":0.01849,"11.3-11.4":0.00544,"12.0-12.1":0.00381,"12.2-12.5":0.08866,"13.0-13.1":0.00163,"13.2":0.01795,"13.3":0.00435,"13.4-13.7":0.01686,"14.0-14.4":0.03318,"14.5-14.8":0.05059,"15.0-15.1":0.02339,"15.2-15.3":0.02665,"15.4":0.03046,"15.5":0.03862,"15.6-15.8":0.33725,"16.0":0.07887,"16.1":0.16427,"16.2":0.07887,"16.3":0.13925,"16.4":0.02883,"16.5":0.06038,"16.6-16.7":0.47705,"17.0":0.05712,"17.1":0.10553,"17.2":0.14034,"17.3":1.02372,"17.4":2.31071,"17.5":0.02121},P:{"4":0.28217,"21":0.12541,"22":0.0627,"23":0.10451,"24":0.17766,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0","7.2-7.4":0.15676,"17.0":0.0209,"18.0":0.01045,"19.0":0.0627},I:{"0":0.0068,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.01588,_:"6 7 8 9 10 5.5"},K:{"0":0.41728,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.75758,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02048},H:{"0":0.04},L:{"0":66.0394},R:{_:"0"},M:{"0":0.04095}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js index e8152b607644f4..a4df203501ff50 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/GY.js @@ -1 +1 @@ -module.exports={C:{"103":0.02195,"110":0.01254,"111":0.00627,"115":0.06586,"120":0.00314,"121":0.00314,"122":0.02509,"123":0.46413,"124":0.08781,"125":0.00314,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 112 113 114 116 117 118 119 126 127 3.5 3.6"},D:{"11":0.00627,"49":0.00627,"54":0.00627,"57":0.00314,"63":0.00627,"65":0.00314,"66":0.00627,"69":0.06272,"73":0.02822,"75":0.00627,"76":0.00941,"77":0.00627,"78":0.00314,"79":0.10662,"81":0.01254,"83":0.00941,"86":0.04077,"87":0.06586,"88":0.01254,"89":0.02509,"90":0.00941,"91":0.00314,"93":0.05018,"95":0.00314,"97":0.00941,"98":0.00941,"102":0.01254,"103":0.30106,"104":0.00627,"105":0.02822,"106":0.00314,"107":0.00627,"108":0.00627,"109":0.30419,"110":0.02195,"111":0.01254,"112":0.0345,"113":0.03136,"114":0.0345,"115":0.01568,"116":0.03763,"117":0.02195,"118":0.08781,"119":0.08781,"120":0.20698,"121":1.09133,"122":11.64397,"123":3.07642,"124":0.00627,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 55 56 58 59 60 61 62 64 67 68 70 71 72 74 80 84 85 92 94 96 99 100 101 125 126"},F:{"46":0.00314,"89":0.00314,"95":0.01882,"106":0.00941,"107":1.2889,"108":0.17875,"109":0.00314,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00941,"15":0.00314,"16":0.00627,"17":0.00314,"18":0.00941,"92":0.06272,"97":0.00314,"100":0.00627,"109":0.03136,"113":0.00314,"114":0.00314,"117":0.00627,"118":0.01882,"119":0.00941,"120":0.01882,"121":0.17248,"122":4.53152,"123":0.40454,_:"13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 101 102 103 104 105 106 107 108 110 111 112 115 116"},E:{"14":0.01254,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 17.5","12.1":0.00627,"13.1":0.00627,"14.1":0.01254,"15.4":0.00627,"15.5":0.00941,"15.6":0.10035,"16.0":0.16307,"16.1":0.00941,"16.2":0.01882,"16.3":0.05018,"16.4":0.00314,"16.5":0.02822,"16.6":0.08467,"17.0":0.00941,"17.1":0.10349,"17.2":0.15366,"17.3":0.55821,"17.4":0.31987},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00316,"5.0-5.1":0.00158,"6.0-6.1":0.00948,"7.0-7.1":0.01105,"8.1-8.4":0.00316,"9.0-9.2":0.00632,"9.3":0.03948,"10.0-10.2":0.00632,"10.3":0.06633,"11.0-11.2":0.04738,"11.3-11.4":0.01579,"12.0-12.1":0.01421,"12.2-12.5":0.2732,"13.0-13.1":0.00474,"13.2":0.04738,"13.3":0.01421,"13.4-13.7":0.05369,"14.0-14.4":0.10265,"14.5-14.8":0.16108,"15.0-15.1":0.06948,"15.2-15.3":0.08212,"15.4":0.09633,"15.5":0.12318,"15.6-15.8":1.0312,"16.0":0.25109,"16.1":0.51955,"16.2":0.25109,"16.3":0.44691,"16.4":0.09475,"16.5":0.20056,"16.6-16.7":1.51917,"17.0":0.1974,"17.1":0.39479,"17.2":0.63641,"17.3":7.83271,"17.4":1.14964,"17.5":0},P:{"4":0.12069,"20":0.03291,"21":0.13166,"22":0.10972,"23":1.77739,"24":2.06265,"5.0-5.4":0.01097,_:"6.2-6.4 8.2 9.2 10.1 14.0 15.0","7.2-7.4":0.29623,"11.1-11.2":0.01097,"12.0":0.02194,"13.0":0.01097,"16.0":0.05486,"17.0":0.04389,"18.0":0.02194,"19.0":0.18652},I:{"0":0.04101,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.49414,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.01725,"11":0.01725,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.74269},R:{_:"0"},M:{"0":0.08922},Q:{"14.9":0.08236},O:{"0":0.56277},H:{"0":0}}; +module.exports={C:{"88":0.00299,"110":0.00299,"111":0.00898,"115":0.02993,"116":0.00299,"120":0.00299,"122":0.00299,"123":0.11972,"124":0.23645,"125":0.16162,"126":0.00898,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 112 113 114 117 118 119 121 127 128 3.5 3.6"},D:{"11":0.00898,"39":0.00299,"57":0.00599,"58":0.00599,"63":0.00299,"65":0.00599,"68":0.00299,"69":0.10775,"70":0.00599,"73":0.00898,"75":0.00599,"76":0.02993,"77":0.00599,"79":0.05088,"80":0.00299,"83":0.02095,"86":0.03292,"87":0.0419,"88":0.00299,"89":0.00898,"90":0.01497,"91":0.00299,"92":0.00299,"93":0.0449,"94":0.00299,"95":0.00299,"97":0.00599,"98":0.02694,"99":0.00299,"101":0.00299,"102":0.01796,"103":0.05687,"104":0.00299,"105":0.02993,"106":0.01497,"107":0.01497,"108":0.01497,"109":0.29331,"110":0.04789,"111":0.01497,"112":0.02394,"113":0.00898,"114":0.05088,"115":0.00898,"116":0.03592,"117":0.03891,"118":0.02095,"119":0.06884,"120":0.06884,"121":0.10775,"122":1.05054,"123":11.25967,"124":4.08245,"125":0.01796,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 59 60 61 62 64 66 67 71 72 74 78 81 84 85 96 100 126 127"},F:{"28":0.00299,"95":0.01796,"102":0.00299,"107":1.05653,"108":0.32923,"109":0.11074,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00299,"15":0.00599,"16":0.00299,"18":0.01197,"92":0.01197,"99":0.00299,"100":0.00898,"102":0.00299,"104":0.00299,"109":0.03891,"115":0.00299,"116":0.00299,"117":0.01197,"118":0.00599,"119":0.01197,"120":0.0449,"121":0.0449,"122":0.32025,"123":3.31624,"124":1.55337,_:"13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 101 103 105 106 107 108 110 111 112 113 114"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.08979,"14.1":0.00898,"15.1":0.00599,"15.4":0.00599,"15.5":0.00599,"15.6":0.06585,"16.0":0.01197,"16.1":0.00299,"16.2":0.01796,"16.3":0.02394,"16.4":0.01796,"16.5":0.0419,"16.6":0.11373,"17.0":0.01497,"17.1":0.01497,"17.2":0.16761,"17.3":0.18557,"17.4":0.45194,"17.5":0.00299},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00308,"5.0-5.1":0.00308,"6.0-6.1":0.00771,"7.0-7.1":0.01233,"8.1-8.4":0.00308,"9.0-9.2":0.00771,"9.3":0.03854,"10.0-10.2":0.00771,"10.3":0.06166,"11.0-11.2":0.05241,"11.3-11.4":0.01542,"12.0-12.1":0.01079,"12.2-12.5":0.25127,"13.0-13.1":0.00462,"13.2":0.05087,"13.3":0.01233,"13.4-13.7":0.04779,"14.0-14.4":0.09403,"14.5-14.8":0.14336,"15.0-15.1":0.06629,"15.2-15.3":0.07554,"15.4":0.08633,"15.5":0.10945,"15.6-15.8":0.95575,"16.0":0.22352,"16.1":0.46555,"16.2":0.22352,"16.3":0.39463,"16.4":0.0817,"16.5":0.17111,"16.6-16.7":1.35193,"17.0":0.16186,"17.1":0.29906,"17.2":0.39772,"17.3":2.90118,"17.4":6.54846,"17.5":0.06012},P:{"4":0.18744,"20":0.01103,"21":0.09923,"22":0.09923,"23":0.2536,"24":4.30011,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.3418,"11.1-11.2":0.02205,"12.0":0.02205,"13.0":0.01103,"14.0":0.01103,"15.0":0.01103,"16.0":0.01103,"17.0":0.01103,"18.0":0.02205,"19.0":0.14334},I:{"0":0.02791,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"10":0.00599,"11":0.01497,_:"6 7 8 9 5.5"},K:{"0":0.39239,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.04204},O:{"0":0.43443},H:{"0":0},L:{"0":50.57078},R:{_:"0"},M:{"0":0.11912}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js index 688834b08d6e8e..1415207f70c472 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HK.js @@ -1 +1 @@ -module.exports={C:{"34":0.02931,"52":0.00977,"72":0.00977,"78":0.00489,"88":0.00489,"102":0.00977,"104":0.00489,"111":0.00489,"115":2.66233,"117":0.00489,"118":0.00489,"119":0.00489,"120":0.00489,"121":0.00977,"122":0.01954,"123":0.60086,"124":0.26868,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 105 106 107 108 109 110 112 113 114 116 125 126 127 3.5 3.6"},D:{"11":0.00489,"21":0.01466,"25":0.00489,"26":0.00977,"30":0.00977,"34":0.05374,"38":0.13678,"48":0.00489,"49":0.02931,"53":0.01954,"55":0.01466,"56":0.00489,"60":0.01466,"61":0.03908,"62":0.00489,"63":0.00489,"65":0.00489,"66":0.00489,"67":0.01466,"68":0.00489,"69":0.00977,"70":0.00489,"71":0.00489,"72":0.00489,"73":0.01466,"74":0.03908,"75":0.00977,"76":0.00489,"78":0.02443,"79":0.54712,"80":0.01466,"81":0.01954,"83":0.04885,"84":0.00489,"85":0.00489,"86":0.02931,"87":0.47385,"88":0.00489,"89":0.01954,"90":0.00977,"91":0.0342,"92":0.00977,"93":0.00489,"94":0.11724,"95":0.00977,"96":0.01466,"97":0.02931,"98":0.0342,"99":0.07816,"100":0.01466,"101":0.02443,"102":0.0342,"103":0.10259,"104":0.02443,"105":0.02443,"106":0.00977,"107":0.0342,"108":0.03908,"109":1.42154,"110":0.01954,"111":0.03908,"112":0.14167,"113":0.05862,"114":0.08793,"115":0.03908,"116":2.67698,"117":0.0977,"118":0.05862,"119":0.18563,"120":0.53735,"121":1.35315,"122":13.57542,"123":3.90312,"124":0.04397,"125":0.00977,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 50 51 52 54 57 58 59 64 77 126"},F:{"28":0.00977,"36":0.02931,"40":0.00489,"46":0.11724,"95":0.04885,"102":2.50601,"106":0.00489,"107":0.11236,"108":0.0342,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00489,"18":0.02931,"83":0.00489,"92":0.00489,"108":0.00489,"109":0.1319,"110":0.00489,"111":0.00489,"112":0.00977,"113":0.02443,"114":0.01954,"115":0.01466,"116":0.00977,"117":0.02443,"118":0.01466,"119":0.02443,"120":0.06839,"121":0.16609,"122":3.8445,"123":0.3273,_:"12 13 14 15 16 79 80 81 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107"},E:{"8":0.00489,"12":0.00489,"13":0.03908,"14":0.11236,"15":0.0342,_:"0 4 5 6 7 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.01466,"11.1":0.01466,"12.1":0.02931,"13.1":0.09282,"14.1":0.26379,"15.1":0.03908,"15.2-15.3":0.02931,"15.4":0.15632,"15.5":0.16121,"15.6":0.76206,"16.0":0.05862,"16.1":0.11724,"16.2":0.11236,"16.3":0.36149,"16.4":0.08305,"16.5":0.16609,"16.6":1.07959,"17.0":0.06839,"17.1":0.29799,"17.2":0.50316,"17.3":3.05313,"17.4":0.32241},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00418,"5.0-5.1":0.00209,"6.0-6.1":0.01255,"7.0-7.1":0.01464,"8.1-8.4":0.00418,"9.0-9.2":0.00837,"9.3":0.0523,"10.0-10.2":0.00837,"10.3":0.08787,"11.0-11.2":0.06276,"11.3-11.4":0.02092,"12.0-12.1":0.01883,"12.2-12.5":0.36194,"13.0-13.1":0.00628,"13.2":0.06276,"13.3":0.01883,"13.4-13.7":0.07113,"14.0-14.4":0.13599,"14.5-14.8":0.2134,"15.0-15.1":0.09205,"15.2-15.3":0.10879,"15.4":0.12762,"15.5":0.16319,"15.6-15.8":1.36617,"16.0":0.33265,"16.1":0.68831,"16.2":0.33265,"16.3":0.59207,"16.4":0.12553,"16.5":0.2657,"16.6-16.7":2.01264,"17.0":0.26152,"17.1":0.52303,"17.2":0.84313,"17.3":10.377,"17.4":1.52308,"17.5":0},P:{"4":1.06507,"20":0.03436,"21":0.12598,"22":0.10307,"23":2.51952,"24":2.73711,"5.0-5.4":0.18324,"6.2-6.4":0.08017,_:"7.2-7.4 8.2 10.1 11.1-11.2 12.0 15.0","9.2":0.01145,"13.0":0.0229,"14.0":0.01145,"16.0":0.0229,"17.0":0.05726,"18.0":0.0229,"19.0":0.0229},I:{"0":0.18844,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00045},K:{"0":0.10228,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.10356,"11":0.41425,_:"6 7 8 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":23.81566},R:{_:"0"},M:{"0":0.2557},Q:{"14.9":0.10228},O:{"0":0.31707},H:{"0":0}}; +module.exports={C:{"34":0.03445,"52":0.00984,"78":0.00492,"81":0.00492,"88":0.00984,"102":0.00492,"104":0.00492,"108":0.00492,"111":0.00984,"115":2.71639,"117":0.00492,"118":0.00492,"119":0.00492,"121":0.05413,"122":0.00984,"123":0.01968,"124":0.59544,"125":0.31987,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 105 106 107 109 110 112 113 114 116 120 126 127 128 3.5 3.6"},D:{"11":0.00492,"21":0.00492,"25":0.00492,"26":0.00492,"30":0.00984,"34":0.06397,"38":0.14763,"49":0.02461,"53":0.02461,"55":0.00984,"56":0.00492,"57":0.00492,"60":0.00492,"61":0.04921,"62":0.00492,"63":0.00492,"65":0.00492,"66":0.00492,"67":0.01476,"68":0.00492,"69":0.00492,"70":0.00492,"71":0.00492,"72":0.00492,"73":0.00492,"74":0.04429,"75":0.00984,"76":0.00492,"78":0.02461,"79":0.55607,"80":0.02461,"81":0.01476,"83":0.03445,"84":0.00492,"85":0.00492,"86":0.02953,"87":0.42813,"88":0.00492,"89":0.01968,"90":0.00984,"91":0.00984,"92":0.00984,"93":0.00492,"94":0.2116,"95":0.00984,"96":0.01476,"97":0.02953,"98":0.02953,"99":0.06889,"100":0.00984,"101":0.02461,"102":0.03445,"103":0.09842,"104":0.01968,"105":0.01968,"106":0.01476,"107":0.02953,"108":0.03937,"109":1.42217,"110":0.02953,"111":0.03937,"112":0.19192,"113":0.07382,"114":0.08858,"115":0.02953,"116":2.75576,"117":0.07874,"118":0.05905,"119":0.15747,"120":0.31002,"121":0.3986,"122":0.91039,"123":13.15383,"124":5.3196,"125":0.04429,"126":0.00984,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 27 28 29 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 58 59 64 77 127"},F:{"28":0.00984,"36":0.02953,"40":0.00984,"46":0.13779,"95":0.03937,"102":2.56876,"107":0.04429,"108":0.07382,"109":0.02461,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00492,"18":0.00492,"92":0.00984,"108":0.00492,"109":0.12795,"110":0.00492,"111":0.00492,"112":0.00984,"113":0.02461,"114":0.01476,"115":0.01476,"116":0.00984,"117":0.02461,"118":0.01476,"119":0.01968,"120":0.04429,"121":0.04429,"122":0.20176,"123":2.74592,"124":1.31883,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107"},E:{"7":0.00492,"8":0.00492,"12":0.00492,"13":0.02461,"14":0.11318,"15":0.03445,_:"0 4 5 6 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00492,"11.1":0.00492,"12.1":0.02953,"13.1":0.0935,"14.1":0.25589,"15.1":0.03445,"15.2-15.3":0.02953,"15.4":0.15255,"15.5":0.14271,"15.6":0.74799,"16.0":0.05905,"16.1":0.10826,"16.2":0.10826,"16.3":0.34447,"16.4":0.07382,"16.5":0.14271,"16.6":1.01373,"17.0":0.05905,"17.1":0.20668,"17.2":0.30018,"17.3":1.24009,"17.4":2.54908,"17.5":0.00492},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00403,"5.0-5.1":0.00403,"6.0-6.1":0.01007,"7.0-7.1":0.01611,"8.1-8.4":0.00403,"9.0-9.2":0.01007,"9.3":0.05034,"10.0-10.2":0.01007,"10.3":0.08054,"11.0-11.2":0.06846,"11.3-11.4":0.02013,"12.0-12.1":0.01409,"12.2-12.5":0.32819,"13.0-13.1":0.00604,"13.2":0.06644,"13.3":0.01611,"13.4-13.7":0.06242,"14.0-14.4":0.12282,"14.5-14.8":0.18725,"15.0-15.1":0.08658,"15.2-15.3":0.09866,"15.4":0.11275,"15.5":0.14295,"15.6-15.8":1.24832,"16.0":0.29195,"16.1":0.60805,"16.2":0.29195,"16.3":0.51544,"16.4":0.10671,"16.5":0.22349,"16.6-16.7":1.76578,"17.0":0.21141,"17.1":0.3906,"17.2":0.51946,"17.3":3.78927,"17.4":8.55304,"17.5":0.07852},P:{"4":1.22464,"20":0.03434,"21":0.1259,"22":0.09156,"23":0.29758,"24":4.73834,"5.0-5.4":0.20601,"6.2-6.4":0.10301,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0","13.0":0.02289,"14.0":0.01145,"16.0":0.02289,"17.0":0.05723,"18.0":0.02289,"19.0":0.02289},I:{"0":0.04551,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"9":0.11154,"11":0.3904,_:"6 7 8 10 5.5"},K:{"0":0.10664,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.12187},O:{"0":0.2996},H:{"0":0},L:{"0":23.54895},R:{_:"0"},M:{"0":0.31484}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HN.js index 45231c9e26bd3b..91c5b7e5416b19 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HN.js @@ -1 +1 @@ -module.exports={C:{"4":0.04787,"52":0.00736,"73":0.09205,"78":0.00368,"88":0.00736,"102":0.00368,"105":0.00736,"108":0.01105,"113":0.00736,"114":0.01105,"115":0.06628,"116":0.01841,"117":0.02946,"118":0.00736,"119":0.00368,"121":0.00736,"122":0.09573,"123":0.56335,"124":0.20251,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 109 110 111 112 120 125 126 127 3.5 3.6"},D:{"11":0.00368,"37":0.00368,"38":0.00368,"47":0.0405,"49":0.00736,"55":0.00368,"63":0.00368,"65":0.00736,"68":0.00368,"69":0.00736,"70":0.00368,"71":0.00368,"73":0.00736,"74":0.00368,"75":0.01105,"76":0.01473,"77":0.00368,"79":0.09941,"81":0.01473,"83":0.00368,"84":0.00368,"85":0.00736,"86":0.01105,"87":0.11046,"88":0.02577,"89":0.00368,"90":0.00368,"91":0.00736,"92":0.00368,"93":0.03682,"94":0.04787,"96":0.00736,"97":0.00368,"98":0.00736,"99":0.02209,"101":0.01473,"102":0.01473,"103":0.09941,"104":0.00368,"105":0.03314,"106":0.01105,"107":0.00368,"108":0.68485,"109":1.2077,"110":0.0405,"111":0.01473,"112":0.02209,"113":0.01105,"114":0.02577,"115":0.01841,"116":0.17674,"117":0.11414,"118":0.02577,"119":0.081,"120":0.27615,"121":1.59799,"122":15.06674,"123":3.62677,"124":0.00368,"125":0.02946,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 43 44 45 46 48 50 51 52 53 54 56 57 58 59 60 61 62 64 66 67 72 78 80 95 100 126"},F:{"86":0.01105,"95":0.05155,"99":0.00368,"101":0.00368,"103":0.00736,"105":0.00368,"106":0.02577,"107":2.00669,"108":0.23933,"109":0.00368,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 100 102 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00368,"18":0.00368,"90":0.00368,"92":0.04418,"100":0.00736,"109":0.02946,"110":0.00368,"111":0.01105,"112":0.00368,"113":0.00368,"114":0.03314,"115":0.00368,"116":0.01105,"117":0.00736,"118":0.00736,"119":0.01473,"120":0.0405,"121":0.17305,"122":4.34844,"123":0.23933,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108"},E:{"14":0.00736,"15":0.00368,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.01105,"13.1":0.00736,"14.1":0.02946,"15.1":0.00368,"15.2-15.3":0.00368,"15.4":0.00736,"15.5":0.01841,"15.6":0.09205,"16.0":0.01105,"16.1":0.01473,"16.2":0.01105,"16.3":0.04418,"16.4":0.01473,"16.5":0.02577,"16.6":0.1031,"17.0":0.03682,"17.1":0.04787,"17.2":0.1031,"17.3":0.42711,"17.4":0.09205},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00223,"5.0-5.1":0.00112,"6.0-6.1":0.0067,"7.0-7.1":0.00781,"8.1-8.4":0.00223,"9.0-9.2":0.00446,"9.3":0.0279,"10.0-10.2":0.00446,"10.3":0.04687,"11.0-11.2":0.03348,"11.3-11.4":0.01116,"12.0-12.1":0.01004,"12.2-12.5":0.19306,"13.0-13.1":0.00335,"13.2":0.03348,"13.3":0.01004,"13.4-13.7":0.03794,"14.0-14.4":0.07254,"14.5-14.8":0.11383,"15.0-15.1":0.0491,"15.2-15.3":0.05803,"15.4":0.06807,"15.5":0.08704,"15.6-15.8":0.72871,"16.0":0.17743,"16.1":0.36714,"16.2":0.17743,"16.3":0.31581,"16.4":0.06696,"16.5":0.14172,"16.6-16.7":1.07353,"17.0":0.13949,"17.1":0.27898,"17.2":0.44972,"17.3":5.53504,"17.4":0.8124,"17.5":0},P:{"4":0.22343,"20":0.03192,"21":0.06384,"22":0.07448,"23":1.20225,"24":1.34056,"5.0-5.4":0.02128,"6.2-6.4":0.02128,"7.2-7.4":0.10639,_:"8.2 10.1 12.0","9.2":0.04256,"11.1-11.2":0.04256,"13.0":0.01064,"14.0":0.02128,"15.0":0.01064,"16.0":0.04256,"17.0":0.02128,"18.0":0.01064,"19.0":0.04256},I:{"0":0.06293,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.29067,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01841,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":51.06031},R:{_:"0"},M:{"0":0.14534},Q:{_:"14.9"},O:{"0":0.08847},H:{"0":0}}; +module.exports={C:{"4":0.03094,"52":0.00387,"66":0.00387,"73":0.04255,"82":0.00387,"94":0.00387,"105":0.00774,"108":0.00774,"113":0.01547,"115":0.06576,"116":0.00774,"117":0.00774,"121":0.00387,"122":0.00387,"123":0.04255,"124":0.51831,"125":0.3752,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 106 107 109 110 111 112 114 118 119 120 126 127 128 3.5 3.6"},D:{"11":0.00387,"38":0.00387,"39":0.00387,"47":0.03481,"49":0.00387,"63":0.00387,"65":0.00774,"68":0.00387,"69":0.00387,"70":0.00387,"73":0.0116,"74":0.00387,"75":0.00774,"76":0.00774,"77":0.00387,"79":0.08896,"80":0.03094,"81":0.00774,"83":0.00774,"85":0.00774,"86":0.00387,"87":0.08896,"88":0.02708,"89":0.00387,"90":0.00387,"91":0.00774,"92":0.00387,"93":0.03094,"94":0.05028,"95":0.00387,"96":0.00387,"97":0.00387,"98":0.01547,"99":0.02321,"101":0.00774,"102":0.00387,"103":0.1083,"104":0.00387,"105":0.02321,"106":0.01934,"107":0.00387,"108":0.22048,"109":1.41569,"110":0.02708,"111":0.00774,"112":0.00387,"113":0.01547,"114":0.01934,"115":0.05028,"116":0.14698,"117":0.04642,"118":0.0116,"119":0.08896,"120":0.1083,"121":0.21274,"122":1.09464,"123":15.47974,"124":6.06502,"125":0.0116,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 67 71 72 78 84 100 126 127"},F:{"36":0.00387,"40":0.00387,"86":0.0116,"95":0.04642,"99":0.00774,"105":0.00387,"107":1.48918,"108":0.58407,"109":0.17019,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00387,"89":0.00387,"92":0.08896,"98":0.00387,"100":0.00387,"102":0.00387,"109":0.03868,"110":0.0116,"114":0.03481,"115":0.00774,"116":0.00774,"117":0.0116,"119":0.00774,"120":0.02321,"121":0.02708,"122":0.33265,"123":3.16016,"124":1.52786,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 99 101 103 104 105 106 107 108 111 112 113 118"},E:{"14":0.00387,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.0116,"13.1":0.0116,"14.1":0.01547,"15.1":0.00774,"15.2-15.3":0.00387,"15.4":0.00774,"15.5":0.00774,"15.6":0.09283,"16.0":0.0116,"16.1":0.01547,"16.2":0.01547,"16.3":0.03094,"16.4":0.02708,"16.5":0.05802,"16.6":0.11604,"17.0":0.03094,"17.1":0.03481,"17.2":0.07349,"17.3":0.15472,"17.4":0.61114,"17.5":0.01934},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00216,"5.0-5.1":0.00216,"6.0-6.1":0.0054,"7.0-7.1":0.00864,"8.1-8.4":0.00216,"9.0-9.2":0.0054,"9.3":0.027,"10.0-10.2":0.0054,"10.3":0.04319,"11.0-11.2":0.03671,"11.3-11.4":0.0108,"12.0-12.1":0.00756,"12.2-12.5":0.17601,"13.0-13.1":0.00324,"13.2":0.03563,"13.3":0.00864,"13.4-13.7":0.03348,"14.0-14.4":0.06587,"14.5-14.8":0.10043,"15.0-15.1":0.04643,"15.2-15.3":0.05291,"15.4":0.06047,"15.5":0.07667,"15.6-15.8":0.6695,"16.0":0.15658,"16.1":0.32611,"16.2":0.15658,"16.3":0.27644,"16.4":0.05723,"16.5":0.11986,"16.6-16.7":0.94702,"17.0":0.11338,"17.1":0.20949,"17.2":0.2786,"17.3":2.03227,"17.4":4.58718,"17.5":0.04211},P:{"4":0.18549,"20":0.03092,"21":0.06183,"22":0.09275,"23":0.28854,"24":1.81371,"5.0-5.4":0.01031,"6.2-6.4":0.03092,"7.2-7.4":0.10305,_:"8.2 10.1 12.0 15.0","9.2":0.01031,"11.1-11.2":0.06183,"13.0":0.02061,"14.0":0.01031,"16.0":0.04122,"17.0":0.02061,"18.0":0.01031,"19.0":0.06183},I:{"0":0.05496,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"11":0.01547,_:"6 7 8 9 10 5.5"},K:{"0":0.35566,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.07972},H:{"0":0},L:{"0":49.22382},R:{_:"0"},M:{"0":0.18396}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js index 02144efed9d4f6..8ba5879801b39c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HR.js @@ -1 +1 @@ -module.exports={C:{"52":0.05051,"63":0.00421,"68":0.00421,"74":0.00421,"77":0.00421,"78":0.00421,"84":0.00421,"88":0.00842,"89":0.00421,"91":0.00421,"96":0.00421,"98":0.00421,"99":0.00421,"102":0.00421,"103":0.00421,"104":0.00421,"105":0.00421,"108":0.00842,"109":0.00842,"110":0.00421,"111":0.01263,"112":0.00842,"113":0.01684,"115":0.57242,"116":0.00421,"117":0.00421,"118":0.00421,"119":0.02105,"120":0.01684,"121":0.01684,"122":0.07155,"123":2.23498,"124":0.8418,"125":0.00421,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 69 70 71 72 73 75 76 79 80 81 82 83 85 86 87 90 92 93 94 95 97 100 101 106 107 114 126 127 3.5 3.6"},D:{"34":0.00421,"41":0.00421,"43":0.00421,"44":0.00421,"47":0.00421,"49":0.02525,"51":0.00421,"53":0.00842,"54":0.00421,"58":0.00421,"65":0.00421,"66":0.00421,"69":0.00842,"70":0.00421,"71":0.00421,"74":0.00421,"75":0.01263,"76":0.00421,"77":0.02946,"79":0.21887,"80":0.00421,"81":0.07155,"83":0.00421,"85":0.00421,"86":0.00421,"87":0.22729,"88":0.02105,"89":0.00421,"90":0.00421,"91":0.00842,"92":0.00421,"93":0.00842,"94":0.02525,"95":0.00842,"96":0.00842,"97":0.01263,"98":0.00421,"99":0.01684,"100":0.00421,"101":0.00842,"102":0.00842,"103":0.07155,"104":0.00421,"105":0.01684,"106":0.05472,"107":0.00842,"108":0.02525,"109":1.91089,"110":0.02525,"111":0.02105,"112":0.01263,"113":0.02525,"114":0.05893,"115":0.01263,"116":0.14732,"117":0.03367,"118":0.03788,"119":0.09681,"120":0.31568,"121":1.38055,"122":18.54906,"123":5.47591,"124":0.00421,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 42 45 46 48 50 52 55 56 57 59 60 61 62 63 64 67 68 72 73 78 84 125 126"},F:{"28":0.00421,"32":0.00421,"36":0.00421,"46":0.03367,"85":0.00421,"86":0.01263,"95":0.06734,"102":0.00421,"106":0.01263,"107":1.64572,"108":0.35356,"109":0.00421,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00421,"92":0.00421,"96":0.00421,"104":0.01263,"105":0.00421,"106":0.00842,"108":0.00421,"109":0.06734,"110":0.00421,"111":0.00421,"112":0.00421,"113":0.00421,"114":0.00421,"115":0.00421,"116":0.00842,"117":0.00421,"118":0.01684,"119":0.01684,"120":0.03367,"121":0.12627,"122":3.11466,"123":0.24833,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 103 107"},E:{"9":0.00421,"14":0.01684,"15":0.00421,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00421,"12.1":0.00421,"13.1":0.03367,"14.1":0.08418,"15.1":0.00842,"15.2-15.3":0.00842,"15.4":0.00842,"15.5":0.02105,"15.6":0.11364,"16.0":0.02525,"16.1":0.02525,"16.2":0.01684,"16.3":0.0463,"16.4":0.04209,"16.5":0.03367,"16.6":0.15152,"17.0":0.02525,"17.1":0.07997,"17.2":0.13048,"17.3":0.39565,"17.4":0.10943},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00194,"5.0-5.1":0.00097,"6.0-6.1":0.00581,"7.0-7.1":0.00678,"8.1-8.4":0.00194,"9.0-9.2":0.00388,"9.3":0.02422,"10.0-10.2":0.00388,"10.3":0.04069,"11.0-11.2":0.02907,"11.3-11.4":0.00969,"12.0-12.1":0.00872,"12.2-12.5":0.16761,"13.0-13.1":0.00291,"13.2":0.02907,"13.3":0.00872,"13.4-13.7":0.03294,"14.0-14.4":0.06297,"14.5-14.8":0.09882,"15.0-15.1":0.04263,"15.2-15.3":0.05038,"15.4":0.0591,"15.5":0.07557,"15.6-15.8":0.63265,"16.0":0.15404,"16.1":0.31875,"16.2":0.15404,"16.3":0.27418,"16.4":0.05813,"16.5":0.12304,"16.6-16.7":0.93202,"17.0":0.1211,"17.1":0.24221,"17.2":0.39044,"17.3":4.80542,"17.4":0.70531,"17.5":0},P:{"4":0.4359,"20":0.03114,"21":0.04151,"22":0.06227,"23":2.34558,"24":1.56718,"5.0-5.4":0.07265,"6.2-6.4":0.10379,"7.2-7.4":0.01038,_:"8.2 9.2 12.0 14.0","10.1":0.01038,"11.1-11.2":0.01038,"13.0":0.01038,"15.0":0.02076,"16.0":0.02076,"17.0":0.01038,"18.0":0.01038,"19.0":0.03114},I:{"0":0.07497,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00018},K:{"0":0.68334,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00842,"11":0.1852,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":43.26479},R:{_:"0"},M:{"0":0.33009},Q:{_:"14.9"},O:{"0":0.06949},H:{"0":0}}; +module.exports={C:{"52":0.03554,"78":0.02222,"84":0.00444,"88":0.00444,"98":0.00889,"99":0.00444,"101":0.00444,"102":0.00444,"103":0.00444,"104":0.00444,"105":0.00444,"106":0.00444,"108":0.00889,"110":0.00444,"111":0.01333,"112":0.00889,"113":0.02222,"115":0.49317,"117":0.00444,"119":0.01333,"120":0.00889,"121":0.02222,"122":0.02222,"123":0.83084,"124":2.15486,"125":1.22627,"126":0.00889,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 91 92 93 94 95 96 97 100 107 109 114 116 118 127 128 3.5 3.6"},D:{"26":0.00444,"41":0.01333,"43":0.00444,"44":0.00444,"47":0.00444,"49":0.0311,"51":0.00444,"53":0.01333,"54":0.00444,"65":0.01333,"66":0.00444,"69":0.00444,"70":0.00444,"75":0.00889,"76":0.00444,"77":0.02666,"79":0.21771,"80":0.00444,"81":0.04887,"83":0.00444,"85":0.00444,"86":0.00889,"87":0.25325,"88":0.01333,"89":0.00444,"90":0.00889,"91":0.00444,"92":0.00444,"93":0.01333,"94":0.0311,"95":0.01333,"96":0.00444,"97":0.00889,"98":0.00444,"99":0.01333,"100":0.00444,"101":0.00889,"102":0.00889,"103":0.06665,"104":0.00444,"105":0.01777,"106":0.03999,"107":0.01333,"108":0.01333,"109":1.82163,"110":0.01333,"111":0.01333,"112":0.01777,"113":0.03999,"114":0.02666,"115":0.00889,"116":0.11996,"117":0.01777,"118":0.03999,"119":0.07109,"120":0.18661,"121":0.16439,"122":0.8264,"123":18.7539,"124":7.39315,"125":0.01333,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 45 46 48 50 52 55 56 57 58 59 60 61 62 63 64 67 68 71 72 73 74 78 84 126 127"},F:{"36":0.00444,"46":0.03554,"86":0.00444,"95":0.07109,"102":0.00444,"106":0.00444,"107":1.02633,"108":0.78197,"109":0.26658,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00889,"92":0.00444,"96":0.00444,"104":0.01333,"105":0.00444,"107":0.00444,"108":0.00444,"109":0.05776,"110":0.00444,"112":0.00444,"113":0.00444,"114":0.00444,"116":0.00444,"117":0.00444,"118":0.00889,"119":0.02222,"120":0.02222,"121":0.01777,"122":0.14662,"123":2.36368,"124":1.19072,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 100 101 102 103 106 111 115"},E:{"9":0.00444,"14":0.01333,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 9.1 10.1 11.1 15.2-15.3","7.1":0.00889,"12.1":0.00444,"13.1":0.01777,"14.1":0.10663,"15.1":0.00444,"15.4":0.01333,"15.5":0.01777,"15.6":0.11552,"16.0":0.02666,"16.1":0.03554,"16.2":0.01777,"16.3":0.07109,"16.4":0.0311,"16.5":0.03999,"16.6":0.15551,"17.0":0.02666,"17.1":0.06665,"17.2":0.07997,"17.3":0.17328,"17.4":0.51095,"17.5":0.00444},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00188,"5.0-5.1":0.00188,"6.0-6.1":0.0047,"7.0-7.1":0.00753,"8.1-8.4":0.00188,"9.0-9.2":0.0047,"9.3":0.02352,"10.0-10.2":0.0047,"10.3":0.03763,"11.0-11.2":0.03198,"11.3-11.4":0.00941,"12.0-12.1":0.00658,"12.2-12.5":0.15332,"13.0-13.1":0.00282,"13.2":0.03104,"13.3":0.00753,"13.4-13.7":0.02916,"14.0-14.4":0.05738,"14.5-14.8":0.08748,"15.0-15.1":0.04045,"15.2-15.3":0.04609,"15.4":0.05268,"15.5":0.06678,"15.6-15.8":0.58319,"16.0":0.13639,"16.1":0.28407,"16.2":0.13639,"16.3":0.2408,"16.4":0.04985,"16.5":0.10441,"16.6-16.7":0.82493,"17.0":0.09877,"17.1":0.18248,"17.2":0.24268,"17.3":1.77027,"17.4":3.9958,"17.5":0.03668},P:{"4":0.43583,"20":0.02075,"21":0.02075,"22":0.06226,"23":0.34244,"24":3.25838,"5.0-5.4":0.07264,"6.2-6.4":0.09339,"7.2-7.4":0.01038,_:"8.2 9.2 12.0 13.0 14.0 18.0","10.1":0.01038,"11.1-11.2":0.01038,"15.0":0.01038,"16.0":0.01038,"17.0":0.01038,"19.0":0.02075},I:{"0":0.0664,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.01333,"9":0.00444,"11":0.07553,_:"6 7 10 5.5"},K:{"0":0.57782,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00556},O:{"0":0.05},H:{"0":0},L:{"0":41.14846},R:{_:"0"},M:{"0":0.3278}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js index d312db4d1912f3..096fbc8c3e3d63 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HT.js @@ -1 +1 @@ -module.exports={C:{"77":0.0145,"88":0.01227,"91":0.00112,"115":0.01338,"122":0.00446,"123":0.07471,"124":0.03122,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"11":0.00112,"33":0.00112,"36":0.00112,"37":0.00112,"39":0.00112,"42":0.00112,"43":0.00223,"50":0.00112,"52":0.00112,"55":0.00112,"56":0.00558,"63":0.00112,"64":0.00112,"65":0.00112,"66":0.00223,"67":0.00112,"68":0.00558,"69":0.00446,"70":0.00335,"72":0.00223,"74":0.00335,"75":0.05129,"76":0.0669,"77":0.00112,"78":0.00112,"79":0.00446,"80":0.01673,"81":0.00892,"83":0.00112,"84":0.00112,"86":0.00112,"87":0.00892,"88":0.0223,"89":0.03903,"90":0.00112,"91":0.00558,"92":0.02342,"93":0.0669,"94":0.02676,"95":0.01896,"96":0.00223,"97":0.00112,"99":0.00892,"100":0.00335,"101":0.00669,"102":0.00781,"103":0.07136,"104":0.00223,"105":0.04126,"106":0.00781,"107":0.00223,"108":0.01115,"109":0.17171,"110":0.02899,"111":0.06579,"112":0.01227,"113":0.01004,"114":0.01896,"115":0.01115,"116":0.02788,"117":0.00669,"118":0.01227,"119":0.04906,"120":0.07359,"121":0.15945,"122":1.55208,"123":0.34788,"124":0.00223,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 38 40 41 44 45 46 47 48 49 51 53 54 57 58 59 60 61 62 71 73 85 98 125 126"},F:{"21":0.00112,"36":0.00112,"83":0.00112,"95":0.00223,"102":0.00112,"106":0.00112,"107":0.10258,"108":0.05018,"109":0.00112,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00781,"13":0.00781,"14":0.00669,"15":0.00223,"16":0.00335,"17":0.00223,"18":0.00781,"84":0.00112,"89":0.00112,"90":0.00223,"92":0.01227,"100":0.00112,"104":0.00112,"107":0.00781,"109":0.02565,"111":0.00781,"112":0.00112,"114":0.00446,"115":0.00446,"116":0.00223,"117":0.0145,"118":0.00223,"119":0.00669,"120":0.01673,"121":0.02342,"122":0.67681,"123":0.03234,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 105 106 108 110 113"},E:{"13":0.00335,"14":0.02007,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.4 16.0 17.5","11.1":0.00112,"12.1":0.00446,"13.1":0.00781,"14.1":0.01004,"15.1":0.00112,"15.2-15.3":0.08809,"15.5":0.00558,"15.6":0.01673,"16.1":0.00112,"16.2":0.00223,"16.3":0.00558,"16.4":0.00335,"16.5":0.00781,"16.6":0.03234,"17.0":0.00558,"17.1":0.00335,"17.2":0.0446,"17.3":0.02565,"17.4":0.05687},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00188,"5.0-5.1":0.00094,"6.0-6.1":0.00565,"7.0-7.1":0.00659,"8.1-8.4":0.00188,"9.0-9.2":0.00377,"9.3":0.02354,"10.0-10.2":0.00377,"10.3":0.03955,"11.0-11.2":0.02825,"11.3-11.4":0.00942,"12.0-12.1":0.00848,"12.2-12.5":0.16291,"13.0-13.1":0.00283,"13.2":0.02825,"13.3":0.00848,"13.4-13.7":0.03202,"14.0-14.4":0.06121,"14.5-14.8":0.09605,"15.0-15.1":0.04143,"15.2-15.3":0.04897,"15.4":0.05744,"15.5":0.07345,"15.6-15.8":0.61493,"16.0":0.14973,"16.1":0.30982,"16.2":0.14973,"16.3":0.2665,"16.4":0.0565,"16.5":0.1196,"16.6-16.7":0.90592,"17.0":0.11771,"17.1":0.23543,"17.2":0.37951,"17.3":4.67085,"17.4":0.68556,"17.5":0},P:{"4":0.31302,"20":0.04174,"21":0.08347,"22":0.08347,"23":0.53213,"24":0.11477,"5.0-5.4":0.05217,"6.2-6.4":0.01043,"7.2-7.4":0.09391,"8.2":0.01043,"9.2":0.14608,_:"10.1","11.1-11.2":0.27128,"12.0":0.01043,"13.0":0.16694,"14.0":0.08347,"15.0":0.02087,"16.0":0.26085,"17.0":0.05217,"18.0":0.04174,"19.0":0.0626},I:{"0":0.0177,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.31982,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00558,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00888,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":82.75607},R:{_:"0"},M:{"0":0.14214},Q:{_:"14.9"},O:{"0":0.06219},H:{"0":0}}; +module.exports={C:{"52":0.0011,"77":0.0121,"109":0.0011,"110":0.0033,"115":0.0143,"122":0.0011,"123":0.0022,"124":0.077,"125":0.0286,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"36":0.0011,"37":0.0022,"43":0.0011,"44":0.0011,"49":0.0022,"50":0.0011,"52":0.0022,"55":0.0011,"56":0.0044,"63":0.0011,"64":0.0011,"65":0.0011,"66":0.0011,"67":0.0011,"68":0.0022,"69":0.0033,"70":0.0044,"72":0.0044,"74":0.0044,"75":0.011,"76":0.1628,"77":0.0011,"78":0.0011,"79":0.0055,"80":0.0055,"81":0.0143,"83":0.0022,"84":0.0022,"85":0.0011,"86":0.0077,"87":0.0099,"88":0.0352,"89":0.0077,"90":0.0044,"91":0.0044,"92":0.0297,"93":0.0704,"94":0.0407,"95":0.0055,"97":0.0011,"98":0.0011,"99":0.0033,"100":0.0011,"101":0.0011,"102":0.0055,"103":0.077,"104":0.0011,"105":0.0231,"106":0.0055,"108":0.0121,"109":0.2266,"110":0.0352,"111":0.0308,"112":0.0055,"113":0.0044,"114":0.0165,"115":0.0066,"116":0.0781,"117":0.0077,"118":0.0055,"119":0.0286,"120":0.0352,"121":0.0385,"122":0.2178,"123":1.606,"124":0.6534,"125":0.0033,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 42 45 46 47 48 51 53 54 57 58 59 60 61 62 71 73 96 107 126 127"},F:{"36":0.0011,"79":0.0011,"87":0.0022,"95":0.0022,"107":0.0319,"108":0.1045,"109":0.0264,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0055,"13":0.0033,"14":0.0022,"15":0.0022,"16":0.0022,"17":0.0033,"18":0.0176,"84":0.0088,"89":0.0011,"92":0.0088,"96":0.0011,"100":0.0011,"107":0.0033,"109":0.0363,"110":0.0022,"113":0.0055,"114":0.0011,"115":0.0011,"116":0.0011,"117":0.0132,"118":0.0022,"119":0.0044,"120":0.0121,"121":0.0099,"122":0.0473,"123":0.5005,"124":0.2002,_:"79 80 81 83 85 86 87 88 90 91 93 94 95 97 98 99 101 102 103 104 105 106 108 111 112"},E:{"13":0.0011,"14":0.0176,"15":0.0011,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.4 16.0","5.1":0.0011,"11.1":0.0011,"13.1":0.0044,"14.1":0.0154,"15.1":0.0011,"15.2-15.3":0.0022,"15.5":0.0044,"15.6":0.0198,"16.1":0.0022,"16.2":0.0066,"16.3":0.0011,"16.4":0.0066,"16.5":0.0044,"16.6":0.0132,"17.0":0.0121,"17.1":0.0033,"17.2":0.011,"17.3":0.0154,"17.4":0.1133,"17.5":0.0011},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00204,"5.0-5.1":0.00204,"6.0-6.1":0.00509,"7.0-7.1":0.00815,"8.1-8.4":0.00204,"9.0-9.2":0.00509,"9.3":0.02545,"10.0-10.2":0.00509,"10.3":0.04073,"11.0-11.2":0.03462,"11.3-11.4":0.01018,"12.0-12.1":0.00713,"12.2-12.5":0.16596,"13.0-13.1":0.00305,"13.2":0.0336,"13.3":0.00815,"13.4-13.7":0.03156,"14.0-14.4":0.06211,"14.5-14.8":0.09469,"15.0-15.1":0.04378,"15.2-15.3":0.04989,"15.4":0.05702,"15.5":0.07229,"15.6-15.8":0.63126,"16.0":0.14763,"16.1":0.30748,"16.2":0.14763,"16.3":0.26065,"16.4":0.05396,"16.5":0.11302,"16.6-16.7":0.89293,"17.0":0.10691,"17.1":0.19752,"17.2":0.26269,"17.3":1.91618,"17.4":4.32514,"17.5":0.03971},P:{"4":0.23787,"20":0.03103,"21":0.0724,"22":0.0724,"23":0.44472,"24":0.39301,"5.0-5.4":0.05171,"6.2-6.4":0.01034,"7.2-7.4":0.13445,"8.2":0.01034,"9.2":0.16548,_:"10.1","11.1-11.2":0.31027,"12.0":0.01034,"13.0":0.1965,"14.0":0.0724,"15.0":0.01034,"16.0":0.23787,"17.0":0.05171,"18.0":0.04137,"19.0":0.04137},I:{"0":0.01773,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.0077,_:"6 7 8 9 10 5.5"},K:{"0":0.3382,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0089,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0623},H:{"0":0},L:{"0":81.4134},R:{_:"0"},M:{"0":0.1246}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js index 495132780edb1b..a853fce804aa33 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/HU.js @@ -1 +1 @@ -module.exports={C:{"47":0.00328,"52":0.0394,"61":0.00328,"68":0.00328,"72":0.00328,"78":0.00985,"83":0.00657,"84":0.00328,"88":0.00328,"89":0.00657,"91":0.00657,"95":0.00328,"97":0.00328,"99":0.00328,"102":0.00657,"103":0.00657,"104":0.00328,"106":0.00328,"108":0.00328,"109":0.00328,"110":0.00328,"111":0.00328,"112":0.00657,"113":0.00657,"114":0.00657,"115":0.66973,"116":0.00328,"117":0.00328,"118":0.00328,"119":0.01642,"120":0.95535,"121":0.11162,"122":0.05253,"123":2.14052,"124":0.9455,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 85 86 87 90 92 93 94 96 98 100 101 105 107 125 126 127 3.5 3.6"},D:{"34":0.02298,"38":0.03283,"47":0.00328,"49":0.0197,"53":0.00328,"69":0.00328,"70":0.00328,"74":0.00328,"76":0.00328,"77":0.00328,"78":0.00328,"79":0.16743,"80":0.00328,"81":0.00328,"83":0.00328,"84":0.00328,"85":0.00328,"86":0.00328,"87":0.11162,"88":0.00985,"89":0.00657,"90":0.00657,"91":0.00657,"92":0.00328,"93":0.00328,"94":0.01642,"95":0.00657,"96":0.00328,"97":0.00328,"98":0.00657,"99":0.00985,"100":0.00985,"101":0.00328,"102":0.00657,"103":0.04268,"104":0.00985,"105":0.00657,"106":0.00985,"107":0.00985,"108":0.00985,"109":1.72358,"110":0.00328,"111":0.01313,"112":0.00985,"113":0.00328,"114":0.01642,"115":0.0197,"116":0.08208,"117":0.0197,"118":0.02626,"119":0.06566,"120":0.43336,"121":0.90283,"122":11.9534,"123":3.59817,"124":0.00328,"125":0.00328,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 72 73 75 126"},F:{"28":0.00328,"36":0.00328,"46":0.00657,"79":0.00328,"81":0.00328,"85":0.00328,"86":0.00657,"94":0.00328,"95":0.10834,"105":0.00328,"106":0.14117,"107":1.18516,"108":0.29219,"109":0.00328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 87 88 89 90 91 92 93 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00328},B:{"92":0.00657,"97":0.00328,"104":0.00657,"109":0.07551,"110":0.00328,"114":0.00328,"117":0.00328,"118":0.00328,"119":0.0394,"120":0.57781,"121":0.08536,"122":2.32108,"123":0.22981,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 101 102 103 105 106 107 108 111 112 113 115 116"},E:{"14":0.00985,"15":0.00328,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00328,"12.1":0.00328,"13.1":0.01642,"14.1":0.03283,"15.1":0.00328,"15.2-15.3":0.00657,"15.4":0.00985,"15.5":0.01313,"15.6":0.07223,"16.0":0.00985,"16.1":0.01642,"16.2":0.01642,"16.3":0.04596,"16.4":0.01313,"16.5":0.02626,"16.6":0.10834,"17.0":0.02298,"17.1":0.05253,"17.2":0.12475,"17.3":0.37755,"17.4":0.12475},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00179,"5.0-5.1":0.0009,"6.0-6.1":0.00537,"7.0-7.1":0.00627,"8.1-8.4":0.00179,"9.0-9.2":0.00358,"9.3":0.02238,"10.0-10.2":0.00358,"10.3":0.0376,"11.0-11.2":0.02686,"11.3-11.4":0.00895,"12.0-12.1":0.00806,"12.2-12.5":0.15488,"13.0-13.1":0.00269,"13.2":0.02686,"13.3":0.00806,"13.4-13.7":0.03044,"14.0-14.4":0.05819,"14.5-14.8":0.09131,"15.0-15.1":0.03939,"15.2-15.3":0.04655,"15.4":0.05461,"15.5":0.06983,"15.6-15.8":0.58459,"16.0":0.14234,"16.1":0.29453,"16.2":0.14234,"16.3":0.25335,"16.4":0.05371,"16.5":0.1137,"16.6-16.7":0.86122,"17.0":0.11191,"17.1":0.22381,"17.2":0.36078,"17.3":4.4404,"17.4":0.65174,"17.5":0},P:{"4":0.24961,"20":0.0312,"21":0.052,"22":0.0728,"23":1.49765,"24":1.28964,"5.0-5.4":0.0208,"6.2-6.4":0.0104,_:"7.2-7.4 8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.0104,"13.0":0.0208,"14.0":0.0104,"16.0":0.0104,"17.0":0.0104,"18.0":0.0104,"19.0":0.0208},I:{"0":0.10702,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00026},K:{"0":0.32237,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00492,"11":0.03447,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":55.50097},R:{_:"0"},M:{"0":0.21491},Q:{_:"14.9"},O:{"0":0.02015},H:{"0":0}}; +module.exports={C:{"34":0.00344,"52":0.04469,"61":0.00344,"68":0.00344,"72":0.00344,"78":0.01031,"81":0.00344,"83":0.00688,"84":0.00344,"88":0.00344,"89":0.01719,"91":0.00344,"97":0.00344,"99":0.00688,"102":0.01031,"103":0.00688,"106":0.00344,"108":0.00344,"109":0.00344,"111":0.00344,"112":0.00344,"113":0.00688,"114":0.00344,"115":0.63603,"116":0.00344,"117":0.00344,"118":0.00688,"119":0.05157,"120":0.89732,"121":0.17878,"122":0.01719,"123":0.06876,"124":2.00092,"125":1.17236,"126":0.00344,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 82 85 86 87 90 92 93 94 95 96 98 100 101 104 105 107 110 127 128 3.5 3.6"},D:{"22":0.00344,"34":0.01719,"38":0.01719,"47":0.00344,"49":0.01719,"53":0.00344,"69":0.01031,"76":0.00344,"79":0.16502,"80":0.00344,"81":0.00344,"83":0.00344,"84":0.00344,"86":0.00344,"87":0.12377,"88":0.01031,"89":0.01031,"90":0.00344,"91":0.00688,"92":0.00344,"94":0.0275,"95":0.00688,"96":0.00344,"97":0.01031,"98":0.00688,"99":0.01719,"100":0.00688,"101":0.00344,"102":0.01031,"103":0.03782,"104":0.01375,"105":0.00688,"106":0.01031,"107":0.00688,"108":0.01375,"109":1.6915,"110":0.00344,"111":0.01375,"112":0.01375,"113":0.00344,"114":0.02063,"115":0.01719,"116":0.06532,"117":0.01375,"118":0.03438,"119":0.05157,"120":0.26129,"121":0.13408,"122":0.62572,"123":11.50011,"124":4.93353,"125":0.0275,"126":0.00344,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 78 85 93 127"},F:{"36":0.00344,"46":0.01031,"79":0.00344,"83":0.00344,"85":0.00344,"86":0.00344,"95":0.11002,"105":0.00344,"106":0.05157,"107":0.70135,"108":0.60509,"109":0.22691,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00688,"97":0.00344,"109":0.07564,"110":0.00344,"111":0.00344,"113":0.00344,"114":0.00344,"117":0.00344,"118":0.00344,"119":0.08251,"120":0.62915,"121":0.01375,"122":0.13752,"123":1.74307,"124":0.94889,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 101 102 103 104 105 106 107 108 112 115 116"},E:{"14":0.01375,"15":0.00344,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01375,"13.1":0.02063,"14.1":0.03782,"15.1":0.00688,"15.2-15.3":0.00688,"15.4":0.01375,"15.5":0.01719,"15.6":0.08939,"16.0":0.01031,"16.1":0.0275,"16.2":0.02063,"16.3":0.05157,"16.4":0.01375,"16.5":0.0275,"16.6":0.11689,"17.0":0.02063,"17.1":0.04469,"17.2":0.06532,"17.3":0.18909,"17.4":0.52601,"17.5":0.00344},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00187,"5.0-5.1":0.00187,"6.0-6.1":0.00468,"7.0-7.1":0.00749,"8.1-8.4":0.00187,"9.0-9.2":0.00468,"9.3":0.02339,"10.0-10.2":0.00468,"10.3":0.03743,"11.0-11.2":0.03182,"11.3-11.4":0.00936,"12.0-12.1":0.00655,"12.2-12.5":0.15253,"13.0-13.1":0.00281,"13.2":0.03088,"13.3":0.00749,"13.4-13.7":0.02901,"14.0-14.4":0.05708,"14.5-14.8":0.08702,"15.0-15.1":0.04024,"15.2-15.3":0.04585,"15.4":0.0524,"15.5":0.06644,"15.6-15.8":0.58016,"16.0":0.13568,"16.1":0.28259,"16.2":0.13568,"16.3":0.23955,"16.4":0.04959,"16.5":0.10387,"16.6-16.7":0.82065,"17.0":0.09825,"17.1":0.18153,"17.2":0.24142,"17.3":1.76106,"17.4":3.97503,"17.5":0.03649},P:{"4":0.22799,"20":0.03109,"21":0.05182,"22":0.06218,"23":0.22799,"24":2.31101,"5.0-5.4":0.01036,"6.2-6.4":0.01036,_:"7.2-7.4 8.2 9.2 10.1 12.0 15.0 16.0","11.1-11.2":0.01036,"13.0":0.02073,"14.0":0.01036,"17.0":0.01036,"18.0":0.01036,"19.0":0.02073},I:{"0":0.12417,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00031},A:{"8":0.01089,"11":0.05444,_:"6 7 9 10 5.5"},K:{"0":0.36747,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00656},O:{"0":0.03281},H:{"0":0},L:{"0":53.23249},R:{_:"0"},M:{"0":0.22967}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js index 8130ef497ba340..7835da8861b06d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ID.js @@ -1 +1 @@ -module.exports={C:{"36":0.05243,"52":0.0035,"68":0.0035,"72":0.0035,"78":0.0035,"88":0.0035,"90":0.0035,"100":0.0035,"101":0.0035,"103":0.0035,"104":0.0035,"105":0.0035,"106":0.0035,"107":0.0035,"108":0.0035,"109":0.0035,"110":0.0035,"111":0.0035,"112":0.0035,"113":0.02097,"114":0.0035,"115":0.22368,"116":0.0035,"117":0.00699,"118":0.00699,"119":0.00699,"120":0.01049,"121":0.02097,"122":0.04893,"123":1.38402,"124":0.59765,"125":0.01049,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 91 92 93 94 95 96 97 98 99 102 126 127 3.5 3.6"},D:{"25":0.00699,"49":0.0035,"56":0.0035,"58":0.0035,"61":0.0035,"70":0.0035,"71":0.0035,"74":0.0035,"79":0.01398,"80":0.00699,"81":0.01398,"83":0.0035,"84":0.0035,"85":0.0035,"86":0.0035,"87":0.01049,"88":0.0035,"89":0.01398,"90":0.0035,"91":0.00699,"92":0.00699,"93":0.00699,"94":0.00699,"95":0.0035,"96":0.0035,"97":0.0035,"98":0.0035,"99":0.01049,"100":0.02447,"101":0.00699,"102":0.01049,"103":0.03146,"104":0.01049,"105":0.01049,"106":0.01748,"107":0.01748,"108":0.02097,"109":1.33859,"110":0.01049,"111":0.04893,"112":0.04194,"113":0.02447,"114":0.04194,"115":0.01748,"116":0.11534,"117":0.04194,"118":0.05592,"119":0.08388,"120":0.24465,"121":1.09394,"122":16.79348,"123":5.10969,"124":0.03146,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 62 63 64 65 66 67 68 69 72 73 75 76 77 78 125 126"},F:{"28":0.0035,"85":0.0035,"95":0.02097,"106":0.0035,"107":0.30407,"108":0.10835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0035,"14":0.0035,"15":0.0035,"18":0.00699,"92":0.01049,"100":0.0035,"107":0.0035,"108":0.0035,"109":0.02097,"114":0.0035,"115":0.0035,"116":0.0035,"117":0.0035,"118":0.0035,"119":0.02447,"120":0.03146,"121":0.0734,"122":3.09657,"123":0.2132,_:"13 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 110 111 112 113"},E:{"14":0.01748,"15":0.0035,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.01748,"12.1":0.0035,"13.1":0.02097,"14.1":0.04544,"15.1":0.01398,"15.2-15.3":0.00699,"15.4":0.01049,"15.5":0.01398,"15.6":0.08039,"16.0":0.00699,"16.1":0.03146,"16.2":0.01748,"16.3":0.03495,"16.4":0.02097,"16.5":0.04893,"16.6":0.07689,"17.0":0.03495,"17.1":0.0699,"17.2":0.09786,"17.3":0.20271,"17.4":0.05592},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00129,"5.0-5.1":0.00064,"6.0-6.1":0.00386,"7.0-7.1":0.0045,"8.1-8.4":0.00129,"9.0-9.2":0.00257,"9.3":0.01606,"10.0-10.2":0.00257,"10.3":0.02699,"11.0-11.2":0.01928,"11.3-11.4":0.00643,"12.0-12.1":0.00578,"12.2-12.5":0.11117,"13.0-13.1":0.00193,"13.2":0.01928,"13.3":0.00578,"13.4-13.7":0.02185,"14.0-14.4":0.04177,"14.5-14.8":0.06554,"15.0-15.1":0.02827,"15.2-15.3":0.03341,"15.4":0.0392,"15.5":0.05012,"15.6-15.8":0.41961,"16.0":0.10217,"16.1":0.21141,"16.2":0.10217,"16.3":0.18185,"16.4":0.03856,"16.5":0.08161,"16.6-16.7":0.61818,"17.0":0.08032,"17.1":0.16065,"17.2":0.25897,"17.3":3.18727,"17.4":0.46781,"17.5":0},P:{"4":0.06129,"20":0.02043,"21":0.08172,"22":0.07151,"23":0.71506,"24":0.49033,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01022,"7.2-7.4":0.08172,"9.2":0.01022,"11.1-11.2":0.03065,"12.0":0.01022,"13.0":0.01022,"14.0":0.02043,"15.0":0.01022,"16.0":0.02043,"17.0":0.03065,"18.0":0.02043,"19.0":0.04086},I:{"0":0.05182,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":0.78698,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00374,"11":0.04868,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":56.86339},R:{_:"0"},M:{"0":0.06504},Q:{_:"14.9"},O:{"0":0.88454},H:{"0":0}}; +module.exports={C:{"36":0.03633,"52":0.0033,"72":0.0033,"78":0.0033,"88":0.0033,"100":0.0033,"103":0.0033,"105":0.0033,"106":0.0033,"107":0.0033,"108":0.0033,"109":0.0033,"110":0.0033,"111":0.0033,"112":0.0033,"113":0.01982,"114":0.0033,"115":0.20809,"116":0.0033,"117":0.0033,"118":0.0033,"119":0.00661,"120":0.00661,"121":0.01321,"122":0.01652,"123":0.04955,"124":1.10651,"125":0.71675,"126":0.01321,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 101 102 104 127 128 3.5 3.6"},D:{"25":0.00661,"49":0.0033,"52":0.00661,"56":0.0033,"58":0.0033,"61":0.0033,"70":0.0033,"71":0.0033,"74":0.0033,"75":0.0033,"79":0.01982,"80":0.00661,"81":0.0033,"83":0.0033,"84":0.0033,"85":0.0033,"86":0.0033,"87":0.01652,"88":0.0033,"89":0.01321,"90":0.0033,"91":0.00661,"92":0.00661,"93":0.00991,"94":0.00661,"95":0.0033,"96":0.00661,"97":0.0033,"98":0.00661,"99":0.01321,"100":0.02312,"101":0.00661,"102":0.00991,"103":0.02973,"104":0.00991,"105":0.00991,"106":0.01652,"107":0.01321,"108":0.01321,"109":1.2155,"110":0.00991,"111":0.01982,"112":0.03633,"113":0.01982,"114":0.03964,"115":0.01321,"116":0.109,"117":0.03633,"118":0.02973,"119":0.06276,"120":0.12221,"121":0.14533,"122":0.57803,"123":13.56542,"124":7.98005,"125":0.05615,"126":0.0033,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 57 59 60 62 63 64 65 66 67 68 69 72 73 76 77 78 127"},F:{"28":0.01321,"46":0.0033,"85":0.0033,"95":0.01982,"102":0.0033,"107":0.15854,"108":0.19157,"109":0.06936,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0033,"14":0.0033,"18":0.00661,"92":0.00991,"100":0.0033,"109":0.01652,"114":0.0033,"117":0.0033,"118":0.0033,"119":0.01652,"120":0.01321,"121":0.01652,"122":0.13873,"123":1.75389,"124":1.30469,_:"13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116"},E:{"14":0.01321,"15":0.0033,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.02312,"13.1":0.01652,"14.1":0.03964,"15.1":0.01321,"15.2-15.3":0.00661,"15.4":0.00991,"15.5":0.01321,"15.6":0.07597,"16.0":0.00661,"16.1":0.03303,"16.2":0.01982,"16.3":0.03303,"16.4":0.01652,"16.5":0.03964,"16.6":0.07267,"17.0":0.02973,"17.1":0.04955,"17.2":0.06276,"17.3":0.09579,"17.4":0.2246},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0.0013,"6.0-6.1":0.00325,"7.0-7.1":0.0052,"8.1-8.4":0.0013,"9.0-9.2":0.00325,"9.3":0.01626,"10.0-10.2":0.00325,"10.3":0.02601,"11.0-11.2":0.02211,"11.3-11.4":0.0065,"12.0-12.1":0.00455,"12.2-12.5":0.106,"13.0-13.1":0.00195,"13.2":0.02146,"13.3":0.0052,"13.4-13.7":0.02016,"14.0-14.4":0.03967,"14.5-14.8":0.06048,"15.0-15.1":0.02796,"15.2-15.3":0.03186,"15.4":0.03642,"15.5":0.04617,"15.6-15.8":0.40317,"16.0":0.09429,"16.1":0.19638,"16.2":0.09429,"16.3":0.16647,"16.4":0.03446,"16.5":0.07218,"16.6-16.7":0.57029,"17.0":0.06828,"17.1":0.12615,"17.2":0.16777,"17.3":1.22382,"17.4":2.76238,"17.5":0.02536},P:{"4":0.06138,"20":0.02046,"21":0.07161,"22":0.08184,"23":0.23528,"24":1.05364,_:"5.0-5.4 8.2 10.1 12.0","6.2-6.4":0.03069,"7.2-7.4":0.08184,"9.2":0.01023,"11.1-11.2":0.02046,"13.0":0.01023,"14.0":0.01023,"15.0":0.01023,"16.0":0.02046,"17.0":0.03069,"18.0":0.02046,"19.0":0.03069},I:{"0":0.05336,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00356,"11":0.04268,_:"6 7 9 10 5.5"},K:{"0":0.87731,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0067},O:{"0":0.98446},H:{"0":0},L:{"0":57.94785},R:{_:"0"},M:{"0":0.08036}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js index 9db1b55374d9c5..6c7b564de730c8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IE.js @@ -1 +1 @@ -module.exports={C:{"38":0.04946,"41":0.00659,"43":0.08902,"44":0.2176,"45":0.07583,"52":0.00989,"65":0.02308,"78":0.01978,"85":0.0033,"88":0.0033,"91":0.0033,"102":0.0033,"103":0.01319,"107":0.1055,"108":0.0033,"110":0.0033,"115":0.24068,"116":0.0033,"118":0.00659,"119":0.0033,"120":0.0033,"121":0.01319,"122":0.05605,"123":0.91657,"124":0.34948,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 105 106 109 111 112 113 114 117 125 126 127 3.5 3.6"},D:{"17":0.0033,"38":0.0033,"47":0.04946,"48":0.63632,"49":0.16815,"51":0.0033,"53":0.0033,"63":0.0033,"65":0.0033,"67":0.0033,"70":0.0033,"74":0.0033,"76":0.00989,"79":0.03627,"80":0.00659,"81":0.05275,"83":0.0033,"85":0.0033,"86":0.12529,"87":0.03956,"88":0.01978,"89":0.00659,"90":0.00659,"91":0.24068,"92":0.00989,"93":0.06594,"94":0.00659,"95":0.0033,"96":0.00659,"97":0.0033,"98":0.0033,"99":0.0033,"100":0.13518,"101":0.26046,"102":0.13518,"103":0.21431,"104":0.15496,"105":0.00989,"106":0.01978,"107":0.01319,"108":0.01319,"109":0.42531,"110":0.00659,"111":0.01978,"112":0.01319,"113":0.01978,"114":0.1088,"115":0.03297,"116":0.20441,"117":0.07253,"118":0.03956,"119":0.07253,"120":0.24068,"121":3.15193,"122":10.67569,"123":2.89147,"124":0.00659,"125":0.0033,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 52 54 55 56 57 58 59 60 61 62 64 66 68 69 71 72 73 75 77 78 84 126"},F:{"46":0.00989,"95":0.01319,"105":0.0033,"106":0.01978,"107":0.62643,"108":0.07253,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01319,"13":0.00989,"18":0.0033,"92":0.0033,"107":0.0033,"108":0.0033,"109":0.01649,"110":0.0033,"112":0.0033,"113":0.0033,"114":0.0033,"115":0.0033,"116":0.0033,"117":0.00989,"118":0.0033,"119":0.01319,"120":0.05935,"121":0.20771,"122":3.6234,"123":0.20112,_:"14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 111"},E:{"8":0.02638,"9":0.07913,"13":0.00659,"14":0.07583,"15":0.00989,_:"0 4 5 6 7 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00659,"9.1":0.0033,"12.1":0.01649,"13.1":0.06594,"14.1":0.14177,"15.1":0.01649,"15.2-15.3":0.01978,"15.4":0.04946,"15.5":0.04946,"15.6":0.3297,"16.0":0.07913,"16.1":0.06924,"16.2":0.08902,"16.3":0.23079,"16.4":0.04616,"16.5":0.08572,"16.6":0.45828,"17.0":0.04946,"17.1":0.12199,"17.2":0.30662,"17.3":1.29902,"17.4":0.18793},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00456,"5.0-5.1":0.00228,"6.0-6.1":0.01369,"7.0-7.1":0.01597,"8.1-8.4":0.00456,"9.0-9.2":0.00912,"9.3":0.05703,"10.0-10.2":0.00912,"10.3":0.0958,"11.0-11.2":0.06843,"11.3-11.4":0.02281,"12.0-12.1":0.02053,"12.2-12.5":0.39462,"13.0-13.1":0.00684,"13.2":0.06843,"13.3":0.02053,"13.4-13.7":0.07756,"14.0-14.4":0.14827,"14.5-14.8":0.23267,"15.0-15.1":0.10037,"15.2-15.3":0.11861,"15.4":0.13914,"15.5":0.17792,"15.6-15.8":1.48951,"16.0":0.36268,"16.1":0.75046,"16.2":0.36268,"16.3":0.64553,"16.4":0.13686,"16.5":0.28969,"16.6-16.7":2.19435,"17.0":0.28513,"17.1":0.57026,"17.2":0.91926,"17.3":11.31391,"17.4":1.66059,"17.5":0},P:{"4":0.02108,"20":0.0527,"21":0.07378,"22":0.08432,"23":2.24507,"24":1.76022,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.02108,"11.1-11.2":0.01054,"13.0":0.01054,"14.0":0.01054,"16.0":0.01054,"17.0":0.01054,"18.0":0.01054,"19.0":0.04216},I:{"0":0.0534,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0.23131,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00339,"9":0.09834,"11":0.13565,_:"6 7 10 5.5"},S:{"2.5":0.0067,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":39.74451},R:{_:"0"},M:{"0":0.34185},Q:{_:"14.9"},O:{"0":0.02011},H:{"0":0.01}}; +module.exports={C:{"34":0.00693,"38":0.06235,"41":0.01039,"43":0.05542,"44":0.29098,"45":0.06928,"46":0.00346,"52":0.00693,"65":0.02078,"78":0.01732,"88":0.00346,"91":0.00346,"95":0.01386,"102":0.01039,"103":0.0381,"105":0.00346,"107":0.06582,"109":0.00346,"115":0.22516,"116":0.00346,"119":0.00346,"121":0.00693,"122":0.02425,"123":0.04157,"124":0.83136,"125":0.38797,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 96 97 98 99 100 101 104 106 108 110 111 112 113 114 117 118 120 126 127 128 3.5","3.6":0.00346},D:{"38":0.00346,"47":0.06235,"48":0.70666,"49":0.19398,"51":0.00346,"53":0.00346,"63":0.00346,"74":0.01386,"76":0.01039,"79":0.03118,"80":0.00346,"81":0.05889,"83":0.00346,"85":0.00346,"86":0.26326,"87":0.04503,"88":0.00693,"89":0.00346,"91":0.19052,"92":0.00693,"93":0.05889,"94":0.00693,"95":0.00346,"96":0.00346,"97":0.00346,"98":0.00346,"99":0.00346,"100":0.26326,"101":0.5196,"102":0.25634,"103":0.34986,"104":0.32215,"105":0.00693,"106":0.01039,"107":0.01039,"108":0.01039,"109":0.40875,"110":0.00693,"111":0.00346,"112":0.01039,"113":0.01039,"114":0.09006,"115":0.02078,"116":0.19052,"117":0.07621,"118":0.02425,"119":0.0485,"120":0.11085,"121":3.03446,"122":1.11541,"123":9.9971,"124":3.82079,"125":0.01386,"126":0.00346,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 50 52 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 75 77 78 84 90 127"},F:{"46":0.00693,"95":0.00693,"105":0.00346,"107":0.43993,"108":0.14895,"109":0.05889,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01732,"13":0.01386,"18":0.00346,"107":0.00346,"108":0.00346,"109":0.01386,"113":0.00346,"114":0.00346,"115":0.00346,"116":0.00693,"117":0.00693,"118":0.00346,"119":0.00346,"120":0.03464,"121":0.06235,"122":0.27366,"123":2.58068,"124":1.13966,_:"14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 112"},E:{"8":0.02078,"9":0.10738,"13":0.00693,"14":0.05196,"15":0.01039,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01039,"13.1":0.05542,"14.1":0.1351,"15.1":0.01386,"15.2-15.3":0.02078,"15.4":0.0381,"15.5":0.04157,"15.6":0.32908,"16.0":0.06235,"16.1":0.05542,"16.2":0.0866,"16.3":0.20438,"16.4":0.03118,"16.5":0.06235,"16.6":0.41568,"17.0":0.0485,"17.1":0.12124,"17.2":0.16627,"17.3":0.51614,"17.4":1.30939,"17.5":0.01039},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00426,"5.0-5.1":0.00426,"6.0-6.1":0.01064,"7.0-7.1":0.01702,"8.1-8.4":0.00426,"9.0-9.2":0.01064,"9.3":0.05319,"10.0-10.2":0.01064,"10.3":0.08511,"11.0-11.2":0.07234,"11.3-11.4":0.02128,"12.0-12.1":0.01489,"12.2-12.5":0.34683,"13.0-13.1":0.00638,"13.2":0.07022,"13.3":0.01702,"13.4-13.7":0.06596,"14.0-14.4":0.1298,"14.5-14.8":0.19788,"15.0-15.1":0.0915,"15.2-15.3":0.10426,"15.4":0.11916,"15.5":0.15107,"15.6-15.8":1.31923,"16.0":0.30853,"16.1":0.64259,"16.2":0.30853,"16.3":0.54472,"16.4":0.11277,"16.5":0.23619,"16.6-16.7":1.86607,"17.0":0.22342,"17.1":0.41279,"17.2":0.54897,"17.3":4.00451,"17.4":9.03887,"17.5":0.08298},P:{"4":0.01053,"20":0.04211,"21":0.07369,"22":0.08422,"23":0.32635,"24":3.31611,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0","6.2-6.4":0.01053,"7.2-7.4":0.02105,"11.1-11.2":0.01053,"13.0":0.01053,"16.0":0.02105,"17.0":0.01053,"18.0":0.01053,"19.0":0.03158},I:{"0":0.07812,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.0071,"9":0.10291,"11":0.18097,_:"6 7 10 5.5"},K:{"0":0.19918,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00654,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01307},H:{"0":0.01},L:{"0":39.35983},R:{_:"0"},M:{"0":0.40529}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js index 18715ac745741d..7d795236d93f42 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IL.js @@ -1 +1 @@ -module.exports={C:{"24":0.00349,"25":0.01046,"26":0.02442,"27":0.00349,"28":0.00349,"29":0.00349,"31":0.00349,"33":0.00349,"36":0.00349,"51":0.00349,"52":0.01046,"56":0.01395,"59":0.01744,"68":0.00349,"69":0.00349,"70":0.00349,"71":0.00349,"72":0.00349,"73":0.00349,"74":0.00349,"75":0.00349,"76":0.00349,"77":0.00349,"78":0.00698,"79":0.00349,"80":0.02442,"81":0.00349,"82":0.00349,"83":0.00349,"88":0.00349,"105":0.00349,"106":0.00349,"108":0.00349,"109":0.00349,"110":0.00349,"111":0.01046,"113":0.01046,"115":0.15696,"118":0.00349,"119":0.00349,"120":0.00698,"121":0.01046,"122":0.0279,"123":0.65226,"124":0.24416,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 30 32 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 57 58 60 61 62 63 64 65 66 67 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 107 112 114 116 117 125 126 127 3.5 3.6"},D:{"12":0.00349,"31":0.03488,"32":0.00698,"35":0.00349,"38":0.01395,"40":0.00349,"41":0.00349,"49":0.00698,"50":0.00349,"51":0.00349,"52":0.00698,"55":0.00349,"56":0.01046,"57":0.00349,"65":0.00349,"66":0.07674,"67":0.00349,"68":0.03139,"69":0.02093,"70":0.02093,"71":0.02093,"72":0.03139,"73":0.01046,"74":0.03139,"75":0.03139,"76":0.02093,"77":0.02093,"78":0.03139,"79":0.0593,"80":0.04534,"81":0.03488,"83":0.04534,"84":0.02442,"85":0.03837,"86":0.05581,"87":0.06976,"88":0.04186,"89":0.03488,"90":0.04534,"91":0.03488,"92":0.00698,"93":0.00349,"94":0.00349,"95":0.00698,"96":0.01744,"97":0.00349,"98":0.00698,"99":0.00349,"100":0.01046,"101":0.00349,"102":0.01744,"103":0.02442,"104":0.00698,"105":0.01395,"106":0.0279,"107":0.03837,"108":0.05232,"109":1.08826,"110":0.03139,"111":0.0279,"112":0.0279,"113":0.04186,"114":0.10115,"115":0.02442,"116":0.0872,"117":0.02442,"118":0.03488,"119":0.08022,"120":0.3488,"121":1.33242,"122":16.57846,"123":4.36,"124":0.00698,_:"4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 36 37 39 42 43 44 45 46 47 48 53 54 58 59 60 61 62 63 64 125 126"},F:{"28":0.00349,"46":0.01046,"53":0.00349,"54":0.00349,"55":0.00698,"69":0.00349,"78":0.00349,"81":0.00349,"86":0.00349,"95":0.02442,"106":0.01046,"107":0.4953,"108":0.11162,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00349},B:{"14":0.00349,"17":0.00698,"18":0.01046,"79":0.00349,"80":0.00698,"81":0.00698,"83":0.00698,"84":0.00698,"85":0.00698,"86":0.00698,"87":0.00349,"88":0.00349,"89":0.00698,"90":0.00698,"92":0.00349,"96":0.00349,"98":0.00698,"99":0.00349,"103":0.00349,"104":0.00349,"105":0.00349,"106":0.00349,"107":0.00349,"108":0.00349,"109":0.03488,"110":0.01046,"111":0.00349,"112":0.00349,"113":0.00349,"114":0.00349,"115":0.00349,"116":0.00349,"117":0.00698,"118":0.01046,"119":0.01046,"120":0.04883,"121":0.15696,"122":2.41718,"123":0.1744,_:"12 13 15 16 91 93 94 95 97 100 101 102"},E:{"6":0.00349,"7":0.00349,"8":0.15347,"9":0.00349,"10":0.00349,"14":0.02093,"15":0.00349,_:"0 4 5 11 12 13 3.1 3.2 7.1 10.1 12.1 17.5","5.1":0.00349,"6.1":0.00698,"9.1":0.16742,"11.1":0.01744,"13.1":0.02442,"14.1":0.05232,"15.1":0.00698,"15.2-15.3":0.01395,"15.4":0.00698,"15.5":0.02093,"15.6":0.0872,"16.0":0.00698,"16.1":0.03139,"16.2":0.01395,"16.3":0.05232,"16.4":0.00698,"16.5":0.02093,"16.6":0.15696,"17.0":0.01046,"17.1":0.04534,"17.2":0.08371,"17.3":0.50227,"17.4":0.09069},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00291,"5.0-5.1":0.00145,"6.0-6.1":0.00873,"7.0-7.1":0.01018,"8.1-8.4":0.00291,"9.0-9.2":0.00582,"9.3":0.03637,"10.0-10.2":0.00582,"10.3":0.0611,"11.0-11.2":0.04364,"11.3-11.4":0.01455,"12.0-12.1":0.01309,"12.2-12.5":0.25168,"13.0-13.1":0.00436,"13.2":0.04364,"13.3":0.01309,"13.4-13.7":0.04946,"14.0-14.4":0.09456,"14.5-14.8":0.14839,"15.0-15.1":0.06401,"15.2-15.3":0.07565,"15.4":0.08874,"15.5":0.11347,"15.6-15.8":0.94997,"16.0":0.23131,"16.1":0.47862,"16.2":0.23131,"16.3":0.4117,"16.4":0.08729,"16.5":0.18476,"16.6-16.7":1.3995,"17.0":0.18185,"17.1":0.3637,"17.2":0.58628,"17.3":7.21571,"17.4":1.05908,"17.5":0},P:{"4":0.03107,"20":0.06213,"21":0.11391,"22":0.17604,"23":4.03856,"24":3.01339,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 10.1","9.2":0.01036,"11.1-11.2":0.05178,"12.0":0.01036,"13.0":0.04142,"14.0":0.04142,"15.0":0.01036,"16.0":0.04142,"17.0":0.03107,"18.0":0.02071,"19.0":0.10355},I:{"0":0.0454,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":0.27002,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00349,"9":0.00698,"10":0.00698,"11":0.10115,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":43.6643},R:{_:"0"},M:{"0":0.26699},Q:{_:"14.9"},O:{"0":0.03907},H:{"0":0.01}}; +module.exports={C:{"24":0.00326,"25":0.00979,"26":0.02938,"27":0.00326,"28":0.00326,"29":0.00326,"31":0.00326,"33":0.00326,"36":0.00326,"50":0.00326,"51":0.00326,"52":0.00979,"56":0.01632,"59":0.01958,"68":0.00326,"72":0.00326,"78":0.00326,"80":0.06202,"81":0.00326,"88":0.00326,"89":0.00326,"103":0.00326,"105":0.00326,"106":0.00326,"108":0.00326,"109":0.00326,"110":0.00326,"111":0.00653,"113":0.02285,"115":0.16973,"119":0.00653,"120":0.00326,"121":0.00979,"122":0.00653,"123":0.02611,"124":0.70829,"125":0.31987,"126":0.00326,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 30 32 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 82 83 84 85 86 87 90 91 92 93 94 95 96 97 98 99 100 101 102 104 107 112 114 116 117 118 127 128 3.5 3.6"},D:{"12":0.00326,"31":0.03917,"32":0.00979,"35":0.00326,"38":0.01632,"40":0.00326,"41":0.00326,"49":0.00653,"51":0.00326,"52":0.01632,"55":0.00326,"56":0.00653,"65":0.00979,"66":0.08813,"68":0.00653,"69":0.00653,"70":0.00653,"71":0.00653,"72":0.00653,"73":0.00326,"74":0.00979,"75":0.00979,"76":0.00653,"77":0.00326,"78":0.00653,"79":0.0457,"80":0.01306,"81":0.00979,"83":0.01958,"84":0.00979,"85":0.01306,"86":0.01958,"87":0.05549,"88":0.01632,"89":0.00979,"90":0.01306,"91":0.01958,"92":0.00653,"93":0.00326,"94":0.00326,"95":0.00979,"96":0.00653,"97":0.00326,"98":0.00326,"99":0.00326,"100":0.00653,"101":0.00326,"102":0.01632,"103":0.02285,"104":0.00979,"105":0.01632,"106":0.02285,"107":0.01958,"108":0.04896,"109":1.03795,"110":0.01632,"111":0.01958,"112":0.01958,"113":0.05875,"114":0.06528,"115":0.01632,"116":0.07507,"117":0.02611,"118":0.02611,"119":0.06528,"120":0.1632,"121":0.22522,"122":0.90739,"123":14.91974,"124":5.52269,"125":0.01632,"126":0.00326,_:"4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 33 34 36 37 39 42 43 44 45 46 47 48 50 53 54 57 58 59 60 61 62 63 64 67 127"},F:{"28":0.00326,"46":0.01958,"55":0.00326,"69":0.00326,"78":0.00326,"82":0.00326,"83":0.00326,"86":0.00326,"95":0.02285,"107":0.36557,"108":0.25459,"109":0.08813,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00326},B:{"16":0.00326,"17":0.01306,"18":0.01632,"80":0.00326,"81":0.00326,"83":0.00326,"84":0.00326,"85":0.00326,"86":0.00326,"87":0.00326,"89":0.00326,"90":0.00326,"92":0.00326,"98":0.00326,"103":0.00326,"104":0.00326,"107":0.00326,"108":0.00326,"109":0.02611,"110":0.00979,"111":0.00326,"112":0.00326,"114":0.00326,"115":0.00653,"117":0.00653,"118":0.00979,"119":0.00979,"120":0.02285,"121":0.03917,"122":0.14362,"123":1.80826,"124":0.73766,_:"12 13 14 15 79 88 91 93 94 95 96 97 99 100 101 102 105 106 113 116"},E:{"6":0.00326,"7":0.00653,"8":0.14362,"9":0.00326,"10":0.00326,"14":0.02611,"15":0.00326,_:"0 4 5 11 12 13 3.1 3.2 7.1 10.1 17.5","5.1":0.00326,"6.1":0.00979,"9.1":0.03264,"11.1":0.01958,"12.1":0.00326,"13.1":0.01632,"14.1":0.06202,"15.1":0.00326,"15.2-15.3":0.0359,"15.4":0.00326,"15.5":0.01958,"15.6":0.09139,"16.0":0.01306,"16.1":0.02611,"16.2":0.01306,"16.3":0.05222,"16.4":0.00653,"16.5":0.02611,"16.6":0.16973,"17.0":0.00979,"17.1":0.03917,"17.2":0.03917,"17.3":0.21216,"17.4":0.54509},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00287,"5.0-5.1":0.00287,"6.0-6.1":0.00717,"7.0-7.1":0.01147,"8.1-8.4":0.00287,"9.0-9.2":0.00717,"9.3":0.03584,"10.0-10.2":0.00717,"10.3":0.05735,"11.0-11.2":0.04874,"11.3-11.4":0.01434,"12.0-12.1":0.01004,"12.2-12.5":0.23368,"13.0-13.1":0.0043,"13.2":0.04731,"13.3":0.01147,"13.4-13.7":0.04444,"14.0-14.4":0.08745,"14.5-14.8":0.13333,"15.0-15.1":0.06165,"15.2-15.3":0.07025,"15.4":0.08028,"15.5":0.10179,"15.6-15.8":0.88885,"16.0":0.20788,"16.1":0.43296,"16.2":0.20788,"16.3":0.36701,"16.4":0.07598,"16.5":0.15913,"16.6-16.7":1.2573,"17.0":0.15053,"17.1":0.27812,"17.2":0.36988,"17.3":2.6981,"17.4":6.09008,"17.5":0.05591},P:{"4":0.04132,"20":0.07231,"21":0.09297,"22":0.13429,"23":0.69211,"24":5.62989,_:"5.0-5.4 8.2 10.1 12.0","6.2-6.4":0.01033,"7.2-7.4":0.01033,"9.2":0.01033,"11.1-11.2":0.04132,"13.0":0.05165,"14.0":0.03099,"15.0":0.01033,"16.0":0.03099,"17.0":0.03099,"18.0":0.02066,"19.0":0.06198},I:{"0":0.06709,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.00653,"9":0.00653,"10":0.00653,"11":0.07507,_:"6 7 5.5"},K:{"0":0.31338,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04042},H:{"0":0.01},L:{"0":45.58555},R:{_:"0"},M:{"0":0.41096}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js index b086e8b10ab116..af267f01583a6e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IM.js @@ -1 +1 @@ -module.exports={C:{"2":0.00456,"3":0.00456,"4":0.00456,"5":0.00456,"12":0.00456,"16":0.00456,"21":0.00456,"23":0.00456,"26":0.00456,"28":0.00456,"29":0.00456,"31":0.00456,"32":0.00456,"34":0.00456,"35":0.00456,"36":0.00456,"37":0.00456,"38":0.00911,"39":0.00911,"40":0.00911,"41":0.00456,"78":0.00456,"96":0.00911,"102":0.20507,"103":1.24862,"104":0.11393,"105":0.01367,"115":0.47393,"118":0.00456,"120":0.00456,"121":0.00456,"122":0.04101,"123":1.039,"124":0.4876,"125":0.00456,_:"6 7 8 9 10 11 13 14 15 17 18 19 20 22 24 25 27 30 33 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 106 107 108 109 110 111 112 113 114 116 117 119 126 127 3.5","3.6":0.00911},D:{"4":0.00456,"6":0.00456,"11":0.00456,"17":0.00456,"19":0.00456,"21":0.00456,"27":0.00456,"30":0.00456,"31":0.00911,"34":0.00456,"35":0.00456,"36":0.00456,"37":0.00456,"38":0.00456,"39":0.00911,"40":0.00911,"41":0.01367,"42":0.00911,"43":0.02279,"44":0.02734,"45":0.02279,"46":0.02734,"47":0.01367,"51":0.02279,"65":0.04101,"70":0.01823,"76":0.00456,"79":0.00456,"80":0.00456,"83":0.00456,"84":0.00911,"86":0.02279,"87":0.02279,"88":0.01367,"89":0.00456,"90":0.00456,"91":0.00456,"93":0.02279,"98":0.05468,"99":0.01823,"102":0.24608,"103":0.20962,"104":2.56103,"105":0.59697,"107":0.00456,"108":0.00456,"109":0.44203,"112":0.00456,"113":0.00911,"114":0.00911,"115":0.01823,"116":0.61975,"117":0.03646,"118":0.0957,"119":0.11393,"120":0.50583,"121":1.00254,"122":10.6406,"123":3.02585,"124":0.00456,_:"5 7 8 9 10 12 13 14 15 16 18 20 22 23 24 25 26 28 29 32 33 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 75 77 78 81 85 92 94 95 96 97 100 101 106 110 111 125 126"},F:{"28":0.00456,"31":0.00911,"70":0.00456,"95":0.00911,"106":0.02279,"107":0.9114,"108":0.05924,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00456},B:{"12":0.00456,"86":0.00456,"98":0.00911,"107":0.02279,"109":0.02279,"115":0.01367,"116":0.00456,"117":0.00456,"118":0.00911,"119":0.00456,"120":0.03646,"121":0.41469,"122":6.60765,"123":0.56051,_:"13 14 15 16 17 18 79 80 81 83 84 85 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 108 110 111 112 113 114"},E:{"5":0.00456,"7":0.00456,"8":0.00911,"9":0.05468,"12":0.05013,"14":0.20051,"15":0.01367,_:"0 4 6 10 11 13 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00456,"9.1":0.00911,"12.1":0.1595,"13.1":0.08203,"14.1":0.17772,"15.1":0.00911,"15.2-15.3":0.05468,"15.4":0.07291,"15.5":0.08203,"15.6":2.33774,"16.0":0.0319,"16.1":0.10025,"16.2":0.05468,"16.3":0.29621,"16.4":0.03646,"16.5":0.22785,"16.6":1.42178,"17.0":0.10481,"17.1":0.19139,"17.2":0.76558,"17.3":3.80965,"17.4":0.76102},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00529,"5.0-5.1":0.00264,"6.0-6.1":0.01586,"7.0-7.1":0.0185,"8.1-8.4":0.00529,"9.0-9.2":0.01057,"9.3":0.06607,"10.0-10.2":0.01057,"10.3":0.11099,"11.0-11.2":0.07928,"11.3-11.4":0.02643,"12.0-12.1":0.02378,"12.2-12.5":0.45718,"13.0-13.1":0.00793,"13.2":0.07928,"13.3":0.02378,"13.4-13.7":0.08985,"14.0-14.4":0.17177,"14.5-14.8":0.26955,"15.0-15.1":0.11628,"15.2-15.3":0.13742,"15.4":0.1612,"15.5":0.20613,"15.6-15.8":1.72564,"16.0":0.42018,"16.1":0.86943,"16.2":0.42018,"16.3":0.74787,"16.4":0.15856,"16.5":0.33561,"16.6-16.7":2.54222,"17.0":0.33033,"17.1":0.66066,"17.2":1.06498,"17.3":13.10747,"17.4":1.92384,"17.5":0},P:{"4":0.1609,"20":0.04597,"21":0.02299,"22":0.05746,"23":1.35615,"24":1.33316,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0 19.0","6.2-6.4":0.03448,"13.0":0.02299,"17.0":0.35628},I:{"0":0.30892,"3":0,"4":0.00003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00019,"4.4":0,"4.4.3-4.4.4":0.00074},K:{"0":0.15238,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.01367,"7":0.01823,"8":0.16861,"9":0.02734,"10":0.02734,"11":0.12304,_:"5.5"},S:{"2.5":0.01088,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.45695},R:{_:"0"},M:{"0":1.45846},Q:{_:"14.9"},O:{"0":0.1034},H:{"0":0}}; +module.exports={C:{"2":0.00434,"3":0.00867,"4":0.00434,"6":0.00434,"7":0.00434,"12":0.00434,"21":0.00434,"23":0.00434,"24":0.00434,"27":0.00434,"29":0.00434,"30":0.00434,"33":0.00434,"35":0.00434,"36":0.00434,"37":0.00434,"38":0.00867,"39":0.00434,"40":0.01301,"41":0.00434,"42":0.00434,"78":0.00434,"96":0.03035,"102":0.09537,"103":0.66326,"104":0.06503,"105":0.00434,"115":0.32079,"118":0.00434,"120":0.00867,"122":0.00867,"123":0.00867,"124":1.57794,"125":0.54188,_:"5 8 9 10 11 13 14 15 16 17 18 19 20 22 25 26 28 31 32 34 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 106 107 108 109 110 111 112 113 114 116 117 119 121 126 127 128","3.5":0.00434,"3.6":0.01301},D:{"11":0.00434,"13":0.00434,"16":0.00434,"19":0.00434,"20":0.00434,"21":0.00434,"27":0.00434,"28":0.00434,"31":0.00867,"32":0.00434,"33":0.00867,"36":0.00867,"37":0.01301,"38":0.00434,"39":0.01301,"40":0.00867,"41":0.01301,"42":0.00867,"43":0.02168,"44":0.03468,"45":0.02601,"46":0.02601,"47":0.01734,"51":0.05202,"70":0.01301,"76":0.01301,"79":0.00434,"80":0.00434,"83":0.00434,"84":0.00867,"86":0.00434,"87":0.01734,"88":0.00867,"89":0.00434,"92":0.00434,"93":0.01301,"94":0.00434,"95":0.00434,"98":0.03468,"99":0.01301,"102":0.13439,"103":0.27311,"104":1.36553,"105":0.52454,"107":0.00434,"108":0.00867,"109":0.88001,"112":0.00434,"113":0.00867,"114":0.00434,"115":0.02168,"116":0.57656,"117":0.01734,"118":0.02601,"119":0.09104,"120":0.20375,"121":0.25143,"122":0.71528,"123":9.29858,"124":4.05756,"125":0.01301,_:"4 5 6 7 8 9 10 12 14 15 17 18 22 23 24 25 26 29 30 34 35 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 77 78 81 85 90 91 96 97 100 101 106 110 111 126 127"},F:{"12":0.00434,"26":0.00434,"31":0.00867,"70":0.00434,"95":0.00434,"107":0.2601,"108":0.39449,"109":0.04769,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00434},B:{"12":0.00434,"83":0.00434,"98":0.00434,"107":0.02601,"109":0.03035,"118":0.00434,"119":0.01301,"120":0.01734,"121":0.00434,"122":0.53321,"123":5.50545,"124":2.21952,_:"13 14 15 16 17 18 79 80 81 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 108 110 111 112 113 114 115 116 117"},E:{"4":0.00434,"7":0.00434,"8":0.00434,"9":0.06936,"13":0.00434,"14":0.11705,"15":0.00434,_:"0 5 6 10 11 12 3.1 3.2 9.1 10.1","5.1":0.00867,"6.1":0.00434,"7.1":0.00434,"11.1":0.00434,"12.1":0.09537,"13.1":0.05636,"14.1":0.09971,"15.1":0.02168,"15.2-15.3":0.0867,"15.4":0.04769,"15.5":0.09537,"15.6":0.52454,"16.0":0.04335,"16.1":0.06936,"16.2":0.08237,"16.3":0.16473,"16.4":0.0867,"16.5":0.12572,"16.6":1.31351,"17.0":0.0737,"17.1":0.13005,"17.2":0.82365,"17.3":1.56927,"17.4":5.05461,"17.5":0.00434},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00563,"5.0-5.1":0.00563,"6.0-6.1":0.01408,"7.0-7.1":0.02252,"8.1-8.4":0.00563,"9.0-9.2":0.01408,"9.3":0.07039,"10.0-10.2":0.01408,"10.3":0.11262,"11.0-11.2":0.09573,"11.3-11.4":0.02816,"12.0-12.1":0.01971,"12.2-12.5":0.45894,"13.0-13.1":0.00845,"13.2":0.09291,"13.3":0.02252,"13.4-13.7":0.08728,"14.0-14.4":0.17175,"14.5-14.8":0.26185,"15.0-15.1":0.12107,"15.2-15.3":0.13796,"15.4":0.15767,"15.5":0.19991,"15.6-15.8":1.74566,"16.0":0.40826,"16.1":0.8503,"16.2":0.40826,"16.3":0.72079,"16.4":0.14923,"16.5":0.31253,"16.6-16.7":2.46926,"17.0":0.29564,"17.1":0.54622,"17.2":0.72642,"17.3":5.29891,"17.4":11.96056,"17.5":0.10981},P:{"4":0.07846,"20":0.06725,"21":0.02242,"22":0.01121,"23":0.24658,"24":2.17442,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 18.0 19.0","6.2-6.4":0.03363,"11.1-11.2":0.01121,"13.0":0.02242,"17.0":0.36988},I:{"0":0.34973,"3":0,"4":0.00004,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00007,"4.2-4.3":0.00021,"4.4":0,"4.4.3-4.4.4":0.00088},A:{"6":0.00876,"7":0.01752,"8":0.17961,"9":0.03505,"10":0.03505,"11":0.12704,"5.5":0.00438},K:{"0":0.3455,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01699,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0793},H:{"0":0},L:{"0":23.11203},R:{_:"0"},M:{"0":0.93456}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js index 6fb3c9121ee759..7503a0acb3d7dd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IN.js @@ -1 +1 @@ -module.exports={C:{"42":0.00453,"47":0.00227,"52":0.0068,"59":0.00227,"66":0.00227,"72":0.00227,"88":0.00907,"102":0.00227,"103":0.00227,"104":0.00227,"106":0.00227,"107":0.00227,"108":0.00227,"109":0.00227,"110":0.00227,"111":0.00227,"112":0.00227,"113":0.03854,"114":0.00227,"115":0.2471,"116":0.00227,"117":0.00227,"118":0.00227,"119":0.00227,"120":0.00227,"121":0.0068,"122":0.01587,"123":0.42166,"124":0.17456,"125":0.00453,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 105 126 127 3.5 3.6"},D:{"49":0.00453,"55":0.00227,"56":0.00227,"61":0.00227,"63":0.00227,"66":0.01134,"68":0.00453,"69":0.00453,"70":0.00453,"71":0.00907,"72":0.00453,"73":0.00453,"74":0.00907,"75":0.00227,"76":0.00227,"77":0.00227,"78":0.00453,"79":0.01134,"80":0.00907,"81":0.00907,"83":0.00907,"84":0.00453,"85":0.00453,"86":0.01134,"87":0.01814,"88":0.0068,"89":0.0068,"90":0.0068,"91":0.0068,"92":0.00227,"93":0.00453,"94":0.00907,"95":0.00453,"96":0.00453,"97":0.00907,"98":0.00453,"99":0.0068,"100":0.0068,"101":0.0204,"102":0.00907,"103":0.02494,"104":0.0136,"105":0.0136,"106":0.01814,"107":0.01814,"108":0.04307,"109":2.34181,"110":0.0136,"111":0.05668,"112":0.02494,"113":0.02494,"114":0.05441,"115":0.04761,"116":0.05441,"117":0.08388,"118":0.04761,"119":0.10202,"120":0.29244,"121":0.9204,"122":10.15843,"123":2.59798,"124":0.01134,"125":0.00227,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 62 64 65 67 126"},F:{"28":0.00227,"36":0.00227,"79":0.00227,"81":0.00453,"85":0.00227,"95":0.0204,"106":0.00227,"107":0.11335,"108":0.04761,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00227,"17":0.00227,"18":0.00453,"84":0.00227,"89":0.00227,"90":0.00227,"92":0.0068,"100":0.00227,"107":0.00227,"108":0.00227,"109":0.01587,"110":0.00227,"111":0.00227,"112":0.00227,"114":0.00453,"115":0.00227,"116":0.00227,"117":0.00227,"118":0.00227,"119":0.0068,"120":0.01587,"121":0.03854,"122":0.93174,"123":0.07254,_:"13 14 15 16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 113"},E:{"14":0.00227,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 12.1 15.2-15.3 17.5","9.1":0.0136,"11.1":0.00227,"13.1":0.00227,"14.1":0.0068,"15.1":0.00227,"15.4":0.00227,"15.5":0.00227,"15.6":0.0136,"16.0":0.00453,"16.1":0.00453,"16.2":0.00453,"16.3":0.0068,"16.4":0.00227,"16.5":0.00907,"16.6":0.0204,"17.0":0.0068,"17.1":0.01134,"17.2":0.0272,"17.3":0.06801,"17.4":0.02947},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00042,"5.0-5.1":0.00021,"6.0-6.1":0.00125,"7.0-7.1":0.00146,"8.1-8.4":0.00042,"9.0-9.2":0.00084,"9.3":0.00522,"10.0-10.2":0.00084,"10.3":0.00877,"11.0-11.2":0.00626,"11.3-11.4":0.00209,"12.0-12.1":0.00188,"12.2-12.5":0.03612,"13.0-13.1":0.00063,"13.2":0.00626,"13.3":0.00188,"13.4-13.7":0.0071,"14.0-14.4":0.01357,"14.5-14.8":0.0213,"15.0-15.1":0.00919,"15.2-15.3":0.01086,"15.4":0.01274,"15.5":0.01629,"15.6-15.8":0.13634,"16.0":0.0332,"16.1":0.06869,"16.2":0.0332,"16.3":0.05909,"16.4":0.01253,"16.5":0.02652,"16.6-16.7":0.20086,"17.0":0.0261,"17.1":0.0522,"17.2":0.08414,"17.3":1.0356,"17.4":0.152,"17.5":0},P:{"4":0.06169,"20":0.01028,"21":0.04113,"22":0.05141,"23":0.35988,"24":0.26734,_:"5.0-5.4 8.2 10.1 12.0 14.0 15.0","6.2-6.4":0.01028,"7.2-7.4":0.05141,"9.2":0.01028,"11.1-11.2":0.01028,"13.0":0.01028,"16.0":0.01028,"17.0":0.01028,"18.0":0.01028,"19.0":0.02056},I:{"0":0.04621,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":3.47718,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00227,"11":0.02267,_:"6 7 8 10 5.5"},S:{"2.5":0.58771,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":71.04211},R:{_:"0"},M:{"0":0.15466},Q:{_:"14.9"},O:{"0":1.49247},H:{"0":0.08}}; +module.exports={C:{"42":0.00652,"47":0.00217,"52":0.00652,"59":0.00217,"62":0.00217,"66":0.00217,"72":0.00217,"88":0.00652,"102":0.00217,"103":0.00217,"105":0.00217,"106":0.00217,"107":0.00217,"108":0.00217,"109":0.00217,"110":0.00217,"111":0.00217,"112":0.00217,"113":0.01087,"115":0.26088,"116":0.00217,"117":0.00217,"118":0.00217,"119":0.00217,"120":0.00217,"121":0.00435,"122":0.00652,"123":0.01957,"124":0.3848,"125":0.20436,"126":0.0087,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 48 49 50 51 53 54 55 56 57 58 60 61 63 64 65 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 114 127 128 3.5 3.6"},D:{"49":0.00652,"55":0.00217,"56":0.00217,"63":0.00217,"66":0.01522,"68":0.00217,"69":0.00217,"70":0.00217,"71":0.00652,"72":0.00217,"73":0.00217,"74":0.00652,"76":0.00217,"77":0.00217,"78":0.00217,"79":0.01087,"80":0.00435,"81":0.00652,"83":0.00652,"84":0.00217,"85":0.00217,"86":0.0087,"87":0.01522,"88":0.00435,"89":0.00217,"90":0.00435,"91":0.00435,"92":0.00217,"93":0.00435,"94":0.0087,"95":0.00435,"96":0.00435,"97":0.00652,"98":0.00652,"99":0.00435,"100":0.0087,"101":0.02609,"102":0.01087,"103":0.02609,"104":0.01522,"105":0.01087,"106":0.01739,"107":0.01522,"108":0.04131,"109":2.24574,"110":0.01087,"111":0.04348,"112":0.01957,"113":0.02174,"114":0.04565,"115":0.08913,"116":0.04565,"117":0.06087,"118":0.03913,"119":0.07174,"120":0.14348,"121":0.19566,"122":0.65437,"123":9.54386,"124":3.31318,"125":0.03044,"126":0.00217,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 64 65 67 75 127"},F:{"28":0.00217,"36":0.00217,"79":0.00217,"82":0.00217,"85":0.00217,"95":0.01957,"107":0.04565,"108":0.09348,"109":0.03696,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00217,"16":0.00217,"17":0.00217,"18":0.00435,"92":0.0087,"100":0.00217,"106":0.00217,"107":0.00217,"108":0.00217,"109":0.01304,"110":0.00217,"111":0.00217,"114":0.00217,"115":0.00217,"116":0.00217,"117":0.00217,"118":0.00217,"119":0.00435,"120":0.0087,"121":0.01087,"122":0.0587,"123":0.70655,"124":0.3174,_:"13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 112 113"},E:{"14":0.00217,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 12.1 15.1 15.2-15.3","9.1":0.00217,"11.1":0.00217,"13.1":0.00435,"14.1":0.00652,"15.4":0.00217,"15.5":0.00217,"15.6":0.01522,"16.0":0.00435,"16.1":0.00435,"16.2":0.00435,"16.3":0.00652,"16.4":0.00435,"16.5":0.0087,"16.6":0.01957,"17.0":0.00652,"17.1":0.01087,"17.2":0.01522,"17.3":0.02826,"17.4":0.09783,"17.5":0.00217},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00043,"5.0-5.1":0.00043,"6.0-6.1":0.00107,"7.0-7.1":0.00172,"8.1-8.4":0.00043,"9.0-9.2":0.00107,"9.3":0.00536,"10.0-10.2":0.00107,"10.3":0.00858,"11.0-11.2":0.00729,"11.3-11.4":0.00214,"12.0-12.1":0.0015,"12.2-12.5":0.03495,"13.0-13.1":0.00064,"13.2":0.00708,"13.3":0.00172,"13.4-13.7":0.00665,"14.0-14.4":0.01308,"14.5-14.8":0.01994,"15.0-15.1":0.00922,"15.2-15.3":0.01051,"15.4":0.01201,"15.5":0.01522,"15.6-15.8":0.13295,"16.0":0.03109,"16.1":0.06476,"16.2":0.03109,"16.3":0.05489,"16.4":0.01136,"16.5":0.0238,"16.6-16.7":0.18806,"17.0":0.02252,"17.1":0.0416,"17.2":0.05532,"17.3":0.40356,"17.4":0.91091,"17.5":0.00836},P:{"4":0.06353,"20":0.01059,"21":0.03176,"22":0.05294,"23":0.15882,"24":0.46588,_:"5.0-5.4 8.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","6.2-6.4":0.01059,"7.2-7.4":0.04235,"9.2":0.01059,"13.0":0.01059,"17.0":0.01059,"19.0":0.01059},I:{"0":0.03897,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.00217,"9":0.01739,"10":0.00217,"11":0.02391,_:"6 7 5.5"},K:{"0":3.33214,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.51652,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":1.47911},H:{"0":0.08},L:{"0":71.52366},R:{_:"0"},M:{"0":0.18}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js index c78dfa51e826e1..d52b606d63e161 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IQ.js @@ -1 +1 @@ -module.exports={C:{"33":0.00167,"34":0.00167,"47":0.00167,"52":0.00167,"58":0.00167,"66":0.00167,"68":0.01837,"72":0.00167,"78":0.00167,"88":0.00167,"97":0.00501,"99":0.00334,"102":0.00167,"113":0.00334,"115":0.1336,"118":0.00167,"121":0.00668,"122":0.01002,"123":0.21543,"124":0.1002,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 98 100 101 103 104 105 106 107 108 109 110 111 112 114 116 117 119 120 125 126 127 3.5 3.6"},D:{"11":0.01169,"21":0.00167,"26":0.00167,"34":0.00334,"38":0.02171,"40":0.00167,"43":0.02839,"47":0.00334,"49":0.00167,"50":0.00167,"55":0.00334,"56":0.00334,"58":0.01503,"60":0.00334,"63":0.00668,"64":0.00167,"65":0.00501,"66":0.00334,"67":0.00167,"68":0.01002,"69":0.00501,"70":0.00668,"71":0.00334,"72":0.00835,"73":0.01503,"74":0.00334,"75":0.01336,"76":0.00167,"77":0.00167,"78":0.00334,"79":0.05177,"80":0.00501,"81":0.00668,"83":0.04175,"84":0.00167,"85":0.00167,"86":0.01503,"87":0.04676,"88":0.01002,"89":0.00835,"90":0.00668,"91":0.00167,"92":0.00334,"93":0.00334,"94":0.00835,"95":0.02004,"96":0.00334,"97":0.00334,"98":0.03173,"99":0.02004,"100":0.00668,"101":0.00334,"102":0.03006,"103":0.04175,"104":0.00334,"105":0.01336,"106":0.01336,"107":0.00835,"108":0.01336,"109":1.33099,"110":0.02672,"111":0.01837,"112":0.01002,"113":0.00501,"114":0.03507,"115":0.00835,"116":0.01503,"117":0.01503,"118":0.00835,"119":0.08517,"120":0.11523,"121":0.2839,"122":4.71274,"123":1.52137,"124":0.00334,"125":0.00167,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 41 42 44 45 46 48 51 52 53 54 57 59 61 62 126"},F:{"46":0.00167,"64":0.00167,"79":0.00501,"81":0.00167,"82":0.00167,"83":0.00167,"85":0.00167,"95":0.02839,"106":0.00501,"107":0.32565,"108":0.11022,"109":0.00167,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00167,"16":0.00167,"17":0.00167,"18":0.00668,"84":0.00167,"89":0.00167,"92":0.01837,"98":0.00501,"100":0.00334,"102":0.00167,"106":0.00167,"109":0.02171,"114":0.00334,"115":0.00167,"116":0.00167,"117":0.00167,"118":0.00334,"119":0.00501,"120":0.01169,"121":0.06847,"122":1.03874,"123":0.09519,_:"13 14 15 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 99 101 103 104 105 107 108 110 111 112 113"},E:{"13":0.00167,"14":0.00835,"15":0.00167,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.06847,"11.1":0.00167,"12.1":0.00167,"13.1":0.00668,"14.1":0.02338,"15.1":0.00167,"15.2-15.3":0.00167,"15.4":0.00668,"15.5":0.02338,"15.6":0.06012,"16.0":0.00334,"16.1":0.02505,"16.2":0.03173,"16.3":0.0501,"16.4":0.00835,"16.5":0.02338,"16.6":0.14696,"17.0":0.0334,"17.1":0.04175,"17.2":0.07014,"17.3":0.52271,"17.4":0.12191},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00261,"5.0-5.1":0.00131,"6.0-6.1":0.00783,"7.0-7.1":0.00914,"8.1-8.4":0.00261,"9.0-9.2":0.00522,"9.3":0.03264,"10.0-10.2":0.00522,"10.3":0.05483,"11.0-11.2":0.03916,"11.3-11.4":0.01305,"12.0-12.1":0.01175,"12.2-12.5":0.22585,"13.0-13.1":0.00392,"13.2":0.03916,"13.3":0.01175,"13.4-13.7":0.04439,"14.0-14.4":0.08486,"14.5-14.8":0.13316,"15.0-15.1":0.05744,"15.2-15.3":0.06788,"15.4":0.07963,"15.5":0.10183,"15.6-15.8":0.85247,"16.0":0.20757,"16.1":0.4295,"16.2":0.20757,"16.3":0.36945,"16.4":0.07833,"16.5":0.16579,"16.6-16.7":1.25586,"17.0":0.16318,"17.1":0.32637,"17.2":0.5261,"17.3":6.47512,"17.4":0.95038,"17.5":0},P:{"4":0.15613,"20":0.05204,"21":0.13531,"22":0.17695,"23":2.08172,"24":0.95759,"5.0-5.4":0.01041,"6.2-6.4":0.03123,"7.2-7.4":0.14572,_:"8.2","9.2":0.02082,"10.1":0.02082,"11.1-11.2":0.06245,"12.0":0.03123,"13.0":0.04163,"14.0":0.03123,"15.0":0.02082,"16.0":0.04163,"17.0":0.07286,"18.0":0.02082,"19.0":0.07286},I:{"0":0.06637,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.60816,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0018,"11":0.04329,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":68.90165},R:{_:"0"},M:{"0":0.09164},Q:{"14.9":0.00833},O:{"0":0.31658},H:{"0":0}}; +module.exports={C:{"34":0.0022,"58":0.0011,"66":0.0011,"68":0.0022,"69":0.00549,"88":0.0011,"97":0.0011,"99":0.0011,"102":0.0011,"113":0.0011,"115":0.06259,"118":0.0011,"121":0.0022,"122":0.0022,"123":0.00549,"124":0.08125,"125":0.0549,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 67 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 98 100 101 103 104 105 106 107 108 109 110 111 112 114 116 117 119 120 126 127 128 3.5 3.6"},D:{"11":0.01537,"33":0.0022,"34":0.00329,"38":0.02416,"41":0.0011,"43":0.03623,"47":0.00439,"49":0.0011,"50":0.0011,"53":0.0011,"55":0.0011,"56":0.00439,"57":0.0011,"58":0.00659,"60":0.0011,"63":0.00439,"64":0.0022,"65":0.00659,"66":0.00439,"67":0.0011,"68":0.00659,"69":0.00878,"70":0.00329,"71":0.00329,"72":0.00549,"73":0.01757,"74":0.0011,"75":0.00878,"76":0.0022,"77":0.0011,"78":0.00549,"79":0.06259,"80":0.0011,"81":0.00659,"83":0.04721,"84":0.0011,"85":0.0022,"86":0.00549,"87":0.06149,"88":0.01318,"89":0.00439,"90":0.00439,"91":0.00878,"92":0.0022,"93":0.00549,"94":0.00988,"95":0.02306,"96":0.0022,"97":0.00329,"98":0.0571,"99":0.02306,"100":0.00549,"101":0.0022,"102":0.02306,"103":0.04172,"104":0.00329,"105":0.01098,"106":0.00549,"107":0.00439,"108":0.00659,"109":0.80483,"110":0.04392,"111":0.00439,"112":0.01098,"113":0.00329,"114":0.01976,"115":0.00329,"116":0.00769,"117":0.00659,"118":0.00549,"119":0.06588,"120":0.04612,"121":0.03733,"122":0.09004,"123":2.45074,"124":1.0958,"125":0.01098,"126":0.0011,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 39 40 42 44 45 46 48 51 52 54 59 61 62 127"},F:{"28":0.0011,"46":0.0022,"79":0.00439,"82":0.0011,"83":0.0011,"84":0.0011,"85":0.0011,"95":0.02086,"106":0.0011,"107":0.10102,"108":0.09553,"109":0.03294,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00329,"84":0.0011,"92":0.00769,"98":0.0011,"100":0.0011,"109":0.01318,"111":0.0011,"114":0.0011,"115":0.0011,"116":0.0011,"118":0.0011,"119":0.00329,"120":0.00329,"121":0.00659,"122":0.03404,"123":0.35136,"124":0.19654,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 112 113 117"},E:{"13":0.00549,"14":0.00988,"15":0.0022,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.00439,"13.1":0.00329,"14.1":0.01867,"15.1":0.0011,"15.2-15.3":0.0022,"15.4":0.00439,"15.5":0.01318,"15.6":0.07027,"16.0":0.0011,"16.1":0.02196,"16.2":0.02086,"16.3":0.04941,"16.4":0.00659,"16.5":0.01757,"16.6":0.11639,"17.0":0.01757,"17.1":0.02965,"17.2":0.02855,"17.3":0.13176,"17.4":0.39857,"17.5":0.00329},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00238,"5.0-5.1":0.00238,"6.0-6.1":0.00594,"7.0-7.1":0.0095,"8.1-8.4":0.00238,"9.0-9.2":0.00594,"9.3":0.02969,"10.0-10.2":0.00594,"10.3":0.0475,"11.0-11.2":0.04038,"11.3-11.4":0.01188,"12.0-12.1":0.00831,"12.2-12.5":0.19357,"13.0-13.1":0.00356,"13.2":0.03919,"13.3":0.0095,"13.4-13.7":0.03681,"14.0-14.4":0.07244,"14.5-14.8":0.11044,"15.0-15.1":0.05106,"15.2-15.3":0.05819,"15.4":0.0665,"15.5":0.08431,"15.6-15.8":0.73627,"16.0":0.17219,"16.1":0.35863,"16.2":0.17219,"16.3":0.30401,"16.4":0.06294,"16.5":0.13182,"16.6-16.7":1.04146,"17.0":0.12469,"17.1":0.23038,"17.2":0.30638,"17.3":2.23493,"17.4":5.04461,"17.5":0.04631},P:{"4":0.15407,"20":0.06163,"21":0.15407,"22":0.17462,"23":0.47249,"24":2.7425,"5.0-5.4":0.02054,"6.2-6.4":0.02054,"7.2-7.4":0.19516,_:"8.2 10.1","9.2":0.02054,"11.1-11.2":0.09244,"12.0":0.02054,"13.0":0.06163,"14.0":0.06163,"15.0":0.03081,"16.0":0.06163,"17.0":0.09244,"18.0":0.03081,"19.0":0.09244},I:{"0":0.07092,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"8":0.0012,"11":0.02515,_:"6 7 9 10 5.5"},K:{"0":0.56973,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0089},O:{"0":0.24926},H:{"0":0},L:{"0":74.64051},R:{_:"0"},M:{"0":0.08902}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js index 3b36b5db209ad1..18153fd1e9ef61 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IR.js @@ -1 +1 @@ -module.exports={C:{"38":0.00196,"41":0.00196,"47":0.00196,"48":0.00196,"50":0.00392,"52":0.02158,"56":0.00196,"60":0.00196,"68":0.00196,"70":0.00196,"72":0.00589,"74":0.00196,"77":0.00196,"78":0.00196,"82":0.00196,"85":0.00196,"88":0.00196,"89":0.00196,"90":0.00196,"91":0.00196,"92":0.00196,"94":0.00392,"95":0.00196,"96":0.00196,"97":0.00196,"98":0.00196,"99":0.00392,"100":0.00392,"101":0.00196,"102":0.00589,"103":0.00196,"104":0.00196,"105":0.00392,"106":0.00392,"107":0.00392,"108":0.00392,"109":0.00392,"110":0.00392,"111":0.00392,"112":0.00589,"113":0.00589,"114":0.00785,"115":1.00454,"116":0.00392,"117":0.00589,"118":0.00589,"119":0.00785,"120":0.00981,"121":0.02158,"122":0.06671,"123":1.27922,"124":0.42968,"125":0.00196,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 49 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 71 73 75 76 79 80 81 83 84 86 87 93 126 127 3.5 3.6"},D:{"34":0.00196,"38":0.00392,"41":0.00196,"44":0.00196,"46":0.00196,"48":0.00196,"49":0.00785,"51":0.00196,"57":0.00196,"58":0.00196,"62":0.00196,"63":0.00392,"64":0.00196,"65":0.00196,"67":0.00196,"68":0.00196,"69":0.00392,"70":0.00196,"71":0.01177,"72":0.00392,"73":0.00196,"74":0.00196,"75":0.00196,"76":0.00392,"77":0.00392,"78":0.00981,"79":0.01177,"80":0.00981,"81":0.00589,"83":0.01177,"84":0.00785,"85":0.00785,"86":0.0157,"87":0.0157,"88":0.00785,"89":0.00981,"90":0.00785,"91":0.00981,"92":0.00981,"93":0.00392,"94":0.00785,"95":0.00785,"96":0.01373,"97":0.00589,"98":0.00981,"99":0.00981,"100":0.01373,"101":0.00785,"102":0.02747,"103":0.02747,"104":0.02158,"105":0.01766,"106":0.02943,"107":0.03532,"108":0.0569,"109":2.84882,"110":0.0157,"111":0.03335,"112":0.03139,"113":0.01177,"114":0.02747,"115":0.01962,"116":0.03924,"117":0.03532,"118":0.02551,"119":0.07259,"120":0.23936,"121":0.54151,"122":7.03769,"123":1.66181,"124":0.00196,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 45 47 50 52 53 54 55 56 59 60 61 66 125 126"},F:{"46":0.00196,"64":0.00196,"79":0.00981,"81":0.00196,"85":0.00196,"92":0.00196,"94":0.00196,"95":0.04316,"101":0.00196,"102":0.00196,"105":0.00392,"106":0.00981,"107":0.16873,"108":0.06082,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 86 87 88 89 90 91 93 96 97 98 99 100 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00196,"13":0.00392,"14":0.00196,"15":0.00196,"16":0.00196,"17":0.00196,"18":0.01177,"81":0.00196,"84":0.00196,"88":0.00196,"89":0.00392,"90":0.00392,"92":0.0569,"100":0.01177,"105":0.00196,"106":0.00196,"107":0.00392,"108":0.00392,"109":0.08633,"110":0.00392,"111":0.00196,"112":0.00196,"113":0.00196,"114":0.00392,"115":0.00392,"116":0.00392,"117":0.00392,"118":0.00392,"119":0.00785,"120":0.02551,"121":0.04905,"122":0.64157,"123":0.05494,_:"79 80 83 85 86 87 91 93 94 95 96 97 98 99 101 102 103 104"},E:{"14":0.00196,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 17.5","5.1":0.00196,"13.1":0.00392,"14.1":0.00392,"15.4":0.00196,"15.5":0.00196,"15.6":0.01373,"16.0":0.00196,"16.1":0.00196,"16.2":0.00196,"16.3":0.00196,"16.4":0.00196,"16.5":0.00196,"16.6":0.00785,"17.0":0.00392,"17.1":0.00589,"17.2":0.00981,"17.3":0.02354,"17.4":0.01177},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00118,"5.0-5.1":0.00059,"6.0-6.1":0.00354,"7.0-7.1":0.00414,"8.1-8.4":0.00118,"9.0-9.2":0.00236,"9.3":0.01477,"10.0-10.2":0.00236,"10.3":0.02481,"11.0-11.2":0.01772,"11.3-11.4":0.00591,"12.0-12.1":0.00532,"12.2-12.5":0.10221,"13.0-13.1":0.00177,"13.2":0.01772,"13.3":0.00532,"13.4-13.7":0.02009,"14.0-14.4":0.0384,"14.5-14.8":0.06026,"15.0-15.1":0.02599,"15.2-15.3":0.03072,"15.4":0.03604,"15.5":0.04608,"15.6-15.8":0.38579,"16.0":0.09394,"16.1":0.19437,"16.2":0.09394,"16.3":0.16719,"16.4":0.03545,"16.5":0.07503,"16.6-16.7":0.56834,"17.0":0.07385,"17.1":0.1477,"17.2":0.23809,"17.3":2.93033,"17.4":0.4301,"17.5":0},P:{"4":0.16071,"20":0.22098,"21":0.33147,"22":0.59263,"23":2.0491,"24":1.8482,"5.0-5.4":0.02009,"6.2-6.4":0.02009,"7.2-7.4":0.21094,"8.2":0.02009,"9.2":0.05022,"10.1":0.02009,"11.1-11.2":0.11049,"12.0":0.05022,"13.0":0.14062,"14.0":0.13058,"15.0":0.07031,"16.0":0.19085,"17.0":0.26116,"18.0":0.17076,"19.0":0.25111},I:{"0":0.00801,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.4262,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00196,"11":0.64942,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":67.40437},R:{_:"0"},M:{"0":0.88418},Q:{_:"14.9"},O:{"0":0.05627},H:{"0":0.04}}; +module.exports={C:{"33":0.00244,"37":0.00244,"38":0.00244,"40":0.00244,"41":0.00244,"43":0.00244,"47":0.00244,"48":0.00244,"50":0.00487,"52":0.02923,"56":0.00244,"60":0.00244,"68":0.00244,"70":0.00244,"72":0.00974,"75":0.00244,"77":0.00244,"78":0.00244,"84":0.00244,"88":0.00244,"89":0.00244,"90":0.00244,"91":0.00244,"92":0.00244,"94":0.00487,"95":0.00244,"96":0.00244,"97":0.00244,"98":0.00244,"99":0.00487,"100":0.00244,"101":0.00244,"102":0.00487,"103":0.00244,"104":0.00244,"105":0.00487,"106":0.00487,"107":0.00487,"108":0.00487,"109":0.00731,"110":0.00487,"111":0.00487,"112":0.00487,"113":0.00731,"114":0.00731,"115":1.33249,"116":0.00487,"117":0.00487,"118":0.00731,"119":0.00731,"120":0.00974,"121":0.01949,"122":0.03654,"123":0.10962,"124":1.38365,"125":0.74054,"126":0.00244,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 39 42 44 45 46 49 51 53 54 55 57 58 59 61 62 63 64 65 66 67 69 71 73 74 76 79 80 81 82 83 85 86 87 93 127 128 3.5 3.6"},D:{"31":0.00244,"34":0.00244,"38":0.00487,"41":0.00244,"44":0.00244,"45":0.00244,"46":0.00244,"48":0.00244,"49":0.00731,"51":0.00244,"55":0.00244,"56":0.00244,"58":0.00244,"61":0.00244,"62":0.00244,"63":0.00487,"64":0.00244,"65":0.00244,"66":0.00244,"67":0.00244,"68":0.00244,"69":0.00487,"70":0.00244,"71":0.01462,"72":0.00487,"73":0.00244,"74":0.00244,"75":0.00244,"76":0.00487,"77":0.00244,"78":0.01218,"79":0.01705,"80":0.01218,"81":0.01462,"83":0.01218,"84":0.00974,"85":0.01218,"86":0.02436,"87":0.02192,"88":0.00974,"89":0.00974,"90":0.00731,"91":0.01218,"92":0.01218,"93":0.00244,"94":0.00974,"95":0.00974,"96":0.01462,"97":0.00974,"98":0.01218,"99":0.01218,"100":0.01705,"101":0.00731,"102":0.02923,"103":0.03654,"104":0.0268,"105":0.01949,"106":0.02923,"107":0.03654,"108":0.06577,"109":3.75631,"110":0.01705,"111":0.0341,"112":0.04141,"113":0.01218,"114":0.02923,"115":0.02192,"116":0.05359,"117":0.03898,"118":0.0268,"119":0.07064,"120":0.17539,"121":0.17052,"122":0.50182,"123":7.77084,"124":2.93782,"125":0.01705,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 37 39 40 42 43 47 50 52 53 54 57 59 60 126 127"},F:{"46":0.00244,"64":0.00244,"79":0.01462,"81":0.00244,"82":0.00244,"83":0.00244,"84":0.00244,"85":0.00244,"86":0.00244,"94":0.00244,"95":0.04872,"101":0.00244,"102":0.00244,"105":0.00244,"106":0.00487,"107":0.07795,"108":0.16078,"109":0.05116,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 87 88 89 90 91 92 93 96 97 98 99 100 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00487,"13":0.00487,"14":0.00487,"15":0.00244,"16":0.00487,"17":0.00487,"18":0.01949,"81":0.00244,"84":0.00244,"88":0.00244,"89":0.00731,"90":0.00487,"92":0.07552,"100":0.01462,"103":0.00244,"105":0.00244,"106":0.00244,"107":0.00244,"108":0.00487,"109":0.11936,"110":0.00244,"111":0.00244,"112":0.00244,"113":0.00244,"114":0.00731,"115":0.00244,"116":0.00244,"117":0.00244,"118":0.00244,"119":0.00731,"120":0.01949,"121":0.02436,"122":0.07552,"123":0.56028,"124":0.27527,_:"79 80 83 85 86 87 91 93 94 95 96 97 98 99 101 102 104"},E:{"14":0.00244,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 16.0 17.5","5.1":0.00244,"13.1":0.00487,"14.1":0.00731,"15.4":0.00244,"15.5":0.00244,"15.6":0.01462,"16.1":0.00244,"16.2":0.00244,"16.3":0.00244,"16.4":0.00244,"16.5":0.00244,"16.6":0.01218,"17.0":0.00244,"17.1":0.00487,"17.2":0.00731,"17.3":0.00974,"17.4":0.0341},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00109,"5.0-5.1":0.00109,"6.0-6.1":0.00272,"7.0-7.1":0.00434,"8.1-8.4":0.00109,"9.0-9.2":0.00272,"9.3":0.01358,"10.0-10.2":0.00272,"10.3":0.02172,"11.0-11.2":0.01847,"11.3-11.4":0.00543,"12.0-12.1":0.0038,"12.2-12.5":0.08852,"13.0-13.1":0.00163,"13.2":0.01792,"13.3":0.00434,"13.4-13.7":0.01684,"14.0-14.4":0.03313,"14.5-14.8":0.05051,"15.0-15.1":0.02335,"15.2-15.3":0.02661,"15.4":0.03041,"15.5":0.03856,"15.6-15.8":0.33672,"16.0":0.07875,"16.1":0.16401,"16.2":0.07875,"16.3":0.13903,"16.4":0.02878,"16.5":0.06028,"16.6-16.7":0.47629,"17.0":0.05702,"17.1":0.10536,"17.2":0.14012,"17.3":1.02211,"17.4":2.30707,"17.5":0.02118},P:{"4":0.19147,"20":0.18139,"21":0.27209,"22":0.50387,"23":1.15891,"24":2.52944,"5.0-5.4":0.02015,"6.2-6.4":0.03023,"7.2-7.4":0.21163,"8.2":0.02015,"9.2":0.04031,"10.1":0.02015,"11.1-11.2":0.11085,"12.0":0.04031,"13.0":0.12093,"14.0":0.13101,"15.0":0.06046,"16.0":0.16124,"17.0":0.24186,"18.0":0.15116,"19.0":0.21163},I:{"0":0.00753,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"8":0.00244,"11":1.4275,_:"6 7 9 10 5.5"},K:{"0":0.42679,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.05295},H:{"0":0.08},L:{"0":63.19689},R:{_:"0"},M:{"0":0.84717}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js index 70d21492142f12..d799b469c95db7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IS.js @@ -1 +1 @@ -module.exports={C:{"48":0.05347,"52":0.00535,"60":0.00535,"77":0.02139,"78":0.11763,"88":0.00535,"91":0.00535,"102":0.01069,"103":0.01069,"113":0.01069,"115":0.41707,"117":0.01069,"118":0.01604,"119":0.02674,"120":0.00535,"121":0.02139,"122":0.06416,"123":2.28852,"124":1.10148,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 114 116 125 126 127 3.5 3.6"},D:{"38":0.00535,"49":0.01604,"65":0.02139,"69":0.04278,"70":0.00535,"79":0.02139,"81":0.00535,"85":0.00535,"86":0.00535,"87":0.04278,"88":0.00535,"93":0.00535,"95":0.00535,"96":0.00535,"102":0.01069,"103":0.06951,"104":0.02139,"107":0.01069,"108":0.01069,"109":0.33686,"111":0.02139,"112":0.01604,"113":0.1818,"114":0.21388,"115":0.13902,"116":0.64699,"117":0.12298,"118":0.23527,"119":0.13902,"120":0.72185,"121":3.14404,"122":20.3186,"123":4.86577,"124":0.00535,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 73 74 75 76 77 78 80 83 84 89 90 91 92 94 97 98 99 100 101 105 106 110 125 126"},F:{"46":0.00535,"89":0.00535,"95":0.12833,"106":0.1818,"107":3.21889,"108":0.22457,"109":0.00535,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01069,"105":0.03208,"106":0.00535,"109":0.01069,"112":0.00535,"114":0.01604,"115":0.00535,"116":0.00535,"117":0.00535,"119":0.01069,"120":0.06951,"121":0.29409,"122":4.7321,"123":0.29409,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 107 108 110 111 113 118"},E:{"9":0.00535,"13":0.00535,"14":0.08021,"15":0.01069,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00535,"12.1":0.00535,"13.1":0.05882,"14.1":0.20319,"15.1":0.01069,"15.2-15.3":0.01069,"15.4":0.06416,"15.5":0.10159,"15.6":0.58282,"16.0":0.1711,"16.1":0.0909,"16.2":0.25131,"16.3":0.22457,"16.4":0.05882,"16.5":0.48658,"16.6":0.67907,"17.0":0.39568,"17.1":0.27804,"17.2":1.02128,"17.3":2.15484,"17.4":0.38498},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00412,"5.0-5.1":0.00206,"6.0-6.1":0.01235,"7.0-7.1":0.01441,"8.1-8.4":0.00412,"9.0-9.2":0.00823,"9.3":0.05146,"10.0-10.2":0.00823,"10.3":0.08646,"11.0-11.2":0.06175,"11.3-11.4":0.02058,"12.0-12.1":0.01853,"12.2-12.5":0.35612,"13.0-13.1":0.00618,"13.2":0.06175,"13.3":0.01853,"13.4-13.7":0.06999,"14.0-14.4":0.1338,"14.5-14.8":0.20997,"15.0-15.1":0.09057,"15.2-15.3":0.10704,"15.4":0.12557,"15.5":0.16056,"15.6-15.8":1.34419,"16.0":0.3273,"16.1":0.67724,"16.2":0.3273,"16.3":0.58255,"16.4":0.12351,"16.5":0.26143,"16.6-16.7":1.98026,"17.0":0.25731,"17.1":0.51462,"17.2":0.82957,"17.3":10.2101,"17.4":1.49858,"17.5":0},P:{"4":0.01048,"21":0.02095,"22":0.09428,"23":1.41422,"24":2.18942,_:"20 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0","5.0-5.4":0.01048,"13.0":0.02095,"18.0":0.02095,"19.0":0.01048},I:{"0":0.04634,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":0.58628,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02139,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":21.54227},R:{_:"0"},M:{"0":0.4653},Q:{"14.9":0.00465},O:{"0":0.01861},H:{"0":0}}; +module.exports={C:{"48":0.03725,"52":0.01064,"77":0.00532,"78":0.01064,"91":0.01064,"102":0.01064,"103":0.01064,"104":0.00532,"108":0.00532,"113":0.00532,"115":0.4843,"116":0.00532,"117":0.00532,"118":0.00532,"119":0.01597,"121":0.01064,"122":0.01064,"123":0.10112,"124":2.4907,"125":1.20277,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 105 106 107 109 110 111 112 114 120 126 127 128 3.5 3.6"},D:{"41":0.00532,"51":0.00532,"65":0.00532,"69":0.03193,"79":0.03193,"83":0.00532,"87":0.05854,"91":0.00532,"93":0.00532,"95":0.01064,"102":0.00532,"103":0.14369,"104":0.01064,"105":0.00532,"106":0.00532,"107":0.00532,"108":0.00532,"109":0.35125,"111":0.01597,"112":0.00532,"114":0.03725,"115":0.04258,"116":0.52156,"117":0.15966,"118":0.27674,"119":0.07451,"120":0.42044,"121":0.36722,"122":2.40022,"123":18.92503,"124":6.78555,"125":0.01597,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 70 71 72 73 74 75 76 77 78 80 81 84 85 86 88 89 90 92 94 96 97 98 99 100 101 110 113 126 127"},F:{"95":0.17563,"106":0.01064,"107":2.37361,"108":0.8941,"109":0.28207,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00532,"105":0.03725,"108":0.00532,"109":0.00532,"112":0.00532,"113":0.15434,"118":0.01064,"119":0.14369,"120":0.24481,"121":0.16498,"122":0.28207,"123":3.4114,"124":1.32518,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 107 110 111 114 115 116 117"},E:{"8":0.00532,"9":0.00532,"13":0.00532,"14":0.10644,"15":0.01064,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01064,"13.1":0.09047,"14.1":0.32464,"15.1":0.01064,"15.2-15.3":0.01064,"15.4":0.0958,"15.5":0.09047,"15.6":0.61203,"16.0":0.08515,"16.1":0.10644,"16.2":0.23417,"16.3":0.16498,"16.4":0.06386,"16.5":0.29271,"16.6":0.63332,"17.0":0.35125,"17.1":0.32996,"17.2":0.55881,"17.3":1.02182,"17.4":2.31507,"17.5":0.00532},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00401,"5.0-5.1":0.00401,"6.0-6.1":0.01003,"7.0-7.1":0.01605,"8.1-8.4":0.00401,"9.0-9.2":0.01003,"9.3":0.05017,"10.0-10.2":0.01003,"10.3":0.08027,"11.0-11.2":0.06823,"11.3-11.4":0.02007,"12.0-12.1":0.01405,"12.2-12.5":0.32712,"13.0-13.1":0.00602,"13.2":0.06623,"13.3":0.01605,"13.4-13.7":0.06221,"14.0-14.4":0.12242,"14.5-14.8":0.18664,"15.0-15.1":0.0863,"15.2-15.3":0.09834,"15.4":0.11238,"15.5":0.14249,"15.6-15.8":1.24425,"16.0":0.29099,"16.1":0.60607,"16.2":0.29099,"16.3":0.51376,"16.4":0.10636,"16.5":0.22276,"16.6-16.7":1.76002,"17.0":0.21072,"17.1":0.38933,"17.2":0.51777,"17.3":3.77691,"17.4":8.52515,"17.5":0.07827},P:{"4":0.02078,"20":0.01039,"21":0.03117,"22":0.1039,"23":0.17663,"24":3.15855,"5.0-5.4":0.01039,"6.2-6.4":0.01039,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0","18.0":0.01039,"19.0":0.06234},I:{"0":0.03727,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.00532,"11":0.02661,_:"6 7 9 10 5.5"},K:{"0":0.41634,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00936},O:{"0":0.06549},H:{"0":0},L:{"0":21.91341},R:{_:"0"},M:{"0":0.48183}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js index 25c920c79b97d5..5902731b47fafa 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/IT.js @@ -1 +1 @@ -module.exports={C:{"47":0.00469,"48":0.00938,"52":0.0516,"56":0.00469,"59":0.02346,"68":0.00469,"72":0.00469,"78":0.03753,"84":0.00469,"88":0.02346,"91":0.00938,"93":0.01407,"94":0.01876,"101":0.00469,"102":0.00938,"103":0.00469,"104":0.00469,"105":0.00469,"107":0.00469,"108":0.00469,"109":0.00469,"110":0.00469,"111":0.00469,"112":0.00469,"113":0.00938,"114":0.01876,"115":0.83969,"116":0.00469,"117":0.00469,"118":0.00938,"119":0.00938,"120":0.00938,"121":0.01876,"122":0.06567,"123":2.3455,"124":0.94289,"125":0.00469,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 92 95 96 97 98 99 100 106 126 127 3.5 3.6"},D:{"38":0.00938,"49":0.04222,"52":0.01876,"60":0.03753,"63":0.07506,"65":0.00469,"66":0.09382,"67":0.00469,"68":0.00469,"69":0.00469,"70":0.00469,"72":0.00469,"74":0.00469,"75":0.00469,"77":0.00938,"78":0.00469,"79":0.02815,"80":0.00469,"81":0.00938,"83":0.00469,"84":0.00469,"85":0.01407,"86":0.01876,"87":0.0516,"88":0.01876,"89":0.00469,"90":0.01407,"91":0.00938,"92":0.59576,"93":0.18295,"94":0.00938,"95":0.02815,"96":0.01407,"97":0.00469,"98":0.00469,"99":0.01876,"100":0.00938,"101":0.00469,"102":0.00938,"103":0.08913,"104":0.02815,"105":0.04691,"106":0.04691,"107":0.09851,"108":0.03284,"109":2.12502,"110":0.01407,"111":0.0516,"112":0.02815,"113":0.01407,"114":0.03284,"115":0.03753,"116":0.25331,"117":0.0516,"118":0.04691,"119":0.08913,"120":0.32368,"121":1.5621,"122":19.69751,"123":5.33367,"124":0.00938,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 64 71 73 76 125 126"},F:{"46":0.00469,"69":0.00469,"85":0.00469,"89":0.00469,"92":0.00469,"95":0.02346,"102":0.00469,"106":0.00938,"107":0.68489,"108":0.19702,"109":0.00469,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00938,"18":0.00469,"85":0.00469,"90":0.22048,"92":0.00469,"107":0.00469,"108":0.00469,"109":0.08444,"110":0.00469,"111":0.00469,"112":0.00469,"113":0.00469,"114":0.00469,"115":0.0516,"116":0.00469,"117":0.00469,"118":0.00469,"119":0.01407,"120":0.04691,"121":0.14073,"122":3.71058,"123":0.27677,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"8":0.00469,"13":0.00469,"14":0.0516,"15":0.01407,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.00938,"11.1":0.01876,"12.1":0.01407,"13.1":0.12197,"14.1":0.4175,"15.1":0.02346,"15.2-15.3":0.01407,"15.4":0.02346,"15.5":0.03284,"15.6":0.25801,"16.0":0.03753,"16.1":0.06098,"16.2":0.04691,"16.3":0.10789,"16.4":0.05629,"16.5":0.07037,"16.6":0.28146,"17.0":0.06567,"17.1":0.15011,"17.2":0.40343,"17.3":0.81154,"17.4":0.31899},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00257,"5.0-5.1":0.00129,"6.0-6.1":0.00772,"7.0-7.1":0.009,"8.1-8.4":0.00257,"9.0-9.2":0.00514,"9.3":0.03215,"10.0-10.2":0.00514,"10.3":0.05401,"11.0-11.2":0.03858,"11.3-11.4":0.01286,"12.0-12.1":0.01157,"12.2-12.5":0.22245,"13.0-13.1":0.00386,"13.2":0.03858,"13.3":0.01157,"13.4-13.7":0.04372,"14.0-14.4":0.08358,"14.5-14.8":0.13116,"15.0-15.1":0.05658,"15.2-15.3":0.06686,"15.4":0.07844,"15.5":0.1003,"15.6-15.8":0.83965,"16.0":0.20445,"16.1":0.42304,"16.2":0.20445,"16.3":0.36389,"16.4":0.07715,"16.5":0.1633,"16.6-16.7":1.23698,"17.0":0.16073,"17.1":0.32146,"17.2":0.51819,"17.3":6.37777,"17.4":0.93609,"17.5":0},P:{"4":0.10413,"20":0.03124,"21":0.06248,"22":0.09371,"23":1.68684,"24":1.34322,_:"5.0-5.4 7.2-7.4 8.2 10.1","6.2-6.4":0.01041,"9.2":0.01041,"11.1-11.2":0.02083,"12.0":0.01041,"13.0":0.02083,"14.0":0.01041,"15.0":0.01041,"16.0":0.02083,"17.0":0.01041,"18.0":0.01041,"19.0":0.04165},I:{"0":0.04759,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":0.33447,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00477,"9":0.00477,"11":0.26253,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":36.02709},R:{_:"0"},M:{"0":0.6477},Q:{"14.9":0.00531},O:{"0":0.07433},H:{"0":0}}; +module.exports={C:{"47":0.00467,"48":0.00934,"52":0.05136,"56":0.00467,"59":0.01868,"68":0.00467,"78":0.03735,"88":0.01868,"91":0.00934,"93":0.01401,"94":0.01868,"101":0.00467,"102":0.00934,"103":0.00467,"104":0.00467,"105":0.00467,"106":0.00467,"107":0.00467,"108":0.00467,"109":0.00467,"111":0.00467,"112":0.00467,"113":0.00934,"114":0.02335,"115":0.54627,"116":0.00467,"117":0.00467,"118":0.01868,"119":0.00934,"120":0.00467,"121":0.01401,"122":0.02335,"123":0.0607,"124":2.37652,"125":1.22795,"126":0.00467,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 95 96 97 98 99 100 110 127 128 3.5 3.6"},D:{"38":0.00934,"41":0.00467,"49":0.04669,"52":0.01401,"63":0.08871,"65":0.00467,"66":0.08404,"67":0.00467,"68":0.00467,"70":0.00467,"74":0.00467,"77":0.00934,"79":0.01868,"80":0.00467,"81":0.00934,"83":0.01401,"84":0.02801,"85":0.01401,"86":0.01868,"87":0.0747,"88":0.01401,"89":0.00467,"90":0.00934,"91":0.00467,"92":0.26613,"93":0.14474,"94":0.00934,"95":0.02801,"96":0.00934,"97":0.00467,"98":0.00467,"99":0.01401,"100":0.00934,"101":0.00467,"102":0.01401,"103":0.08404,"104":0.0607,"105":0.03735,"106":0.01868,"107":0.07004,"108":0.02335,"109":2.18509,"110":0.00934,"111":0.02335,"112":0.02801,"113":0.00934,"114":0.02801,"115":0.23345,"116":0.26613,"117":0.02801,"118":0.0747,"119":0.0747,"120":0.14474,"121":0.22411,"122":1.19993,"123":18.78339,"124":6.87277,"125":0.01401,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 64 69 71 72 73 75 76 78 126 127"},F:{"28":0.00467,"46":0.00467,"85":0.00934,"92":0.00467,"95":0.02801,"102":0.00467,"107":0.40153,"108":0.38286,"109":0.15875,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00934,"18":0.00467,"85":0.00467,"90":0.14941,"92":0.00467,"104":0.00467,"107":0.00467,"108":0.00467,"109":0.07004,"112":0.00467,"113":0.00934,"114":0.00467,"115":0.04202,"116":0.00467,"117":0.00467,"118":0.00467,"119":0.01868,"120":0.03268,"121":0.04202,"122":0.18676,"123":2.7407,"124":1.25596,_:"12 13 14 15 16 79 80 81 83 84 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 105 106 110 111"},E:{"8":0.00467,"13":0.00467,"14":0.04669,"15":0.01401,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00467,"11.1":0.01868,"12.1":0.01401,"13.1":0.14007,"14.1":0.36885,"15.1":0.02335,"15.2-15.3":0.01868,"15.4":0.02335,"15.5":0.03268,"15.6":0.2568,"16.0":0.03268,"16.1":0.0607,"16.2":0.04202,"16.3":0.09805,"16.4":0.04202,"16.5":0.0607,"16.6":0.26613,"17.0":0.0607,"17.1":0.11206,"17.2":0.18676,"17.3":0.33617,"17.4":1.08321,"17.5":0.00934},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00259,"5.0-5.1":0.00259,"6.0-6.1":0.00647,"7.0-7.1":0.01035,"8.1-8.4":0.00259,"9.0-9.2":0.00647,"9.3":0.03235,"10.0-10.2":0.00647,"10.3":0.05175,"11.0-11.2":0.04399,"11.3-11.4":0.01294,"12.0-12.1":0.00906,"12.2-12.5":0.21089,"13.0-13.1":0.00388,"13.2":0.0427,"13.3":0.01035,"13.4-13.7":0.04011,"14.0-14.4":0.07892,"14.5-14.8":0.12033,"15.0-15.1":0.05563,"15.2-15.3":0.0634,"15.4":0.07245,"15.5":0.09186,"15.6-15.8":0.80218,"16.0":0.18761,"16.1":0.39074,"16.2":0.18761,"16.3":0.33122,"16.4":0.06857,"16.5":0.14362,"16.6-16.7":1.13469,"17.0":0.13585,"17.1":0.251,"17.2":0.33381,"17.3":2.435,"17.4":5.49621,"17.5":0.05046},P:{"4":0.06281,"20":0.03141,"21":0.05234,"22":0.08375,"23":0.34547,"24":2.5439,_:"5.0-5.4 7.2-7.4 8.2 10.1 15.0","6.2-6.4":0.01047,"9.2":0.01047,"11.1-11.2":0.02094,"12.0":0.01047,"13.0":0.02094,"14.0":0.01047,"16.0":0.01047,"17.0":0.02094,"18.0":0.01047,"19.0":0.04187},I:{"0":0.04247,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00478,"9":0.00478,"11":0.18653,_:"6 7 10 5.5"},K:{"0":0.3785,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00533},O:{"0":0.07997},H:{"0":0},L:{"0":36.05307},R:{_:"0"},M:{"0":0.59707}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js index 9ef4bf197ed10f..a37a860c0f1899 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JE.js @@ -1 +1 @@ -module.exports={C:{"40":0.00418,"48":0.00835,"52":0.00418,"115":0.16283,"121":0.00418,"122":0.05845,"123":1.02705,"124":0.45925,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 125 126 127 3.5 3.6"},D:{"49":0.0334,"67":0.00418,"79":0.00418,"80":0.08768,"87":0.02088,"93":0.00418,"94":0.00418,"97":0.00418,"98":0.03758,"99":0.00835,"101":0.00418,"103":0.09603,"108":0.00418,"109":0.32565,"111":0.00418,"113":0.00835,"114":0.00418,"116":0.2839,"117":0.1002,"118":0.02088,"119":0.07933,"120":0.2004,"121":1.08133,"122":11.86535,"123":4.61338,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 81 83 84 85 86 88 89 90 91 92 95 96 100 102 104 105 106 107 110 112 115 124 125 126"},F:{"46":0.00835,"95":0.00418,"106":0.00418,"107":0.36323,"108":0.02923,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01253,"92":0.0167,"98":0.00418,"99":0.00418,"108":0.00835,"109":0.1002,"115":0.00418,"119":0.14613,"120":0.00835,"121":0.2004,"122":8.1663,"123":0.52605,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 100 101 102 103 104 105 106 107 110 111 112 113 114 116 117 118"},E:{"13":0.02088,"14":0.08768,"15":0.0167,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.03758,"13.1":0.20458,"14.1":0.26303,"15.1":0.02088,"15.2-15.3":0.02088,"15.4":0.0334,"15.5":0.10438,"15.6":0.67635,"16.0":0.05428,"16.1":0.35488,"16.2":0.0501,"16.3":0.24633,"16.4":0.12525,"16.5":0.19205,"16.6":1.39028,"17.0":0.0501,"17.1":0.29225,"17.2":0.5177,"17.3":5.35653,"17.4":0.94355},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00695,"5.0-5.1":0.00348,"6.0-6.1":0.02086,"7.0-7.1":0.02433,"8.1-8.4":0.00695,"9.0-9.2":0.01391,"9.3":0.08691,"10.0-10.2":0.01391,"10.3":0.14601,"11.0-11.2":0.10429,"11.3-11.4":0.03476,"12.0-12.1":0.03129,"12.2-12.5":0.60141,"13.0-13.1":0.01043,"13.2":0.10429,"13.3":0.03129,"13.4-13.7":0.1182,"14.0-14.4":0.22596,"14.5-14.8":0.35459,"15.0-15.1":0.15296,"15.2-15.3":0.18077,"15.4":0.21206,"15.5":0.27116,"15.6-15.8":2.27006,"16.0":0.55274,"16.1":1.14372,"16.2":0.55274,"16.3":0.98381,"16.4":0.20858,"16.5":0.4415,"16.6-16.7":3.34426,"17.0":0.43455,"17.1":0.86909,"17.2":1.40097,"17.3":17.24275,"17.4":2.53079,"17.5":0},P:{"4":0.13618,"20":0.0227,"21":0.01135,"22":0.0227,"23":2.43981,"24":1.95185,"5.0-5.4":0.01135,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.0058,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.07573,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00418,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":18.50265},R:{_:"0"},M:{"0":0.34368},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"88":0.00419,"115":0.10884,"118":0.00419,"123":0.22186,"124":0.83301,"125":0.64883,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 126 127 128 3.5 3.6"},D:{"49":0.02512,"79":0.02093,"80":0.10884,"87":0.00837,"93":0.00419,"94":0.00419,"96":0.00419,"97":0.00419,"98":0.04605,"99":0.01256,"100":0.00419,"101":0.00419,"103":0.12977,"109":0.22186,"112":0.00419,"113":0.00837,"115":0.03767,"116":0.19256,"117":0.01256,"118":0.05023,"119":0.04186,"120":0.10884,"121":0.08791,"122":1.38557,"123":12.0808,"124":5.31622,"125":0.01256,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 84 85 86 88 89 90 91 92 95 102 104 105 106 107 108 110 111 114 126 127"},F:{"46":0.01256,"106":0.00419,"107":0.30558,"108":0.04186,"109":0.03767,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00837,"92":0.00419,"98":0.00419,"99":0.00419,"108":0.02512,"109":0.06279,"117":0.00419,"118":0.00419,"120":0.00837,"121":0.01674,"122":0.30558,"123":5.74319,"124":2.5409,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 100 101 102 103 104 105 106 107 110 111 112 113 114 115 116 119"},E:{"14":0.08372,"15":0.02093,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.04186,"13.1":0.05442,"14.1":0.22186,"15.1":0.01674,"15.2-15.3":0.04605,"15.4":0.01674,"15.5":0.2386,"15.6":0.72418,"16.0":0.03767,"16.1":0.28883,"16.2":0.08791,"16.3":0.16325,"16.4":0.10046,"16.5":0.31814,"16.6":1.30603,"17.0":0.02512,"17.1":0.12558,"17.2":0.22186,"17.3":1.2558,"17.4":4.9646,"17.5":0.02512},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00712,"5.0-5.1":0.00712,"6.0-6.1":0.0178,"7.0-7.1":0.02847,"8.1-8.4":0.00712,"9.0-9.2":0.0178,"9.3":0.08898,"10.0-10.2":0.0178,"10.3":0.14237,"11.0-11.2":0.12102,"11.3-11.4":0.03559,"12.0-12.1":0.02492,"12.2-12.5":0.58017,"13.0-13.1":0.01068,"13.2":0.11746,"13.3":0.02847,"13.4-13.7":0.11034,"14.0-14.4":0.21712,"14.5-14.8":0.33102,"15.0-15.1":0.15305,"15.2-15.3":0.17441,"15.4":0.19932,"15.5":0.25271,"15.6-15.8":2.20679,"16.0":0.5161,"16.1":1.07492,"16.2":0.5161,"16.3":0.91119,"16.4":0.18864,"16.5":0.39509,"16.6-16.7":3.12153,"17.0":0.37373,"17.1":0.69051,"17.2":0.91831,"17.3":6.69866,"17.4":15.12004,"17.5":0.13881},P:{"4":0.1831,"20":0.01144,"21":0.01144,"22":0.06866,"23":0.20599,"24":2.97544,"5.0-5.4":0.01144,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","11.1-11.2":0.02289},I:{"0":0.00579,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":0.00837,_:"6 7 8 9 10 5.5"},K:{"0":0.0407,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":18.44061},R:{_:"0"},M:{"0":0.34884}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js index afe37a5775fbed..81e6f293ae40bf 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JM.js @@ -1 +1 @@ -module.exports={C:{"48":0.0021,"52":0.0021,"73":0.02734,"78":0.01262,"87":0.00421,"113":0.0021,"115":0.04837,"118":0.0021,"119":0.00631,"121":0.00841,"122":0.30494,"123":0.38485,"124":0.17455,"125":0.00421,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 120 126 127 3.5 3.6"},D:{"11":0.0021,"29":0.0021,"49":0.00631,"56":0.0021,"62":0.0021,"63":0.0021,"65":0.0021,"68":0.00421,"69":0.01682,"70":0.01052,"72":0.01052,"73":0.02524,"74":0.0021,"75":0.01052,"76":0.02944,"77":0.0021,"79":0.03785,"81":0.03365,"83":0.18927,"84":0.0021,"86":0.01472,"87":0.04627,"88":0.0021,"89":0.0021,"90":0.03155,"91":0.00841,"92":0.0021,"93":0.0673,"94":0.01262,"95":0.00421,"96":0.00841,"97":0.0021,"98":0.00841,"99":0.00421,"100":0.0021,"101":0.0021,"102":0.00421,"103":0.17665,"104":0.00421,"105":0.01472,"106":0.00421,"107":0.00421,"108":0.00841,"109":0.29021,"110":0.01052,"111":0.01052,"112":0.01262,"113":0.00631,"114":0.02103,"115":0.01262,"116":0.08833,"117":0.03365,"118":0.04206,"119":0.06519,"120":0.19137,"121":1.09566,"122":8.30264,"123":2.54673,"124":0.01262,"125":0.0021,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 64 66 67 71 78 80 85 126"},F:{"28":0.00631,"46":0.0021,"95":0.00421,"102":0.0021,"104":0.0021,"106":0.00841,"107":0.42691,"108":0.08622,"109":0.0021,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.0021,"16":0.00421,"17":0.0021,"18":0.00421,"90":0.0021,"92":0.00631,"100":0.0021,"108":0.0021,"109":0.01262,"114":0.0021,"115":0.00421,"116":0.00421,"117":0.00631,"118":0.00631,"119":0.00631,"120":0.01893,"121":0.12618,"122":2.61193,"123":0.2797,_:"12 14 15 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 112 113"},E:{"14":0.00631,"15":0.0021,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.0021,"12.1":0.00631,"13.1":0.1367,"14.1":0.04627,"15.1":0.0021,"15.2-15.3":0.00421,"15.4":0.01262,"15.5":0.00631,"15.6":0.09253,"16.0":0.00631,"16.1":0.02524,"16.2":0.02313,"16.3":0.02734,"16.4":0.02313,"16.5":0.03996,"16.6":0.08833,"17.0":0.02524,"17.1":0.04416,"17.2":0.143,"17.3":0.36592,"17.4":0.11777},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00642,"5.0-5.1":0.00321,"6.0-6.1":0.01927,"7.0-7.1":0.02248,"8.1-8.4":0.00642,"9.0-9.2":0.01284,"9.3":0.08027,"10.0-10.2":0.01284,"10.3":0.13486,"11.0-11.2":0.09633,"11.3-11.4":0.03211,"12.0-12.1":0.0289,"12.2-12.5":0.55549,"13.0-13.1":0.00963,"13.2":0.09633,"13.3":0.0289,"13.4-13.7":0.10917,"14.0-14.4":0.20871,"14.5-14.8":0.32751,"15.0-15.1":0.14128,"15.2-15.3":0.16697,"15.4":0.19587,"15.5":0.25045,"15.6-15.8":2.09673,"16.0":0.51054,"16.1":1.05639,"16.2":0.51054,"16.3":0.90869,"16.4":0.19266,"16.5":0.40779,"16.6-16.7":3.08891,"17.0":0.40137,"17.1":0.80273,"17.2":1.294,"17.3":15.92616,"17.4":2.33755,"17.5":0},P:{"4":0.14757,"20":0.02108,"21":0.0527,"22":0.06324,"23":0.78,"24":1.12783,_:"5.0-5.4 8.2 9.2 10.1 12.0 15.0","6.2-6.4":0.01054,"7.2-7.4":0.14757,"11.1-11.2":0.01054,"13.0":0.01054,"14.0":0.01054,"16.0":0.03162,"17.0":0.01054,"18.0":0.01054,"19.0":0.0527},I:{"0":0.08651,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},K:{"0":0.20532,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00841,"11":0.00841,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":45.15994},R:{_:"0"},M:{"0":0.10266},Q:{"14.9":0.0079},O:{"0":0.16584},H:{"0":0}}; +module.exports={C:{"4":0.01478,"73":0.04926,"78":0.02217,"88":0.00493,"95":0.00246,"105":0.00246,"109":0.00246,"113":0.00246,"115":0.09113,"118":0.00739,"119":0.00739,"121":0.0197,"122":0.07635,"123":0.0197,"124":0.53693,"125":0.22413,"126":0.00985,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 114 116 117 120 127 128 3.5 3.6"},D:{"11":0.00246,"38":0.00246,"41":0.00246,"47":0.00246,"49":0.00246,"62":0.00246,"63":0.00493,"65":0.00246,"66":0.00246,"67":0.00246,"68":0.00246,"69":0.01724,"70":0.02463,"72":0.00246,"73":0.03202,"74":0.00246,"75":0.01232,"76":0.03448,"77":0.00246,"79":0.03448,"80":0.00246,"81":0.02217,"83":0.17734,"84":0.00246,"85":0.00246,"86":0.01478,"87":0.05172,"88":0.00739,"89":0.00246,"90":0.00493,"91":0.00985,"92":0.00246,"93":0.0665,"94":0.01478,"95":0.00739,"96":0.00493,"97":0.00246,"98":0.00739,"99":0.00493,"100":0.00246,"101":0.00246,"102":0.00246,"103":0.18473,"104":0.00493,"105":0.01724,"106":0.00739,"107":0.00493,"108":0.01232,"109":0.2931,"110":0.01724,"111":0.00985,"112":0.00985,"113":0.00739,"114":0.02463,"115":0.00739,"116":0.05665,"117":0.0197,"118":0.01724,"119":0.05419,"120":0.10098,"121":0.15271,"122":1.21672,"123":9.34709,"124":3.57874,"125":0.02463,"126":0.00246,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 64 71 78 127"},F:{"28":0.01232,"46":0.00246,"69":0.00246,"95":0.00493,"102":0.00739,"106":0.00246,"107":0.49753,"108":0.16748,"109":0.05911,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00246,"15":0.00493,"16":0.00246,"17":0.00246,"18":0.00985,"92":0.00985,"100":0.00246,"105":0.00246,"107":0.00493,"108":0.00246,"109":0.02217,"114":0.00246,"115":0.00246,"116":0.00246,"117":0.00493,"118":0.00246,"119":0.00493,"120":0.01724,"121":0.02463,"122":0.266,"123":2.53196,"124":0.86944,_:"13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106 110 111 112 113"},E:{"14":0.00985,"15":0.00246,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00246,"12.1":0.00493,"13.1":0.10591,"14.1":0.03941,"15.1":0.00246,"15.2-15.3":0.00246,"15.4":0.0197,"15.5":0.00739,"15.6":0.09852,"16.0":0.00985,"16.1":0.02463,"16.2":0.02709,"16.3":0.0468,"16.4":0.03448,"16.5":0.04433,"16.6":0.12561,"17.0":0.01724,"17.1":0.04433,"17.2":0.10591,"17.3":0.15517,"17.4":0.48767,"17.5":0.00493},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00582,"5.0-5.1":0.00582,"6.0-6.1":0.01455,"7.0-7.1":0.02329,"8.1-8.4":0.00582,"9.0-9.2":0.01455,"9.3":0.07277,"10.0-10.2":0.01455,"10.3":0.11643,"11.0-11.2":0.09897,"11.3-11.4":0.02911,"12.0-12.1":0.02038,"12.2-12.5":0.47446,"13.0-13.1":0.00873,"13.2":0.09606,"13.3":0.02329,"13.4-13.7":0.09023,"14.0-14.4":0.17756,"14.5-14.8":0.2707,"15.0-15.1":0.12516,"15.2-15.3":0.14263,"15.4":0.163,"15.5":0.20667,"15.6-15.8":1.80469,"16.0":0.42206,"16.1":0.87906,"16.2":0.42206,"16.3":0.74516,"16.4":0.15427,"16.5":0.3231,"16.6-16.7":2.55276,"17.0":0.30563,"17.1":0.56469,"17.2":0.75098,"17.3":5.47811,"17.4":12.36503,"17.5":0.11352},P:{"4":0.20203,"20":0.0319,"21":0.04253,"22":0.07443,"23":0.25519,"24":2.00964,"5.0-5.4":0.02127,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.20203,"11.1-11.2":0.02127,"13.0":0.01063,"14.0":0.01063,"15.0":0.02127,"16.0":0.02127,"17.0":0.01063,"18.0":0.01063,"19.0":0.0638},I:{"0":0.08257,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"10":0.01478,"11":0.00739,_:"6 7 8 9 5.5"},K:{"0":0.24872,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00754},O:{"0":0.1432},H:{"0":0},L:{"0":43.97426},R:{_:"0"},M:{"0":0.11306}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js index 5a7533dcd463e6..98d86b387b060d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JO.js @@ -1 +1 @@ -module.exports={C:{"34":0.00245,"52":0.00491,"68":0.00245,"78":0.00245,"82":0.00245,"102":0.00981,"103":0.01472,"106":0.00245,"109":0.00245,"113":0.00491,"115":0.1251,"119":0.00245,"121":0.00491,"122":0.01472,"123":0.30417,"124":0.16926,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 107 108 110 111 112 114 116 117 118 120 125 126 127 3.5 3.6"},D:{"11":0.01227,"33":0.00245,"43":0.00245,"49":0.00981,"55":0.01227,"58":0.06378,"65":0.00245,"66":0.00245,"68":0.00491,"69":0.00245,"70":0.00245,"71":0.00245,"73":0.00736,"74":0.00245,"78":0.02208,"79":0.01962,"80":0.00245,"81":0.00736,"83":0.0368,"84":0.00245,"85":0.00981,"86":0.00981,"87":0.01962,"88":0.02453,"89":0.00245,"90":0.00245,"91":0.00736,"92":0.00245,"93":0.00736,"94":0.00491,"95":0.00736,"96":0.00491,"97":0.00245,"98":0.03925,"99":0.03925,"100":0.00245,"101":0.00245,"102":0.01227,"103":0.02698,"104":0.01227,"105":0.02208,"106":0.01472,"107":0.02944,"108":0.05642,"109":1.3099,"110":0.01472,"111":0.01717,"112":0.02208,"113":0.01227,"114":0.01472,"115":0.02208,"116":0.02944,"117":0.01472,"118":0.01472,"119":0.07114,"120":0.19624,"121":0.63778,"122":10.82264,"123":2.76208,"124":0.00491,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 59 60 61 62 63 64 67 72 75 76 77 125 126"},F:{"28":0.00245,"82":0.00491,"83":0.00245,"84":0.00245,"92":0.00245,"95":0.02453,"104":0.02208,"105":0.05642,"106":0.05397,"107":0.29927,"108":0.03925,"109":0.00245,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00245,"84":0.00245,"92":0.01227,"100":0.00491,"104":0.00245,"107":0.01717,"108":0.00491,"109":0.01962,"111":0.00245,"112":0.00245,"114":0.00245,"117":0.00491,"118":0.0368,"119":0.00491,"120":0.01472,"121":0.08095,"122":1.90843,"123":0.15945,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 106 110 113 115 116"},E:{"14":0.00736,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00491,"12.1":0.00245,"13.1":0.01962,"14.1":0.01472,"15.1":0.00245,"15.2-15.3":0.00491,"15.4":0.00491,"15.5":0.00981,"15.6":0.0834,"16.0":0.00491,"16.1":0.01227,"16.2":0.00981,"16.3":0.02944,"16.4":0.00981,"16.5":0.00981,"16.6":0.10793,"17.0":0.02944,"17.1":0.0417,"17.2":0.08831,"17.3":0.31644,"17.4":0.06868},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00254,"5.0-5.1":0.00127,"6.0-6.1":0.00762,"7.0-7.1":0.0089,"8.1-8.4":0.00254,"9.0-9.2":0.00508,"9.3":0.03177,"10.0-10.2":0.00508,"10.3":0.05337,"11.0-11.2":0.03812,"11.3-11.4":0.01271,"12.0-12.1":0.01144,"12.2-12.5":0.21984,"13.0-13.1":0.00381,"13.2":0.03812,"13.3":0.01144,"13.4-13.7":0.04321,"14.0-14.4":0.0826,"14.5-14.8":0.12962,"15.0-15.1":0.05591,"15.2-15.3":0.06608,"15.4":0.07752,"15.5":0.09912,"15.6-15.8":0.8298,"16.0":0.20205,"16.1":0.41808,"16.2":0.20205,"16.3":0.35962,"16.4":0.07624,"16.5":0.16138,"16.6-16.7":1.22246,"17.0":0.15884,"17.1":0.31769,"17.2":0.51211,"17.3":6.3029,"17.4":0.9251,"17.5":0},P:{"4":0.07143,"20":0.04082,"21":0.12245,"22":0.14285,"23":2.12241,"24":1.99996,"5.0-5.4":0.0102,"6.2-6.4":0.0102,"7.2-7.4":0.13265,_:"8.2 12.0","9.2":0.0102,"10.1":0.0102,"11.1-11.2":0.07143,"13.0":0.04082,"14.0":0.04082,"15.0":0.02041,"16.0":0.07143,"17.0":0.02041,"18.0":0.03061,"19.0":0.07143},I:{"0":0.06764,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.41012,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0026,"11":0.04156,_:"6 7 9 10 5.5"},S:{"2.5":0.00755,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":59.92769},R:{_:"0"},M:{"0":0.20374},Q:{_:"14.9"},O:{"0":0.24902},H:{"0":0.02}}; +module.exports={C:{"34":0.00613,"52":0.00204,"78":0.00204,"82":0.00204,"102":0.00204,"103":0.01226,"104":0.00204,"105":0.00204,"113":0.00204,"115":0.09607,"119":0.00613,"121":0.00204,"123":0.01635,"124":0.29842,"125":0.15943,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 106 107 108 109 110 111 112 114 116 117 118 120 122 126 127 128 3.5 3.6"},D:{"11":0.02453,"38":0.00204,"41":0.00204,"43":0.00204,"47":0.00204,"49":0.00818,"50":0.00204,"55":0.00818,"58":0.04292,"59":0.00204,"63":0.00204,"64":0.00204,"65":0.00204,"66":0.00204,"68":0.00409,"69":0.00613,"70":0.00409,"72":0.00409,"73":0.00409,"74":0.00204,"76":0.00204,"78":0.01226,"79":0.01635,"80":0.00409,"81":0.00613,"83":0.04292,"84":0.00409,"85":0.00818,"86":0.00613,"87":0.0184,"88":0.01431,"89":0.00204,"90":0.00409,"91":0.00409,"92":0.00204,"93":0.00613,"94":0.00613,"95":0.00409,"96":0.00409,"97":0.00204,"98":0.05519,"99":0.03884,"100":0.00204,"101":0.00204,"102":0.01431,"103":0.02453,"104":0.0184,"105":0.01022,"106":0.01226,"107":0.00818,"108":0.02657,"109":1.08945,"110":0.01022,"111":0.01635,"112":0.00818,"113":0.01022,"114":0.01635,"115":0.00818,"116":0.03475,"117":0.00818,"118":0.00818,"119":0.04292,"120":0.09198,"121":0.1206,"122":0.57232,"123":7.43607,"124":3.44414,"125":0.01226,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 48 51 52 53 54 56 57 60 61 62 67 71 75 77 126 127"},F:{"79":0.00204,"82":0.00613,"83":0.00613,"95":0.01431,"102":0.00204,"104":0.01635,"105":0.01431,"106":0.03679,"107":0.23506,"108":0.09811,"109":0.0327,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00204,"84":0.00204,"92":0.01022,"100":0.00409,"104":0.02657,"105":0.00204,"107":0.00613,"108":0.00613,"109":0.0184,"111":0.00409,"113":0.00204,"117":0.00204,"118":0.00204,"119":0.00409,"120":0.00613,"121":0.01431,"122":0.07358,"123":1.13033,"124":0.65204,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 106 110 112 114 115 116"},E:{"14":0.00409,"15":0.00409,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.00204,"13.1":0.04701,"14.1":0.02044,"15.1":0.00613,"15.2-15.3":0.00409,"15.4":0.0184,"15.5":0.01226,"15.6":0.07358,"16.0":0.00409,"16.1":0.01022,"16.2":0.01022,"16.3":0.02657,"16.4":0.00613,"16.5":0.01431,"16.6":0.07154,"17.0":0.02044,"17.1":0.03066,"17.2":0.06541,"17.3":0.12673,"17.4":0.35157,"17.5":0.00204},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0023,"5.0-5.1":0.0023,"6.0-6.1":0.00575,"7.0-7.1":0.0092,"8.1-8.4":0.0023,"9.0-9.2":0.00575,"9.3":0.02874,"10.0-10.2":0.00575,"10.3":0.04599,"11.0-11.2":0.03909,"11.3-11.4":0.0115,"12.0-12.1":0.00805,"12.2-12.5":0.18739,"13.0-13.1":0.00345,"13.2":0.03794,"13.3":0.0092,"13.4-13.7":0.03564,"14.0-14.4":0.07013,"14.5-14.8":0.10692,"15.0-15.1":0.04943,"15.2-15.3":0.05633,"15.4":0.06438,"15.5":0.08162,"15.6-15.8":0.71278,"16.0":0.1667,"16.1":0.34719,"16.2":0.1667,"16.3":0.29431,"16.4":0.06093,"16.5":0.12761,"16.6-16.7":1.00824,"17.0":0.12071,"17.1":0.22303,"17.2":0.29661,"17.3":2.16363,"17.4":4.88368,"17.5":0.04484},P:{"4":0.11173,"20":0.04063,"21":0.09142,"22":0.13205,"23":0.42662,"24":3.19966,"5.0-5.4":0.02032,"6.2-6.4":0.02032,"7.2-7.4":0.13205,_:"8.2","9.2":0.02032,"10.1":0.01016,"11.1-11.2":0.06095,"12.0":0.01016,"13.0":0.04063,"14.0":0.04063,"15.0":0.03047,"16.0":0.05079,"17.0":0.03047,"18.0":0.03047,"19.0":0.0711},I:{"0":0.08716,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"8":0.00204,"11":0.02248,_:"6 7 9 10 5.5"},K:{"0":0.43554,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00796,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.27846},H:{"0":0.01},L:{"0":64.73073},R:{_:"0"},M:{"0":0.19094}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js index 4d8b319390d673..bd11f709386774 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/JP.js @@ -1 +1 @@ -module.exports={C:{"44":0.00618,"48":0.01854,"52":0.03091,"54":0.42649,"56":0.00618,"78":0.01854,"83":0.00618,"88":0.00618,"91":0.00618,"102":0.01236,"103":0.01854,"104":0.00618,"105":0.01236,"106":0.01236,"107":0.01854,"108":0.03091,"109":0.01854,"110":0.01854,"111":0.01854,"112":0.00618,"113":0.00618,"114":0.00618,"115":0.29669,"117":0.03709,"118":0.00618,"119":0.00618,"120":0.00618,"121":0.02472,"122":0.05563,"123":1.58852,"124":0.72936,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 116 125 126 127 3.5 3.6"},D:{"48":0.00618,"49":0.05563,"53":0.02472,"61":0.00618,"65":0.00618,"66":0.00618,"67":0.00618,"68":0.00618,"69":0.00618,"72":0.00618,"74":0.00618,"75":0.01236,"76":0.00618,"77":0.03709,"78":0.01236,"79":0.01236,"80":0.01236,"81":0.06799,"83":0.02472,"84":0.00618,"85":0.01236,"86":0.06799,"87":0.01854,"88":0.00618,"89":0.01236,"90":0.00618,"91":0.04945,"92":0.00618,"93":0.00618,"94":0.01236,"95":0.01854,"96":0.01236,"97":0.03091,"98":0.02472,"99":0.01236,"100":0.03709,"101":0.06799,"102":0.05563,"103":0.13598,"104":0.07417,"105":0.06181,"106":0.16071,"107":0.21634,"108":0.26578,"109":1.14349,"110":0.16071,"111":0.15453,"112":0.16689,"113":0.04945,"114":0.07417,"115":0.04945,"116":0.22252,"117":0.06799,"118":0.06799,"119":0.17925,"120":0.45121,"121":2.21898,"122":19.98317,"123":6.46533,"124":0.01854,"125":0.00618,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 54 55 56 57 58 59 60 62 63 64 70 71 73 126"},F:{"46":0.00618,"75":0.00618,"81":0.00618,"91":0.00618,"92":0.00618,"93":0.00618,"94":0.01236,"95":0.01854,"96":0.00618,"101":0.00618,"106":0.00618,"107":0.23488,"108":0.09272,"109":0.00618,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 82 83 84 85 86 87 88 89 90 97 98 99 100 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00618},B:{"14":0.00618,"17":0.00618,"18":0.00618,"92":0.01236,"100":0.00618,"101":0.00618,"103":0.00618,"105":0.00618,"106":0.02472,"107":0.04327,"108":0.03709,"109":0.33377,"110":0.03091,"111":0.02472,"112":0.01236,"113":0.02472,"114":0.01854,"115":0.00618,"116":0.01236,"117":0.01236,"118":0.01236,"119":0.02472,"120":0.10508,"121":0.32759,"122":10.66841,"123":1.31655,_:"12 13 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 102 104"},E:{"13":0.01236,"14":0.03091,"15":0.00618,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 17.5","9.1":0.00618,"10.1":0.00618,"11.1":0.00618,"12.1":0.01854,"13.1":0.06799,"14.1":0.13598,"15.1":0.01236,"15.2-15.3":0.01236,"15.4":0.03709,"15.5":0.03709,"15.6":0.27815,"16.0":0.02472,"16.1":0.04945,"16.2":0.04945,"16.3":0.1298,"16.4":0.03709,"16.5":0.06799,"16.6":0.40795,"17.0":0.03091,"17.1":0.11126,"17.2":0.27196,"17.3":0.9766,"17.4":0.22252},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00427,"5.0-5.1":0.00213,"6.0-6.1":0.0128,"7.0-7.1":0.01493,"8.1-8.4":0.00427,"9.0-9.2":0.00853,"9.3":0.05334,"10.0-10.2":0.00853,"10.3":0.08961,"11.0-11.2":0.064,"11.3-11.4":0.02133,"12.0-12.1":0.0192,"12.2-12.5":0.36909,"13.0-13.1":0.0064,"13.2":0.064,"13.3":0.0192,"13.4-13.7":0.07254,"14.0-14.4":0.13868,"14.5-14.8":0.21761,"15.0-15.1":0.09387,"15.2-15.3":0.11094,"15.4":0.13014,"15.5":0.16641,"15.6-15.8":1.39316,"16.0":0.33922,"16.1":0.70191,"16.2":0.33922,"16.3":0.60377,"16.4":0.12801,"16.5":0.27095,"16.6-16.7":2.0524,"17.0":0.26668,"17.1":0.53337,"17.2":0.85979,"17.3":10.58201,"17.4":1.55317,"17.5":0},P:{"20":0.01077,"21":0.01077,"22":0.01077,"23":0.29067,"24":0.5598,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 14.0 15.0 16.0","11.1-11.2":0.01077,"12.0":0.01077,"13.0":0.01077,"17.0":0.01077,"18.0":0.01077,"19.0":0.01077},I:{"0":0.06467,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.14134,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00971,"8":0.02914,"9":0.00971,"10":0.00971,"11":0.41766,_:"7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.21623},R:{_:"0"},M:{"0":0.29032},Q:{"14.9":0.03438},O:{"0":0.24448},H:{"0":0}}; +module.exports={C:{"48":0.01282,"52":0.03205,"54":0.39101,"56":0.00641,"78":0.01923,"83":0.00641,"91":0.00641,"102":0.01282,"103":0.02564,"105":0.01282,"106":0.01923,"107":0.01923,"108":0.01923,"109":0.01923,"110":0.01923,"111":0.01282,"113":0.00641,"115":0.23076,"117":0.01923,"119":0.00641,"120":0.00641,"121":0.01282,"122":0.01923,"123":0.03205,"124":1.30123,"125":0.71792,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 104 112 114 116 118 126 127 128 3.5 3.6"},D:{"48":0.00641,"49":0.04487,"53":0.01923,"57":0.00641,"62":0.00641,"65":0.00641,"67":0.00641,"68":0.00641,"69":0.00641,"70":0.00641,"74":0.00641,"75":0.00641,"77":0.00641,"78":0.01282,"79":0.01282,"80":0.00641,"81":0.07051,"83":0.01282,"84":0.00641,"85":0.00641,"86":0.07692,"87":0.01923,"88":0.00641,"89":0.01282,"90":0.00641,"91":0.05128,"92":0.00641,"93":0.00641,"94":0.00641,"95":0.01923,"96":0.00641,"97":0.02564,"98":0.01923,"99":0.01282,"100":0.05128,"101":0.09615,"102":0.0641,"103":0.17948,"104":0.10897,"105":0.04487,"106":0.10897,"107":0.1282,"108":0.17307,"109":1.35251,"110":0.09615,"111":0.11538,"112":0.09615,"113":0.04487,"114":0.07051,"115":0.01282,"116":0.19871,"117":0.03846,"118":0.03846,"119":0.13461,"120":0.29486,"121":0.3846,"122":2.38452,"123":20.0633,"124":6.90357,"125":0.02564,"126":0.00641,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 52 54 55 56 58 59 60 61 63 64 66 71 72 73 76 127"},F:{"49":0.00641,"81":0.00641,"91":0.00641,"92":0.00641,"93":0.00641,"94":0.00641,"95":0.01923,"101":0.00641,"107":0.0641,"108":0.15384,"109":0.0641,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 96 97 98 99 100 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00641,"18":0.00641,"92":0.00641,"98":0.00641,"103":0.00641,"105":0.00641,"106":0.01282,"107":0.02564,"108":0.02564,"109":0.3846,"110":0.01923,"111":0.01923,"112":0.09615,"113":0.01282,"114":0.02564,"115":0.00641,"116":0.00641,"117":0.01282,"118":0.01282,"119":0.01923,"120":0.05769,"121":0.05769,"122":0.60895,"123":9.8073,"124":3.55114,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 104"},E:{"13":0.00641,"14":0.02564,"15":0.00641,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01282,"13.1":0.05128,"14.1":0.11538,"15.1":0.01282,"15.2-15.3":0.01282,"15.4":0.03205,"15.5":0.02564,"15.6":0.21153,"16.0":0.02564,"16.1":0.04487,"16.2":0.04487,"16.3":0.10256,"16.4":0.02564,"16.5":0.03846,"16.6":0.33332,"17.0":0.02564,"17.1":0.0641,"17.2":0.11538,"17.3":0.32691,"17.4":0.98073,"17.5":0.00641},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00371,"5.0-5.1":0.00371,"6.0-6.1":0.00928,"7.0-7.1":0.01484,"8.1-8.4":0.00371,"9.0-9.2":0.00928,"9.3":0.04638,"10.0-10.2":0.00928,"10.3":0.07421,"11.0-11.2":0.06308,"11.3-11.4":0.01855,"12.0-12.1":0.01299,"12.2-12.5":0.30239,"13.0-13.1":0.00557,"13.2":0.06122,"13.3":0.01484,"13.4-13.7":0.05751,"14.0-14.4":0.11316,"14.5-14.8":0.17253,"15.0-15.1":0.07977,"15.2-15.3":0.0909,"15.4":0.10389,"15.5":0.13172,"15.6-15.8":1.1502,"16.0":0.269,"16.1":0.56026,"16.2":0.269,"16.3":0.47492,"16.4":0.09832,"16.5":0.20592,"16.6-16.7":1.62697,"17.0":0.19479,"17.1":0.3599,"17.2":0.47863,"17.3":3.4914,"17.4":7.88069,"17.5":0.07235},P:{"20":0.01049,"21":0.01049,"22":0.01049,"23":0.05244,"24":0.73415,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 14.0 15.0 16.0 18.0","11.1-11.2":0.02098,"12.0":0.01049,"13.0":0.01049,"17.0":0.01049,"19.0":0.01049},I:{"0":0.04647,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"8":0.07079,"9":0.02023,"10":0.01011,"11":0.35397,_:"6 7 5.5"},K:{"0":0.1292,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.03589},O:{"0":0.20098},H:{"0":0},L:{"0":23.86801},R:{_:"0"},M:{"0":0.24405}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js index 52e3da4609241c..ce46b712050a1a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KE.js @@ -1 +1 @@ -module.exports={C:{"34":0.00255,"47":0.0051,"52":0.01531,"56":0.00255,"66":0.00255,"68":0.00255,"72":0.00255,"78":0.00255,"88":0.00255,"102":0.00255,"103":0.00255,"108":0.00255,"109":0.00255,"112":0.00255,"113":0.00255,"115":0.20663,"116":0.00255,"118":0.0051,"119":0.00255,"120":0.0051,"121":0.01531,"122":0.03316,"123":0.88265,"124":0.32398,"125":0.01531,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 110 111 114 117 126 127 3.5 3.6"},D:{"11":0.0051,"38":0.00765,"43":0.00255,"49":0.00255,"50":0.00255,"51":0.0051,"56":0.00765,"58":0.00255,"63":0.00255,"64":0.00255,"65":0.00255,"66":0.0051,"68":0.00255,"69":0.0051,"70":0.0051,"71":0.00255,"72":0.00255,"73":0.01786,"74":0.00255,"75":0.00255,"76":0.0051,"77":0.00255,"78":0.00255,"79":0.01531,"80":0.00255,"81":0.0051,"83":0.05867,"84":0.00255,"85":0.00255,"86":0.0051,"87":0.04082,"88":0.01276,"89":0.00765,"91":0.00765,"92":0.0051,"93":0.15561,"94":0.00255,"95":0.01276,"96":0.00255,"97":0.00765,"98":0.0051,"99":0.0051,"100":0.00255,"101":0.0051,"102":0.00765,"103":0.04847,"104":0.0051,"105":0.01276,"106":0.02806,"107":0.02041,"108":0.06378,"109":0.96683,"110":0.0102,"111":0.08673,"112":0.0102,"113":0.0102,"114":0.06633,"115":0.02296,"116":0.06888,"117":0.01786,"118":0.01786,"119":0.05612,"120":0.17857,"121":0.69132,"122":10.8443,"123":2.79845,"124":0.0051,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 52 53 54 55 57 59 60 61 62 67 90 125 126"},F:{"28":0.00255,"46":0.00255,"79":0.00255,"80":0.0102,"81":0.01531,"85":0.00255,"91":0.00255,"95":0.01531,"102":0.00255,"106":0.0051,"107":0.3699,"108":0.15051,"109":0.00255,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 83 84 86 87 88 89 90 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00765,"13":0.00255,"14":0.00255,"15":0.00255,"16":0.0051,"17":0.00255,"18":0.02296,"84":0.00255,"85":0.0051,"89":0.0051,"90":0.00255,"92":0.04592,"100":0.00765,"107":0.00255,"108":0.00255,"109":0.02296,"111":0.00255,"112":0.00255,"114":0.0051,"115":0.00255,"116":0.0051,"117":0.0051,"118":0.01276,"119":0.0102,"120":0.03571,"121":0.09439,"122":2.87498,"123":0.17602,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 110 113"},E:{"14":0.00255,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.5","5.1":0.00255,"13.1":0.00765,"14.1":0.01786,"15.1":0.00255,"15.4":0.00255,"15.5":0.00255,"15.6":0.03571,"16.0":0.00255,"16.1":0.0051,"16.2":0.0051,"16.3":0.0051,"16.4":0.00765,"16.5":0.00765,"16.6":0.06122,"17.0":0.0102,"17.1":0.02041,"17.2":0.03827,"17.3":0.05612,"17.4":0.02296},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00028,"5.0-5.1":0.00014,"6.0-6.1":0.00084,"7.0-7.1":0.00098,"8.1-8.4":0.00028,"9.0-9.2":0.00056,"9.3":0.0035,"10.0-10.2":0.00056,"10.3":0.00588,"11.0-11.2":0.0042,"11.3-11.4":0.0014,"12.0-12.1":0.00126,"12.2-12.5":0.02423,"13.0-13.1":0.00042,"13.2":0.0042,"13.3":0.00126,"13.4-13.7":0.00476,"14.0-14.4":0.0091,"14.5-14.8":0.01428,"15.0-15.1":0.00616,"15.2-15.3":0.00728,"15.4":0.00854,"15.5":0.01092,"15.6-15.8":0.09145,"16.0":0.02227,"16.1":0.04607,"16.2":0.02227,"16.3":0.03963,"16.4":0.0084,"16.5":0.01779,"16.6-16.7":0.13472,"17.0":0.01751,"17.1":0.03501,"17.2":0.05644,"17.3":0.6946,"17.4":0.10195,"17.5":0},P:{"4":0.09218,"20":0.01024,"21":0.02048,"22":0.03073,"23":0.29703,"24":0.338,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","7.2-7.4":0.34824,"13.0":0.01024,"17.0":0.01024,"18.0":0.01024,"19.0":0.06145},I:{"0":0.03709,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":18.95181,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00294,"11":0.03532,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":47.40632},R:{_:"0"},M:{"0":0.60337},Q:{"14.9":0.00745},O:{"0":0.13408},H:{"0":7.44}}; +module.exports={C:{"34":0.0048,"47":0.0048,"52":0.0048,"66":0.0024,"68":0.0024,"72":0.0024,"78":0.0072,"88":0.0024,"102":0.0024,"103":0.0024,"107":0.0048,"109":0.0024,"111":0.0024,"112":0.0024,"113":0.0024,"114":0.0024,"115":0.2352,"116":0.0024,"117":0.0024,"118":0.0048,"119":0.0024,"120":0.0048,"121":0.0144,"122":0.0144,"123":0.0408,"124":0.6936,"125":0.3432,"126":0.0192,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 108 110 127 128 3.5 3.6"},D:{"11":0.0048,"31":0.0024,"38":0.0072,"43":0.0024,"49":0.0048,"50":0.0024,"51":0.0048,"54":0.0024,"56":0.0144,"58":0.0048,"62":0.0024,"64":0.0024,"65":0.0024,"66":0.1584,"68":0.0048,"69":0.0096,"70":0.0096,"71":0.0024,"72":0.0096,"73":0.0312,"74":0.0072,"75":0.0024,"76":0.0048,"77":0.0048,"78":0.0048,"79":0.024,"80":0.0024,"81":0.0048,"83":0.1152,"85":0.0024,"86":0.0024,"87":0.0504,"88":0.0288,"89":0.0024,"90":0.0024,"91":0.0192,"92":0.0048,"93":0.2136,"94":0.0072,"95":0.0144,"96":0.0024,"97":0.0144,"98":0.0096,"99":0.0072,"100":0.0048,"101":0.0048,"102":0.0096,"103":0.0504,"104":0.0048,"105":0.0072,"106":0.0288,"107":0.012,"108":0.4272,"109":1.0464,"110":0.0096,"111":0.0168,"112":0.0144,"113":0.0072,"114":0.0264,"115":0.0144,"116":0.0648,"117":0.0192,"118":0.0168,"119":0.1128,"120":0.1152,"121":0.1728,"122":0.4632,"123":8.9976,"124":3.2952,"125":0.0288,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 52 53 55 57 59 60 61 63 67 84 126 127"},F:{"28":0.0072,"36":0.0024,"45":0.0024,"46":0.0072,"79":0.0024,"81":0.0144,"82":0.0096,"85":0.0024,"95":0.0144,"102":0.0048,"106":0.0024,"107":0.1272,"108":0.2856,"109":0.1104,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0096,"13":0.0072,"14":0.0024,"15":0.0048,"16":0.0048,"17":0.0024,"18":0.0288,"84":0.0024,"85":0.0024,"89":0.012,"90":0.0072,"92":0.0312,"100":0.0048,"104":0.0024,"106":0.0024,"107":0.0024,"109":0.0288,"112":0.0024,"113":0.0024,"114":0.0024,"116":0.0024,"117":0.0048,"118":0.0048,"119":0.0072,"120":0.0192,"121":0.0288,"122":0.1368,"123":1.3344,"124":0.5424,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 105 108 110 111 115"},E:{"12":0.0024,"13":0.0024,"14":0.0048,_:"0 4 5 6 7 8 9 10 11 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","5.1":0.0024,"13.1":0.012,"14.1":0.012,"15.1":0.1272,"15.4":0.0024,"15.5":0.0048,"15.6":0.0408,"16.0":0.0024,"16.1":0.0072,"16.2":0.0048,"16.3":0.0072,"16.4":0.0096,"16.5":0.0072,"16.6":0.0816,"17.0":0.0072,"17.1":0.0192,"17.2":0.0312,"17.3":0.036,"17.4":0.1248,"17.5":0.0024},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0.00037,"6.0-6.1":0.00092,"7.0-7.1":0.00147,"8.1-8.4":0.00037,"9.0-9.2":0.00092,"9.3":0.00458,"10.0-10.2":0.00092,"10.3":0.00733,"11.0-11.2":0.00623,"11.3-11.4":0.00183,"12.0-12.1":0.00128,"12.2-12.5":0.02986,"13.0-13.1":0.00055,"13.2":0.00604,"13.3":0.00147,"13.4-13.7":0.00568,"14.0-14.4":0.01117,"14.5-14.8":0.01703,"15.0-15.1":0.00788,"15.2-15.3":0.00897,"15.4":0.01026,"15.5":0.013,"15.6-15.8":0.11356,"16.0":0.02656,"16.1":0.05531,"16.2":0.02656,"16.3":0.04689,"16.4":0.00971,"16.5":0.02033,"16.6-16.7":0.16063,"17.0":0.01923,"17.1":0.03553,"17.2":0.04726,"17.3":0.34471,"17.4":0.77806,"17.5":0.00714},P:{"4":0.16486,"20":0.0103,"21":0.03091,"22":0.04122,"23":0.11334,"24":0.51519,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","6.2-6.4":0.0103,"7.2-7.4":0.08243,"13.0":0.0103,"17.0":0.02061,"19.0":0.05152},I:{"0":0.05298,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"10":0.00531,"11":0.04509,_:"6 7 8 9 5.5"},K:{"0":20.3828,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0076},O:{"0":0.1748},H:{"0":10.04},L:{"0":45.076},R:{_:"0"},M:{"0":0.1748}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js index 803aa81f50f05c..c1d84141801f0d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KG.js @@ -1 +1 @@ -module.exports={C:{"52":0.03079,"59":0.00257,"68":0.07955,"78":0.00257,"90":0.03592,"91":0.00257,"94":0.00513,"102":0.00257,"110":0.0077,"111":0.00257,"112":0.00257,"113":0.00257,"115":0.22581,"116":0.00257,"118":0.00257,"119":0.00257,"121":0.01796,"122":0.0154,"123":0.3772,"124":0.12317,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 95 96 97 98 99 100 101 103 104 105 106 107 108 109 114 117 120 125 126 127 3.5 3.6"},D:{"35":0.00513,"37":0.00257,"47":0.00513,"49":0.01283,"52":0.25917,"61":0.00257,"63":0.00257,"66":0.0154,"68":0.00513,"69":0.00257,"71":0.00257,"72":0.04362,"74":0.00257,"75":0.00257,"77":0.00257,"79":0.02053,"80":0.00257,"81":0.00513,"83":0.02309,"84":0.01026,"86":0.00257,"87":0.0077,"88":0.00513,"89":0.02566,"90":0.01283,"92":0.00513,"93":0.00257,"94":0.00257,"95":0.00513,"96":0.0077,"97":0.00257,"98":0.0077,"99":0.00257,"100":0.0154,"101":0.01796,"102":0.02566,"103":0.03079,"104":0.00513,"105":0.01796,"106":0.03079,"107":0.00513,"108":0.0077,"109":2.85083,"110":0.00513,"111":0.01283,"112":0.03592,"113":0.0077,"114":0.10007,"115":0.0077,"116":0.07185,"117":0.02053,"118":0.02053,"119":0.05645,"120":0.23351,"121":0.80829,"122":9.19141,"123":2.69173,"124":0.00257,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 38 39 40 41 42 43 44 45 46 48 50 51 53 54 55 56 57 58 59 60 62 64 65 67 70 73 76 78 85 91 125 126"},F:{"16":0.00257,"36":0.06928,"79":0.0077,"80":0.00257,"81":0.00257,"85":0.01796,"86":0.00257,"95":0.26943,"102":0.00257,"105":0.00513,"106":0.01796,"107":1.09312,"108":0.30792,"109":0.00513,_:"9 11 12 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 83 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00257},B:{"14":0.00257,"18":0.0077,"89":0.00257,"92":0.00513,"97":0.00513,"100":0.00257,"107":0.00257,"109":0.00513,"112":0.00257,"114":0.01026,"117":0.00257,"119":0.00513,"120":0.02053,"121":0.06158,"122":1.20602,"123":0.05902,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 98 99 101 102 103 104 105 106 108 110 111 113 115 116 118"},E:{"14":0.00513,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 17.5","5.1":0.11034,"11.1":0.00257,"13.1":0.00257,"14.1":0.01026,"15.1":0.00513,"15.2-15.3":0.0077,"15.4":0.00257,"15.5":0.0154,"15.6":0.03849,"16.0":0.02566,"16.1":0.01026,"16.2":0.01026,"16.3":0.01283,"16.4":0.01796,"16.5":0.02309,"16.6":0.07185,"17.0":0.02309,"17.1":0.04362,"17.2":0.05902,"17.3":0.32075,"17.4":0.03592},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00266,"5.0-5.1":0.00133,"6.0-6.1":0.00797,"7.0-7.1":0.00929,"8.1-8.4":0.00266,"9.0-9.2":0.00531,"9.3":0.03319,"10.0-10.2":0.00531,"10.3":0.05576,"11.0-11.2":0.03983,"11.3-11.4":0.01328,"12.0-12.1":0.01195,"12.2-12.5":0.22969,"13.0-13.1":0.00398,"13.2":0.03983,"13.3":0.01195,"13.4-13.7":0.04514,"14.0-14.4":0.0863,"14.5-14.8":0.13543,"15.0-15.1":0.05842,"15.2-15.3":0.06904,"15.4":0.08099,"15.5":0.10356,"15.6-15.8":0.867,"16.0":0.21111,"16.1":0.43682,"16.2":0.21111,"16.3":0.37574,"16.4":0.07966,"16.5":0.16862,"16.6-16.7":1.27726,"17.0":0.16596,"17.1":0.33193,"17.2":0.53507,"17.3":6.58545,"17.4":0.96657,"17.5":0},P:{"4":0.15379,"20":0.04101,"21":0.10253,"22":0.12303,"23":1.23033,"24":0.42036,"5.0-5.4":0.01025,"6.2-6.4":0.02051,"7.2-7.4":0.13329,_:"8.2 9.2 10.1 12.0 14.0","11.1-11.2":0.01025,"13.0":0.02051,"15.0":0.01025,"16.0":0.05126,"17.0":0.02051,"18.0":0.02051,"19.0":0.09227},I:{"0":0.02221,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.52781,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02566,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":57.4729},R:{_:"0"},M:{"0":0.06691},Q:{"14.9":0.00743},O:{"0":0.64676},H:{"0":0}}; +module.exports={C:{"52":0.04221,"59":0.00563,"78":0.00281,"90":0.05909,"94":0.00563,"102":0.00281,"104":0.00844,"111":0.00281,"113":0.00563,"115":0.27014,"116":0.00281,"117":0.00844,"118":0.00281,"119":0.01126,"121":0.02251,"122":0.00563,"123":0.02251,"124":0.4221,"125":0.18572,"126":0.00281,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 91 92 93 95 96 97 98 99 100 101 103 105 106 107 108 109 110 112 114 120 127 128 3.5 3.6"},D:{"49":0.01407,"52":0.77666,"62":0.00281,"66":0.01407,"68":0.00281,"71":0.00281,"72":0.00563,"79":0.02533,"80":0.00281,"81":0.00281,"83":0.01688,"84":0.00563,"86":0.00281,"87":0.02251,"88":0.00844,"89":0.0197,"90":0.00563,"92":0.00281,"93":0.00281,"94":0.00281,"95":0.00844,"96":0.00281,"97":0.00563,"98":0.01688,"99":0.00281,"100":0.01407,"101":0.03658,"102":0.02814,"103":0.00844,"104":0.00281,"105":0.00563,"106":0.01688,"107":0.00844,"108":0.01688,"109":3.58785,"110":0.00281,"111":0.01688,"112":0.02251,"113":0.01126,"114":0.1407,"115":0.00844,"116":0.02814,"117":0.01688,"118":0.02814,"119":0.03095,"120":0.242,"121":0.21105,"122":0.33205,"123":9.85744,"124":3.75388,"125":0.00844,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 63 64 65 67 69 70 73 74 75 76 77 78 85 91 126 127"},F:{"42":0.01126,"74":0.00563,"79":0.00563,"85":0.02814,"86":0.00844,"95":0.23075,"102":0.00281,"106":0.00563,"107":0.47557,"108":0.62752,"109":0.27577,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 82 83 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00281,"18":0.00844,"90":0.00281,"92":0.01407,"97":0.00281,"100":0.00281,"108":0.00281,"109":0.00281,"110":0.00281,"111":0.00281,"117":0.00563,"118":0.00281,"119":0.01126,"120":0.00281,"121":0.00563,"122":0.10975,"123":1.06651,"124":0.48119,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 98 99 101 102 103 104 105 106 107 112 113 114 115 116"},E:{"13":0.00281,"14":0.00281,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 7.1 9.1 10.1 15.5","5.1":0.08723,"11.1":0.00281,"12.1":0.00281,"13.1":0.01126,"14.1":0.01407,"15.1":0.00281,"15.2-15.3":0.00281,"15.4":0.00844,"15.6":0.06754,"16.0":0.02251,"16.1":0.03377,"16.2":0.01407,"16.3":0.00844,"16.4":0.01126,"16.5":0.03095,"16.6":0.05628,"17.0":0.02814,"17.1":0.04221,"17.2":0.05909,"17.3":0.08723,"17.4":0.20542,"17.5":0.05347},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00244,"5.0-5.1":0.00244,"6.0-6.1":0.00609,"7.0-7.1":0.00974,"8.1-8.4":0.00244,"9.0-9.2":0.00609,"9.3":0.03045,"10.0-10.2":0.00609,"10.3":0.04872,"11.0-11.2":0.04141,"11.3-11.4":0.01218,"12.0-12.1":0.00853,"12.2-12.5":0.19854,"13.0-13.1":0.00365,"13.2":0.04019,"13.3":0.00974,"13.4-13.7":0.03776,"14.0-14.4":0.0743,"14.5-14.8":0.11328,"15.0-15.1":0.05238,"15.2-15.3":0.05968,"15.4":0.06821,"15.5":0.08648,"15.6-15.8":0.75518,"16.0":0.17661,"16.1":0.36784,"16.2":0.17661,"16.3":0.31181,"16.4":0.06456,"16.5":0.1352,"16.6-16.7":1.06821,"17.0":0.12789,"17.1":0.2363,"17.2":0.31425,"17.3":2.29233,"17.4":5.17418,"17.5":0.0475},P:{"4":0.12384,"20":0.03096,"21":0.06192,"22":0.1032,"23":0.34057,"24":0.83595,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.0516,"7.2-7.4":0.16513,"11.1-11.2":0.01032,"12.0":0.01032,"13.0":0.01032,"14.0":0.01032,"15.0":0.03096,"16.0":0.03096,"17.0":0.02064,"18.0":0.01032,"19.0":0.0516},I:{"0":0.02147,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.02533,_:"6 7 8 9 10 5.5"},K:{"0":0.77327,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.42397},H:{"0":0.01},L:{"0":56.36618},R:{_:"0"},M:{"0":0.03593}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js index a7e1a8c433324a..3b9cf33290545a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KH.js @@ -1 +1 @@ -module.exports={C:{"3":0.00318,"4":0.00318,"40":0.00318,"42":0.00318,"44":0.00318,"47":0.02859,"50":0.00635,"51":0.00953,"52":0.01906,"66":0.00635,"67":0.00635,"68":0.00635,"72":0.00635,"75":0.02542,"78":0.07307,"81":0.00318,"82":0.00318,"100":0.00318,"102":0.01271,"103":0.02859,"104":0.01271,"105":0.00318,"106":0.01589,"107":0.00318,"109":0.00635,"110":0.00635,"112":0.00318,"114":0.00318,"115":0.13979,"116":0.00318,"117":0.00318,"118":0.00318,"119":0.00318,"120":0.00318,"121":0.00318,"122":0.02859,"123":1.12466,"124":0.43843,"125":0.00318,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 45 46 48 49 53 54 55 56 57 58 59 60 61 62 63 64 65 69 70 71 73 74 76 77 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 108 111 113 126 127 3.5","3.6":0.00318},D:{"29":0.00318,"37":0.00318,"38":0.02224,"41":0.00318,"43":0.00318,"44":0.00318,"45":0.00318,"46":0.00318,"47":0.00635,"48":0.00318,"49":0.00953,"51":0.00318,"56":0.06989,"57":0.00635,"58":0.00635,"65":0.00318,"68":0.00635,"69":0.00318,"70":0.00635,"71":0.00635,"72":0.00953,"74":0.00635,"75":0.00318,"76":0.00635,"77":0.01906,"78":0.00318,"79":0.05719,"80":0.00635,"81":0.02859,"83":0.00635,"84":0.00635,"85":0.07625,"86":0.03812,"87":0.09849,"88":0.00635,"89":0.00318,"90":0.00635,"91":0.00318,"92":0.00318,"93":0.00953,"94":0.14932,"95":0.00635,"96":0.00953,"97":0.00318,"98":0.03495,"99":0.02859,"100":0.00953,"101":0.01589,"102":0.01589,"103":0.06036,"104":0.06989,"105":0.03177,"106":0.03812,"107":0.10802,"108":0.10484,"109":0.69576,"110":0.07625,"111":0.08578,"112":0.06672,"113":0.03177,"114":0.06672,"115":0.03177,"116":0.10166,"117":0.01589,"118":0.01271,"119":0.12073,"120":0.32723,"121":1.21679,"122":13.16549,"123":3.78063,"124":0.02224,"125":0.00953,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 39 40 42 50 52 53 54 55 59 60 61 62 63 64 66 67 73 126"},F:{"28":0.00635,"40":0.00318,"44":0.00318,"65":0.00318,"87":0.00318,"93":0.00318,"94":0.00635,"95":0.00953,"96":0.00953,"106":0.00953,"107":0.59728,"108":0.20651,"109":0.00318,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00318,"14":0.00953,"18":0.01271,"85":0.00318,"89":0.00318,"92":0.02224,"100":0.00318,"106":0.01589,"107":0.00953,"108":0.00953,"109":0.01271,"110":0.00318,"111":0.00635,"112":0.00318,"113":0.00635,"114":0.00635,"115":0.00318,"117":0.00635,"118":0.00318,"119":0.01271,"120":0.02224,"121":0.07307,"122":1.69334,"123":0.13026,_:"13 15 16 17 79 80 81 83 84 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 116"},E:{"4":0.00318,"9":0.00635,"10":0.00953,"14":0.01589,"15":0.00953,_:"0 5 6 7 8 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00318,"12.1":0.00635,"13.1":0.01906,"14.1":0.03812,"15.1":0.01271,"15.2-15.3":0.01271,"15.4":0.02542,"15.5":0.02542,"15.6":0.1112,"16.0":0.02224,"16.1":0.02859,"16.2":0.01271,"16.3":0.06672,"16.4":0.01271,"16.5":0.03495,"16.6":0.18109,"17.0":0.02859,"17.1":0.06036,"17.2":0.08578,"17.3":0.54644,"17.4":0.13343},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00498,"5.0-5.1":0.00249,"6.0-6.1":0.01494,"7.0-7.1":0.01743,"8.1-8.4":0.00498,"9.0-9.2":0.00996,"9.3":0.06226,"10.0-10.2":0.00996,"10.3":0.1046,"11.0-11.2":0.07471,"11.3-11.4":0.0249,"12.0-12.1":0.02241,"12.2-12.5":0.43084,"13.0-13.1":0.00747,"13.2":0.07471,"13.3":0.02241,"13.4-13.7":0.08467,"14.0-14.4":0.16188,"14.5-14.8":0.25402,"15.0-15.1":0.10958,"15.2-15.3":0.1295,"15.4":0.15191,"15.5":0.19425,"15.6-15.8":1.62623,"16.0":0.39597,"16.1":0.81934,"16.2":0.39597,"16.3":0.70478,"16.4":0.14942,"16.5":0.31628,"16.6-16.7":2.39576,"17.0":0.3113,"17.1":0.6226,"17.2":1.00363,"17.3":12.35236,"17.4":1.81301,"17.5":0},P:{"4":0.07219,"20":0.04125,"21":0.03094,"22":0.0825,"23":0.86629,"24":0.57752,"5.0-5.4":0.01031,"6.2-6.4":0.01031,"7.2-7.4":0.01031,_:"8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 18.0","16.0":0.01031,"17.0":0.02063,"19.0":0.01031},I:{"0":0.06795,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.60725,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.05473,"9":0.01026,"10":0.01026,"11":1.35122,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":41.60641},R:{_:"0"},M:{"0":0.23198},Q:{"14.9":0.02729},O:{"0":0.96204},H:{"0":0}}; +module.exports={C:{"4":0.0062,"38":0.0031,"40":0.0031,"44":0.0031,"47":0.06818,"50":0.0093,"51":0.01859,"52":0.02479,"65":0.0031,"66":0.0062,"67":0.0062,"68":0.0093,"72":0.0093,"75":0.03099,"78":0.11156,"80":0.0031,"81":0.0031,"82":0.0093,"91":0.0031,"100":0.0031,"102":0.0124,"103":0.04958,"104":0.0031,"105":0.0062,"106":0.0124,"107":0.0124,"108":0.0093,"109":0.02479,"110":0.0093,"111":0.0031,"112":0.0031,"113":0.0093,"115":0.15495,"116":0.0031,"117":0.0031,"119":0.0031,"120":0.0031,"121":0.0031,"122":0.0124,"123":0.0155,"124":0.66009,"125":0.44626,"126":0.0062,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 45 46 48 49 53 54 55 56 57 58 59 60 61 62 63 64 69 70 71 73 74 76 77 79 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 101 114 118 127 128 3.5","3.6":0.0031},D:{"29":0.0031,"38":0.02479,"39":0.0031,"40":0.0031,"41":0.0031,"43":0.0031,"44":0.0062,"45":0.0031,"46":0.0031,"47":0.0031,"49":0.0031,"51":0.0062,"56":0.09297,"57":0.0124,"58":0.0124,"63":0.0031,"68":0.02479,"70":0.0093,"71":0.0062,"72":0.02479,"74":0.0031,"75":0.0031,"76":0.0093,"77":0.0093,"78":0.0031,"79":0.08677,"80":0.0093,"81":0.03719,"83":0.0062,"84":0.0093,"85":0.09607,"86":0.02479,"87":0.13326,"88":0.0062,"89":0.0031,"90":0.0031,"91":0.0031,"92":0.0031,"93":0.0124,"94":0.01859,"95":0.0062,"96":0.0031,"97":0.0062,"98":0.02479,"99":0.04029,"100":0.0093,"101":0.01859,"102":0.01859,"103":0.04339,"104":0.09917,"105":0.04339,"106":0.06508,"107":0.06508,"108":0.05268,"109":0.71897,"110":0.04649,"111":0.03409,"112":0.06198,"113":0.02169,"114":0.01859,"115":0.0093,"116":0.10537,"117":0.0155,"118":0.0093,"119":0.07748,"120":0.14875,"121":0.34709,"122":0.58881,"123":12.53546,"124":5.13504,"125":0.02169,"126":0.0062,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 42 48 50 52 53 54 55 59 60 61 62 64 65 66 67 69 73 127"},F:{"28":0.0062,"40":0.0031,"44":0.0062,"65":0.0062,"79":0.0031,"84":0.0031,"93":0.0031,"94":0.0062,"95":0.0093,"96":0.0031,"106":0.0031,"107":0.2975,"108":0.50204,"109":0.09917,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 85 86 87 88 89 90 91 92 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0031,"14":0.0062,"18":0.0155,"84":0.0031,"85":0.0031,"86":0.0031,"89":0.0062,"92":0.02169,"100":0.0031,"103":0.0031,"106":0.0124,"107":0.0093,"108":0.0093,"109":0.0093,"110":0.0062,"111":0.0062,"112":0.0031,"113":0.0031,"114":0.0031,"117":0.02789,"118":0.0031,"119":0.0062,"120":0.02169,"121":0.0093,"122":0.05888,"123":1.01337,"124":0.54233,_:"13 15 16 17 79 80 81 83 87 88 90 91 93 94 95 96 97 98 99 101 102 104 105 115 116"},E:{"9":0.0093,"10":0.0155,"12":0.0031,"14":0.0124,"15":0.0155,_:"0 4 5 6 7 8 11 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0093,"13.1":0.0155,"14.1":0.05578,"15.1":0.0093,"15.2-15.3":0.0062,"15.4":0.01859,"15.5":0.0155,"15.6":0.12706,"16.0":0.02479,"16.1":0.04649,"16.2":0.02169,"16.3":0.04958,"16.4":0.0093,"16.5":0.02169,"16.6":0.19524,"17.0":0.02789,"17.1":0.04958,"17.2":0.04958,"17.3":0.15185,"17.4":0.49894,"17.5":0.22623},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00498,"5.0-5.1":0.00498,"6.0-6.1":0.01245,"7.0-7.1":0.01992,"8.1-8.4":0.00498,"9.0-9.2":0.01245,"9.3":0.06226,"10.0-10.2":0.01245,"10.3":0.09962,"11.0-11.2":0.08468,"11.3-11.4":0.02491,"12.0-12.1":0.01743,"12.2-12.5":0.40596,"13.0-13.1":0.00747,"13.2":0.08219,"13.3":0.01992,"13.4-13.7":0.07721,"14.0-14.4":0.15192,"14.5-14.8":0.23162,"15.0-15.1":0.10709,"15.2-15.3":0.12204,"15.4":0.13947,"15.5":0.17683,"15.6-15.8":1.54415,"16.0":0.36113,"16.1":0.75215,"16.2":0.36113,"16.3":0.63759,"16.4":0.132,"16.5":0.27645,"16.6-16.7":2.18423,"17.0":0.26151,"17.1":0.48317,"17.2":0.64257,"17.3":4.68725,"17.4":10.57995,"17.5":0.09713},P:{"4":0.07278,"20":0.02079,"21":0.02079,"22":0.08318,"23":0.19754,"24":1.07088,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.0104,"17.0":0.03119,"19.0":0.0104},I:{"0":0.0756,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"7":0.0036,"8":0.07552,"9":0.02158,"10":0.01079,"11":1.52479,_:"6 5.5"},K:{"0":0.62109,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0069,_:"3.0-3.1"},Q:{"14.9":0.06211},O:{"0":1.06966},H:{"0":0},L:{"0":41.59856},R:{_:"0"},M:{"0":0.26224}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KI.js index 3c7381476c5454..d65a4ef19672f8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KI.js @@ -1 +1 @@ -module.exports={C:{"105":0.05476,"115":0.01742,"122":0.01742,"123":0.79399,"124":0.48038,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"86":0.01742,"88":0.03734,"95":0.10952,"108":0.01742,"109":0.10952,"120":0.12943,"121":0.18419,"122":4.38811,"123":1.25446,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 87 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 114 115 116 117 118 119 124 125 126"},F:{"95":0.12943,"107":0.66456,"108":0.16676,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.01742,"89":0.01742,"92":0.07467,"100":0.05476,"113":0.05476,"114":0.01742,"117":0.05476,"119":0.33104,"120":0.95827,"121":0.58989,"122":3.99982,"123":0.14685,_:"12 14 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 115 116 118"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.4 16.5 17.0 17.1 17.5","16.3":0.01742,"16.6":0.10952,"17.2":0.01742,"17.3":0.60732,"17.4":0.35095},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00032,"5.0-5.1":0.00016,"6.0-6.1":0.00097,"7.0-7.1":0.00114,"8.1-8.4":0.00032,"9.0-9.2":0.00065,"9.3":0.00406,"10.0-10.2":0.00065,"10.3":0.00681,"11.0-11.2":0.00487,"11.3-11.4":0.00162,"12.0-12.1":0.00146,"12.2-12.5":0.02807,"13.0-13.1":0.00049,"13.2":0.00487,"13.3":0.00146,"13.4-13.7":0.00552,"14.0-14.4":0.01055,"14.5-14.8":0.01655,"15.0-15.1":0.00714,"15.2-15.3":0.00844,"15.4":0.0099,"15.5":0.01265,"15.6-15.8":0.10594,"16.0":0.0258,"16.1":0.05338,"16.2":0.0258,"16.3":0.04591,"16.4":0.00973,"16.5":0.0206,"16.6-16.7":0.15607,"17.0":0.02028,"17.1":0.04056,"17.2":0.06538,"17.3":0.8047,"17.4":0.11811,"17.5":0},P:{"21":0.15137,"22":0.11101,"23":0.74677,"24":0.11101,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.20183,"11.1-11.2":0.06055,"13.0":0.02018,"19.0":0.2422},I:{"0":0.05236,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0.56333,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.76024},R:{_:"0"},M:{"0":0.11267},Q:{"14.9":0.01502},O:{"0":2.94431},H:{"0":0}}; +module.exports={C:{"105":0.11345,"124":0.14622,"125":0.43865,"126":0.01513,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 127 128 3.5 3.6"},D:{"71":0.08067,"96":0.01513,"108":0.08067,"109":0.06555,"112":0.01513,"115":0.17899,"119":0.06555,"120":0.01513,"121":0.03277,"122":0.35798,"123":3.59999,"124":2.54117,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 103 104 105 106 107 110 111 113 114 116 117 118 125 126 127"},F:{"107":0.40588,"108":0.06555,"109":1.04117,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"100":0.06555,"109":0.03277,"111":0.01513,"114":0.03277,"115":0.11345,"117":0.01513,"118":0.0479,"119":2.0042,"120":0.31008,"121":0.31008,"122":0.48907,"123":2.72016,"124":1.35126,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.5","15.6":0.03277,"17.3":0.14622,"17.4":0.55462},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00014,"5.0-5.1":0.00014,"6.0-6.1":0.00035,"7.0-7.1":0.00056,"8.1-8.4":0.00014,"9.0-9.2":0.00035,"9.3":0.00176,"10.0-10.2":0.00035,"10.3":0.00281,"11.0-11.2":0.00239,"11.3-11.4":0.0007,"12.0-12.1":0.00049,"12.2-12.5":0.01146,"13.0-13.1":0.00021,"13.2":0.00232,"13.3":0.00056,"13.4-13.7":0.00218,"14.0-14.4":0.00429,"14.5-14.8":0.00654,"15.0-15.1":0.00302,"15.2-15.3":0.00344,"15.4":0.00394,"15.5":0.00499,"15.6-15.8":0.04359,"16.0":0.01019,"16.1":0.02123,"16.2":0.01019,"16.3":0.018,"16.4":0.00373,"16.5":0.0078,"16.6-16.7":0.06166,"17.0":0.00738,"17.1":0.01364,"17.2":0.01814,"17.3":0.13231,"17.4":0.29865,"17.5":0.00274},P:{"21":0.07217,"22":0.16497,"23":0.43303,"24":0.37117,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 18.0","7.2-7.4":0.13403,"16.0":0.03093,"17.0":0.1031,"19.0":0.05155},I:{"0":0.06704,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.48614,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":1.15925},H:{"0":0},L:{"0":78.21972},R:{_:"0"},M:{"0":0.11966}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js index 5e6022ec325bed..e22c312e8e959b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KM.js @@ -1 +1 @@ -module.exports={C:{"52":0.03931,"60":0.00342,"72":0.00171,"78":0.21192,"81":0.00342,"103":0.04102,"115":0.32471,"122":0.00513,"123":0.29908,"124":0.15381,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"33":0.03931,"41":0.00171,"43":0.00342,"49":0.11963,"55":0.00684,"65":0.00171,"68":0.00171,"69":0.00171,"73":0.01025,"74":0.03076,"78":0.00684,"79":0.06665,"81":0.2666,"85":0.00342,"87":0.00855,"88":0.09229,"89":0.00342,"90":0.00171,"91":0.01709,"94":0.00684,"95":0.05127,"97":0.01025,"99":0.01538,"103":0.00513,"104":0.00342,"105":0.05469,"109":0.98951,"110":0.00171,"111":0.00513,"112":0.0376,"113":0.00342,"114":0.00513,"116":0.00684,"117":0.094,"118":0.00684,"119":0.04785,"120":0.03589,"121":0.5127,"122":2.83181,"123":0.89893,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 70 71 72 75 76 77 80 83 84 86 92 93 96 98 100 101 102 106 107 108 115 124 125 126"},F:{"49":0.00684,"79":0.0188,"80":0.00684,"95":0.01025,"107":0.11792,"108":0.08545,"109":0.00855,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 12.1","11.6":0.01538},B:{"12":0.00513,"13":0.01538,"14":0.00171,"15":0.01709,"18":0.00513,"89":0.00171,"90":0.00171,"92":0.0188,"100":0.00513,"109":0.00171,"110":0.00171,"112":0.00342,"114":0.01709,"116":0.00342,"117":0.00684,"118":0.01025,"120":0.08545,"121":0.42383,"122":1.6321,"123":0.06323,_:"16 17 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 113 115 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 16.4 16.5 17.1 17.5","13.1":0.00342,"14.1":0.00342,"15.6":0.00513,"16.1":0.00171,"16.3":0.01367,"16.6":0.00684,"17.0":0.02393,"17.2":0.01196,"17.3":0.02222,"17.4":0.03589},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00199,"5.0-5.1":0.00099,"6.0-6.1":0.00597,"7.0-7.1":0.00696,"8.1-8.4":0.00199,"9.0-9.2":0.00398,"9.3":0.02487,"10.0-10.2":0.00398,"10.3":0.04179,"11.0-11.2":0.02985,"11.3-11.4":0.00995,"12.0-12.1":0.00895,"12.2-12.5":0.17212,"13.0-13.1":0.00298,"13.2":0.02985,"13.3":0.00895,"13.4-13.7":0.03383,"14.0-14.4":0.06467,"14.5-14.8":0.10148,"15.0-15.1":0.04378,"15.2-15.3":0.05174,"15.4":0.06069,"15.5":0.0776,"15.6-15.8":0.64968,"16.0":0.15819,"16.1":0.32733,"16.2":0.15819,"16.3":0.28156,"16.4":0.0597,"16.5":0.12635,"16.6-16.7":0.95711,"17.0":0.12437,"17.1":0.24873,"17.2":0.40095,"17.3":4.9348,"17.4":0.7243,"17.5":0},P:{"4":0.41838,"21":0.04082,"22":0.13266,"23":0.33674,"24":0.15306,_:"20 6.2-6.4 8.2 10.1 12.0 14.0","5.0-5.4":0.05102,"7.2-7.4":0.22449,"9.2":0.04082,"11.1-11.2":0.02041,"13.0":0.02041,"15.0":0.03061,"16.0":0.03061,"17.0":0.0102,"18.0":0.0102,"19.0":0.07143},I:{"0":0.04129,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.41113,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00171,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.8026},R:{_:"0"},M:{"0":0.07462},Q:{_:"14.9"},O:{"0":0.47259},H:{"0":0.02}}; +module.exports={C:{"51":0.00127,"72":0.00887,"78":0.02661,"100":0.00253,"103":0.28127,"115":0.38137,"118":0.01394,"121":0.00127,"123":0.0114,"124":0.23566,"125":0.19005,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 122 126 127 128 3.5 3.6"},D:{"39":0.03168,"40":0.0076,"58":0.03928,"59":0.00127,"68":0.0076,"79":0.04054,"80":0.0076,"81":0.00127,"84":0.00507,"87":0.00127,"88":0.00127,"89":0.00253,"90":0.00127,"91":0.0076,"93":0.00127,"94":0.00253,"97":0.02661,"99":0.0076,"103":0.0114,"106":0.00507,"108":0.04561,"109":1.23406,"110":0.0114,"111":0.0152,"113":0.00634,"115":0.00127,"116":0.00887,"117":0.0076,"119":0.03294,"120":0.11656,"121":0.02281,"122":0.14317,"123":2.71645,"124":1.23406,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 83 85 86 92 95 96 98 100 101 102 104 105 107 112 114 118 125 126 127"},F:{"95":0.01267,"103":0.00634,"107":0.04181,"108":0.17485,"109":0.17865,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.03928,"14":0.00127,"15":0.00634,"16":0.00507,"18":0.00634,"89":0.00634,"90":0.00253,"92":0.0076,"100":0.01774,"107":0.00127,"113":0.00127,"118":0.05195,"119":0.00127,"120":0.03294,"121":0.00507,"122":0.09629,"123":0.54988,"124":0.40037,_:"12 17 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 109 110 111 112 114 115 116 117"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.4 16.5 17.0 17.1 17.3","12.1":0.0076,"15.6":0.00507,"16.3":0.00887,"16.6":0.00127,"17.2":0.00507,"17.4":0.07222,"17.5":0.02534},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00153,"5.0-5.1":0.00153,"6.0-6.1":0.00383,"7.0-7.1":0.00612,"8.1-8.4":0.00153,"9.0-9.2":0.00383,"9.3":0.01913,"10.0-10.2":0.00383,"10.3":0.0306,"11.0-11.2":0.02601,"11.3-11.4":0.00765,"12.0-12.1":0.00536,"12.2-12.5":0.1247,"13.0-13.1":0.0023,"13.2":0.02525,"13.3":0.00612,"13.4-13.7":0.02372,"14.0-14.4":0.04667,"14.5-14.8":0.07115,"15.0-15.1":0.0329,"15.2-15.3":0.03749,"15.4":0.04284,"15.5":0.05432,"15.6-15.8":0.47431,"16.0":0.11093,"16.1":0.23103,"16.2":0.11093,"16.3":0.19584,"16.4":0.04055,"16.5":0.08492,"16.6-16.7":0.67091,"17.0":0.08033,"17.1":0.14841,"17.2":0.19737,"17.3":1.43975,"17.4":3.24977,"17.5":0.02984},P:{"4":0.02006,"20":0.03009,"21":0.08023,"22":0.12035,"23":0.24069,"24":0.64185,"5.0-5.4":0.01003,"6.2-6.4":0.05014,"7.2-7.4":0.11032,_:"8.2 10.1 13.0 15.0","9.2":0.09026,"11.1-11.2":0.03009,"12.0":0.01003,"14.0":0.01003,"16.0":0.01003,"17.0":0.01003,"18.0":0.01003,"19.0":0.08023},I:{"0":0.24352,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00015,"4.4":0,"4.4.3-4.4.4":0.00061},A:{"11":0.00507,_:"6 7 8 9 10 5.5"},K:{"0":0.54765,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00873,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.25326},H:{"0":0.02},L:{"0":80.72434},R:{_:"0"},M:{"0":0.04367}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js index 823f1bb233dd53..423ff943fb06b3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KN.js @@ -1 +1 @@ -module.exports={C:{"52":0.00373,"97":0.00373,"111":0.33606,"115":0.11202,"122":0.03361,"123":0.89989,"124":0.26138,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"22":0.00373,"64":0.00373,"70":0.00373,"75":0.13816,"76":0.0224,"79":0.07468,"83":0.04481,"84":0.0112,"85":0.00373,"87":0.71319,"88":0.0112,"93":0.01494,"94":0.03361,"97":0.66465,"103":0.15683,"104":0.00747,"109":0.43688,"110":0.0112,"112":0.00373,"113":0.00373,"114":0.03361,"115":0.04854,"116":0.04854,"117":0.11202,"118":0.0112,"119":0.05228,"120":0.45555,"121":1.82966,"122":11.38123,"123":3.07308,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 71 72 73 74 77 78 80 81 86 89 90 91 92 95 96 98 99 100 101 102 105 106 107 108 111 124 125 126"},F:{"28":0.0112,"106":0.04854,"107":2.02383,"108":0.12322,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00373,"98":0.00747,"100":0.0112,"109":0.07841,"114":0.00747,"118":0.00747,"119":0.00373,"120":0.03361,"121":0.85509,"122":5.78023,"123":0.31366,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117"},E:{"14":0.02987,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 16.4 17.5","13.1":0.13816,"14.1":0.26885,"15.1":0.00747,"15.2-15.3":0.00747,"15.4":0.00373,"15.5":0.04854,"15.6":0.26138,"16.0":0.00747,"16.1":0.08962,"16.2":0.01494,"16.3":0.05974,"16.5":0.05601,"16.6":0.44808,"17.0":0.06348,"17.1":0.10829,"17.2":0.35473,"17.3":2.00889,"17.4":0.35846},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0044,"5.0-5.1":0.0022,"6.0-6.1":0.01321,"7.0-7.1":0.01541,"8.1-8.4":0.0044,"9.0-9.2":0.0088,"9.3":0.05502,"10.0-10.2":0.0088,"10.3":0.09244,"11.0-11.2":0.06603,"11.3-11.4":0.02201,"12.0-12.1":0.01981,"12.2-12.5":0.38077,"13.0-13.1":0.0066,"13.2":0.06603,"13.3":0.01981,"13.4-13.7":0.07483,"14.0-14.4":0.14306,"14.5-14.8":0.2245,"15.0-15.1":0.09684,"15.2-15.3":0.11445,"15.4":0.13426,"15.5":0.17168,"15.6-15.8":1.43723,"16.0":0.34995,"16.1":0.72412,"16.2":0.34995,"16.3":0.62287,"16.4":0.13206,"16.5":0.27952,"16.6-16.7":2.11733,"17.0":0.27512,"17.1":0.55024,"17.2":0.88699,"17.3":10.91681,"17.4":1.60231,"17.5":0},P:{"4":0.17508,"20":0.16414,"21":0.06566,"22":0.05471,"23":1.58668,"24":1.83836,"5.0-5.4":0.01094,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 18.0","7.2-7.4":0.19697,"11.1-11.2":0.01094,"13.0":0.01094,"16.0":0.02189,"17.0":0.03283,"19.0":0.01094},I:{"0":0.06241,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.86111,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0224,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":37.75752},R:{_:"0"},M:{"0":0.11281},Q:{_:"14.9"},O:{"0":0.04387},H:{"0":0.01}}; +module.exports={C:{"97":0.00405,"102":0.01214,"115":0.19021,"123":0.08903,"124":0.46136,"125":0.29543,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"49":0.01214,"66":0.01619,"75":0.14569,"76":0.02024,"79":0.04047,"83":0.07285,"87":0.81345,"88":0.02024,"90":0.00405,"93":0.02024,"94":0.0688,"96":0.00405,"97":0.73655,"99":0.00405,"103":0.18616,"104":0.00809,"109":0.52611,"110":0.01619,"111":0.00405,"112":0.00809,"114":0.01619,"115":0.07285,"116":0.0688,"117":0.02428,"118":0.00405,"119":0.01619,"120":0.06071,"121":0.39661,"122":1.894,"123":13.39152,"124":5.23277,"125":0.00405,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 77 78 80 81 84 85 86 89 91 92 95 98 100 101 102 105 106 107 108 113 126 127"},F:{"82":0.00809,"107":0.29543,"108":0.48969,"109":0.18212,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00809},B:{"92":0.00405,"100":0.00405,"109":0.01214,"117":0.01214,"120":0.04856,"121":0.0688,"122":0.85392,"123":5.6051,"124":1.74426,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 118 119"},E:{"14":0.01619,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 16.0","13.1":0.07689,"14.1":0.02024,"15.1":0.06475,"15.4":0.00809,"15.5":0.03642,"15.6":0.31567,"16.1":0.06475,"16.2":0.02428,"16.3":0.08094,"16.4":0.02024,"16.5":0.1376,"16.6":0.90248,"17.0":0.02024,"17.1":0.28734,"17.2":0.15783,"17.3":0.44922,"17.4":1.17768,"17.5":0.03238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00386,"5.0-5.1":0.00386,"6.0-6.1":0.00965,"7.0-7.1":0.01543,"8.1-8.4":0.00386,"9.0-9.2":0.00965,"9.3":0.04823,"10.0-10.2":0.00965,"10.3":0.07716,"11.0-11.2":0.06559,"11.3-11.4":0.01929,"12.0-12.1":0.0135,"12.2-12.5":0.31444,"13.0-13.1":0.00579,"13.2":0.06366,"13.3":0.01543,"13.4-13.7":0.0598,"14.0-14.4":0.11767,"14.5-14.8":0.17941,"15.0-15.1":0.08295,"15.2-15.3":0.09453,"15.4":0.10803,"15.5":0.13697,"15.6-15.8":1.19604,"16.0":0.27972,"16.1":0.58259,"16.2":0.27972,"16.3":0.49385,"16.4":0.10224,"16.5":0.21413,"16.6-16.7":1.69182,"17.0":0.20256,"17.1":0.37424,"17.2":0.49771,"17.3":3.63056,"17.4":8.1948,"17.5":0.07523},P:{"4":0.11144,"20":0.12258,"21":0.05572,"22":0.07801,"23":0.21173,"24":3.41004,_:"5.0-5.4 8.2 9.2 10.1 13.0 15.0 17.0 18.0","6.2-6.4":0.02229,"7.2-7.4":0.24517,"11.1-11.2":0.03343,"12.0":0.01114,"14.0":0.03343,"16.0":0.01114,"19.0":0.02229},I:{"0":0.02965,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"10":0.04047,"11":0.03238,_:"6 7 8 9 5.5"},K:{"0":1.00027,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04763},H:{"0":0},L:{"0":36.19569},R:{_:"0"},M:{"0":0.12503}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js index a7cb33d0589de7..94d06e53016ff9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KP.js @@ -1 +1 @@ -module.exports={C:{"123":0.18612,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 124 125 126 127 3.5 3.6"},D:{"78":0.75068,"83":0.28228,"103":0.84374,"104":0.09306,"106":0.09306,"109":0.84374,"118":0.18612,"120":0.18612,"121":0.9368,"122":14.33744,"123":1.02986,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 105 107 108 110 111 112 113 114 115 116 117 119 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"105":0.18612,"117":0.09306,"119":0.09306,"120":0.28228,"122":2.53123,"123":2.71735,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 109 110 111 112 113 114 115 116 118 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.2 16.4 17.1 17.5","16.1":0.4684,"16.3":0.18612,"16.5":0.37534,"16.6":0.09306,"17.0":0.18612,"17.2":0.09306,"17.3":0.18612,"17.4":0.28228},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00412,"5.0-5.1":0.00206,"6.0-6.1":0.01237,"7.0-7.1":0.01443,"8.1-8.4":0.00412,"9.0-9.2":0.00824,"9.3":0.05153,"10.0-10.2":0.00824,"10.3":0.08657,"11.0-11.2":0.06183,"11.3-11.4":0.02061,"12.0-12.1":0.01855,"12.2-12.5":0.35657,"13.0-13.1":0.00618,"13.2":0.06183,"13.3":0.01855,"13.4-13.7":0.07008,"14.0-14.4":0.13397,"14.5-14.8":0.21023,"15.0-15.1":0.09069,"15.2-15.3":0.10718,"15.4":0.12573,"15.5":0.16077,"15.6-15.8":1.34591,"16.0":0.32772,"16.1":0.67811,"16.2":0.32772,"16.3":0.5833,"16.4":0.12367,"16.5":0.26176,"16.6-16.7":1.9828,"17.0":0.25764,"17.1":0.51528,"17.2":0.83063,"17.3":10.22317,"17.4":1.5005,"17.5":0},P:{"24":0.62772,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{"9":2.34201,_:"6 7 8 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":37.86882},R:{_:"0"},M:{_:"0"},Q:{"14.9":6.83592},O:{"0":2.10389},H:{"0":0}}; +module.exports={C:{"116":0.11947,"124":0.23325,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 117 118 119 120 121 122 123 125 126 127 128 3.5 3.6"},D:{"57":0.23325,"69":0.11947,"80":0.11947,"86":0.11947,"90":0.11947,"98":0.23325,"101":4.55689,"102":0.4665,"103":0.11947,"109":0.4665,"120":0.35272,"121":2.57143,"122":0.11947,"123":12.73198,"124":2.21871,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 81 83 84 85 87 88 89 91 92 93 94 95 96 97 99 100 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 125 126 127"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"121":0.11947,"122":0.11947,"123":1.51896,"124":2.57143,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.2 16.3 16.4 16.6 17.0 17.1 17.2 17.5","16.1":0.23325,"16.5":0.69975,"17.3":0.11947,"17.4":1.63274},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00339,"5.0-5.1":0.00339,"6.0-6.1":0.00846,"7.0-7.1":0.01354,"8.1-8.4":0.00339,"9.0-9.2":0.00846,"9.3":0.04232,"10.0-10.2":0.00846,"10.3":0.06772,"11.0-11.2":0.05756,"11.3-11.4":0.01693,"12.0-12.1":0.01185,"12.2-12.5":0.27595,"13.0-13.1":0.00508,"13.2":0.05587,"13.3":0.01354,"13.4-13.7":0.05248,"14.0-14.4":0.10327,"14.5-14.8":0.15744,"15.0-15.1":0.0728,"15.2-15.3":0.08295,"15.4":0.0948,"15.5":0.1202,"15.6-15.8":1.04962,"16.0":0.24547,"16.1":0.51126,"16.2":0.24547,"16.3":0.43339,"16.4":0.08973,"16.5":0.18792,"16.6-16.7":1.4847,"17.0":0.17776,"17.1":0.32843,"17.2":0.43678,"17.3":3.18609,"17.4":7.19157,"17.5":0.06602},P:{"24":0.12933,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":1.04326},H:{"0":0},L:{"0":36.69969},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js index c36673f16b1c3b..45a831da561c04 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KR.js @@ -1 +1 @@ -module.exports={C:{"52":0.00405,"72":0.00405,"78":0.00405,"102":0.00405,"103":0.0081,"109":0.00405,"115":0.03239,"116":0.00405,"117":0.00405,"118":0.00405,"122":0.00405,"123":0.30368,"124":0.12147,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 110 111 112 113 114 119 120 121 125 126 127 3.5 3.6"},D:{"42":0.01215,"48":0.00405,"49":0.00405,"56":0.00405,"61":0.00405,"68":0.01215,"75":0.00405,"77":0.0081,"78":0.00405,"79":0.0081,"80":0.0081,"81":0.0162,"83":0.0081,"85":0.00405,"86":0.04454,"87":0.02025,"88":0.00405,"89":0.0081,"90":0.00405,"91":0.00405,"94":0.10932,"95":0.00405,"96":0.00405,"97":0.02025,"98":0.01215,"99":0.00405,"100":0.04454,"101":0.08098,"102":0.05264,"103":0.05264,"104":0.05669,"105":0.0081,"106":0.04049,"107":0.0162,"108":0.02834,"109":0.72477,"110":0.0162,"111":0.51422,"112":0.0162,"113":0.02429,"114":0.04859,"115":0.01215,"116":0.07288,"117":0.03644,"118":0.03239,"119":0.07288,"120":0.23889,"121":0.95556,"122":17.78321,"123":5.70099,"124":0.0081,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 50 51 52 53 54 55 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 76 84 92 93 125 126"},F:{"89":0.00405,"95":0.0081,"102":0.0162,"106":0.00405,"107":0.09718,"108":0.04859,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00405,"92":0.0081,"96":0.00405,"99":0.00405,"100":0.00405,"103":0.00405,"104":0.00405,"106":0.00405,"107":0.02025,"108":0.01215,"109":0.10527,"110":0.01215,"111":0.0162,"112":0.0162,"113":0.0081,"114":0.02429,"115":0.0162,"116":0.01215,"117":0.0162,"118":0.01215,"119":0.04049,"120":0.07288,"121":0.12957,"122":6.17473,"123":0.63164,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 101 102 105"},E:{"8":0.00405,"13":0.00405,"14":0.00405,_:"0 4 5 6 7 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00405,"12.1":0.00405,"13.1":0.0081,"14.1":0.0162,"15.1":0.00405,"15.2-15.3":0.00405,"15.4":0.00405,"15.5":0.0081,"15.6":0.06478,"16.0":0.00405,"16.1":0.04049,"16.2":0.01215,"16.3":0.02429,"16.4":0.0081,"16.5":0.02025,"16.6":0.07288,"17.0":0.02025,"17.1":0.06478,"17.2":0.10123,"17.3":0.29963,"17.4":0.2065},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00276,"5.0-5.1":0.00138,"6.0-6.1":0.00828,"7.0-7.1":0.00965,"8.1-8.4":0.00276,"9.0-9.2":0.00552,"9.3":0.03448,"10.0-10.2":0.00552,"10.3":0.05793,"11.0-11.2":0.04138,"11.3-11.4":0.01379,"12.0-12.1":0.01241,"12.2-12.5":0.2386,"13.0-13.1":0.00414,"13.2":0.04138,"13.3":0.01241,"13.4-13.7":0.04689,"14.0-14.4":0.08965,"14.5-14.8":0.14068,"15.0-15.1":0.06069,"15.2-15.3":0.07172,"15.4":0.08413,"15.5":0.10758,"15.6-15.8":0.90062,"16.0":0.21929,"16.1":0.45376,"16.2":0.21929,"16.3":0.39032,"16.4":0.08275,"16.5":0.17516,"16.6-16.7":1.3268,"17.0":0.1724,"17.1":0.3448,"17.2":0.55582,"17.3":6.84088,"17.4":1.00406,"17.5":0},P:{"20":0.03052,"21":0.05087,"22":0.19331,"23":5.21946,"24":9.55374,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 14.0","12.0":0.01017,"13.0":0.01017,"15.0":0.01017,"16.0":0.01017,"17.0":0.02035,"18.0":0.0407,"19.0":0.02035},I:{"0":0.13629,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00033},K:{"0":0.17255,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01024,"10":0.00512,"11":0.15874,_:"6 7 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":24.3291},R:{_:"0"},M:{"0":0.11305},Q:{"14.9":0.01785},O:{"0":0.0714},H:{"0":0}}; +module.exports={C:{"52":0.00496,"102":0.00496,"103":0.00496,"109":0.00496,"115":0.01984,"123":0.00496,"124":0.18852,"125":0.10914,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"42":0.00992,"56":0.00496,"61":0.00496,"68":0.00496,"77":0.00496,"79":0.00496,"80":0.00496,"81":0.01488,"85":0.00496,"86":0.05457,"87":0.01488,"89":0.00496,"94":0.07442,"95":0.00496,"96":0.00496,"97":0.01488,"98":0.00992,"99":0.00496,"100":0.05457,"101":0.1141,"102":0.06449,"103":0.07442,"104":0.06945,"105":0.01488,"106":0.03969,"107":0.00992,"108":0.01488,"109":1.25513,"110":0.00992,"111":0.45145,"112":0.00992,"113":0.01984,"114":0.04465,"115":0.00992,"116":0.06945,"117":0.01984,"118":0.01984,"119":0.04961,"120":0.14883,"121":0.20836,"122":0.69454,"123":22.69658,"124":8.48827,"125":0.00992,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 78 83 84 88 90 91 92 93 126 127"},F:{"95":0.00496,"102":0.01488,"107":0.01488,"108":0.09426,"109":0.02977,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00496,"99":0.00496,"100":0.00496,"103":0.00496,"104":0.00496,"105":0.00496,"106":0.00496,"107":0.01984,"108":0.01488,"109":0.15875,"110":0.00992,"111":0.02481,"112":0.01984,"113":0.00992,"114":0.01984,"115":0.01984,"116":0.00992,"117":0.01984,"118":0.01488,"119":0.04465,"120":0.09426,"121":0.06945,"122":0.33735,"123":6.68743,"124":2.72855,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 101 102"},E:{"14":0.00496,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3","13.1":0.00496,"14.1":0.00992,"15.1":0.00992,"15.4":0.00496,"15.5":0.00496,"15.6":0.04961,"16.0":0.00496,"16.1":0.01984,"16.2":0.00992,"16.3":0.01488,"16.4":0.00496,"16.5":0.01488,"16.6":0.05457,"17.0":0.00992,"17.1":0.02977,"17.2":0.04961,"17.3":0.08434,"17.4":0.3175,"17.5":0.00496},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00215,"5.0-5.1":0.00215,"6.0-6.1":0.00537,"7.0-7.1":0.0086,"8.1-8.4":0.00215,"9.0-9.2":0.00537,"9.3":0.02687,"10.0-10.2":0.00537,"10.3":0.04299,"11.0-11.2":0.03654,"11.3-11.4":0.01075,"12.0-12.1":0.00752,"12.2-12.5":0.1752,"13.0-13.1":0.00322,"13.2":0.03547,"13.3":0.0086,"13.4-13.7":0.03332,"14.0-14.4":0.06556,"14.5-14.8":0.09996,"15.0-15.1":0.04622,"15.2-15.3":0.05267,"15.4":0.06019,"15.5":0.07631,"15.6-15.8":0.66639,"16.0":0.15585,"16.1":0.3246,"16.2":0.15585,"16.3":0.27515,"16.4":0.05697,"16.5":0.1193,"16.6-16.7":0.94262,"17.0":0.11286,"17.1":0.20851,"17.2":0.2773,"17.3":2.02281,"17.4":4.56583,"17.5":0.04192},P:{"20":0.03056,"21":0.03056,"22":0.1426,"23":0.66209,"24":10.93974,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 14.0 15.0 16.0","12.0":0.01019,"13.0":0.01019,"17.0":0.01019,"18.0":0.03056,"19.0":0.01019},I:{"0":0.10037,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"8":0.00591,"10":0.00591,"11":0.11221,_:"6 7 9 5.5"},K:{"0":0.17133,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01008},O:{"0":0.05543},H:{"0":0},L:{"0":20.68957},R:{_:"0"},M:{"0":0.12094}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js index e141ca5808428e..169ebb45019e3e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KW.js @@ -1 +1 @@ -module.exports={C:{"34":0.01901,"48":0.00238,"65":0.00475,"66":0.00238,"68":0.00475,"78":0.00238,"88":0.02138,"99":0.00238,"103":0.00238,"109":0.00713,"115":0.0594,"119":0.00713,"120":0.00238,"121":0.00475,"122":0.03089,"123":0.38729,"124":0.27086,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 102 104 105 106 107 108 110 111 112 113 114 116 117 118 125 126 127 3.5 3.6"},D:{"34":0.00475,"38":0.02376,"41":0.00238,"47":0.01426,"49":0.00238,"50":0.00238,"56":0.01188,"58":0.0095,"64":0.00713,"65":0.00238,"66":0.00238,"68":0.00475,"69":0.00238,"70":0.00238,"72":0.00238,"73":0.01663,"74":0.00238,"75":0.01901,"76":0.00238,"78":0.03326,"79":0.06653,"80":0.00475,"81":0.00475,"83":0.02138,"84":0.00238,"85":0.00238,"86":0.01188,"87":0.09504,"88":0.03089,"89":0.00238,"90":0.02376,"91":0.01188,"92":0.00475,"93":0.00713,"94":0.00475,"95":0.00238,"96":0.00475,"97":0.00238,"98":0.00475,"99":0.01901,"100":0.00713,"101":0.0095,"102":0.0095,"103":0.09742,"104":0.01188,"105":0.00238,"106":0.02614,"107":0.0095,"108":0.01188,"109":0.75082,"110":0.04277,"111":0.04039,"112":0.0095,"113":0.00475,"114":0.01663,"115":0.01188,"116":0.04039,"117":0.01426,"118":0.02138,"119":0.08078,"120":0.39442,"121":0.60113,"122":8.68903,"123":2.84407,"124":0.00238,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 48 51 52 53 54 55 57 59 60 61 62 63 67 71 77 125 126"},F:{"28":0.02851,"36":0.00475,"46":0.08791,"74":0.00475,"89":0.00475,"95":0.02376,"101":0.0095,"105":0.00475,"106":0.01188,"107":0.79596,"108":0.14494,"109":0.00475,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00238,"16":0.00238,"18":0.00475,"84":0.00475,"92":0.0095,"100":0.00238,"104":0.00238,"105":0.00713,"106":0.00238,"107":0.00238,"108":0.00238,"109":0.05702,"111":0.00475,"112":0.00238,"114":0.0095,"115":0.00475,"116":0.00238,"117":0.00475,"118":0.00238,"119":0.0095,"120":0.04752,"121":0.19483,"122":2.45678,"123":0.24473,_:"12 13 14 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 110 113"},E:{"7":0.14018,"12":0.01188,"13":0.00475,"14":0.04039,"15":0.02614,_:"0 4 5 6 8 9 10 11 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00238,"12.1":0.00475,"13.1":0.03564,"14.1":0.12593,"15.1":0.01426,"15.2-15.3":0.01188,"15.4":0.04514,"15.5":0.07603,"15.6":0.13781,"16.0":0.01426,"16.1":0.09266,"16.2":0.03326,"16.3":0.13306,"16.4":0.01901,"16.5":0.06415,"16.6":0.27799,"17.0":0.05465,"17.1":0.09979,"17.2":0.17107,"17.3":0.73894,"17.4":0.19958},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00653,"5.0-5.1":0.00327,"6.0-6.1":0.0196,"7.0-7.1":0.02287,"8.1-8.4":0.00653,"9.0-9.2":0.01307,"9.3":0.08167,"10.0-10.2":0.01307,"10.3":0.13721,"11.0-11.2":0.09801,"11.3-11.4":0.03267,"12.0-12.1":0.0294,"12.2-12.5":0.56517,"13.0-13.1":0.0098,"13.2":0.09801,"13.3":0.0294,"13.4-13.7":0.11107,"14.0-14.4":0.21235,"14.5-14.8":0.33322,"15.0-15.1":0.14374,"15.2-15.3":0.16988,"15.4":0.19928,"15.5":0.25482,"15.6-15.8":2.13328,"16.0":0.51943,"16.1":1.0748,"16.2":0.51943,"16.3":0.92453,"16.4":0.19601,"16.5":0.41489,"16.6-16.7":3.14274,"17.0":0.40836,"17.1":0.81672,"17.2":1.31655,"17.3":16.20374,"17.4":2.37829,"17.5":0},P:{"4":0.25647,"20":0.10259,"21":0.23595,"22":0.27698,"23":2.20561,"24":2.51337,"5.0-5.4":0.06155,"6.2-6.4":0.03078,"7.2-7.4":0.10259,"8.2":0.01026,_:"9.2 10.1 12.0","11.1-11.2":0.05129,"13.0":0.04103,"14.0":0.03078,"15.0":0.01026,"16.0":0.04103,"17.0":0.03078,"18.0":0.04103,"19.0":0.09233},I:{"0":0.04556,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":1.65441,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03326,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":35.77457},R:{_:"0"},M:{"0":0.12198},Q:{_:"14.9"},O:{"0":1.1436},H:{"0":0}}; +module.exports={C:{"34":0.02199,"48":0.0022,"52":0.0022,"66":0.0022,"68":0.0044,"72":0.0022,"78":0.0044,"84":0.0022,"88":0.011,"103":0.0044,"115":0.05498,"117":0.0022,"119":0.0066,"121":0.0044,"122":0.011,"123":0.01759,"124":0.35404,"125":0.18252,"126":0.0022,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 118 120 127 128 3.5 3.6"},D:{"34":0.0022,"38":0.02419,"41":0.0022,"47":0.0088,"49":0.0044,"50":0.0022,"56":0.01539,"58":0.0088,"64":0.0088,"65":0.0044,"68":0.0022,"69":0.0022,"70":0.0022,"73":0.0088,"74":0.0022,"75":0.011,"76":0.0022,"78":0.02859,"79":0.05058,"80":0.0066,"81":0.0044,"83":0.0088,"84":0.0088,"86":0.0022,"87":0.08576,"88":0.02419,"89":0.0044,"90":0.01979,"91":0.0044,"92":0.0022,"93":0.0088,"94":0.0044,"95":0.0022,"96":0.0022,"97":0.0044,"98":0.0044,"99":0.01759,"100":0.0022,"101":0.0066,"102":0.0044,"103":0.07037,"104":0.011,"105":0.011,"106":0.01759,"107":0.01759,"108":0.0088,"109":0.60473,"110":0.04838,"111":0.02859,"112":0.0088,"113":0.0044,"114":0.05058,"115":0.01759,"116":0.04178,"117":0.011,"118":0.0088,"119":0.04838,"120":0.12754,"121":0.12974,"122":0.40462,"123":7.56896,"124":3.2985,"125":0.01539,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 48 51 52 53 54 55 57 59 60 61 62 63 66 67 71 72 77 85 126 127"},F:{"28":0.02199,"36":0.0022,"46":0.05937,"74":0.0044,"79":0.0022,"81":0.0022,"89":0.0022,"95":0.01759,"102":0.0044,"107":0.61572,"108":0.15613,"109":0.12314,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0022,"15":0.0022,"17":0.0022,"18":0.0044,"84":0.0022,"92":0.01319,"100":0.0022,"105":0.0022,"108":0.0022,"109":0.02639,"110":0.0044,"112":0.0022,"114":0.0066,"115":0.0022,"116":0.0022,"117":0.0022,"118":0.0022,"119":0.0044,"120":0.01759,"121":0.04178,"122":0.18252,"123":1.89994,"124":0.76965,_:"13 14 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106 107 111 113"},E:{"7":0.13194,"12":0.0044,"13":0.0066,"14":0.05717,"15":0.02199,_:"0 4 5 6 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.0044,"13.1":0.02419,"14.1":0.13854,"15.1":0.02639,"15.2-15.3":0.01759,"15.4":0.03738,"15.5":0.11215,"15.6":0.12754,"16.0":0.01319,"16.1":0.07477,"16.2":0.05717,"16.3":0.11435,"16.4":0.03299,"16.5":0.08576,"16.6":0.25069,"17.0":0.07916,"17.1":0.09016,"17.2":0.10115,"17.3":0.53656,"17.4":0.70588,"17.5":0.0066},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00724,"5.0-5.1":0.00724,"6.0-6.1":0.0181,"7.0-7.1":0.02895,"8.1-8.4":0.00724,"9.0-9.2":0.0181,"9.3":0.09048,"10.0-10.2":0.0181,"10.3":0.14477,"11.0-11.2":0.12306,"11.3-11.4":0.03619,"12.0-12.1":0.02534,"12.2-12.5":0.58995,"13.0-13.1":0.01086,"13.2":0.11944,"13.3":0.02895,"13.4-13.7":0.1122,"14.0-14.4":0.22078,"14.5-14.8":0.3366,"15.0-15.1":0.15563,"15.2-15.3":0.17735,"15.4":0.20268,"15.5":0.25697,"15.6-15.8":2.244,"16.0":0.52481,"16.1":1.09304,"16.2":0.52481,"16.3":0.92655,"16.4":0.19183,"16.5":0.40175,"16.6-16.7":3.17417,"17.0":0.38003,"17.1":0.70215,"17.2":0.93379,"17.3":6.81161,"17.4":15.37499,"17.5":0.14115},P:{"4":0.22471,"20":0.05107,"21":0.12257,"22":0.22471,"23":0.77627,"24":3.31957,"5.0-5.4":0.04086,"6.2-6.4":0.02043,"7.2-7.4":0.08171,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.05107,"13.0":0.03064,"14.0":0.01021,"16.0":0.05107,"17.0":0.02043,"18.0":0.02043,"19.0":0.10214},I:{"0":0.04662,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.02639,_:"6 7 8 9 10 5.5"},K:{"0":2.02072,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.84262},H:{"0":0},L:{"0":34.33674},R:{_:"0"},M:{"0":0.10923}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js index 2d8c1db6019f06..bac906e426fe28 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KY.js @@ -1 +1 @@ -module.exports={C:{"88":0.00411,"115":0.05758,"121":0.01645,"122":0.03702,"123":0.48945,"124":0.22622,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 125 126 127 3.5 3.6"},D:{"77":0.00411,"87":0.02468,"92":0.04524,"93":0.05347,"94":0.00411,"96":0.00411,"98":0.02057,"99":0.02468,"103":0.08637,"108":0.00823,"109":0.43187,"110":0.00411,"112":0.00823,"113":0.01234,"114":0.03702,"115":0.00411,"116":0.62929,"117":0.21799,"118":0.03702,"119":0.0946,"120":0.473,"121":2.08118,"122":15.8515,"123":4.27752,"124":0.00411,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 83 84 85 86 88 89 90 91 95 97 100 101 102 104 105 106 107 111 125 126"},F:{"95":0.00411,"106":0.01234,"107":0.50179,"108":0.01234,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00411,"98":0.00411,"106":0.00411,"109":0.00823,"110":0.10694,"119":0.02057,"120":0.05347,"121":0.37017,"122":6.09547,"123":0.25089,_:"12 13 14 15 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 107 108 111 112 113 114 115 116 117 118"},E:{"14":0.02879,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00411,"13.1":0.14807,"14.1":0.11105,"15.1":0.03702,"15.2-15.3":0.04524,"15.4":0.00823,"15.5":0.28791,"15.6":0.32081,"16.0":0.02468,"16.1":0.43598,"16.2":0.09871,"16.3":0.16863,"16.4":0.05347,"16.5":0.17686,"16.6":0.48122,"17.0":0.32081,"17.1":0.25912,"17.2":0.98712,"17.3":3.12999,"17.4":0.25089},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00588,"5.0-5.1":0.00294,"6.0-6.1":0.01763,"7.0-7.1":0.02057,"8.1-8.4":0.00588,"9.0-9.2":0.01176,"9.3":0.07347,"10.0-10.2":0.01176,"10.3":0.12343,"11.0-11.2":0.08816,"11.3-11.4":0.02939,"12.0-12.1":0.02645,"12.2-12.5":0.50841,"13.0-13.1":0.00882,"13.2":0.08816,"13.3":0.02645,"13.4-13.7":0.09992,"14.0-14.4":0.19102,"14.5-14.8":0.29976,"15.0-15.1":0.12931,"15.2-15.3":0.15282,"15.4":0.17927,"15.5":0.22923,"15.6-15.8":1.91903,"16.0":0.46727,"16.1":0.96686,"16.2":0.46727,"16.3":0.83168,"16.4":0.17633,"16.5":0.37323,"16.6-16.7":2.82712,"17.0":0.36735,"17.1":0.7347,"17.2":1.18433,"17.3":14.5764,"17.4":2.13944,"17.5":0},P:{"4":0.31217,"20":0.01041,"21":0.02081,"22":0.01041,"23":2.23719,"24":4.37032,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 18.0","7.2-7.4":0.06243,"13.0":0.01041,"14.0":0.01041,"16.0":0.01041,"17.0":0.05203,"19.0":0.01041},I:{"0":0.00586,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.04121,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00411,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.73466},R:{_:"0"},M:{"0":0.15895},Q:{_:"14.9"},O:{"0":0.02355},H:{"0":0}}; +module.exports={C:{"94":0.04852,"102":0.00404,"115":0.0283,"122":0.18598,"123":0.04043,"124":0.92585,"125":0.21428,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"46":0.00404,"62":0.00404,"69":0.00404,"79":0.00404,"80":0.00404,"83":0.00809,"85":0.00404,"87":0.00404,"88":0.00404,"92":0.09703,"93":0.03639,"94":0.02022,"95":0.00404,"96":0.01213,"97":0.00809,"98":0.0566,"99":0.01617,"101":0.04852,"103":0.08086,"105":0.01617,"108":0.00404,"109":0.38004,"110":0.00404,"111":0.00404,"114":0.02022,"115":0.00404,"116":0.31535,"117":0.02426,"118":0.01617,"119":0.06873,"120":0.12129,"121":0.20619,"122":1.89212,"123":16.07093,"124":5.59551,"125":0.00809,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 81 84 86 89 90 91 100 102 104 106 107 112 113 126 127"},F:{"107":0.52155,"108":0.10512,"109":0.02426,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"97":0.00404,"98":0.00809,"99":0.00809,"100":0.00404,"108":0.00404,"109":0.01213,"110":0.05256,"115":0.00809,"119":0.00809,"120":0.01213,"121":0.00404,"122":1.10374,"123":3.52145,"124":1.59699,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 101 102 103 104 105 106 107 111 112 113 114 116 117 118"},E:{"14":0.04043,"15":0.00809,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01213,"13.1":0.18194,"14.1":0.0849,"15.1":0.02022,"15.2-15.3":0.03234,"15.4":0.02426,"15.5":0.07682,"15.6":0.18194,"16.0":0.01213,"16.1":0.06065,"16.2":0.03234,"16.3":0.19406,"16.4":0.10512,"16.5":0.12533,"16.6":0.58219,"17.0":0.4326,"17.1":0.06873,"17.2":0.42047,"17.3":0.80051,"17.4":2.56731,"17.5":0.0283},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00569,"5.0-5.1":0.00569,"6.0-6.1":0.01421,"7.0-7.1":0.02274,"8.1-8.4":0.00569,"9.0-9.2":0.01421,"9.3":0.07107,"10.0-10.2":0.01421,"10.3":0.11371,"11.0-11.2":0.09666,"11.3-11.4":0.02843,"12.0-12.1":0.0199,"12.2-12.5":0.46338,"13.0-13.1":0.00853,"13.2":0.09381,"13.3":0.02274,"13.4-13.7":0.08813,"14.0-14.4":0.17341,"14.5-14.8":0.26438,"15.0-15.1":0.12224,"15.2-15.3":0.1393,"15.4":0.1592,"15.5":0.20184,"15.6-15.8":1.76254,"16.0":0.41221,"16.1":0.85853,"16.2":0.41221,"16.3":0.72776,"16.4":0.15067,"16.5":0.31555,"16.6-16.7":2.49313,"17.0":0.29849,"17.1":0.5515,"17.2":0.73344,"17.3":5.35015,"17.4":12.07621,"17.5":0.11087},P:{"4":0.18818,"20":0.01045,"21":0.05227,"22":0.07318,"23":0.31364,"24":6.04275,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","7.2-7.4":0.07318,"13.0":0.05227,"16.0":0.01045,"17.0":0.09409,"18.0":0.01045,"19.0":0.01045},I:{"0":0.00593,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":0.01213,_:"6 7 8 9 10 5.5"},K:{"0":0.07147,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01787},H:{"0":0},L:{"0":23.51471},R:{_:"0"},M:{"0":0.34545}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js index 665762f1c0ceed..9dcdefbab61cd4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/KZ.js @@ -1 +1 @@ -module.exports={C:{"50":0.00683,"51":0.00341,"52":0.03413,"56":0.00341,"59":0.00341,"62":0.00341,"63":0.00341,"67":0.00341,"72":0.00341,"76":0.06826,"81":0.00341,"94":0.00341,"98":0.00341,"101":0.00683,"103":0.00683,"111":0.00341,"112":0.00341,"113":0.00683,"115":0.35495,"117":0.00341,"118":0.01365,"119":0.00683,"120":0.00341,"121":0.01024,"122":0.22526,"123":0.6826,"124":0.3413,"125":0.00341,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 53 54 55 57 58 60 61 64 65 66 68 69 70 71 73 74 75 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 99 100 102 104 105 106 107 108 109 110 114 116 126 127 3.5 3.6"},D:{"22":0.00683,"26":0.00683,"34":0.00341,"38":0.00341,"39":0.00341,"41":0.00341,"43":0.00341,"44":0.00341,"45":0.00341,"46":0.00341,"47":0.00341,"49":0.02048,"51":0.01365,"59":0.00341,"64":0.00341,"66":0.00683,"68":0.00341,"70":0.00341,"71":0.00341,"72":0.00341,"73":0.00341,"74":0.0273,"75":0.00341,"79":0.02389,"80":0.01365,"81":0.00341,"83":0.00683,"84":0.00341,"85":0.00341,"86":0.00683,"87":0.02389,"88":0.00341,"89":0.00341,"90":0.01707,"91":0.05461,"92":0.01707,"94":0.00341,"96":0.01024,"97":0.02048,"98":0.00341,"99":0.00341,"100":0.01365,"101":0.00341,"102":0.04437,"103":0.02389,"104":0.00683,"105":0.04096,"106":0.19113,"107":0.01365,"108":0.0512,"109":2.4676,"110":0.01024,"111":0.0273,"112":0.0273,"113":0.01024,"114":0.03413,"115":0.01024,"116":0.15017,"117":0.03413,"118":0.04096,"119":0.06485,"120":0.19113,"121":0.83277,"122":10.19463,"123":3.08194,"124":0.00341,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 42 48 50 52 53 54 55 56 57 58 60 61 62 63 65 67 69 76 77 78 93 95 125 126"},F:{"36":0.01024,"56":0.01024,"68":0.00341,"70":0.00683,"73":0.00683,"79":0.0273,"80":0.00341,"81":0.00341,"82":0.00341,"83":0.00683,"84":0.01024,"85":0.05802,"86":0.00683,"87":0.00683,"90":0.00341,"95":0.38567,"99":0.00341,"102":0.03072,"105":0.00683,"106":0.04096,"107":1.56657,"108":0.44369,"109":0.00341,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 69 71 72 74 75 76 77 78 88 89 91 92 93 94 96 97 98 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00341,"18":0.01024,"89":0.00683,"92":0.01365,"100":0.00341,"106":0.00341,"109":0.02048,"110":0.01024,"114":0.00341,"117":0.00341,"118":0.00341,"119":0.00683,"120":0.02389,"121":0.06826,"122":2.44712,"123":0.17406,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 107 108 111 112 113 115 116"},E:{"9":0.00683,"14":0.01707,"15":0.00341,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.5","5.1":0.20478,"9.1":0.00341,"13.1":0.03072,"14.1":0.02389,"15.1":0.01024,"15.2-15.3":0.00683,"15.4":0.02389,"15.5":0.0273,"15.6":0.18772,"16.0":0.00683,"16.1":0.07509,"16.2":0.03754,"16.3":0.0512,"16.4":0.03413,"16.5":0.07167,"16.6":0.17748,"17.0":0.05802,"17.1":0.13311,"17.2":0.16724,"17.3":0.6041,"17.4":0.16382},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00442,"5.0-5.1":0.00221,"6.0-6.1":0.01326,"7.0-7.1":0.01547,"8.1-8.4":0.00442,"9.0-9.2":0.00884,"9.3":0.05526,"10.0-10.2":0.00884,"10.3":0.09285,"11.0-11.2":0.06632,"11.3-11.4":0.02211,"12.0-12.1":0.0199,"12.2-12.5":0.38243,"13.0-13.1":0.00663,"13.2":0.06632,"13.3":0.0199,"13.4-13.7":0.07516,"14.0-14.4":0.14369,"14.5-14.8":0.22548,"15.0-15.1":0.09727,"15.2-15.3":0.11495,"15.4":0.13485,"15.5":0.17243,"15.6-15.8":1.44352,"16.0":0.35148,"16.1":0.72729,"16.2":0.35148,"16.3":0.6256,"16.4":0.13264,"16.5":0.28075,"16.6-16.7":2.12659,"17.0":0.27632,"17.1":0.55265,"17.2":0.89087,"17.3":10.96456,"17.4":1.60931,"17.5":0},P:{"4":0.11394,"20":0.02072,"21":0.06215,"22":0.08286,"23":1.39833,"24":0.839,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.09322,"11.1-11.2":0.01036,"13.0":0.01036,"14.0":0.01036,"16.0":0.03107,"17.0":0.04143,"18.0":0.04143,"19.0":0.03107},I:{"0":0.03936,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":0.38863,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00718,"7":0.00359,"8":0.01794,"9":0.00359,"10":0.00359,"11":0.10405,_:"5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":38.33151},R:{_:"0"},M:{"0":0.08563},Q:{"14.9":0.00659},O:{"0":0.54672},H:{"0":0}}; +module.exports={C:{"40":0.00368,"51":0.00368,"52":0.02577,"56":0.00368,"59":0.00368,"62":0.00368,"63":0.00736,"68":0.00368,"71":0.00368,"76":0.00368,"80":0.00368,"88":0.00368,"101":0.01104,"102":0.00368,"103":0.00368,"106":0.00368,"110":0.00368,"113":0.00368,"114":0.00368,"115":0.35338,"117":0.00368,"118":0.02209,"119":0.00736,"120":0.00368,"121":0.00736,"122":0.01472,"123":0.02209,"124":0.7951,"125":0.54111,"126":0.00368,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 53 54 55 57 58 60 61 64 65 66 67 69 70 72 73 74 75 77 78 79 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 104 105 107 108 109 111 112 116 127 128 3.5 3.6"},D:{"26":0.00736,"34":0.00368,"38":0.00368,"41":0.00368,"42":0.00368,"43":0.00368,"44":0.00736,"45":0.00368,"46":0.00368,"47":0.00368,"49":0.02945,"50":0.01104,"51":0.00736,"64":0.00368,"66":0.00736,"68":0.00736,"69":0.00368,"70":0.00368,"73":0.00368,"74":0.01841,"79":0.03681,"80":0.01841,"81":0.00736,"83":0.00736,"84":0.00368,"85":0.00368,"86":0.00736,"87":0.02577,"88":0.00368,"89":0.00368,"90":0.01841,"91":0.06994,"92":0.01841,"94":0.00368,"95":0.00368,"96":0.00736,"97":0.01104,"98":0.00368,"99":0.01104,"100":0.01104,"101":0.00736,"102":0.04049,"103":0.06994,"104":0.01104,"105":0.03681,"106":0.14724,"107":0.01841,"108":0.03681,"109":2.89695,"110":0.00368,"111":0.01841,"112":0.02209,"113":0.00736,"114":0.01841,"115":0.02209,"116":0.16196,"117":0.01104,"118":0.05522,"119":0.06626,"120":0.1546,"121":0.18037,"122":0.5227,"123":10.71171,"124":4.53867,"125":0.01472,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 48 52 53 54 55 56 57 58 59 60 61 62 63 65 67 71 72 75 76 77 78 93 126 127"},F:{"31":0.00368,"36":0.01104,"46":0.00736,"56":0.01104,"68":0.00368,"69":0.00368,"70":0.00736,"79":0.02577,"80":0.00368,"82":0.00368,"83":0.00368,"84":0.00736,"85":0.06258,"86":0.01841,"87":0.00368,"88":0.00368,"95":0.41227,"101":0.00368,"102":0.00736,"105":0.00368,"106":0.01104,"107":0.85399,"108":0.90553,"109":0.3092,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 57 58 60 62 63 64 65 66 67 71 72 73 74 75 76 77 78 81 89 90 91 92 93 94 96 97 98 99 100 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00368,"18":0.01104,"84":0.00368,"89":0.00736,"92":0.01472,"100":0.00368,"108":0.00368,"109":0.01472,"115":0.00368,"116":0.00368,"117":0.00368,"118":0.01104,"119":0.00368,"120":0.02577,"121":0.01841,"122":0.12884,"123":1.99142,"124":0.99755,_:"12 13 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 112 113 114"},E:{"9":0.00736,"14":0.01472,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.22454,"13.1":0.03681,"14.1":0.02945,"15.1":0.01104,"15.2-15.3":0.00736,"15.4":0.02945,"15.5":0.02209,"15.6":0.16565,"16.0":0.00736,"16.1":0.06994,"16.2":0.03681,"16.3":0.05522,"16.4":0.02945,"16.5":0.05153,"16.6":0.15092,"17.0":0.05153,"17.1":0.08834,"17.2":0.09571,"17.3":0.26135,"17.4":0.78037,"17.5":0.00736},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00423,"5.0-5.1":0.00423,"6.0-6.1":0.01057,"7.0-7.1":0.01691,"8.1-8.4":0.00423,"9.0-9.2":0.01057,"9.3":0.05286,"10.0-10.2":0.01057,"10.3":0.08457,"11.0-11.2":0.07189,"11.3-11.4":0.02114,"12.0-12.1":0.0148,"12.2-12.5":0.34464,"13.0-13.1":0.00634,"13.2":0.06977,"13.3":0.01691,"13.4-13.7":0.06554,"14.0-14.4":0.12897,"14.5-14.8":0.19663,"15.0-15.1":0.09092,"15.2-15.3":0.1036,"15.4":0.1184,"15.5":0.15012,"15.6-15.8":1.31089,"16.0":0.30658,"16.1":0.63853,"16.2":0.30658,"16.3":0.54127,"16.4":0.11206,"16.5":0.23469,"16.6-16.7":1.85427,"17.0":0.22201,"17.1":0.41018,"17.2":0.5455,"17.3":3.97918,"17.4":8.98171,"17.5":0.08246},P:{"4":0.07306,"20":0.03131,"21":0.05218,"22":0.07306,"23":0.33397,"24":1.66987,_:"5.0-5.4 6.2-6.4 8.2 9.2 12.0 14.0 15.0","7.2-7.4":0.07306,"10.1":0.01044,"11.1-11.2":0.01044,"13.0":0.01044,"16.0":0.01044,"17.0":0.01044,"18.0":0.06262,"19.0":0.03131},I:{"0":0.04405,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"6":0.0077,"7":0.00385,"8":0.02311,"9":0.00385,"10":0.00385,"11":0.12327,_:"5.5"},K:{"0":0.40442,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01264},O:{"0":0.31595},H:{"0":0},L:{"0":36.96008},R:{_:"0"},M:{"0":0.08215}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js index 1241470defe235..b3dd2438b147b3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LA.js @@ -1 +1 @@ -module.exports={C:{"2":0.00209,"3":0.00209,"4":0.00209,"24":0.00209,"28":0.00209,"33":0.00209,"34":0.01464,"35":0.00418,"36":0.00209,"38":0.00209,"39":0.00209,"40":0.00418,"41":0.00209,"72":0.00209,"78":0.00209,"87":0.00209,"101":0.00209,"103":0.00627,"106":0.03764,"113":0.00209,"115":0.07946,"119":0.00418,"121":0.00418,"122":0.00418,"123":0.3032,"124":0.10873,_:"5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 29 30 31 32 37 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 102 104 105 107 108 109 110 111 112 114 116 117 118 120 125 126 127","3.5":0.00209,"3.6":0.00418},D:{"21":0.00209,"31":0.00209,"33":0.00209,"34":0.00209,"36":0.00209,"37":0.03973,"38":0.00209,"39":0.00418,"40":0.00209,"41":0.00418,"42":0.00418,"43":0.00836,"44":0.01046,"45":0.00627,"46":0.00627,"47":0.00627,"48":0.00209,"49":0.00209,"51":0.01046,"55":0.00209,"67":0.00209,"68":0.01046,"70":0.00627,"71":0.00209,"72":0.00209,"74":0.00209,"75":0.00418,"76":0.00209,"77":0.00209,"78":0.00627,"79":0.00418,"80":0.01046,"81":0.00836,"83":0.00418,"84":0.02509,"85":0.00209,"86":0.03555,"87":0.00627,"88":0.00418,"89":0.00627,"90":0.00627,"91":0.00627,"92":0.00209,"94":0.01046,"95":0.00209,"97":0.00418,"98":0.00627,"99":0.08573,"100":0.00418,"101":0.00209,"102":0.00627,"103":0.03555,"104":0.01464,"105":0.01882,"106":0.01673,"107":0.00836,"108":0.01046,"109":0.80922,"110":0.00418,"111":0.04809,"112":0.00418,"113":0.01046,"114":0.01464,"115":0.00836,"116":0.02718,"117":0.01255,"118":0.023,"119":0.069,"120":0.29065,"121":0.62312,"122":7.24532,"123":2.38792,"124":0.00836,"125":0.00209,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 32 35 50 52 53 54 56 57 58 59 60 61 62 63 64 65 66 69 73 93 96 126"},F:{"30":0.00209,"31":0.00418,"32":0.00209,"79":0.00209,"89":0.00209,"95":0.01046,"107":0.20074,"108":0.06064,"109":0.00209,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00209},B:{"12":0.00418,"16":0.00209,"17":0.00627,"18":0.00836,"84":0.00418,"90":0.00209,"92":0.03764,"95":0.00836,"100":0.00209,"104":0.00209,"105":0.00209,"108":0.00209,"109":0.01673,"110":0.00627,"111":0.00209,"112":0.00418,"113":0.00209,"114":0.00209,"115":0.00209,"117":0.00418,"118":0.00836,"119":0.01046,"120":0.02091,"121":0.046,"122":1.62889,"123":0.10455,_:"13 14 15 79 80 81 83 85 86 87 88 89 91 93 94 96 97 98 99 101 102 103 106 107 116"},E:{"8":0.00209,"9":0.01673,"14":0.00418,"15":0.00418,_:"0 4 5 6 7 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.2-15.3 17.5","9.1":0.00418,"13.1":0.00836,"14.1":0.02091,"15.1":0.00209,"15.4":0.00209,"15.5":0.00836,"15.6":0.08573,"16.0":0.01255,"16.1":0.02718,"16.2":0.00836,"16.3":0.02509,"16.4":0.00627,"16.5":0.00836,"16.6":0.05646,"17.0":0.01464,"17.1":0.05646,"17.2":0.12546,"17.3":0.27601,"17.4":0.06482},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0037,"5.0-5.1":0.00185,"6.0-6.1":0.01109,"7.0-7.1":0.01294,"8.1-8.4":0.0037,"9.0-9.2":0.00739,"9.3":0.0462,"10.0-10.2":0.00739,"10.3":0.07762,"11.0-11.2":0.05544,"11.3-11.4":0.01848,"12.0-12.1":0.01663,"12.2-12.5":0.31972,"13.0-13.1":0.00554,"13.2":0.05544,"13.3":0.01663,"13.4-13.7":0.06284,"14.0-14.4":0.12013,"14.5-14.8":0.18851,"15.0-15.1":0.08132,"15.2-15.3":0.0961,"15.4":0.11273,"15.5":0.14415,"15.6-15.8":1.20681,"16.0":0.29385,"16.1":0.60802,"16.2":0.29385,"16.3":0.52301,"16.4":0.11089,"16.5":0.23471,"16.6-16.7":1.77787,"17.0":0.23101,"17.1":0.46202,"17.2":0.74478,"17.3":9.16657,"17.4":1.34542,"17.5":0},P:{"4":0.0919,"20":0.04084,"21":0.12253,"22":0.19401,"23":1.09258,"24":0.86794,"5.0-5.4":0.01021,"6.2-6.4":0.01021,"7.2-7.4":0.13274,_:"8.2 10.1 12.0","9.2":0.02042,"11.1-11.2":0.04084,"13.0":0.05106,"14.0":0.04084,"15.0":0.01021,"16.0":0.04084,"17.0":0.03063,"18.0":0.01021,"19.0":0.06127},I:{"0":0.14176,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00034},K:{"0":0.24515,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00303,"7":0.0091,"8":0.0819,"9":0.0182,"10":0.01517,"11":0.08494,_:"5.5"},S:{"2.5":0.00791,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":59.44363},R:{_:"0"},M:{"0":0.0949},Q:{"14.9":0.0949},O:{"0":1.64486},H:{"0":0}}; +module.exports={C:{"3":0.00177,"4":0.00177,"5":0.00177,"17":0.00177,"21":0.00177,"25":0.00177,"26":0.00177,"30":0.00177,"31":0.00532,"33":0.00177,"34":0.00177,"35":0.00177,"36":0.00177,"37":0.00177,"38":0.00177,"39":0.00177,"40":0.00355,"41":0.00177,"44":0.00177,"66":0.00532,"78":0.02838,"87":0.00177,"94":0.00177,"101":0.00177,"103":0.00532,"106":0.02838,"108":0.00177,"111":0.00355,"112":0.00177,"115":0.04612,"119":0.02129,"120":0.00355,"122":0.01242,"123":0.01419,"124":0.28916,"125":0.23772,"126":0.00177,_:"2 6 7 8 9 10 11 12 13 14 15 16 18 19 20 22 23 24 27 28 29 32 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 95 96 97 98 99 100 102 104 105 107 109 110 113 114 116 117 118 121 127 128","3.5":0.00177,"3.6":0.00355},D:{"19":0.00177,"20":0.00177,"21":0.00177,"26":0.00177,"28":0.00177,"30":0.00177,"31":0.00355,"33":0.00177,"35":0.00177,"36":0.00355,"37":0.03016,"38":0.00177,"39":0.00355,"40":0.00532,"41":0.00532,"42":0.00355,"43":0.01419,"44":0.01064,"45":0.00887,"46":0.00887,"47":0.0071,"49":0.00177,"51":0.01242,"55":0.00532,"56":0.00177,"68":0.02129,"70":0.00532,"71":0.00177,"74":0.00355,"75":0.00177,"77":0.00177,"79":0.00532,"80":0.00177,"81":0.0071,"83":0.01242,"84":0.02838,"86":0.02129,"87":0.32464,"89":0.0071,"90":0.00355,"91":0.00355,"92":0.00177,"96":0.00532,"97":0.00177,"98":0.00177,"99":0.05499,"100":0.00177,"101":0.00532,"102":0.00177,"103":0.03193,"104":0.01419,"105":0.01774,"106":0.04967,"107":0.00887,"108":0.0071,"109":0.79298,"110":0.00532,"111":0.06032,"112":0.00177,"113":0.00355,"114":0.01774,"115":0.00887,"116":0.02129,"117":0.01242,"118":0.01419,"119":0.04258,"120":0.11176,"121":0.15611,"122":0.37609,"123":5.54907,"124":2.60778,"125":0.01597,"126":0.00355,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 22 23 24 25 27 29 32 34 48 50 52 53 54 57 58 59 60 61 62 63 64 65 66 67 69 72 73 76 78 85 88 93 94 95 127"},F:{"31":0.00355,"89":0.00355,"95":0.00355,"107":0.09047,"108":0.06741,"109":0.03371,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00355},B:{"12":0.00177,"15":0.00355,"17":0.00355,"18":0.00887,"84":0.00177,"89":0.00177,"92":0.03903,"102":0.00177,"104":0.00177,"109":0.02484,"110":0.00177,"111":0.00177,"114":0.00177,"115":0.00355,"116":0.00177,"117":0.00177,"118":0.01242,"119":0.00532,"120":0.01419,"121":0.00532,"122":0.07273,"123":1.04134,"124":0.56591,_:"13 14 16 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 103 105 106 107 108 112 113"},E:{"5":0.00177,"8":0.00355,"9":0.01774,"14":0.00532,_:"0 4 6 7 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1","9.1":0.00177,"13.1":0.01064,"14.1":0.01419,"15.1":0.00355,"15.2-15.3":0.00177,"15.4":0.00177,"15.5":0.01064,"15.6":0.06919,"16.0":0.01597,"16.1":0.03016,"16.2":0.00355,"16.3":0.03016,"16.4":0.0071,"16.5":0.01419,"16.6":0.04967,"17.0":0.02129,"17.1":0.03725,"17.2":0.05145,"17.3":0.09047,"17.4":0.37609,"17.5":0.00177},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0035,"5.0-5.1":0.0035,"6.0-6.1":0.00874,"7.0-7.1":0.01399,"8.1-8.4":0.0035,"9.0-9.2":0.00874,"9.3":0.04372,"10.0-10.2":0.00874,"10.3":0.06995,"11.0-11.2":0.05946,"11.3-11.4":0.01749,"12.0-12.1":0.01224,"12.2-12.5":0.28506,"13.0-13.1":0.00525,"13.2":0.05771,"13.3":0.01399,"13.4-13.7":0.05421,"14.0-14.4":0.10668,"14.5-14.8":0.16264,"15.0-15.1":0.0752,"15.2-15.3":0.08569,"15.4":0.09794,"15.5":0.12417,"15.6-15.8":1.08429,"16.0":0.25358,"16.1":0.52815,"16.2":0.25358,"16.3":0.4477,"16.4":0.09269,"16.5":0.19412,"16.6-16.7":1.53374,"17.0":0.18363,"17.1":0.33928,"17.2":0.4512,"17.3":3.29133,"17.4":7.4291,"17.5":0.06821},P:{"4":0.03049,"20":0.02033,"21":0.1118,"22":0.16261,"23":0.48784,"24":1.34157,_:"5.0-5.4 8.2 10.1 12.0 15.0","6.2-6.4":0.01016,"7.2-7.4":0.12196,"9.2":0.05082,"11.1-11.2":0.02033,"13.0":0.03049,"14.0":0.01016,"16.0":0.03049,"17.0":0.02033,"18.0":0.02033,"19.0":0.05082},I:{"0":0.18842,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00047},A:{"6":0.00236,"7":0.00707,"8":0.07071,"9":0.01178,"10":0.00943,"11":0.06128,_:"5.5"},K:{"0":0.20565,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00823,_:"3.0-3.1"},Q:{"14.9":0.09871},O:{"0":1.72746},H:{"0":0},L:{"0":62.29639},R:{_:"0"},M:{"0":0.10694}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LB.js index 1f9a2b169444e2..51868a85be6b0a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LB.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LB.js @@ -1 +1 @@ -module.exports={C:{"12":0.00956,"29":0.00239,"49":0.00239,"52":0.00478,"58":0.00239,"66":0.00239,"68":0.00717,"78":0.00956,"88":0.00239,"91":0.00717,"99":0.00239,"107":0.00239,"110":0.00239,"113":0.00239,"115":0.19845,"117":0.00239,"118":0.00239,"119":0.00956,"120":0.00478,"121":0.00478,"122":0.03108,"123":0.60492,"124":0.2917,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 101 102 103 104 105 106 108 109 111 112 114 116 125 126 127 3.5 3.6"},D:{"26":0.00239,"33":0.00239,"34":0.00478,"38":0.00478,"49":0.00717,"55":0.00239,"56":0.00478,"58":0.12911,"60":0.00956,"65":0.00239,"66":0.00239,"67":0.01674,"68":0.01196,"69":0.00239,"73":0.00478,"74":0.00239,"75":0.00239,"76":0.00239,"77":0.00478,"79":0.02152,"80":0.00478,"81":0.00239,"83":0.01674,"86":0.01196,"87":0.0263,"88":0.00478,"89":0.00239,"90":0.00239,"91":0.01913,"92":0.00239,"93":0.00239,"94":0.00239,"95":0.01674,"96":0.00956,"97":0.00478,"98":0.04304,"99":0.00717,"100":0.00239,"102":0.00956,"103":0.08129,"104":0.00478,"105":0.00956,"106":0.00478,"107":0.00956,"108":0.03108,"109":1.74543,"110":0.00717,"111":0.01435,"112":0.00717,"113":0.00478,"114":0.01674,"115":0.00717,"116":0.07412,"117":0.01674,"118":0.01435,"119":1.29831,"120":0.16498,"121":0.62883,"122":8.58608,"123":2.26428,"124":0.00478,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 59 61 62 63 64 70 71 72 78 84 85 101 125 126"},F:{"79":0.03826,"81":0.00239,"95":0.01435,"102":0.00478,"105":0.00239,"106":0.00478,"107":0.38495,"108":0.08847,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00239,"13":0.00239,"14":0.00239,"15":0.00478,"16":0.00239,"17":0.00239,"18":0.00717,"84":0.00239,"89":0.00478,"90":0.00239,"92":0.02152,"100":0.00478,"109":0.06217,"114":0.00239,"115":0.00239,"116":0.00239,"117":0.00478,"118":0.00239,"119":0.01196,"120":0.02391,"121":0.06456,"122":1.96779,"123":0.11955,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113"},E:{"13":0.00239,"14":0.02391,"15":0.00239,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.04065,"11.1":0.00239,"12.1":0.00239,"13.1":0.01674,"14.1":0.05499,"15.1":0.00717,"15.2-15.3":0.00717,"15.4":0.01435,"15.5":0.05499,"15.6":0.08608,"16.0":0.00717,"16.1":0.02391,"16.2":0.03108,"16.3":0.04304,"16.4":0.01913,"16.5":0.04304,"16.6":0.16976,"17.0":0.02152,"17.1":0.06217,"17.2":0.1076,"17.3":0.3443,"17.4":0.07173},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00341,"5.0-5.1":0.0017,"6.0-6.1":0.01022,"7.0-7.1":0.01192,"8.1-8.4":0.00341,"9.0-9.2":0.00681,"9.3":0.04259,"10.0-10.2":0.00681,"10.3":0.07154,"11.0-11.2":0.0511,"11.3-11.4":0.01703,"12.0-12.1":0.01533,"12.2-12.5":0.29469,"13.0-13.1":0.00511,"13.2":0.0511,"13.3":0.01533,"13.4-13.7":0.05792,"14.0-14.4":0.11072,"14.5-14.8":0.17375,"15.0-15.1":0.07495,"15.2-15.3":0.08858,"15.4":0.10391,"15.5":0.13287,"15.6-15.8":1.11234,"16.0":0.27085,"16.1":0.56043,"16.2":0.27085,"16.3":0.48207,"16.4":0.10221,"16.5":0.21634,"16.6-16.7":1.6387,"17.0":0.21293,"17.1":0.42586,"17.2":0.68648,"17.3":8.44902,"17.4":1.2401,"17.5":0},P:{"4":0.20087,"20":0.05286,"21":0.16915,"22":0.16915,"23":2.53727,"24":1.98753,"5.0-5.4":0.01057,"6.2-6.4":0.02114,"7.2-7.4":0.2643,_:"8.2 10.1","9.2":0.01057,"11.1-11.2":0.03172,"12.0":0.01057,"13.0":0.05286,"14.0":0.03172,"15.0":0.02114,"16.0":0.05286,"17.0":0.10572,"18.0":0.03172,"19.0":0.09515},I:{"0":0.06061,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.50213,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.09564,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":54.96052},R:{_:"0"},M:{"0":0.1902},Q:{_:"14.9"},O:{"0":0.22063},H:{"0":0}}; +module.exports={C:{"12":0.01142,"52":0.00381,"66":0.0019,"68":0.00761,"78":0.00571,"88":0.00381,"91":0.00381,"102":0.0019,"107":0.0019,"115":0.16556,"118":0.0019,"121":0.00381,"122":0.00952,"123":0.03045,"124":0.48907,"125":0.20172,"126":0.0019,_:"2 3 4 5 6 7 8 9 10 11 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 108 109 110 111 112 113 114 116 117 119 120 127 128 3.5 3.6"},D:{"11":0.0019,"34":0.00952,"38":0.00571,"43":0.0019,"49":0.00571,"55":0.0019,"56":0.0019,"58":0.10467,"60":0.0019,"63":0.0019,"65":0.00571,"66":0.0019,"67":0.01713,"68":0.00952,"69":0.0019,"73":0.00571,"74":0.00571,"75":0.0019,"76":0.0019,"77":0.00571,"79":0.00952,"81":0.00571,"83":0.02474,"84":0.00761,"86":0.00952,"87":0.02855,"88":0.02474,"89":0.0019,"90":0.0019,"91":0.04187,"92":0.00381,"93":0.0019,"94":0.0019,"95":0.01142,"96":0.00571,"97":0.0019,"98":0.05138,"99":0.00761,"100":0.00381,"101":0.0019,"102":0.00571,"103":0.03996,"104":0.0019,"105":0.00381,"106":0.00381,"107":0.00571,"108":0.01713,"109":1.31307,"110":0.00571,"111":0.00571,"112":0.00761,"113":0.00571,"114":0.00571,"115":0.01522,"116":0.09325,"117":0.00761,"118":0.00761,"119":0.04758,"120":0.1294,"121":0.08564,"122":0.34064,"123":6.07628,"124":2.64327,"125":0.01522,"126":0.00381,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 57 59 61 62 64 70 71 72 78 80 85 127"},F:{"40":0.0019,"79":0.01332,"82":0.00381,"86":0.00381,"95":0.01903,"102":0.0019,"107":0.20172,"108":0.10467,"109":0.05899,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0019,"14":0.0019,"15":0.0019,"16":0.0019,"17":0.0019,"18":0.00761,"84":0.0019,"89":0.0019,"90":0.0019,"92":0.01332,"98":0.0019,"100":0.0019,"109":0.03806,"114":0.00571,"116":0.0019,"117":0.0019,"118":0.0019,"119":0.00952,"120":0.00761,"121":0.01332,"122":0.11228,"123":1.12277,"124":0.51381,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 99 101 102 103 104 105 106 107 108 110 111 112 113 115"},E:{"13":0.0019,"14":0.00761,"15":0.0019,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00571,"12.1":0.0019,"13.1":0.03235,"14.1":0.04948,"15.1":0.0019,"15.2-15.3":0.01142,"15.4":0.00761,"15.5":0.05328,"15.6":0.07993,"16.0":0.00381,"16.1":0.01713,"16.2":0.01522,"16.3":0.03045,"16.4":0.00761,"16.5":0.01713,"16.6":0.15034,"17.0":0.01713,"17.1":0.03806,"17.2":0.05899,"17.3":0.1275,"17.4":0.42627,"17.5":0.00381},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00297,"5.0-5.1":0.00297,"6.0-6.1":0.00743,"7.0-7.1":0.01189,"8.1-8.4":0.00297,"9.0-9.2":0.00743,"9.3":0.03717,"10.0-10.2":0.00743,"10.3":0.05947,"11.0-11.2":0.05055,"11.3-11.4":0.01487,"12.0-12.1":0.01041,"12.2-12.5":0.24235,"13.0-13.1":0.00446,"13.2":0.04906,"13.3":0.01189,"13.4-13.7":0.04609,"14.0-14.4":0.09069,"14.5-14.8":0.13827,"15.0-15.1":0.06393,"15.2-15.3":0.07285,"15.4":0.08326,"15.5":0.10556,"15.6-15.8":0.92181,"16.0":0.21558,"16.1":0.44901,"16.2":0.21558,"16.3":0.38062,"16.4":0.0788,"16.5":0.16503,"16.6-16.7":1.30392,"17.0":0.15611,"17.1":0.28844,"17.2":0.38359,"17.3":2.79814,"17.4":6.3159,"17.5":0.05798},P:{"4":0.24496,"20":0.05103,"21":0.23476,"22":0.296,"23":0.57158,"24":4.71551,"5.0-5.4":0.03062,"6.2-6.4":0.04083,"7.2-7.4":0.43889,_:"8.2 10.1","9.2":0.01021,"11.1-11.2":0.05103,"12.0":0.01021,"13.0":0.06124,"14.0":0.04083,"15.0":0.03062,"16.0":0.07145,"17.0":0.1531,"18.0":0.03062,"19.0":0.08165},I:{"0":0.08871,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{"11":0.21694,_:"6 7 8 9 10 5.5"},K:{"0":0.70453,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.25104},H:{"0":0},L:{"0":60.16866},R:{_:"0"},M:{"0":0.12957}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js index a1125e49c17c2c..a47b7fb42162b7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LC.js @@ -1 +1 @@ -module.exports={C:{"65":0.00395,"70":0.00395,"72":0.00395,"78":0.00395,"87":0.0079,"94":0.00395,"95":0.00395,"102":0.0079,"109":0.00395,"110":0.00395,"115":0.0869,"119":0.01185,"121":0.01185,"122":0.07505,"123":0.31995,"124":0.09875,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 96 97 98 99 100 101 103 104 105 106 107 108 111 112 113 114 116 117 118 120 125 126 127 3.5 3.6"},D:{"38":0.00395,"43":0.00395,"58":0.00395,"63":0.00395,"65":0.0079,"69":0.01185,"70":0.0079,"74":0.00395,"75":0.0079,"76":0.05135,"77":0.00395,"79":0.01975,"80":0.00395,"81":0.0553,"83":0.01185,"87":0.0158,"88":0.01975,"89":0.00395,"90":0.00395,"91":0.00395,"93":0.0316,"94":0.0079,"96":0.00395,"101":0.00395,"102":0.00395,"103":0.1659,"104":0.05135,"105":0.0158,"108":0.00395,"109":0.36735,"111":0.0079,"112":0.00395,"113":0.00395,"114":0.0158,"115":0.0079,"116":0.07505,"117":0.01975,"118":0.1264,"119":0.20935,"120":4.4082,"121":4.3371,"122":13.3984,"123":2.96645,"124":0.08295,"125":0.0158,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 64 66 67 68 71 72 73 78 84 85 86 92 95 97 98 99 100 106 107 110 126"},F:{"46":0.00395,"95":0.00395,"107":0.54115,"108":0.09085,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00395,"14":0.0079,"18":0.00395,"92":0.0079,"104":0.00395,"109":0.01185,"110":0.00395,"112":0.00395,"113":0.00395,"114":0.13035,"115":0.07505,"116":0.00395,"119":0.0079,"120":0.01185,"121":0.17775,"122":4.2897,"123":0.25675,_:"13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 111 117 118"},E:{"14":0.0474,"15":0.0079,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.4 17.5","11.1":0.00395,"13.1":0.02765,"14.1":0.02765,"15.1":0.00395,"15.2-15.3":0.00395,"15.5":0.0237,"15.6":0.1264,"16.0":0.1185,"16.1":0.01185,"16.2":0.0158,"16.3":0.05135,"16.4":0.0395,"16.5":0.01185,"16.6":0.70705,"17.0":0.1738,"17.1":0.1422,"17.2":0.2054,"17.3":0.60435,"17.4":0.1975},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00301,"5.0-5.1":0.0015,"6.0-6.1":0.00902,"7.0-7.1":0.01052,"8.1-8.4":0.00301,"9.0-9.2":0.00601,"9.3":0.03759,"10.0-10.2":0.00601,"10.3":0.06314,"11.0-11.2":0.0451,"11.3-11.4":0.01503,"12.0-12.1":0.01353,"12.2-12.5":0.26009,"13.0-13.1":0.00451,"13.2":0.0451,"13.3":0.01353,"13.4-13.7":0.05112,"14.0-14.4":0.09772,"14.5-14.8":0.15335,"15.0-15.1":0.06615,"15.2-15.3":0.07818,"15.4":0.09171,"15.5":0.11727,"15.6-15.8":0.98174,"16.0":0.23904,"16.1":0.49463,"16.2":0.23904,"16.3":0.42547,"16.4":0.09021,"16.5":0.19093,"16.6-16.7":1.44629,"17.0":0.18793,"17.1":0.37586,"17.2":0.60588,"17.3":7.45699,"17.4":1.09449,"17.5":0},P:{"4":0.08523,"20":0.02131,"21":0.06392,"22":0.12785,"23":1.9923,"24":2.72743,"5.0-5.4":0.01065,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.36224,"11.1-11.2":0.04262,"13.0":0.01065,"14.0":0.01065,"15.0":0.01065,"16.0":0.02131,"17.0":0.02131,"18.0":0.02131,"19.0":0.04262},I:{"0":0.03013,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.5566,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.0158,"11":0.0158,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":42.349},R:{_:"0"},M:{"0":0.5082},Q:{_:"14.9"},O:{"0":0.0847},H:{"0":0}}; +module.exports={C:{"88":0.01184,"115":0.04735,"121":0.01973,"122":0.00395,"123":0.01184,"124":0.35119,"125":0.16573,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 126 127 128 3.5 3.6"},D:{"49":0.00395,"69":0.01578,"70":0.00395,"71":0.01184,"74":0.01578,"75":0.00789,"76":0.0513,"79":0.00789,"81":0.06708,"83":0.02762,"86":0.00789,"87":0.01578,"88":0.0513,"89":0.00789,"91":0.02762,"93":0.02368,"94":0.00789,"98":0.00395,"100":0.00395,"102":0.00395,"103":0.36698,"104":0.01973,"105":0.03157,"106":0.00395,"107":0.00789,"108":0.01973,"109":0.292,"110":0.00395,"111":0.01184,"112":0.00395,"114":0.01578,"115":0.00789,"116":0.06314,"117":0.00395,"118":0.18941,"119":0.20914,"120":4.6839,"121":1.59813,"122":2.52544,"123":11.838,"124":4.57341,"125":0.06708,"126":0.01184,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 72 73 77 78 80 84 85 90 92 95 96 97 99 101 113 127"},F:{"46":0.00395,"95":0.00395,"106":0.00395,"107":0.21308,"108":0.3433,"109":0.07103,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00789,"18":0.00395,"92":0.04735,"109":0.01973,"112":0.00789,"113":0.00789,"114":0.1973,"115":0.03157,"116":0.04341,"121":0.03551,"122":0.50509,"123":2.95161,"124":1.27061,_:"12 13 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 117 118 119 120"},E:{"14":0.01184,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1","13.1":0.01973,"14.1":0.08681,"15.2-15.3":0.00395,"15.4":0.00789,"15.5":0.01184,"15.6":0.07892,"16.0":0.11049,"16.1":0.04735,"16.2":0.00789,"16.3":0.02368,"16.4":0.01973,"16.5":0.01578,"16.6":0.57612,"17.0":0.12233,"17.1":0.04341,"17.2":0.15389,"17.3":0.23281,"17.4":0.3946,"17.5":0.00395},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00313,"5.0-5.1":0.00313,"6.0-6.1":0.00783,"7.0-7.1":0.01253,"8.1-8.4":0.00313,"9.0-9.2":0.00783,"9.3":0.03915,"10.0-10.2":0.00783,"10.3":0.06263,"11.0-11.2":0.05324,"11.3-11.4":0.01566,"12.0-12.1":0.01096,"12.2-12.5":0.25523,"13.0-13.1":0.0047,"13.2":0.05167,"13.3":0.01253,"13.4-13.7":0.04854,"14.0-14.4":0.09552,"14.5-14.8":0.14562,"15.0-15.1":0.06733,"15.2-15.3":0.07673,"15.4":0.08769,"15.5":0.11117,"15.6-15.8":0.97081,"16.0":0.22704,"16.1":0.47288,"16.2":0.22704,"16.3":0.40085,"16.4":0.08299,"16.5":0.17381,"16.6-16.7":1.37323,"17.0":0.16441,"17.1":0.30377,"17.2":0.40398,"17.3":2.94688,"17.4":6.65162,"17.5":0.06107},P:{"4":0.12874,"20":0.01073,"21":0.05364,"22":0.03219,"23":0.27894,"24":3.59408,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0","7.2-7.4":0.39696,"11.1-11.2":0.02146,"13.0":0.02146,"15.0":0.02146,"16.0":0.05364,"17.0":0.01073,"18.0":0.01073,"19.0":0.06437},I:{"0":0.01206,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"10":0.00493,"11":0.0148,_:"6 7 8 9 5.5"},K:{"0":0.45413,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.16349},H:{"0":0},L:{"0":42.00841},R:{_:"0"},M:{"0":0.35725}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js index 1e4a6cebe013d1..e66fad34b38b3d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LI.js @@ -1 +1 @@ -module.exports={C:{"2":0.00793,"3":0.0317,"4":0.01585,"5":0.00793,"6":0.00793,"10":0.00793,"11":0.00793,"13":0.00793,"15":0.00793,"16":0.00793,"17":0.00793,"21":0.00793,"22":0.00793,"23":0.00793,"25":0.00793,"26":0.00793,"29":0.00793,"31":0.01585,"33":0.01585,"35":0.01585,"36":0.00793,"37":0.00793,"38":0.01585,"39":0.01585,"40":0.02378,"41":0.00793,"42":0.00793,"52":0.00793,"78":0.00793,"109":0.00793,"115":0.8243,"117":0.00793,"118":0.00793,"119":0.00793,"121":0.11096,"122":0.10304,"123":3.88374,"124":1.1889,_:"7 8 9 12 14 18 19 20 24 27 28 30 32 34 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 120 125 126 127","3.5":0.00793,"3.6":0.0317},D:{"4":0.00793,"7":0.00793,"12":0.00793,"19":0.00793,"21":0.01585,"24":0.00793,"28":0.01585,"30":0.00793,"31":0.00793,"32":0.00793,"33":0.01585,"36":0.01585,"37":0.01585,"38":0.01585,"39":0.01585,"40":0.03963,"41":0.0317,"42":0.02378,"43":0.04756,"44":0.08719,"45":0.07133,"46":0.07133,"47":0.04756,"49":0.13474,"51":0.05548,"70":0.04756,"71":0.00793,"73":0.00793,"74":0.01585,"76":0.00793,"79":0.214,"81":0.00793,"83":0.00793,"85":0.00793,"86":0.00793,"87":40.09763,"89":0.00793,"90":0.00793,"96":0.00793,"103":0.17437,"105":0.29326,"107":0.34874,"108":1.08586,"109":0.3963,"111":0.32497,"112":0.52312,"113":0.02378,"114":0.47556,"116":0.7609,"117":0.00793,"118":0.00793,"119":0.05548,"120":0.26948,"121":1.96565,"122":7.23644,"123":2.17172,_:"5 6 8 9 10 11 13 14 15 16 17 18 20 22 23 25 26 27 29 34 35 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 72 75 77 78 80 84 88 91 92 93 94 95 97 98 99 100 101 102 104 106 110 115 124 125 126"},F:{"12":0.00793,"26":0.00793,"30":0.01585,"31":0.01585,"32":0.00793,"81":0.00793,"94":0.00793,"107":0.72127,"108":0.11889,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.02378},B:{"12":0.00793,"18":0.00793,"88":0.00793,"100":0.01585,"103":0.34874,"107":0.06341,"111":0.00793,"114":0.00793,"119":0.03963,"120":0.30911,"121":0.17437,"122":4.79523,"123":0.27741,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 101 102 104 105 106 108 109 110 112 113 115 116 117 118"},E:{"4":0.01585,"5":0.00793,"7":0.01585,"8":0.01585,"9":0.13474,"14":0.00793,_:"0 6 10 11 12 13 15 3.1 3.2 10.1 11.1 17.5","5.1":0.00793,"6.1":0.00793,"7.1":0.00793,"9.1":0.03963,"12.1":0.01585,"13.1":0.16645,"14.1":1.26023,"15.1":0.0317,"15.2-15.3":0.00793,"15.4":0.00793,"15.5":0.00793,"15.6":0.7926,"16.0":0.11889,"16.1":0.01585,"16.2":0.01585,"16.3":0.05548,"16.4":0.0317,"16.5":0.09511,"16.6":0.34082,"17.0":0.01585,"17.1":0.05548,"17.2":0.25363,"17.3":0.96697,"17.4":0.26156},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0.00095,"6.0-6.1":0.00567,"7.0-7.1":0.00662,"8.1-8.4":0.00189,"9.0-9.2":0.00378,"9.3":0.02364,"10.0-10.2":0.00378,"10.3":0.03972,"11.0-11.2":0.02837,"11.3-11.4":0.00946,"12.0-12.1":0.00851,"12.2-12.5":0.16361,"13.0-13.1":0.00284,"13.2":0.02837,"13.3":0.00851,"13.4-13.7":0.03215,"14.0-14.4":0.06147,"14.5-14.8":0.09646,"15.0-15.1":0.04161,"15.2-15.3":0.04918,"15.4":0.05769,"15.5":0.07376,"15.6-15.8":0.61754,"16.0":0.15037,"16.1":0.31114,"16.2":0.15037,"16.3":0.26763,"16.4":0.05674,"16.5":0.1201,"16.6-16.7":0.90977,"17.0":0.11821,"17.1":0.23643,"17.2":0.38112,"17.3":4.69068,"17.4":0.68847,"17.5":0},P:{"4":0.07736,"23":0.32048,"24":1.01669,_:"20 21 22 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","6.2-6.4":0.08841,"19.0":0.03315},I:{"0":0.72464,"3":0,"4":0.00007,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00007,"4.2-4.3":0.00044,"4.4":0,"4.4.3-4.4.4":0.00175},K:{"0":0.35448,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.04267,"7":0.064,"8":0.57604,"9":0.10667,"10":0.13868,"11":0.45869,_:"5.5"},S:{"2.5":0.03524,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":7.71229},R:{_:"0"},M:{"0":0.41253},Q:{"14.9":0.00415},O:{"0":0.17828},H:{"0":0}}; +module.exports={C:{"2":0.02227,"3":0.01484,"4":0.01484,"6":0.00742,"8":0.00742,"9":0.00742,"11":0.01484,"12":0.00742,"14":0.00742,"15":0.00742,"17":0.00742,"18":0.00742,"19":0.00742,"21":0.01484,"23":0.00742,"24":0.00742,"25":0.01484,"26":0.00742,"27":0.00742,"28":0.00742,"29":0.00742,"30":0.00742,"31":0.01484,"32":0.01484,"33":0.00742,"34":0.01484,"35":0.02227,"36":0.00742,"37":0.01484,"38":0.01484,"39":0.02227,"40":0.05195,"41":0.01484,"42":0.00742,"44":0.02227,"50":4.40867,"52":4.60164,"53":4.66102,"56":4.27507,"65":0.00742,"103":0.00742,"106":0.00742,"107":0.01484,"108":0.03711,"109":0.05195,"110":0.08164,"111":0.00742,"113":0.00742,"115":0.95744,"117":0.00742,"120":0.00742,"122":0.00742,"123":0.08906,"124":3.08755,"125":1.44729,_:"5 7 10 13 16 20 22 43 45 46 47 48 49 51 54 55 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 112 114 116 118 119 121 126 127 128","3.5":0.00742,"3.6":0.05195},D:{"4":0.00742,"5":0.00742,"6":0.00742,"7":0.00742,"10":0.00742,"11":0.00742,"16":0.00742,"17":0.00742,"19":0.00742,"20":0.00742,"21":0.01484,"22":0.00742,"26":0.00742,"27":0.00742,"28":0.01484,"30":0.00742,"31":0.02227,"33":0.02227,"34":0.00742,"36":0.02227,"37":0.01484,"38":0.02227,"39":0.02969,"40":0.03711,"41":0.0668,"42":0.03711,"43":0.0668,"44":0.10391,"45":0.0668,"46":0.07422,"47":0.05938,"49":0.15586,"51":0.1336,"70":0.02969,"79":0.12617,"87":13.98305,"95":0.00742,"100":0.02969,"106":0.24493,"107":0.81642,"108":0.1336,"109":0.6086,"110":0.54923,"111":0.58634,"112":0.04453,"116":0.95002,"117":0.00742,"119":0.02227,"120":0.25977,"121":2.06332,"122":0.51212,"123":6.92473,"124":2.78325,_:"8 9 12 13 14 15 18 23 24 25 29 32 35 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 94 96 97 98 99 101 102 103 104 105 113 114 115 118 125 126 127"},F:{"11":0.00742,"12":0.00742,"24":0.00742,"26":0.00742,"28":0.00742,"31":0.02227,"32":0.02227,"54":0.00742,"86":0.00742,"107":0.23008,"108":0.34883,"109":0.92775,_:"9 15 16 17 18 19 20 21 22 23 25 27 29 30 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 10.5 10.6 11.6","9.5-9.6":0.00742,"10.0-10.1":0.00742,"11.1":0.00742,"11.5":0.00742,"12.1":0.02227},B:{"12":0.01484,"13":0.00742,"92":0.00742,"107":0.35626,"108":0.31172,"109":0.01484,"113":0.05195,"114":0.00742,"119":0.05195,"120":0.36368,"121":0.07422,"122":0.46759,"123":4.31218,"124":1.92972,_:"14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 112 115 116 117 118"},E:{"5":0.00742,"6":0.00742,"7":0.01484,"8":0.02227,"9":0.18555,"13":0.00742,"14":0.00742,_:"0 4 10 11 12 15 3.1 3.2 6.1 10.1 11.1 15.2-15.3 15.4 17.5","5.1":0.00742,"7.1":0.00742,"9.1":0.00742,"12.1":0.00742,"13.1":0.08906,"14.1":2.03363,"15.1":0.03711,"15.5":0.00742,"15.6":0.15586,"16.0":0.15586,"16.1":0.01484,"16.2":0.00742,"16.3":0.12617,"16.4":0.01484,"16.5":0.29688,"16.6":0.23008,"17.0":0.05938,"17.1":0.02227,"17.2":0.10391,"17.3":0.43048,"17.4":1.0465},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00206,"5.0-5.1":0.00206,"6.0-6.1":0.00514,"7.0-7.1":0.00822,"8.1-8.4":0.00206,"9.0-9.2":0.00514,"9.3":0.0257,"10.0-10.2":0.00514,"10.3":0.04111,"11.0-11.2":0.03495,"11.3-11.4":0.01028,"12.0-12.1":0.00719,"12.2-12.5":0.16754,"13.0-13.1":0.00308,"13.2":0.03392,"13.3":0.00822,"13.4-13.7":0.03186,"14.0-14.4":0.0627,"14.5-14.8":0.09559,"15.0-15.1":0.0442,"15.2-15.3":0.05036,"15.4":0.05756,"15.5":0.07298,"15.6-15.8":0.63727,"16.0":0.14904,"16.1":0.31041,"16.2":0.14904,"16.3":0.26313,"16.4":0.05448,"16.5":0.11409,"16.6-16.7":0.90142,"17.0":0.10792,"17.1":0.1994,"17.2":0.26518,"17.3":1.93441,"17.4":4.3663,"17.5":0.04009},P:{"4":0.06576,"23":0.02192,"24":2.02752,_:"20 21 22 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","6.2-6.4":0.08768,"19.0":0.01096},I:{"0":0.95252,"3":0,"4":0.0001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00019,"4.2-4.3":0.00057,"4.4":0,"4.4.3-4.4.4":0.00239},A:{"6":0.02246,"7":0.0524,"8":0.69622,"9":0.14973,"10":0.11229,"11":0.64382,_:"5.5"},K:{"0":0.54138,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.03351,_:"3.0-3.1"},Q:{"14.9":0.01289},O:{"0":0.11085},H:{"0":0},L:{"0":10.63716},R:{_:"0"},M:{"0":0.44084}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js index daa304dab2c785..1b5fcdc62455ea 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LK.js @@ -1 +1 @@ -module.exports={C:{"52":0.00986,"88":0.04437,"99":0.00493,"115":0.22185,"118":0.00493,"119":0.00493,"120":0.00493,"121":0.00986,"122":0.01972,"123":0.72964,"124":0.31059,"125":0.00493,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 126 127 3.5 3.6"},D:{"22":0.00493,"63":0.00493,"68":0.00493,"69":0.00493,"70":0.00986,"71":0.00493,"74":0.02465,"75":0.00493,"77":0.00493,"79":0.00986,"80":0.00493,"81":0.00493,"83":0.00493,"85":0.00986,"86":0.00493,"87":0.01479,"88":0.00986,"89":0.00986,"90":0.00493,"91":0.00986,"92":0.00986,"93":0.00986,"94":0.00493,"95":0.00986,"96":0.00493,"97":0.00493,"98":0.00493,"99":0.01479,"100":0.00493,"102":0.01479,"103":0.03944,"104":0.00493,"105":0.00986,"106":0.01479,"107":0.00986,"108":0.02465,"109":1.81917,"110":0.00986,"111":0.02465,"112":0.00986,"113":0.00986,"114":0.02465,"115":0.01972,"116":0.06902,"117":0.02958,"118":0.01972,"119":0.05916,"120":0.18241,"121":0.81345,"122":13.72512,"123":3.86512,"124":0.00986,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 72 73 76 78 84 101 125 126"},F:{"79":0.00493,"85":0.00493,"90":0.00493,"95":0.08381,"99":0.00493,"106":0.00986,"107":0.48314,"108":0.22185,"109":0.00493,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 91 92 93 94 96 97 98 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00493,"16":0.00493,"18":0.01479,"84":0.00493,"89":0.00493,"92":0.03944,"100":0.00986,"107":0.00493,"109":0.02958,"110":0.00493,"113":0.00493,"114":0.00493,"115":0.00493,"116":0.00493,"117":0.00493,"118":0.00986,"119":0.02958,"120":0.03944,"121":0.22678,"122":22.16528,"123":0.32538,_:"13 14 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 111 112"},E:{"14":0.00493,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 16.0 17.5","5.1":0.00493,"13.1":0.00986,"14.1":0.01479,"15.1":0.00493,"15.2-15.3":0.00493,"15.4":0.00493,"15.5":0.00493,"15.6":0.03451,"16.1":0.00986,"16.2":0.00493,"16.3":0.00986,"16.4":0.00986,"16.5":0.02958,"16.6":0.03944,"17.0":0.01479,"17.1":0.02958,"17.2":0.03944,"17.3":0.0986,"17.4":0.02958},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00094,"5.0-5.1":0.00047,"6.0-6.1":0.00282,"7.0-7.1":0.00329,"8.1-8.4":0.00094,"9.0-9.2":0.00188,"9.3":0.01176,"10.0-10.2":0.00188,"10.3":0.01976,"11.0-11.2":0.01411,"11.3-11.4":0.0047,"12.0-12.1":0.00423,"12.2-12.5":0.0814,"13.0-13.1":0.00141,"13.2":0.01411,"13.3":0.00423,"13.4-13.7":0.016,"14.0-14.4":0.03058,"14.5-14.8":0.04799,"15.0-15.1":0.0207,"15.2-15.3":0.02447,"15.4":0.0287,"15.5":0.0367,"15.6-15.8":0.30723,"16.0":0.07481,"16.1":0.15479,"16.2":0.07481,"16.3":0.13315,"16.4":0.02823,"16.5":0.05975,"16.6-16.7":0.45262,"17.0":0.05881,"17.1":0.11762,"17.2":0.18961,"17.3":2.33366,"17.4":0.34252,"17.5":0},P:{"4":0.2961,"20":0.06126,"21":0.12253,"22":0.14295,"23":0.70452,"24":0.4901,_:"5.0-5.4","6.2-6.4":0.02042,"7.2-7.4":0.5922,"8.2":0.01021,"9.2":0.03063,"10.1":0.01021,"11.1-11.2":0.08168,"12.0":0.01021,"13.0":0.05105,"14.0":0.04084,"15.0":0.03063,"16.0":0.04084,"17.0":0.05105,"18.0":0.04084,"19.0":0.1021},I:{"0":0.06564,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":1.54677,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00493,"11":0.01972,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":42.19268},R:{_:"0"},M:{"0":0.10647},Q:{_:"14.9"},O:{"0":1.53621},H:{"0":0.03}}; +module.exports={C:{"52":0.0052,"88":0.03122,"110":0.0052,"115":0.21336,"121":0.01041,"122":0.0052,"123":0.02082,"124":0.66611,"125":0.35387,"126":0.0052,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 113 114 116 117 118 119 120 127 128 3.5 3.6"},D:{"22":0.0052,"49":0.0052,"56":0.0052,"63":0.0052,"67":0.01041,"68":0.0052,"70":0.01041,"71":0.0052,"74":0.01041,"75":0.0052,"76":0.0052,"79":0.0052,"80":0.0052,"81":0.0052,"83":0.0052,"85":0.0052,"86":0.0052,"87":0.01041,"88":0.0052,"89":0.01041,"90":0.0052,"91":0.01041,"92":0.01041,"93":0.01041,"94":0.0052,"95":0.0052,"96":0.0052,"97":0.0052,"99":0.01041,"100":0.0052,"102":0.01561,"103":0.03122,"104":0.0052,"105":0.01041,"106":0.01561,"107":0.01041,"108":0.01561,"109":1.75375,"110":0.01041,"111":0.02082,"112":0.0052,"113":0.0052,"114":0.01561,"115":0.02082,"116":0.05204,"117":0.02082,"118":0.01041,"119":0.04163,"120":0.10408,"121":0.1301,"122":0.3851,"123":12.76541,"124":4.80329,"125":0.02082,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 69 72 73 77 78 84 98 101 126 127"},F:{"79":0.0052,"95":0.07806,"107":0.19255,"108":0.3903,"109":0.15092,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0052,"16":0.0052,"17":0.0052,"18":0.02082,"84":0.0052,"89":0.0052,"92":0.04684,"100":0.0052,"109":0.02602,"113":0.0052,"114":0.0052,"115":0.0052,"116":0.0052,"117":0.01041,"118":0.0052,"119":0.01561,"120":0.02602,"121":0.04684,"122":1.10845,"123":17.51666,"124":8.02457,_:"13 14 15 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112"},E:{"14":0.0052,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 17.5","13.1":0.01041,"14.1":0.01041,"15.1":0.0052,"15.2-15.3":0.0052,"15.5":0.0052,"15.6":0.02082,"16.0":0.0052,"16.1":0.01041,"16.2":0.0052,"16.3":0.01041,"16.4":0.03122,"16.5":0.01041,"16.6":0.03122,"17.0":0.01561,"17.1":0.04163,"17.2":0.01561,"17.3":0.03643,"17.4":0.09367},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00091,"5.0-5.1":0.00091,"6.0-6.1":0.00228,"7.0-7.1":0.00365,"8.1-8.4":0.00091,"9.0-9.2":0.00228,"9.3":0.0114,"10.0-10.2":0.00228,"10.3":0.01824,"11.0-11.2":0.01551,"11.3-11.4":0.00456,"12.0-12.1":0.00319,"12.2-12.5":0.07434,"13.0-13.1":0.00137,"13.2":0.01505,"13.3":0.00365,"13.4-13.7":0.01414,"14.0-14.4":0.02782,"14.5-14.8":0.04242,"15.0-15.1":0.01961,"15.2-15.3":0.02235,"15.4":0.02554,"15.5":0.03238,"15.6-15.8":0.28278,"16.0":0.06613,"16.1":0.13774,"16.2":0.06613,"16.3":0.11676,"16.4":0.02417,"16.5":0.05063,"16.6-16.7":0.4,"17.0":0.04789,"17.1":0.08848,"17.2":0.11767,"17.3":0.85838,"17.4":1.93751,"17.5":0.01779},P:{"4":0.22861,"20":0.05196,"21":0.1247,"22":0.1247,"23":0.3637,"24":0.83131,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.02078,"7.2-7.4":0.50918,"9.2":0.03117,"11.1-11.2":0.05196,"12.0":0.01039,"13.0":0.03117,"14.0":0.03117,"15.0":0.03117,"16.0":0.04157,"17.0":0.04157,"18.0":0.04157,"19.0":0.08313},I:{"0":0.03821,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.0052,"11":0.04163,_:"6 7 9 10 5.5"},K:{"0":1.23176,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":1.04553},H:{"0":0.02},L:{"0":40.1044},R:{_:"0"},M:{"0":0.09112}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js index 3173e6a6dd2886..246f992ed2e20d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LR.js @@ -1 +1 @@ -module.exports={C:{"44":0.00367,"48":0.00183,"56":0.00183,"58":0.00917,"61":0.00183,"65":0.00367,"72":0.00367,"78":0.00367,"102":0.00183,"105":0.00183,"111":0.0275,"114":0.00183,"115":0.50774,"118":0.00367,"121":0.0055,"122":0.0165,"123":0.39043,"124":0.17414,"125":0.00917,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 49 50 51 52 53 54 55 57 59 60 62 63 64 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 106 107 108 109 110 112 113 116 117 119 120 126 127 3.5 3.6"},D:{"29":0.05132,"43":0.0055,"47":0.00367,"49":0.00183,"50":0.00183,"56":0.00183,"58":0.00183,"59":0.00367,"61":0.00367,"64":0.01283,"67":0.00183,"68":0.00183,"70":0.0055,"71":0.00733,"72":0.00183,"74":0.00367,"75":0.00733,"76":0.01466,"77":0.00367,"79":0.00733,"80":0.00917,"81":0.00183,"83":0.011,"84":0.02933,"85":0.00183,"86":0.01466,"87":0.0055,"88":0.022,"89":0.00367,"90":0.01283,"91":0.011,"92":0.09898,"93":0.12464,"94":0.03483,"95":0.00183,"96":0.00367,"97":0.00183,"98":0.0055,"99":0.00367,"100":0.00183,"101":0.00367,"102":0.01833,"103":0.06232,"104":0.00183,"105":0.04766,"107":0.01283,"108":0.0165,"109":0.39226,"110":0.00917,"111":0.0165,"112":0.00183,"113":0.01283,"114":0.01833,"115":0.02383,"116":0.3666,"117":0.02016,"118":0.04399,"119":0.05866,"120":0.16314,"121":0.46558,"122":3.94095,"123":1.13646,"124":0.00183,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 55 57 60 62 63 65 66 69 73 78 106 125 126"},F:{"21":0.011,"81":0.00183,"86":0.00183,"90":0.011,"94":0.0055,"95":0.01466,"103":0.00183,"105":0.00183,"106":0.00367,"107":0.27495,"108":0.13748,_:"9 11 12 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 87 88 89 91 92 93 96 97 98 99 100 101 102 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.08615,"13":0.03666,"14":0.02566,"15":0.03483,"16":0.05682,"17":0.0055,"18":0.12831,"80":0.00367,"84":0.01833,"85":0.00183,"89":0.011,"90":0.00917,"92":0.08249,"96":0.00917,"100":0.03116,"105":0.00367,"108":0.01283,"109":0.04216,"110":0.00367,"111":0.00367,"112":0.00733,"113":0.00733,"114":0.0055,"115":0.00367,"116":0.00367,"117":0.011,"118":0.01283,"119":0.022,"120":0.09165,"121":0.15214,"122":1.93931,"123":0.08249,_:"79 81 83 86 87 88 91 93 94 95 97 98 99 101 102 103 104 106 107"},E:{"13":0.00917,"14":0.01466,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.1 15.2-15.3 16.2 17.5","11.1":0.00917,"12.1":0.00183,"13.1":0.01466,"14.1":0.022,"15.4":0.00183,"15.5":0.0055,"15.6":0.07699,"16.0":0.00183,"16.1":0.0165,"16.3":0.01833,"16.4":0.00367,"16.5":0.00367,"16.6":0.0275,"17.0":0.00183,"17.1":0.011,"17.2":0.01833,"17.3":0.02016,"17.4":0.022},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00154,"5.0-5.1":0.00077,"6.0-6.1":0.00461,"7.0-7.1":0.00538,"8.1-8.4":0.00154,"9.0-9.2":0.00307,"9.3":0.01922,"10.0-10.2":0.00307,"10.3":0.03228,"11.0-11.2":0.02306,"11.3-11.4":0.00769,"12.0-12.1":0.00692,"12.2-12.5":0.13297,"13.0-13.1":0.00231,"13.2":0.02306,"13.3":0.00692,"13.4-13.7":0.02613,"14.0-14.4":0.04996,"14.5-14.8":0.0784,"15.0-15.1":0.03382,"15.2-15.3":0.03997,"15.4":0.04689,"15.5":0.05995,"15.6-15.8":0.5019,"16.0":0.12221,"16.1":0.25287,"16.2":0.12221,"16.3":0.21752,"16.4":0.04612,"16.5":0.09761,"16.6-16.7":0.7394,"17.0":0.09608,"17.1":0.19215,"17.2":0.30975,"17.3":3.8123,"17.4":0.55955,"17.5":0},P:{"4":0.0621,"20":0.01035,"21":0.05175,"22":0.03105,"23":0.42438,"24":0.31052,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.05175,"9.2":0.05175,"11.1-11.2":0.01035,"13.0":0.01035,"14.0":0.01035,"15.0":0.03105,"16.0":0.03105,"17.0":0.01035,"18.0":0.01035,"19.0":0.09316},I:{"0":0.01627,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":4.27102,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00209,"11":0.0419,_:"6 7 8 9 5.5"},S:{"2.5":0.10618,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":63.34382},R:{_:"0"},M:{"0":0.03267},Q:{_:"14.9"},O:{"0":0.49825},H:{"0":10.17}}; +module.exports={C:{"47":0.00158,"58":0.01266,"60":0.00316,"61":0.00158,"63":0.00316,"66":0.00158,"72":0.00475,"78":0.00158,"79":0.00158,"85":0.00316,"88":0.00158,"112":0.00316,"114":0.00475,"115":0.34646,"117":0.00158,"118":0.00316,"119":0.00158,"121":0.00316,"122":0.02848,"123":0.01898,"124":0.39708,"125":0.31482,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 59 62 64 65 67 68 69 70 71 73 74 75 76 77 80 81 82 83 84 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 116 120 126 127 128 3.5 3.6"},D:{"11":0.00949,"26":0.00158,"29":0.00158,"31":0.00316,"45":0.00158,"46":0.01266,"47":0.00316,"57":0.00949,"59":0.00475,"60":0.00158,"62":0.00158,"64":0.00158,"65":0.00158,"67":0.00475,"68":0.00158,"70":0.00158,"71":0.00158,"75":0.00158,"76":0.01898,"77":0.00158,"79":0.00316,"80":0.00158,"81":0.04746,"83":0.00158,"84":0.00158,"85":0.00475,"86":0.00158,"87":0.00316,"88":0.00949,"89":0.00158,"90":0.00949,"91":0.01582,"92":0.10283,"93":0.08701,"94":0.02689,"95":0.00158,"97":0.00633,"99":0.02848,"100":0.00791,"102":0.02057,"103":0.04904,"104":0.00475,"105":0.02531,"106":0.00158,"107":0.00316,"108":0.00475,"109":0.21199,"110":0.01582,"111":0.01107,"112":0.00633,"113":0.00633,"114":0.01266,"115":0.00949,"116":0.02057,"117":0.02057,"118":0.0348,"119":0.02057,"120":0.10125,"121":0.0617,"122":0.42239,"123":4.12111,"124":1.33204,"125":0.00949,"126":0.00158,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 30 32 33 34 35 36 37 38 39 40 41 42 43 44 48 49 50 51 52 53 54 55 56 58 61 63 66 69 72 73 74 78 96 98 101 127"},F:{"34":0.00316,"42":0.00158,"54":0.00158,"73":0.00158,"79":0.00158,"86":0.00316,"95":0.01582,"99":0.00475,"105":0.00633,"106":0.00791,"107":0.03164,"108":0.21515,"109":0.06328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.07119,"13":0.0174,"14":0.00791,"15":0.00791,"16":0.00633,"17":0.00316,"18":0.10599,"84":0.00475,"85":0.00316,"89":0.01107,"90":0.00949,"92":0.0443,"97":0.00633,"100":0.01107,"107":0.00475,"108":0.00475,"109":0.01898,"110":0.00633,"111":0.00158,"112":0.00791,"113":0.00633,"114":0.00791,"115":0.00158,"116":0.00791,"117":0.00316,"118":0.00475,"119":0.02531,"120":0.07752,"121":0.02531,"122":0.21673,"123":1.16277,"124":0.41607,_:"79 80 81 83 86 87 88 91 93 94 95 96 98 99 101 102 103 104 105 106"},E:{"14":0.00475,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 15.2-15.3 15.5 16.2 17.5","11.1":0.00316,"12.1":0.00633,"13.1":0.03955,"14.1":0.00475,"15.1":0.00475,"15.4":0.00158,"15.6":0.06486,"16.0":0.01898,"16.1":0.00949,"16.3":0.01107,"16.4":0.00158,"16.5":0.00316,"16.6":0.0348,"17.0":0.00316,"17.1":0.00633,"17.2":0.0174,"17.3":0.0174,"17.4":0.05062},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00131,"6.0-6.1":0.00327,"7.0-7.1":0.00523,"8.1-8.4":0.00131,"9.0-9.2":0.00327,"9.3":0.01635,"10.0-10.2":0.00327,"10.3":0.02616,"11.0-11.2":0.02224,"11.3-11.4":0.00654,"12.0-12.1":0.00458,"12.2-12.5":0.10661,"13.0-13.1":0.00196,"13.2":0.02158,"13.3":0.00523,"13.4-13.7":0.02028,"14.0-14.4":0.0399,"14.5-14.8":0.06083,"15.0-15.1":0.02813,"15.2-15.3":0.03205,"15.4":0.03663,"15.5":0.04644,"15.6-15.8":0.40553,"16.0":0.09484,"16.1":0.19753,"16.2":0.09484,"16.3":0.16744,"16.4":0.03467,"16.5":0.0726,"16.6-16.7":0.57363,"17.0":0.06868,"17.1":0.12689,"17.2":0.16875,"17.3":1.23098,"17.4":2.77853,"17.5":0.02551},P:{"4":0.05189,"20":0.0934,"21":0.08302,"22":0.03113,"23":0.19717,"24":0.44623,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0","7.2-7.4":0.04151,"9.2":0.07264,"11.1-11.2":0.03113,"14.0":0.01038,"15.0":0.03113,"16.0":0.01038,"17.0":0.03113,"18.0":0.01038,"19.0":0.04151},I:{"0":0.05868,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"9":0.00387,"11":0.06574,_:"6 7 8 10 5.5"},K:{"0":3.60537,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.07576,_:"3.0-3.1"},Q:{"14.9":0.00842},O:{"0":0.63135},H:{"0":7.7},L:{"0":68.60511},R:{_:"0"},M:{"0":0.03367}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js index 3df2fb2bff7d47..701e29d104df96 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LS.js @@ -1 +1 @@ -module.exports={C:{"34":0.00635,"52":0.00635,"109":0.00318,"115":0.11113,"116":0.00318,"121":0.01905,"122":0.02223,"123":0.32703,"124":0.08573,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 117 118 119 120 125 126 127 3.5 3.6"},D:{"11":0.00318,"49":0.00318,"56":0.00635,"58":0.00953,"63":0.00318,"69":0.00318,"70":0.00635,"74":0.00318,"78":0.00318,"79":0.00318,"80":0.00318,"81":0.02858,"83":0.00318,"86":0.00318,"87":0.00318,"88":0.0127,"89":0.00318,"90":0.00318,"95":0.00318,"96":0.00318,"98":0.00318,"99":0.00953,"101":0.01588,"102":0.00953,"103":0.33655,"104":0.00318,"105":0.00318,"106":0.00953,"107":0.00635,"108":0.00318,"109":0.78423,"110":0.00318,"111":0.03175,"113":0.01905,"114":0.0127,"115":0.00635,"116":0.02858,"117":0.00318,"118":0.01905,"119":0.02223,"120":0.07303,"121":0.30798,"122":6.65798,"123":1.83833,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 64 65 66 67 68 71 72 73 75 76 77 84 85 91 92 93 94 97 100 112 124 125 126"},F:{"28":0.00318,"35":0.00635,"37":0.00318,"81":0.00318,"90":0.00318,"95":0.08255,"106":0.00635,"107":0.37465,"108":0.17463,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01588,"13":0.00953,"14":0.01905,"16":0.00318,"17":0.01905,"18":0.04763,"84":0.00318,"89":0.00635,"90":0.00318,"92":0.07303,"97":0.00318,"98":0.00953,"99":0.0127,"100":0.00318,"105":0.01588,"109":0.0254,"111":0.00318,"112":0.0127,"113":0.09525,"114":0.00318,"115":0.00953,"116":0.0635,"117":0.0635,"118":0.00635,"119":0.03175,"120":0.1143,"121":0.24448,"122":5.31178,"123":0.12065,_:"15 79 80 81 83 85 86 87 88 91 93 94 95 96 101 102 103 104 106 107 108 110"},E:{"10":0.00318,"14":0.00635,_:"0 4 5 6 7 8 9 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 13.1 15.1 15.4 16.0 16.2 16.3 16.5 17.0 17.5","5.1":0.00318,"12.1":0.0127,"14.1":0.00318,"15.2-15.3":0.00318,"15.5":0.00318,"15.6":0.00953,"16.1":0.00318,"16.4":0.06033,"16.6":0.01905,"17.1":0.0127,"17.2":0.01588,"17.3":0.13653,"17.4":0.00318},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00047,"5.0-5.1":0.00023,"6.0-6.1":0.00141,"7.0-7.1":0.00164,"8.1-8.4":0.00047,"9.0-9.2":0.00094,"9.3":0.00587,"10.0-10.2":0.00094,"10.3":0.00986,"11.0-11.2":0.00704,"11.3-11.4":0.00235,"12.0-12.1":0.00211,"12.2-12.5":0.04061,"13.0-13.1":0.0007,"13.2":0.00704,"13.3":0.00211,"13.4-13.7":0.00798,"14.0-14.4":0.01526,"14.5-14.8":0.02394,"15.0-15.1":0.01033,"15.2-15.3":0.01221,"15.4":0.01432,"15.5":0.01831,"15.6-15.8":0.15329,"16.0":0.03732,"16.1":0.07723,"16.2":0.03732,"16.3":0.06643,"16.4":0.01408,"16.5":0.02981,"16.6-16.7":0.22583,"17.0":0.02934,"17.1":0.05869,"17.2":0.0946,"17.3":1.16434,"17.4":0.17089,"17.5":0},P:{"4":0.35545,"20":0.02031,"21":0.13202,"22":0.10156,"23":0.43669,"24":0.46716,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.04062,"7.2-7.4":0.7312,"9.2":0.01016,"11.1-11.2":0.05078,"12.0":0.01016,"13.0":0.02031,"14.0":0.28436,"15.0":0.02031,"16.0":0.03047,"17.0":0.03047,"18.0":0.07109,"19.0":0.20311},I:{"0":0.08835,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},K:{"0":5.6331,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.06985,_:"6 7 8 9 10 5.5"},S:{"2.5":0.04094,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":68.02301},R:{_:"0"},M:{"0":0.03412},Q:{"14.9":0.00682},O:{"0":0.5118},H:{"0":1.73}}; +module.exports={C:{"52":0.00603,"78":0.00301,"80":0.00301,"88":0.00301,"91":0.00301,"115":0.13262,"121":0.00301,"122":0.00603,"123":0.02713,"124":0.22002,"125":0.11453,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 126 127 128 3.5 3.6"},D:{"40":0.00603,"43":0.00301,"46":0.00603,"49":0.01808,"56":0.00904,"62":0.00301,"64":0.00603,"65":0.00301,"69":0.00603,"70":0.09946,"71":0.00301,"74":0.00603,"75":0.00301,"78":0.00301,"80":0.00603,"81":0.01808,"83":0.00904,"84":0.00301,"86":0.00301,"87":0.00603,"88":0.00603,"90":0.00301,"93":0.00603,"94":0.00301,"99":0.00603,"101":0.00904,"102":0.05124,"103":0.07836,"104":0.00904,"105":0.00603,"106":0.00301,"107":0.00603,"108":0.00301,"109":0.66609,"111":0.01206,"112":0.01206,"113":0.02411,"115":0.00603,"116":0.01507,"117":0.00301,"118":0.01206,"119":0.01808,"120":0.09042,"121":0.04822,"122":0.41895,"123":8.08656,"124":2.51066,"125":0.00904,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 47 48 50 51 52 53 54 55 57 58 59 60 61 63 66 67 68 72 73 76 77 79 85 89 91 92 95 96 97 98 100 110 114 126 127"},F:{"36":0.01206,"37":0.00301,"38":0.00603,"40":0.00301,"79":0.00301,"82":0.01507,"83":0.00301,"86":0.00301,"95":0.15371,"102":0.00603,"106":0.00301,"107":0.02411,"108":0.34661,"109":0.10248,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00301,"15":0.00301,"16":0.00301,"17":0.00301,"18":0.03617,"84":0.00301,"88":0.01206,"89":0.00301,"92":0.02411,"100":0.00904,"103":0.00301,"105":0.01507,"109":0.06932,"111":0.00301,"113":0.00301,"114":0.00904,"115":0.00301,"117":0.00904,"118":0.00301,"119":0.0211,"120":0.12056,"121":0.04521,"122":0.27729,"123":1.99527,"124":0.60883,_:"13 14 79 80 81 83 85 86 87 90 91 93 94 95 96 97 98 99 101 102 104 106 107 108 110 112 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 16.5 17.0","13.1":0.00301,"14.1":0.00603,"15.5":0.00301,"15.6":0.0211,"16.1":0.00301,"16.3":0.00603,"16.6":0.00904,"17.1":0.00603,"17.2":0.00301,"17.3":0.00904,"17.4":0.06631,"17.5":0.00603},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00048,"5.0-5.1":0.00048,"6.0-6.1":0.00119,"7.0-7.1":0.00191,"8.1-8.4":0.00048,"9.0-9.2":0.00119,"9.3":0.00597,"10.0-10.2":0.00119,"10.3":0.00956,"11.0-11.2":0.00812,"11.3-11.4":0.00239,"12.0-12.1":0.00167,"12.2-12.5":0.03894,"13.0-13.1":0.00072,"13.2":0.00788,"13.3":0.00191,"13.4-13.7":0.00741,"14.0-14.4":0.01457,"14.5-14.8":0.02222,"15.0-15.1":0.01027,"15.2-15.3":0.01171,"15.4":0.01338,"15.5":0.01696,"15.6-15.8":0.14813,"16.0":0.03464,"16.1":0.07215,"16.2":0.03464,"16.3":0.06116,"16.4":0.01266,"16.5":0.02652,"16.6-16.7":0.20953,"17.0":0.02509,"17.1":0.04635,"17.2":0.06164,"17.3":0.44965,"17.4":1.01494,"17.5":0.00932},P:{"4":0.42185,"20":0.04018,"21":0.08035,"22":0.12053,"23":0.22097,"24":0.78343,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.02009,"7.2-7.4":0.48211,"9.2":0.01004,"11.1-11.2":0.01004,"12.0":0.02009,"13.0":0.03013,"14.0":0.05022,"15.0":0.01004,"16.0":0.03013,"17.0":0.03013,"18.0":0.05022,"19.0":0.20088},I:{"0":0.16002,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.0004},A:{"11":0.36168,_:"6 7 8 9 10 5.5"},K:{"0":5.53677,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0489,_:"3.0-3.1"},Q:{"14.9":0.01397},O:{"0":0.52395},H:{"0":2.56},L:{"0":68.4453},R:{_:"0"},M:{"0":0.05589}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js index 5eb1c9e50cb7e9..27524db2fb6f42 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LT.js @@ -1 +1 @@ -module.exports={C:{"38":0.00314,"45":0.00314,"48":0.00942,"49":0.00314,"52":0.02513,"56":0.00314,"60":0.00942,"68":0.00314,"69":0.00314,"72":0.00314,"77":0.00314,"78":0.00942,"81":0.00314,"84":0.00314,"90":0.00628,"91":0.00314,"92":0.00314,"95":0.01885,"98":0.00628,"102":0.00942,"103":0.00942,"104":0.00314,"105":0.00314,"106":0.02199,"108":0.02199,"109":0.01885,"110":0.00942,"111":0.00314,"113":0.00628,"115":0.5748,"116":0.00314,"117":0.03141,"118":0.00628,"119":0.00628,"120":0.00628,"121":0.00942,"122":0.05654,"123":1.39775,"124":0.57794,"125":0.00314,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 50 51 53 54 55 57 58 59 61 62 63 64 65 66 67 70 71 73 74 75 76 79 80 82 83 85 86 87 88 89 93 94 96 97 99 100 101 107 112 114 126 127 3.5 3.6"},D:{"22":0.00314,"34":0.01571,"38":0.00314,"44":0.00314,"48":0.00628,"49":0.00942,"56":0.00628,"57":0.00314,"58":0.00314,"60":0.00628,"61":0.00628,"62":0.00314,"63":0.00942,"64":0.00942,"65":0.00942,"66":0.01571,"68":0.01571,"69":0.00942,"70":0.01256,"71":0.00942,"72":0.01256,"73":0.00628,"74":0.01885,"75":0.01571,"76":0.00942,"77":0.01571,"78":0.01571,"79":0.01885,"80":0.04712,"81":0.01571,"83":0.02199,"84":0.00942,"85":0.03769,"86":0.0534,"87":0.05968,"88":0.02199,"89":0.01571,"90":0.01885,"91":0.00942,"92":0.00314,"93":0.00314,"94":0.00942,"95":0.00628,"96":0.00628,"97":0.00314,"99":0.01571,"100":0.00314,"101":0.00628,"102":0.02199,"103":0.02199,"104":0.00942,"105":0.03141,"106":0.11936,"107":0.06596,"108":0.10365,"109":1.38204,"110":0.0534,"111":0.08481,"112":0.09109,"113":0.00942,"114":0.02199,"115":0.05654,"116":0.08795,"117":0.01256,"118":0.01885,"119":1.71499,"120":0.26384,"121":1.27839,"122":11.50548,"123":3.41427,"124":0.00314,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 45 46 47 50 51 52 53 54 55 59 67 98 125 126"},F:{"46":0.00314,"48":0.00314,"53":0.00314,"54":0.00314,"55":0.00314,"79":0.00314,"86":0.00314,"92":0.00628,"94":0.01256,"95":0.11308,"99":0.00628,"102":0.03455,"103":0.01256,"104":0.00628,"105":0.00314,"106":0.01571,"107":1.85005,"108":0.33295,"109":0.00314,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 87 88 89 90 91 93 96 97 98 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00314,"17":0.00314,"18":0.00314,"80":0.00314,"81":0.00314,"83":0.00314,"84":0.00314,"85":0.00314,"86":0.00314,"87":0.00314,"88":0.00314,"89":0.00314,"90":0.00314,"92":0.00942,"103":0.00314,"105":0.00314,"106":0.00628,"107":0.02199,"108":0.03141,"109":0.04083,"110":0.01256,"111":0.00314,"112":0.00314,"113":0.00314,"114":0.00314,"116":0.00314,"118":0.00314,"119":0.00942,"120":0.01885,"121":0.07853,"122":2.40287,"123":0.17276,_:"12 13 14 16 79 91 93 94 95 96 97 98 99 100 101 102 104 115 117"},E:{"9":0.00628,"14":0.01571,"15":0.00314,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.01571,"9.1":0.08167,"11.1":0.00314,"12.1":0.00628,"13.1":0.02827,"14.1":0.03141,"15.1":0.00314,"15.2-15.3":0.02199,"15.4":0.00628,"15.5":0.00628,"15.6":0.11622,"16.0":0.01256,"16.1":0.02827,"16.2":0.02827,"16.3":0.04083,"16.4":0.02827,"16.5":0.03141,"16.6":0.08167,"17.0":0.05968,"17.1":0.07538,"17.2":0.11936,"17.3":0.32666,"17.4":0.10051},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00983,"5.0-5.1":0.00492,"6.0-6.1":0.0295,"7.0-7.1":0.03442,"8.1-8.4":0.00983,"9.0-9.2":0.01967,"9.3":0.12293,"10.0-10.2":0.01967,"10.3":0.20652,"11.0-11.2":0.14752,"11.3-11.4":0.04917,"12.0-12.1":0.04425,"12.2-12.5":0.85068,"13.0-13.1":0.01475,"13.2":0.14752,"13.3":0.04425,"13.4-13.7":0.16719,"14.0-14.4":0.31962,"14.5-14.8":0.50156,"15.0-15.1":0.21636,"15.2-15.3":0.2557,"15.4":0.29995,"15.5":0.38354,"15.6-15.8":3.21094,"16.0":0.78184,"16.1":1.61776,"16.2":0.78184,"16.3":1.39157,"16.4":0.29503,"16.5":0.62449,"16.6-16.7":4.73036,"17.0":0.61465,"17.1":1.2293,"17.2":1.98164,"17.3":24.3894,"17.4":3.57973,"17.5":0},P:{"4":0.04115,"20":0.01029,"21":0.03087,"22":0.05144,"23":0.96712,"24":0.68933,"5.0-5.4":0.01029,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0","17.0":0.01029,"18.0":0.01029,"19.0":0.01029},I:{"0":0.04099,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.32295,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02736,"9":0.00342,"10":0.00684,"11":0.11629,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":17.02455},R:{_:"0"},M:{"0":0.21263},Q:{_:"14.9"},O:{"0":0.02058},H:{"0":0.02}}; +module.exports={C:{"44":0.00376,"45":0.00376,"51":0.00376,"52":0.03764,"56":0.00376,"69":0.00376,"77":0.00376,"78":0.01129,"84":0.00376,"87":0.00376,"90":0.00376,"91":0.00753,"95":0.00376,"99":0.00376,"102":0.00753,"103":0.00376,"104":0.00376,"105":0.00753,"106":0.02258,"107":0.01129,"108":0.02258,"109":0.01506,"110":0.01882,"111":0.01506,"113":0.00376,"115":0.51943,"116":0.00376,"117":0.02635,"118":0.02258,"119":0.00376,"120":0.00376,"121":0.00753,"122":0.02258,"123":0.07152,"124":1.56582,"125":0.82055,"126":0.00376,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 46 47 48 49 50 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 79 80 81 82 83 85 86 88 89 92 93 94 96 97 98 100 101 112 114 127 128 3.5 3.6"},D:{"34":0.01506,"43":0.00376,"44":0.00376,"45":0.00376,"46":0.00376,"47":0.00376,"48":0.00376,"49":0.00753,"51":0.00376,"56":0.00376,"60":0.00376,"65":0.00376,"66":0.00376,"68":0.00753,"69":0.00753,"70":0.01129,"71":0.00753,"72":0.00753,"73":0.00376,"74":0.01129,"75":0.00753,"76":0.00753,"77":0.00753,"78":0.01129,"79":0.01506,"80":0.03011,"81":0.01882,"83":0.01882,"84":0.00753,"85":0.01129,"86":0.04517,"87":0.04517,"88":0.01882,"89":0.01129,"90":0.01506,"91":0.01506,"92":0.00376,"93":0.00376,"94":0.01882,"95":0.00376,"96":0.00753,"97":0.00376,"99":0.02258,"100":0.01129,"101":0.00376,"102":0.03011,"103":0.03011,"104":0.04893,"105":0.04517,"106":0.10916,"107":0.08657,"108":0.10539,"109":1.47549,"110":0.10916,"111":0.08657,"112":0.08657,"113":0.00753,"114":0.01129,"115":0.06775,"116":0.08657,"117":0.01129,"118":0.02258,"119":2.04762,"120":0.17691,"121":0.21831,"122":0.93347,"123":13.47136,"124":5.16044,"125":0.0414,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 50 52 53 54 55 57 58 59 61 62 63 64 67 98 126 127"},F:{"46":0.00376,"53":0.00376,"54":0.00376,"55":0.00376,"85":0.00376,"86":0.00376,"91":0.00376,"92":0.00753,"94":0.01129,"95":0.1468,"99":0.00376,"102":0.03011,"104":0.00753,"105":0.00376,"106":0.00376,"107":1.75026,"108":0.8469,"109":0.27854,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 93 96 97 98 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00376,"79":0.00376,"80":0.00376,"81":0.00376,"83":0.00376,"84":0.00376,"85":0.00376,"86":0.01129,"87":0.00376,"88":0.00376,"89":0.00376,"90":0.00376,"92":0.01129,"100":0.00376,"103":0.00376,"105":0.00376,"106":0.00376,"107":0.03011,"108":0.02635,"109":0.0414,"110":0.01506,"111":0.01129,"112":0.00753,"113":0.00376,"114":0.00376,"117":0.00376,"118":0.00376,"119":0.00753,"120":0.01882,"121":0.03388,"122":0.1355,"123":2.09278,"124":0.98993,_:"12 13 14 15 16 17 91 93 94 95 96 97 98 99 101 102 104 115 116"},E:{"9":0.01129,"14":0.01882,"15":0.00376,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.01129,"9.1":0.04893,"12.1":0.00376,"13.1":0.03388,"14.1":0.04517,"15.1":0.00376,"15.2-15.3":0.03764,"15.4":0.00753,"15.5":0.00753,"15.6":0.10539,"16.0":0.01506,"16.1":0.03388,"16.2":0.0414,"16.3":0.04517,"16.4":0.04517,"16.5":0.02635,"16.6":0.09786,"17.0":0.04893,"17.1":0.05646,"17.2":0.09786,"17.3":0.16938,"17.4":0.50814,"17.5":0.00753},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00829,"5.0-5.1":0.00829,"6.0-6.1":0.02072,"7.0-7.1":0.03315,"8.1-8.4":0.00829,"9.0-9.2":0.02072,"9.3":0.10358,"10.0-10.2":0.02072,"10.3":0.16573,"11.0-11.2":0.14087,"11.3-11.4":0.04143,"12.0-12.1":0.029,"12.2-12.5":0.67534,"13.0-13.1":0.01243,"13.2":0.13673,"13.3":0.03315,"13.4-13.7":0.12844,"14.0-14.4":0.25274,"14.5-14.8":0.38532,"15.0-15.1":0.17816,"15.2-15.3":0.20302,"15.4":0.23202,"15.5":0.29417,"15.6-15.8":2.56878,"16.0":0.60076,"16.1":1.25125,"16.2":0.60076,"16.3":1.06066,"16.4":0.21959,"16.5":0.4599,"16.6-16.7":3.63358,"17.0":0.43504,"17.1":0.80378,"17.2":1.06895,"17.3":7.7975,"17.4":17.60031,"17.5":0.16158},P:{"4":0.04185,"20":0.01046,"21":0.02092,"22":0.03139,"23":0.13601,"24":0.93112,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01046,"19.0":0.01046},I:{"0":0.03726,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.04517,"9":0.00821,"10":0.00411,"11":0.07802,_:"6 7 5.5"},K:{"0":0.3018,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02494},H:{"0":0.01},L:{"0":18.00832},R:{_:"0"},M:{"0":1.09754}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LU.js index 2a69e3731741bb..94590e7dcd8f75 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LU.js @@ -1 +1 @@ -module.exports={C:{"38":0.00389,"40":0.00389,"48":0.04278,"50":0.00778,"52":0.07778,"60":0.01556,"61":0.02333,"68":0.00778,"78":0.09723,"87":0.00389,"89":0.00389,"91":0.06222,"99":0.00389,"102":0.08945,"103":0.01167,"104":0.02333,"106":0.01167,"107":0.00778,"109":0.00389,"111":0.00389,"115":2.83897,"116":0.00389,"117":0.00778,"118":0.00778,"119":0.01945,"120":0.00778,"121":0.05445,"122":0.19834,"123":2.66008,"124":1.22504,"125":0.00389,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 49 51 53 54 55 56 57 58 59 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 90 92 93 94 95 96 97 98 100 101 105 108 110 112 113 114 126 127 3.5","3.6":0.00389},D:{"31":0.00389,"38":0.00389,"39":0.00389,"40":0.00389,"41":0.00389,"43":0.00778,"44":0.01167,"45":0.035,"46":0.00778,"47":0.00389,"49":0.00389,"51":0.01556,"53":0.00389,"66":0.00389,"68":0.00389,"70":0.00778,"71":0.00389,"72":0.00389,"74":0.00389,"76":0.00389,"79":0.07778,"80":0.00778,"81":0.00389,"83":0.00389,"84":0.00389,"85":0.01167,"86":0.01167,"87":0.05056,"88":0.00778,"89":0.00778,"90":0.01167,"91":0.01945,"93":0.00389,"94":0.00389,"95":0.01945,"96":0.00389,"97":0.00389,"98":0.00778,"99":0.01945,"100":0.01167,"101":0.00389,"102":0.01556,"103":0.07,"104":0.12834,"105":0.00778,"106":0.03111,"107":0.01556,"108":0.01167,"109":0.89447,"110":0.00389,"111":0.01556,"112":0.06611,"113":0.01167,"114":0.035,"115":0.035,"116":0.39668,"117":0.05056,"118":0.7778,"119":0.08945,"120":0.43168,"121":1.16281,"122":9.17415,"123":2.56674,"124":0.00389,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 42 48 50 52 54 55 56 57 58 59 60 61 62 63 64 65 67 69 73 75 77 78 92 125 126"},F:{"31":0.00389,"81":0.00389,"89":0.01556,"95":0.01945,"102":0.00389,"106":0.01167,"107":0.78947,"108":0.19445,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00389},B:{"12":0.00778,"92":0.00389,"99":0.00389,"100":0.00389,"108":0.01945,"109":0.08167,"110":0.00778,"111":0.00389,"112":0.01167,"114":0.00778,"117":0.02333,"118":0.00389,"119":0.03111,"120":0.13223,"121":0.18667,"122":4.40624,"123":0.32279,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 106 107 113 115 116"},E:{"9":0.02722,"13":0.00389,"14":0.05056,"15":0.00778,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.00389,"9.1":0.01556,"11.1":0.00389,"12.1":0.01167,"13.1":0.11667,"14.1":0.25279,"15.1":0.00778,"15.2-15.3":0.02722,"15.4":0.03889,"15.5":0.09334,"15.6":0.42001,"16.0":0.11667,"16.1":0.17112,"16.2":0.07778,"16.3":0.27612,"16.4":0.06222,"16.5":0.2139,"16.6":0.56391,"17.0":0.12445,"17.1":0.27612,"17.2":0.61446,"17.3":2.10395,"17.4":0.51335},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00343,"5.0-5.1":0.00171,"6.0-6.1":0.01028,"7.0-7.1":0.01199,"8.1-8.4":0.00343,"9.0-9.2":0.00685,"9.3":0.04284,"10.0-10.2":0.00685,"10.3":0.07197,"11.0-11.2":0.05141,"11.3-11.4":0.01714,"12.0-12.1":0.01542,"12.2-12.5":0.29644,"13.0-13.1":0.00514,"13.2":0.05141,"13.3":0.01542,"13.4-13.7":0.05826,"14.0-14.4":0.11138,"14.5-14.8":0.17478,"15.0-15.1":0.0754,"15.2-15.3":0.0891,"15.4":0.10452,"15.5":0.13365,"15.6-15.8":1.11893,"16.0":0.27245,"16.1":0.56375,"16.2":0.27245,"16.3":0.48493,"16.4":0.10281,"16.5":0.21762,"16.6-16.7":1.64841,"17.0":0.21419,"17.1":0.42838,"17.2":0.69055,"17.3":8.49908,"17.4":1.24745,"17.5":0},P:{"4":0.2183,"20":0.03119,"21":0.05198,"22":0.06237,"23":1.80873,"24":1.68399,"5.0-5.4":0.03119,"6.2-6.4":0.0104,"7.2-7.4":0.02079,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.0104,"13.0":0.03119,"16.0":0.02079,"17.0":0.0104,"18.0":0.02079,"19.0":0.0104},I:{"0":0.41993,"3":0,"4":0.00004,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00025,"4.4":0,"4.4.3-4.4.4":0.00101},K:{"0":1.64997,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00443,"8":0.04868,"9":0.01328,"10":0.00885,"11":0.04868,_:"6 5.5"},S:{"2.5":0.00611,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":33.3789},R:{_:"0"},M:{"0":0.85554},Q:{"14.9":1.84552},O:{"0":2.6094},H:{"0":0}}; +module.exports={C:{"40":0.00396,"44":0.00793,"48":0.02775,"50":0.00396,"52":0.04757,"60":0.01189,"61":0.00793,"68":0.07928,"78":0.06342,"87":0.00793,"91":0.06739,"98":0.00396,"102":0.09117,"103":0.00793,"104":0.02775,"105":0.01189,"108":0.00396,"109":0.00396,"113":0.00396,"115":2.83426,"116":0.00396,"117":0.00793,"118":0.00793,"119":0.03171,"120":0.00396,"121":0.03568,"122":0.08324,"123":0.0991,"124":3.97193,"125":1.47857,"126":0.02378,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 45 46 47 49 51 53 54 55 56 57 58 59 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 99 100 101 106 107 110 111 112 114 127 128 3.5","3.6":0.00396},D:{"21":0.00396,"37":0.00396,"38":0.00396,"39":0.00396,"40":0.00396,"41":0.00396,"42":0.00396,"43":0.00396,"44":0.00793,"45":0.85622,"46":0.00793,"47":0.00396,"48":0.00396,"51":0.01189,"66":0.00793,"70":0.00396,"79":0.07532,"80":0.00396,"81":0.00396,"83":0.00396,"85":0.01982,"86":0.00793,"87":0.03964,"89":0.00396,"90":0.00793,"91":0.01586,"92":0.00396,"94":0.01189,"95":0.01189,"96":0.00396,"97":0.00793,"98":0.01189,"99":0.01586,"100":0.00396,"101":0.00793,"102":0.00793,"103":0.08721,"104":0.01586,"105":0.03568,"106":0.00793,"107":0.01189,"108":0.02775,"109":0.60649,"110":0.00793,"111":0.01586,"112":0.02775,"113":0.02378,"114":0.03568,"115":0.03964,"116":0.36865,"117":0.05153,"118":1.00686,"119":0.03964,"120":0.13081,"121":0.32108,"122":1.05839,"123":7.99935,"124":3.23066,"125":0.01586,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 49 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 71 72 73 74 75 76 77 78 84 88 93 126 127"},F:{"31":0.00396,"46":0.00396,"75":0.00396,"89":0.01189,"95":0.02378,"105":0.00396,"106":0.00396,"107":0.66992,"108":0.28541,"109":0.17838,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00396,"92":0.00396,"95":0.00396,"99":0.00396,"100":0.00793,"105":0.00793,"108":0.00396,"109":0.07928,"110":0.00793,"112":0.00793,"113":0.00793,"114":0.00396,"116":0.00396,"117":0.01189,"119":0.02378,"120":0.07928,"121":0.0555,"122":0.18631,"123":3.29012,"124":1.542,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 96 97 98 101 102 103 104 106 107 111 115 118"},E:{"9":0.02378,"14":0.0555,"15":0.00793,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00793,"11.1":0.00396,"12.1":0.01982,"13.1":0.13478,"14.1":0.26559,"15.1":0.01189,"15.2-15.3":0.01586,"15.4":0.02378,"15.5":0.07135,"15.6":0.40433,"16.0":0.07135,"16.1":0.15856,"16.2":0.07928,"16.3":0.21802,"16.4":0.03964,"16.5":0.14667,"16.6":0.47964,"17.0":0.10703,"17.1":0.22991,"17.2":0.22198,"17.3":0.72938,"17.4":2.10885,"17.5":0.01586},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00323,"5.0-5.1":0.00323,"6.0-6.1":0.00806,"7.0-7.1":0.0129,"8.1-8.4":0.00323,"9.0-9.2":0.00806,"9.3":0.04032,"10.0-10.2":0.00806,"10.3":0.06451,"11.0-11.2":0.05484,"11.3-11.4":0.01613,"12.0-12.1":0.01129,"12.2-12.5":0.26289,"13.0-13.1":0.00484,"13.2":0.05322,"13.3":0.0129,"13.4-13.7":0.05,"14.0-14.4":0.09838,"14.5-14.8":0.14999,"15.0-15.1":0.06935,"15.2-15.3":0.07903,"15.4":0.09032,"15.5":0.11451,"15.6-15.8":0.99995,"16.0":0.23386,"16.1":0.48707,"16.2":0.23386,"16.3":0.41288,"16.4":0.08548,"16.5":0.17902,"16.6-16.7":1.41444,"17.0":0.16935,"17.1":0.31289,"17.2":0.41611,"17.3":3.03533,"17.4":6.85126,"17.5":0.0629},P:{"4":0.16766,"20":0.01048,"21":0.05239,"22":0.07335,"23":0.25149,"24":2.71404,"5.0-5.4":0.01048,"6.2-6.4":0.01048,"7.2-7.4":0.02096,_:"8.2 9.2 10.1 11.1-11.2 12.0 15.0","13.0":0.01048,"14.0":0.01048,"16.0":0.01048,"17.0":0.01048,"18.0":0.02096,"19.0":0.01048},I:{"0":0.47489,"3":0,"4":0.00005,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0001,"4.2-4.3":0.00029,"4.4":0,"4.4.3-4.4.4":0.00119},A:{"7":0.00443,"8":0.04873,"9":0.01329,"10":0.01772,"11":0.06202,_:"6 5.5"},K:{"0":1.25549,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00604,_:"3.0-3.1"},Q:{"14.9":2.19107},O:{"0":2.2635},H:{"0":0},L:{"0":33.94126},R:{_:"0"},M:{"0":1.00198}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js index e55189065697fb..1cc88a4ea82978 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LV.js @@ -1 +1 @@ -module.exports={C:{"16":0.02004,"48":0.00668,"50":0.00668,"52":0.02004,"68":0.00668,"72":0.01336,"78":0.00668,"88":0.00668,"93":0.00668,"95":0.00668,"98":0.00668,"99":0.00668,"102":0.02672,"103":0.00668,"108":0.00668,"109":0.00668,"110":0.00668,"113":0.00668,"114":0.00668,"115":0.76163,"117":0.01336,"118":0.01336,"119":0.02004,"120":0.00668,"121":0.02004,"122":0.07349,"123":2.40516,"124":0.95538,"125":0.00668,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 94 96 97 100 101 104 105 106 107 111 112 116 126 127 3.5 3.6"},D:{"38":0.00668,"44":0.00668,"49":0.01336,"51":0.00668,"65":0.00668,"69":0.00668,"70":0.00668,"79":0.08685,"80":0.06681,"83":0.00668,"84":0.00668,"85":0.00668,"86":0.00668,"87":0.07349,"89":0.01336,"90":0.00668,"91":0.00668,"92":0.00668,"93":0.00668,"94":0.00668,"96":0.00668,"97":0.02672,"99":0.01336,"100":0.00668,"101":0.01336,"102":0.04009,"103":0.08685,"104":0.02004,"105":0.04009,"106":0.04677,"107":0.02004,"108":0.12694,"109":2.2515,"110":0.02004,"111":0.02672,"112":0.02004,"113":0.00668,"114":0.02004,"115":0.02672,"116":0.41422,"117":0.02004,"118":0.05345,"119":0.18039,"120":1.089,"121":6.03962,"122":31.67462,"123":5.95277,"124":0.00668,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 46 47 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 71 72 73 74 75 76 77 78 81 88 95 98 125 126"},F:{"36":0.00668,"94":0.01336,"95":0.1403,"99":0.00668,"104":0.00668,"106":0.01336,"107":1.76378,"108":0.51444,"109":0.00668,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 100 101 102 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00668,"108":0.00668,"109":0.08017,"112":0.00668,"113":0.00668,"117":0.00668,"118":0.00668,"119":0.02672,"120":0.06681,"121":0.88857,"122":6.40708,"123":0.27392,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 114 115 116"},E:{"9":0.00668,"14":0.01336,"15":0.00668,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00668,"12.1":0.02004,"13.1":0.04009,"14.1":0.05345,"15.1":0.00668,"15.2-15.3":0.00668,"15.4":0.00668,"15.5":0.01336,"15.6":0.14698,"16.0":0.00668,"16.1":0.05345,"16.2":0.03341,"16.3":0.05345,"16.4":0.04009,"16.5":0.05345,"16.6":0.17371,"17.0":0.04009,"17.1":0.09353,"17.2":0.22047,"17.3":0.45431,"17.4":0.19375},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00156,"5.0-5.1":0.00078,"6.0-6.1":0.00469,"7.0-7.1":0.00547,"8.1-8.4":0.00156,"9.0-9.2":0.00313,"9.3":0.01954,"10.0-10.2":0.00313,"10.3":0.03283,"11.0-11.2":0.02345,"11.3-11.4":0.00782,"12.0-12.1":0.00703,"12.2-12.5":0.13522,"13.0-13.1":0.00234,"13.2":0.02345,"13.3":0.00703,"13.4-13.7":0.02658,"14.0-14.4":0.05081,"14.5-14.8":0.07973,"15.0-15.1":0.03439,"15.2-15.3":0.04064,"15.4":0.04768,"15.5":0.06097,"15.6-15.8":0.5104,"16.0":0.12428,"16.1":0.25715,"16.2":0.12428,"16.3":0.2212,"16.4":0.0469,"16.5":0.09927,"16.6-16.7":0.75192,"17.0":0.0977,"17.1":0.19541,"17.2":0.31499,"17.3":3.87686,"17.4":0.56902,"17.5":0},P:{"4":0.04157,"20":0.03118,"21":0.03118,"22":0.05196,"23":1.19509,"24":1.37175,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","6.2-6.4":0.01039,"13.0":0.01039,"17.0":0.01039,"19.0":0.02078},I:{"0":0.07602,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00018},K:{"0":0.29203,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.05568,"9":0.00696,"10":0.00696,"11":0.09743,_:"6 7 5.5"},S:{"2.5":0.00332,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.65591},R:{_:"0"},M:{"0":0.34186},Q:{_:"14.9"},O:{"0":0.02987},H:{"0":0.01}}; +module.exports={C:{"16":0.0307,"48":0.01228,"52":0.03683,"60":0.02456,"68":0.00614,"72":0.01228,"77":0.00614,"78":0.00614,"79":0.00614,"88":0.01228,"93":0.00614,"95":0.00614,"99":0.01228,"102":0.0307,"103":0.00614,"108":0.00614,"110":0.01228,"113":0.00614,"114":0.00614,"115":0.81035,"118":0.01228,"119":0.02456,"120":0.00614,"121":0.01842,"122":0.02456,"123":0.09209,"124":2.91603,"125":1.64525,"126":0.01228,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 80 81 82 83 84 85 86 87 89 90 91 92 94 96 97 98 100 101 104 105 106 107 109 111 112 116 117 127 128 3.5 3.6"},D:{"49":0.01228,"51":0.00614,"59":0.00614,"70":0.00614,"78":0.00614,"79":0.08595,"80":0.05525,"83":0.00614,"86":0.02456,"87":0.03683,"88":0.00614,"89":0.03683,"90":0.01228,"91":0.01228,"92":0.00614,"93":0.00614,"94":0.00614,"96":0.00614,"97":0.05525,"98":0.01228,"99":0.01228,"100":0.00614,"101":0.00614,"102":0.01842,"103":0.06139,"104":0.00614,"105":0.01228,"106":0.03683,"107":0.00614,"108":0.03683,"109":2.09954,"110":0.01228,"111":0.01842,"112":0.06753,"113":0.01842,"114":0.02456,"115":0.0307,"116":0.33765,"117":0.01842,"118":0.06139,"119":0.10436,"120":0.22714,"121":1.03135,"122":3.14317,"123":26.44681,"124":9.53387,"125":0.01842,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 52 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 76 77 81 84 85 95 126 127"},F:{"20":0.00614,"72":0.00614,"94":0.01228,"95":0.12892,"99":0.00614,"103":0.00614,"104":0.00614,"107":1.14799,"108":0.87174,"109":0.28853,_:"9 11 12 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 100 101 102 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00614,"105":0.00614,"106":0.00614,"108":0.00614,"109":0.03683,"111":0.01228,"114":0.00614,"115":0.00614,"116":0.00614,"117":0.00614,"118":0.00614,"119":0.01228,"120":0.03683,"121":0.02456,"122":0.38676,"123":3.59745,"124":1.63297,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 107 110 112 113"},E:{"9":0.00614,"14":0.01228,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01228,"13.1":0.0307,"14.1":0.04297,"15.1":0.00614,"15.2-15.3":0.00614,"15.4":0.01228,"15.5":0.01228,"15.6":0.14734,"16.0":0.00614,"16.1":0.03683,"16.2":0.0307,"16.3":0.07981,"16.4":0.04911,"16.5":0.0307,"16.6":0.18417,"17.0":0.04297,"17.1":0.09822,"17.2":0.10436,"17.3":0.20873,"17.4":0.81035,"17.5":0.01228},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0.0019,"6.0-6.1":0.00475,"7.0-7.1":0.00761,"8.1-8.4":0.0019,"9.0-9.2":0.00475,"9.3":0.02377,"10.0-10.2":0.00475,"10.3":0.03804,"11.0-11.2":0.03233,"11.3-11.4":0.00951,"12.0-12.1":0.00666,"12.2-12.5":0.15501,"13.0-13.1":0.00285,"13.2":0.03138,"13.3":0.00761,"13.4-13.7":0.02948,"14.0-14.4":0.05801,"14.5-14.8":0.08844,"15.0-15.1":0.04089,"15.2-15.3":0.0466,"15.4":0.05325,"15.5":0.06752,"15.6-15.8":0.5896,"16.0":0.13789,"16.1":0.28719,"16.2":0.13789,"16.3":0.24345,"16.4":0.0504,"16.5":0.10556,"16.6-16.7":0.834,"17.0":0.09985,"17.1":0.18449,"17.2":0.24535,"17.3":1.78971,"17.4":4.0397,"17.5":0.03709},P:{"4":0.02057,"20":0.02057,"21":0.07198,"22":0.04113,"23":0.3085,"24":2.44742,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","6.2-6.4":0.01028,"13.0":0.01028,"16.0":0.01028,"17.0":0.01028,"19.0":0.02057},I:{"0":0.06921,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.05108,"9":0.00638,"10":0.00638,"11":0.09577,_:"6 7 5.5"},K:{"0":0.32819,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00772},O:{"0":0.03861},H:{"0":0},L:{"0":25.73113},R:{_:"0"},M:{"0":0.3166}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js index abd07f1a2a13c8..d0361b2c535f38 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/LY.js @@ -1 +1 @@ -module.exports={C:{"30":0.00085,"34":0.00765,"43":0.00085,"49":0.00085,"52":0.0017,"61":0.00085,"67":0.0017,"68":0.00595,"83":0.00085,"88":0.00085,"94":0.00085,"102":0.00255,"103":0.0136,"105":0.0017,"115":0.26095,"118":0.0017,"120":0.0017,"121":0.00255,"122":0.00595,"123":0.1462,"124":0.06035,"125":0.00595,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 104 106 107 108 109 110 111 112 113 114 116 117 119 126 127 3.5 3.6"},D:{"11":0.00085,"19":0.00085,"25":0.00085,"31":0.00085,"32":0.00085,"33":0.0034,"41":0.00085,"43":0.00255,"47":0.00085,"48":0.00085,"49":0.00255,"54":0.00255,"55":0.00085,"56":0.00085,"58":0.20825,"59":0.00085,"60":0.00085,"63":0.00425,"64":0.00085,"65":0.00085,"67":0.00085,"68":0.0119,"69":0.0017,"70":0.0068,"71":0.0017,"73":0.0051,"74":0.00085,"75":0.00255,"76":0.00085,"77":0.00085,"78":0.0034,"79":0.0102,"80":0.0051,"83":0.00595,"84":0.00425,"85":0.0017,"86":0.0085,"87":0.00935,"88":0.0034,"89":0.0425,"90":0.00425,"91":0.0085,"92":0.0017,"93":0.0034,"94":0.00425,"95":0.00425,"96":0.00595,"97":0.00255,"98":0.00765,"99":0.0119,"100":0.00425,"101":0.00085,"102":0.0153,"103":0.0153,"104":0.0306,"105":0.00425,"106":0.0051,"107":0.0102,"108":0.0102,"109":0.88825,"110":0.0017,"111":0.0102,"112":0.0068,"113":0.0102,"114":0.00425,"115":0.00425,"116":0.0408,"117":0.0068,"118":0.00425,"119":0.034,"120":0.0765,"121":0.16745,"122":2.2576,"123":0.6715,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 26 27 28 29 30 34 35 36 37 38 39 40 42 44 45 46 50 51 52 53 57 61 62 66 72 81 124 125 126"},F:{"12":0.00085,"22":0.00085,"36":0.00085,"37":0.0017,"46":0.00085,"79":0.00595,"80":0.00085,"81":0.0034,"83":0.00085,"84":0.0017,"85":0.0017,"86":0.0017,"92":0.00085,"95":0.0357,"102":0.00085,"106":0.0034,"107":0.20315,"108":0.0612,"109":0.00425,_:"9 11 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0017},B:{"13":0.00085,"14":0.00085,"15":0.00085,"16":0.00085,"17":0.00085,"18":0.0034,"84":0.0017,"89":0.00085,"90":0.0017,"92":0.01105,"100":0.0017,"109":0.01785,"110":0.0017,"111":0.0017,"112":0.00085,"113":0.0017,"114":0.0017,"115":0.00085,"116":0.0017,"117":0.00255,"118":0.00085,"119":0.00765,"120":0.0153,"121":0.0493,"122":0.70975,"123":0.051,_:"12 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108"},E:{"14":0.0017,"15":0.0017,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 17.5","5.1":0.0323,"13.1":0.0034,"14.1":0.0034,"15.2-15.3":0.00085,"15.4":0.0119,"15.5":0.00255,"15.6":0.01275,"16.0":0.0017,"16.1":0.0051,"16.2":0.0187,"16.3":0.0085,"16.4":0.0034,"16.5":0.00425,"16.6":0.0391,"17.0":0.0102,"17.1":0.0051,"17.2":0.0221,"17.3":0.0391,"17.4":0.04165},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00262,"5.0-5.1":0.00131,"6.0-6.1":0.00787,"7.0-7.1":0.00918,"8.1-8.4":0.00262,"9.0-9.2":0.00524,"9.3":0.03278,"10.0-10.2":0.00524,"10.3":0.05507,"11.0-11.2":0.03934,"11.3-11.4":0.01311,"12.0-12.1":0.0118,"12.2-12.5":0.22684,"13.0-13.1":0.00393,"13.2":0.03934,"13.3":0.0118,"13.4-13.7":0.04458,"14.0-14.4":0.08523,"14.5-14.8":0.13374,"15.0-15.1":0.05769,"15.2-15.3":0.06818,"15.4":0.07998,"15.5":0.10227,"15.6-15.8":0.85621,"16.0":0.20848,"16.1":0.43138,"16.2":0.20848,"16.3":0.37107,"16.4":0.07867,"16.5":0.16652,"16.6-16.7":1.26137,"17.0":0.1639,"17.1":0.3278,"17.2":0.52841,"17.3":6.50353,"17.4":0.95455,"17.5":0},P:{"4":0.26473,"20":0.08146,"21":0.18328,"22":0.32583,"23":1.54768,"24":0.6822,"5.0-5.4":0.01018,"6.2-6.4":0.07127,"7.2-7.4":0.66184,_:"8.2 10.1","9.2":0.03055,"11.1-11.2":0.08146,"12.0":0.02036,"13.0":0.05091,"14.0":0.08146,"15.0":0.05091,"16.0":0.12219,"17.0":0.07127,"18.0":0.06109,"19.0":0.27492},I:{"0":0.09112,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":5.969,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00091,"11":0.01184,_:"6 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":68.5655},R:{_:"0"},M:{"0":0.06405},Q:{_:"14.9"},O:{"0":0.4209},H:{"0":0.07}}; +module.exports={C:{"23":0.00061,"30":0.00061,"31":0.00061,"34":0.00122,"37":0.00061,"41":0.00061,"43":0.00061,"45":0.00122,"49":0.00122,"52":0.00061,"56":0.00061,"72":0.00122,"78":0.00061,"99":0.00061,"100":0.00061,"102":0.00366,"103":0.01525,"105":0.00122,"108":0.00061,"110":0.00061,"112":0.00061,"113":0.00061,"115":0.10675,"118":0.00244,"120":0.00061,"121":0.00183,"122":0.00061,"123":0.0061,"124":0.07503,"125":0.06222,"126":0.00061,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 32 33 35 36 38 39 40 42 44 46 47 48 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 101 104 106 107 109 111 114 116 117 119 127 128 3.5 3.6"},D:{"11":0.00366,"23":0.00061,"31":0.00244,"32":0.00122,"33":0.00122,"38":0.00061,"39":0.00061,"41":0.00061,"43":0.00183,"47":0.00305,"49":0.00183,"50":0.00061,"54":0.00305,"55":0.00061,"56":0.00061,"57":0.00061,"58":0.13115,"61":0.00061,"62":0.00061,"63":0.00427,"64":0.00122,"65":0.00061,"67":0.00122,"68":0.00366,"69":0.00122,"70":0.00732,"71":0.00122,"72":0.00061,"73":0.0061,"74":0.00122,"75":0.00061,"76":0.00122,"78":0.00244,"79":0.00793,"80":0.00366,"81":0.00183,"83":0.00549,"84":0.00061,"85":0.00122,"86":0.00732,"87":0.01159,"88":0.00183,"89":0.01464,"90":0.00183,"91":0.00671,"92":0.00915,"93":0.00488,"94":0.00244,"95":0.01342,"96":0.00122,"97":0.00305,"98":0.00793,"99":0.00671,"100":0.00244,"102":0.01342,"103":0.01708,"104":0.0244,"105":0.00671,"106":0.00427,"107":0.00244,"108":0.00244,"109":0.60878,"110":0.00366,"111":0.00366,"112":0.00305,"113":0.00183,"114":0.01037,"115":0.00183,"116":0.03355,"117":0.00305,"118":0.00183,"119":0.01464,"120":0.04087,"121":0.03416,"122":0.10248,"123":1.5128,"124":0.75335,"125":0.00183,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 34 35 36 37 40 42 44 45 46 48 51 52 53 59 60 66 77 101 126 127"},F:{"28":0.00122,"43":0.00183,"46":0.00061,"63":0.00061,"65":0.00061,"69":0.00061,"79":0.00549,"81":0.00061,"82":0.00244,"84":0.00122,"85":0.00122,"86":0.00061,"93":0.00061,"95":0.02562,"106":0.00061,"107":0.06344,"108":0.0915,"109":0.02684,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 66 67 68 70 71 72 73 74 75 76 77 78 80 83 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00061,"16":0.00061,"17":0.00061,"18":0.00366,"84":0.00061,"85":0.00122,"89":0.00061,"92":0.00793,"100":0.00183,"109":0.01403,"110":0.00122,"112":0.00061,"113":0.00061,"114":0.00061,"116":0.00854,"117":0.00061,"118":0.00061,"119":0.00305,"120":0.0061,"121":0.00427,"122":0.03416,"123":0.26962,"124":0.14518,_:"13 14 15 79 80 81 83 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 115"},E:{"13":0.00061,"14":0.00183,"15":0.00061,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.00244,"13.1":0.00549,"14.1":0.00305,"15.1":0.00061,"15.2-15.3":0.00183,"15.4":0.00671,"15.5":0.00122,"15.6":0.01769,"16.0":0.00122,"16.1":0.00671,"16.2":0.03111,"16.3":0.00488,"16.4":0.00244,"16.5":0.00183,"16.6":0.01647,"17.0":0.0061,"17.1":0.01342,"17.2":0.00976,"17.3":0.02135,"17.4":0.06649,"17.5":0.00122},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0023,"5.0-5.1":0.0023,"6.0-6.1":0.00576,"7.0-7.1":0.00922,"8.1-8.4":0.0023,"9.0-9.2":0.00576,"9.3":0.0288,"10.0-10.2":0.00576,"10.3":0.04609,"11.0-11.2":0.03917,"11.3-11.4":0.01152,"12.0-12.1":0.00807,"12.2-12.5":0.1878,"13.0-13.1":0.00346,"13.2":0.03802,"13.3":0.00922,"13.4-13.7":0.03572,"14.0-14.4":0.07028,"14.5-14.8":0.10715,"15.0-15.1":0.04954,"15.2-15.3":0.05646,"15.4":0.06452,"15.5":0.0818,"15.6-15.8":0.71433,"16.0":0.16706,"16.1":0.34795,"16.2":0.16706,"16.3":0.29495,"16.4":0.06106,"16.5":0.12789,"16.6-16.7":1.01044,"17.0":0.12098,"17.1":0.22352,"17.2":0.29726,"17.3":2.16835,"17.4":4.89435,"17.5":0.04493},P:{"4":0.1933,"20":0.09156,"21":0.31539,"22":0.37643,"23":0.91565,"24":1.80077,"5.0-5.4":0.01017,"6.2-6.4":0.07122,"7.2-7.4":0.87495,_:"8.2 10.1","9.2":0.0407,"11.1-11.2":0.10174,"12.0":0.03052,"13.0":0.05087,"14.0":0.10174,"15.0":0.06104,"16.0":0.20348,"17.0":0.09156,"18.0":0.09156,"19.0":0.33574},I:{"0":0.15898,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.0004},A:{"8":0.00061,"9":0.00061,"11":0.00976,_:"6 7 10 5.5"},K:{"0":7.59285,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.43194},H:{"0":0.06},L:{"0":69.20628},R:{_:"0"},M:{"0":0.07512}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js index 9cfd096949c9c5..be58abe194c75a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MA.js @@ -1 +1 @@ -module.exports={C:{"52":0.06876,"55":0.00344,"60":0.00344,"64":0.00344,"65":0.02407,"72":0.00344,"78":0.00688,"81":0.00344,"82":0.00344,"88":0.00344,"95":0.00344,"99":0.00344,"102":0.00688,"103":0.00688,"104":0.00344,"105":0.00344,"106":0.00688,"107":0.00688,"108":0.01031,"109":0.01375,"110":0.01031,"111":0.00688,"113":0.00344,"114":0.00344,"115":0.35411,"117":0.00344,"118":0.00688,"119":0.00344,"120":0.00344,"121":0.01375,"122":0.05501,"123":1.02452,"124":0.39193,"125":0.00344,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 61 62 63 66 67 68 69 70 71 73 74 75 76 77 79 80 83 84 85 86 87 89 90 91 92 93 94 96 97 98 100 101 112 116 126 127 3.5 3.6"},D:{"11":0.00344,"29":0.00344,"33":0.00344,"38":0.00344,"41":0.00344,"43":0.00688,"47":0.00344,"48":0.00688,"49":0.02407,"50":0.00344,"55":0.00344,"56":0.01375,"58":0.09626,"63":0.00344,"65":0.01031,"66":0.00344,"67":0.08939,"68":0.00688,"69":0.00688,"70":0.00688,"71":0.00344,"72":0.01375,"73":0.01375,"74":0.00344,"75":0.00344,"76":0.00344,"77":0.00344,"78":0.00344,"79":0.03438,"80":0.00344,"81":0.00688,"83":0.0275,"84":0.00688,"85":0.01719,"86":0.01375,"87":0.04469,"88":0.01375,"89":0.00688,"90":0.00688,"91":0.01031,"92":0.00344,"93":0.00688,"94":0.01031,"95":0.00688,"96":0.00688,"97":0.00688,"98":0.01031,"99":0.01375,"100":0.01031,"101":0.03438,"102":0.02407,"103":0.05845,"104":0.01375,"105":0.06188,"106":0.08251,"107":0.11345,"108":0.13752,"109":2.46505,"110":0.10658,"111":0.08939,"112":0.06876,"113":0.02407,"114":0.03782,"115":0.03094,"116":0.15815,"117":0.02063,"118":0.04126,"119":0.17878,"120":0.3438,"121":1.13454,"122":13.99266,"123":4.19436,"124":0.02063,"125":0.00344,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 37 39 40 42 44 45 46 51 52 53 54 57 59 60 61 62 64 126"},F:{"40":0.00344,"46":0.00344,"79":0.00344,"82":0.00344,"85":0.00688,"86":0.00344,"87":0.00344,"91":0.00344,"92":0.01031,"93":0.00344,"94":0.00344,"95":0.06532,"96":0.00344,"102":0.02063,"105":0.00344,"106":0.02063,"107":1.36489,"108":0.33005,"109":0.01031,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 88 89 90 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00344,"18":0.00688,"89":0.00344,"90":0.00344,"92":0.03438,"100":0.00344,"103":0.00344,"106":0.00688,"107":0.01719,"108":0.01719,"109":0.05501,"110":0.01031,"111":0.00688,"112":0.01031,"114":0.00344,"116":0.00688,"117":0.00688,"118":0.00344,"119":0.01031,"120":0.03782,"121":0.13064,"122":2.64382,"123":0.21316,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 113 115"},E:{"9":0.00344,"14":0.09283,"15":0.00344,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.02407,"11.1":0.00344,"12.1":0.00688,"13.1":0.02407,"14.1":0.05845,"15.1":0.01719,"15.2-15.3":0.00344,"15.4":0.00688,"15.5":0.00688,"15.6":0.08595,"16.0":0.00688,"16.1":0.01719,"16.2":0.01031,"16.3":0.03438,"16.4":0.01031,"16.5":0.01719,"16.6":0.09283,"17.0":0.02063,"17.1":0.04126,"17.2":0.0722,"17.3":0.16159,"17.4":0.06532},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00161,"5.0-5.1":0.00081,"6.0-6.1":0.00483,"7.0-7.1":0.00564,"8.1-8.4":0.00161,"9.0-9.2":0.00322,"9.3":0.02013,"10.0-10.2":0.00322,"10.3":0.03382,"11.0-11.2":0.02416,"11.3-11.4":0.00805,"12.0-12.1":0.00725,"12.2-12.5":0.13931,"13.0-13.1":0.00242,"13.2":0.02416,"13.3":0.00725,"13.4-13.7":0.02738,"14.0-14.4":0.05234,"14.5-14.8":0.08214,"15.0-15.1":0.03543,"15.2-15.3":0.04187,"15.4":0.04912,"15.5":0.06281,"15.6-15.8":0.52585,"16.0":0.12804,"16.1":0.26494,"16.2":0.12804,"16.3":0.22789,"16.4":0.04832,"16.5":0.10227,"16.6-16.7":0.77468,"17.0":0.10066,"17.1":0.20132,"17.2":0.32453,"17.3":3.99419,"17.4":0.58624,"17.5":0},P:{"4":0.2876,"20":0.04425,"21":0.09955,"22":0.09955,"23":1.46012,"24":0.73006,"5.0-5.4":0.03318,"6.2-6.4":0.03318,"7.2-7.4":0.2876,_:"8.2 10.1","9.2":0.01106,"11.1-11.2":0.02212,"12.0":0.01106,"13.0":0.04425,"14.0":0.03318,"15.0":0.01106,"16.0":0.02212,"17.0":0.03318,"18.0":0.02212,"19.0":0.05531},I:{"0":0.18301,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00044},K:{"0":0.44285,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02625,"9":0.0075,"10":0.0075,"11":0.20253,_:"6 7 5.5"},S:{"2.5":0.00656,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":54.74961},R:{_:"0"},M:{"0":0.16408},Q:{_:"14.9"},O:{"0":0.13782},H:{"0":0.01}}; +module.exports={C:{"44":0.00369,"51":0.00369,"52":0.07745,"65":0.02582,"68":0.00369,"72":0.00369,"76":0.00369,"78":0.00738,"82":0.00369,"84":0.00369,"89":0.00369,"91":0.00369,"94":0.00369,"97":0.00369,"99":0.00369,"102":0.00738,"103":0.00738,"104":0.00369,"105":0.00369,"106":0.00738,"107":0.00738,"108":0.00369,"109":0.00369,"110":0.00738,"111":0.00738,"113":0.00369,"115":0.42043,"117":0.00369,"118":0.00369,"119":0.01106,"120":0.00369,"121":0.01106,"122":0.01475,"123":0.05901,"124":1.00682,"125":0.53107,"126":0.01475,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 75 77 79 80 81 83 85 86 87 88 90 92 93 95 96 98 100 101 112 114 116 127 128 3.5 3.6"},D:{"11":0.00369,"38":0.00369,"41":0.00369,"43":0.00369,"46":0.00369,"47":0.00369,"48":0.00369,"49":0.03319,"50":0.00369,"55":0.00369,"56":0.02213,"58":0.11433,"62":0.00369,"63":0.00369,"64":0.00369,"65":0.01106,"66":0.00738,"67":0.04057,"68":0.01106,"69":0.01844,"70":0.01106,"72":0.02213,"73":0.02582,"74":0.00369,"75":0.01106,"76":0.00369,"77":0.00738,"78":0.00369,"79":0.05901,"80":0.00738,"81":0.01106,"83":0.05532,"84":0.00369,"85":0.02582,"86":0.02213,"87":0.05163,"88":0.01475,"89":0.00738,"90":0.00369,"91":0.01106,"92":0.00738,"93":0.00738,"94":0.01106,"95":0.01106,"96":0.04426,"97":0.00738,"98":0.01475,"99":0.01106,"100":0.00738,"101":0.01844,"102":0.02213,"103":0.0627,"104":0.02582,"105":0.03688,"106":0.04794,"107":0.0627,"108":0.07007,"109":2.63323,"110":0.08482,"111":0.04426,"112":0.05163,"113":0.01475,"114":0.02582,"115":0.02213,"116":0.17702,"117":0.02582,"118":0.02582,"119":0.12539,"120":0.21022,"121":0.25816,"122":0.83718,"123":13.54234,"124":6.67159,"125":0.03688,"126":0.00369,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 51 52 53 54 57 59 60 61 71 127"},F:{"28":0.00369,"40":0.00738,"46":0.00369,"79":0.00369,"85":0.00738,"86":0.00369,"89":0.00738,"92":0.00738,"93":0.00369,"94":0.00369,"95":0.06638,"102":0.01475,"105":0.00369,"106":0.00738,"107":0.88512,"108":0.96626,"109":0.32454,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 87 88 90 91 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00369,"18":0.01106,"92":0.03319,"100":0.00369,"106":0.00738,"107":0.01106,"108":0.00738,"109":0.05532,"110":0.00738,"111":0.00369,"114":0.00369,"116":0.00369,"117":0.00369,"118":0.00369,"119":0.00738,"120":0.02582,"121":0.0295,"122":0.15858,"123":1.94726,"124":1.17278,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 112 113 115"},E:{"9":0.00369,"14":0.06638,"15":0.00369,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 9.1 10.1 11.1 17.5","5.1":0.00369,"7.1":0.00369,"12.1":0.00369,"13.1":0.02582,"14.1":0.05901,"15.1":0.02582,"15.2-15.3":0.01475,"15.4":0.00738,"15.5":0.00738,"15.6":0.13646,"16.0":0.00738,"16.1":0.01844,"16.2":0.01844,"16.3":0.0295,"16.4":0.01475,"16.5":0.01844,"16.6":0.10695,"17.0":0.01475,"17.1":0.03688,"17.2":0.05163,"17.3":0.08851,"17.4":0.23234},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0016,"5.0-5.1":0.0016,"6.0-6.1":0.004,"7.0-7.1":0.00641,"8.1-8.4":0.0016,"9.0-9.2":0.004,"9.3":0.02002,"10.0-10.2":0.004,"10.3":0.03203,"11.0-11.2":0.02723,"11.3-11.4":0.00801,"12.0-12.1":0.00561,"12.2-12.5":0.13054,"13.0-13.1":0.0024,"13.2":0.02643,"13.3":0.00641,"13.4-13.7":0.02483,"14.0-14.4":0.04885,"14.5-14.8":0.07448,"15.0-15.1":0.03444,"15.2-15.3":0.03924,"15.4":0.04485,"15.5":0.05686,"15.6-15.8":0.49654,"16.0":0.11613,"16.1":0.24186,"16.2":0.11613,"16.3":0.20502,"16.4":0.04245,"16.5":0.0889,"16.6-16.7":0.70236,"17.0":0.08409,"17.1":0.15537,"17.2":0.20662,"17.3":1.50723,"17.4":3.40208,"17.5":0.03123},P:{"4":0.38382,"20":0.04149,"21":0.10373,"22":0.08299,"23":0.33195,"24":1.76349,"5.0-5.4":0.02075,"6.2-6.4":0.05187,"7.2-7.4":0.26971,"8.2":0.02075,"9.2":0.01037,_:"10.1","11.1-11.2":0.03112,"12.0":0.01037,"13.0":0.05187,"14.0":0.01037,"15.0":0.01037,"16.0":0.02075,"17.0":0.04149,"18.0":0.02075,"19.0":0.07261},I:{"0":0.44624,"3":0,"4":0.00004,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00009,"4.2-4.3":0.00027,"4.4":0,"4.4.3-4.4.4":0.00112},A:{"8":0.02309,"9":0.0077,"10":0.00385,"11":0.14239,_:"6 7 5.5"},K:{"0":0.46857,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00631,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.15778},H:{"0":0.03},L:{"0":51.38612},R:{_:"0"},M:{"0":0.18302}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js index 19af9ba5a648a0..151a0f04ee465a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MC.js @@ -1 +1 @@ -module.exports={C:{"2":0.00645,"3":0.02581,"4":0.01936,"5":0.00645,"6":0.00645,"7":0.00645,"9":0.00645,"10":0.00645,"11":0.00645,"12":0.00645,"14":0.00645,"15":0.00645,"16":0.00645,"17":0.00645,"18":0.00645,"21":0.00645,"22":0.00645,"23":0.00645,"24":0.00645,"25":0.00645,"26":0.00645,"27":0.00645,"28":0.00645,"29":0.00645,"30":0.0129,"31":0.01936,"34":0.0129,"35":0.00645,"36":0.01936,"37":0.00645,"38":0.00645,"39":0.0129,"40":0.03226,"41":0.0129,"42":0.00645,"71":0.00645,"78":0.54842,"82":0.19356,"100":0.20001,"102":0.00645,"103":0.00645,"107":0.38712,"108":0.22582,"110":0.00645,"115":0.49035,"118":0.00645,"119":0.00645,"121":0.00645,"122":0.06452,"123":2.19368,"124":0.85166,_:"8 13 19 20 32 33 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 104 105 106 109 111 112 113 114 116 117 120 125 126 127","3.5":0.01936,"3.6":0.03871},D:{"4":0.00645,"6":0.00645,"7":0.00645,"11":0.0129,"13":0.00645,"16":0.00645,"19":0.0129,"20":0.00645,"21":0.01936,"22":0.00645,"25":0.00645,"26":0.00645,"28":0.0129,"29":0.00645,"30":0.00645,"31":0.02581,"32":0.00645,"33":0.00645,"34":0.0129,"35":0.0129,"36":0.0129,"37":0.03226,"38":0.01936,"39":0.03871,"40":0.03226,"41":0.04516,"42":0.02581,"43":0.05162,"44":0.09678,"45":0.07097,"46":0.06452,"47":0.05162,"51":0.12904,"57":0.01936,"65":0.0129,"68":0.00645,"69":0.00645,"70":0.12904,"72":0.03871,"74":0.02581,"75":0.00645,"76":0.02581,"77":0.00645,"78":0.02581,"79":0.12904,"80":0.09678,"81":0.02581,"83":0.02581,"84":0.09033,"85":0.32905,"86":0.14194,"87":0.57423,"88":0.00645,"89":0.00645,"90":0.01936,"91":0.00645,"95":0.0129,"98":0.07097,"99":0.01936,"102":0.0129,"103":0.97425,"104":0.0129,"105":0.52906,"106":0.0129,"107":2.5679,"108":0.15485,"109":1.1162,"110":0.0129,"111":0.83231,"112":0.83876,"113":0.0129,"115":0.00645,"116":2.02593,"117":0.18711,"118":0.05162,"119":0.1742,"120":0.28389,"121":2.14206,"122":12.46526,"123":3.25181,_:"5 8 9 10 12 14 15 17 18 23 24 27 48 49 50 52 53 54 55 56 58 59 60 61 62 63 64 66 67 71 73 92 93 94 96 97 100 101 114 124 125 126"},F:{"11":0.00645,"12":0.00645,"23":0.00645,"30":0.00645,"31":0.01936,"32":0.00645,"53":0.00645,"79":0.23872,"90":0.00645,"102":0.00645,"107":4.94223,"108":4.5293,_:"9 15 16 17 18 19 20 21 22 24 25 26 27 28 29 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 109 10.0-10.1 10.5 10.6 11.6","9.5-9.6":0.00645,"11.1":0.00645,"11.5":0.00645,"12.1":0.01936},B:{"12":0.01936,"13":0.00645,"80":0.00645,"86":0.05162,"97":0.00645,"99":0.18711,"108":0.25808,"110":0.00645,"114":0.00645,"119":0.00645,"120":0.00645,"121":0.13549,"122":5.05837,"123":0.1613,_:"14 15 16 17 18 79 81 83 84 85 87 88 89 90 91 92 93 94 95 96 98 100 101 102 103 104 105 106 107 109 111 112 113 115 116 117 118"},E:{"4":0.00645,"5":0.00645,"6":0.00645,"8":0.0129,"9":0.1613,"12":0.00645,"14":0.01936,_:"0 7 10 11 13 15 3.2 10.1 11.1 17.5","3.1":0.00645,"5.1":0.00645,"6.1":0.00645,"7.1":0.00645,"9.1":0.03871,"12.1":0.03226,"13.1":0.39357,"14.1":0.11614,"15.1":0.00645,"15.2-15.3":0.0129,"15.4":0.01936,"15.5":0.03871,"15.6":0.61294,"16.0":0.03871,"16.1":0.06452,"16.2":0.07097,"16.3":0.9678,"16.4":0.15485,"16.5":0.12259,"16.6":0.69682,"17.0":0.03871,"17.1":0.18066,"17.2":0.67746,"17.3":4.11638,"17.4":0.93554},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00361,"5.0-5.1":0.0018,"6.0-6.1":0.01082,"7.0-7.1":0.01263,"8.1-8.4":0.00361,"9.0-9.2":0.00722,"9.3":0.0451,"10.0-10.2":0.00722,"10.3":0.07577,"11.0-11.2":0.05412,"11.3-11.4":0.01804,"12.0-12.1":0.01624,"12.2-12.5":0.31209,"13.0-13.1":0.00541,"13.2":0.05412,"13.3":0.01624,"13.4-13.7":0.06134,"14.0-14.4":0.11726,"14.5-14.8":0.18401,"15.0-15.1":0.07938,"15.2-15.3":0.09381,"15.4":0.11004,"15.5":0.14071,"15.6-15.8":1.17801,"16.0":0.28684,"16.1":0.59352,"16.2":0.28684,"16.3":0.51053,"16.4":0.10824,"16.5":0.22911,"16.6-16.7":1.73545,"17.0":0.2255,"17.1":0.451,"17.2":0.72701,"17.3":8.94786,"17.4":1.31332,"17.5":0},P:{"4":0.06644,"21":0.01107,"22":0.09966,"23":1.05199,"24":0.45402,_:"20 5.0-5.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 13.0 14.0 16.0 17.0","6.2-6.4":0.07751,"12.0":0.01107,"15.0":0.01107,"18.0":0.02215,"19.0":0.01107},I:{"0":0.99969,"3":0,"4":0.0001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.0001,"4.2-4.3":0.0006,"4.4":0,"4.4.3-4.4.4":0.00241},K:{"0":0.08158,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.02605,"7":0.05861,"8":0.60559,"9":0.10419,"10":0.12372,"11":0.42977,_:"5.5"},S:{"2.5":0.02128,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":13.81494},R:{_:"0"},M:{"0":0.21637},Q:{_:"14.9"},O:{"0":0.14897},H:{"0":0}}; +module.exports={C:{"2":0.01228,"3":0.01228,"4":0.01228,"5":0.00614,"6":0.01228,"7":0.00614,"8":0.00614,"10":0.00614,"11":0.00614,"12":0.01228,"13":0.00614,"15":0.00614,"16":0.00614,"18":0.00614,"19":0.00614,"20":0.01228,"21":0.00614,"23":0.00614,"24":0.00614,"25":0.00614,"26":0.01228,"28":0.01228,"29":0.00614,"30":0.01228,"31":0.03683,"33":0.00614,"34":0.00614,"35":0.02455,"36":0.00614,"37":0.01228,"38":0.02455,"39":0.01841,"40":0.04297,"41":0.01228,"42":0.01841,"43":0.00614,"44":0.00614,"53":0.00614,"60":0.00614,"78":0.95139,"82":0.1289,"87":0.00614,"99":0.00614,"102":0.01228,"103":0.00614,"105":0.00614,"106":0.01841,"107":0.32531,"108":0.01228,"109":0.00614,"110":0.01228,"111":0.00614,"112":0.00614,"115":0.42966,"118":0.00614,"121":0.00614,"122":0.01841,"123":0.10435,"124":2.04395,"125":1.43015,_:"9 14 17 22 27 32 45 46 47 48 49 50 51 52 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 100 101 104 113 114 116 117 119 120 126 127 128","3.5":0.01841,"3.6":0.06138},D:{"6":0.00614,"7":0.00614,"11":0.01841,"12":0.00614,"17":0.00614,"18":0.00614,"19":0.00614,"21":0.02455,"22":0.00614,"23":0.00614,"25":0.00614,"26":0.00614,"27":0.01228,"28":0.01228,"29":0.00614,"30":0.00614,"31":0.03069,"33":0.01228,"34":0.01228,"35":0.01228,"36":0.01841,"37":0.01841,"38":0.03069,"39":0.03069,"40":0.03683,"41":0.04297,"42":0.04297,"43":0.08593,"44":0.13504,"45":0.09821,"46":0.07366,"47":0.06138,"51":0.15345,"57":0.01228,"65":0.01228,"70":0.11662,"72":0.02455,"74":0.01841,"76":0.03069,"78":0.02455,"79":0.10435,"80":0.07366,"81":0.01841,"83":0.03069,"84":0.06752,"85":0.42966,"86":0.14117,"87":0.38056,"90":0.02455,"92":0.00614,"93":0.00614,"94":0.00614,"97":0.00614,"98":0.34373,"99":0.07366,"102":0.01841,"103":1.43015,"105":0.16573,"106":0.13504,"107":0.27007,"108":0.41125,"109":1.14781,"110":0.46035,"111":0.02455,"112":0.42352,"116":1.33195,"117":0.01841,"119":0.06138,"120":0.25166,"121":0.53401,"122":1.70023,"123":10.02949,"124":4.24136,"126":0.01228,_:"4 5 8 9 10 13 14 15 16 20 24 32 48 49 50 52 53 54 55 56 58 59 60 61 62 63 64 66 67 68 69 71 73 75 77 88 89 91 95 96 100 101 104 113 114 115 118 125 127"},F:{"20":0.00614,"25":0.00614,"30":0.00614,"31":0.03683,"32":0.01228,"33":0.00614,"83":0.00614,"90":0.07366,"96":0.09821,"107":0.15959,"108":9.18245,"109":3.22245,_:"9 11 12 15 16 17 18 19 21 22 23 24 26 27 28 29 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 89 91 92 93 94 95 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.6","11.5":0.00614,"12.1":0.02455},B:{"12":0.01228,"13":0.00614,"18":0.00614,"86":0.04297,"92":0.00614,"98":0.01841,"99":0.10435,"103":0.00614,"107":0.00614,"108":0.02455,"109":0.01228,"110":0.00614,"115":0.00614,"118":0.00614,"119":0.01841,"120":0.02455,"121":0.01228,"122":0.2578,"123":2.38154,"124":1.05574,_:"14 15 16 17 79 80 81 83 84 85 87 88 89 90 91 93 94 95 96 97 100 101 102 104 105 106 111 112 113 114 116 117"},E:{"4":0.01841,"5":0.01841,"6":0.00614,"8":0.02455,"9":0.27621,"14":0.01228,_:"0 7 10 11 12 13 15 3.1 10.1 11.1 15.4","3.2":0.00614,"5.1":0.01228,"6.1":0.00614,"7.1":0.00614,"9.1":0.00614,"12.1":0.00614,"13.1":0.0491,"14.1":0.13504,"15.1":0.00614,"15.2-15.3":0.00614,"15.5":0.03069,"15.6":0.63835,"16.0":0.00614,"16.1":0.03683,"16.2":0.19642,"16.3":0.83477,"16.4":0.05524,"16.5":0.15345,"16.6":0.76725,"17.0":0.08593,"17.1":0.14731,"17.2":0.7427,"17.3":1.68181,"17.4":3.59687,"17.5":0.03683},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00411,"5.0-5.1":0.00411,"6.0-6.1":0.01027,"7.0-7.1":0.01643,"8.1-8.4":0.00411,"9.0-9.2":0.01027,"9.3":0.05135,"10.0-10.2":0.01027,"10.3":0.08215,"11.0-11.2":0.06983,"11.3-11.4":0.02054,"12.0-12.1":0.01438,"12.2-12.5":0.33477,"13.0-13.1":0.00616,"13.2":0.06778,"13.3":0.01643,"13.4-13.7":0.06367,"14.0-14.4":0.12528,"14.5-14.8":0.191,"15.0-15.1":0.08831,"15.2-15.3":0.10064,"15.4":0.11501,"15.5":0.14582,"15.6-15.8":1.27336,"16.0":0.2978,"16.1":0.62025,"16.2":0.2978,"16.3":0.52578,"16.4":0.10885,"16.5":0.22797,"16.6-16.7":1.80119,"17.0":0.21565,"17.1":0.39844,"17.2":0.52988,"17.3":3.86527,"17.4":8.72459,"17.5":0.0801},P:{"4":0.10895,"20":0.06537,"21":0.39222,"22":0.15253,"23":0.04358,"24":1.04591,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","6.2-6.4":0.07626,"7.2-7.4":0.03268,"17.0":0.01089,"19.0":0.06537},I:{"0":1.03077,"3":0,"4":0.0001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00021,"4.2-4.3":0.00062,"4.4":0,"4.4.3-4.4.4":0.00259},A:{"6":0.03697,"7":0.06778,"8":0.64701,"9":0.1294,"10":0.11708,"11":0.51144,"5.5":0.00616},K:{"0":0.18151,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.05407,_:"3.0-3.1"},Q:{"14.9":0.00386},O:{"0":0.12358},H:{"0":0},L:{"0":13.78322},R:{_:"0"},M:{"0":0.24331}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js index 4068af7d0cfada..8e266360092f71 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MD.js @@ -1 +1 @@ -module.exports={C:{"4":0.00395,"40":0.00395,"52":0.11049,"57":0.00395,"60":0.00789,"68":0.01184,"72":0.00395,"77":0.00395,"78":0.00789,"82":0.00395,"88":0.33146,"91":0.01184,"92":0.01184,"95":0.00395,"102":0.00789,"103":0.00395,"105":0.00789,"112":0.00395,"113":0.01184,"114":0.00395,"115":0.6866,"116":0.00395,"117":0.00395,"118":0.00395,"119":0.01184,"120":0.00789,"121":0.01578,"122":0.07103,"123":0.99439,"124":0.4459,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 83 84 85 86 87 89 90 93 94 96 97 98 99 100 101 104 106 107 108 109 110 111 125 126 127 3.5","3.6":0.02368},D:{"11":0.00395,"22":0.00395,"34":0.00789,"38":0.00395,"39":0.00395,"40":0.00395,"41":0.00789,"42":0.00395,"43":0.00395,"44":0.00789,"45":0.00395,"46":0.00789,"47":0.00395,"49":0.02368,"51":0.01973,"56":0.00395,"66":0.01578,"68":0.00395,"69":0.00395,"70":0.00789,"71":0.00789,"74":0.00395,"75":0.00789,"78":0.00395,"79":0.01578,"80":0.00395,"81":0.00789,"83":0.00789,"84":0.00395,"85":0.00395,"86":0.00789,"87":0.01973,"88":0.00789,"89":0.00789,"90":0.01578,"92":0.01578,"94":0.01184,"95":0.00789,"96":0.00395,"97":0.00789,"98":0.00789,"99":0.05524,"100":0.01184,"101":0.00789,"102":0.10654,"103":0.03551,"104":0.01184,"105":0.03551,"106":0.146,"107":0.02762,"108":0.08681,"109":4.23406,"110":0.07892,"111":0.03157,"112":0.1026,"113":0.1973,"114":0.24071,"115":0.02762,"116":0.17362,"117":0.02762,"118":0.12627,"119":0.0947,"120":0.2999,"121":1.35742,"122":14.84091,"123":4.57341,"124":0.00789,"125":0.00395,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 48 50 52 53 54 55 57 58 59 60 61 62 63 64 65 67 72 73 76 77 91 93 126"},F:{"20":0.00395,"28":0.00395,"31":0.00395,"36":0.00395,"79":0.00789,"82":0.03551,"85":0.0513,"86":0.02762,"95":0.33936,"99":0.00395,"101":0.00395,"102":0.00789,"103":0.00395,"104":0.00395,"105":0.00789,"106":0.03551,"107":1.71256,"108":0.42617,"109":0.00395,_:"9 11 12 15 16 17 18 19 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 87 88 89 90 91 92 93 94 96 97 98 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.01973,"18":0.00395,"92":0.01184,"105":0.00395,"107":0.00395,"108":0.00789,"109":0.03157,"110":0.01184,"111":0.00395,"112":0.00789,"114":0.00395,"117":0.00789,"118":0.01184,"119":0.00789,"120":0.13416,"121":0.06314,"122":1.61391,"123":0.11838,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 113 115 116"},E:{"9":0.00789,"14":0.01184,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.02368,"9.1":0.00789,"11.1":0.00395,"12.1":0.03551,"13.1":0.01578,"14.1":0.03946,"15.1":0.00395,"15.2-15.3":0.00395,"15.4":0.02368,"15.5":0.01184,"15.6":0.07103,"16.0":0.01578,"16.1":0.01578,"16.2":0.01184,"16.3":0.03946,"16.4":0.08681,"16.5":0.08287,"16.6":0.0513,"17.0":0.03157,"17.1":0.05919,"17.2":0.13416,"17.3":0.22492,"17.4":0.09076},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0027,"5.0-5.1":0.00135,"6.0-6.1":0.00811,"7.0-7.1":0.00946,"8.1-8.4":0.0027,"9.0-9.2":0.00541,"9.3":0.03378,"10.0-10.2":0.00541,"10.3":0.05675,"11.0-11.2":0.04054,"11.3-11.4":0.01351,"12.0-12.1":0.01216,"12.2-12.5":0.23377,"13.0-13.1":0.00405,"13.2":0.04054,"13.3":0.01216,"13.4-13.7":0.04594,"14.0-14.4":0.08783,"14.5-14.8":0.13783,"15.0-15.1":0.05946,"15.2-15.3":0.07027,"15.4":0.08243,"15.5":0.1054,"15.6-15.8":0.88237,"16.0":0.21485,"16.1":0.44456,"16.2":0.21485,"16.3":0.3824,"16.4":0.08108,"16.5":0.17161,"16.6-16.7":1.29991,"17.0":0.16891,"17.1":0.33781,"17.2":0.54455,"17.3":6.70221,"17.4":0.98371,"17.5":0},P:{"4":0.15688,"20":0.02092,"21":0.06275,"22":0.09413,"23":1.27599,"24":1.02498,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 14.0","7.2-7.4":0.04184,"9.2":0.01046,"11.1-11.2":0.01046,"13.0":0.01046,"15.0":0.01046,"16.0":0.01046,"17.0":0.02092,"18.0":0.01046,"19.0":0.04184},I:{"0":0.07235,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},K:{"0":0.35719,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00395,"8":0.05524,"9":0.00395,"10":0.00789,"11":0.11443,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":44.70888},R:{_:"0"},M:{"0":0.1453},Q:{_:"14.9"},O:{"0":0.10292},H:{"0":0}}; +module.exports={C:{"38":0.00428,"39":0.00428,"40":0.00428,"52":0.10693,"60":0.00428,"78":0.01711,"86":0.00855,"88":0.25234,"91":0.01283,"92":0.00855,"95":0.00428,"102":0.00428,"103":0.01283,"104":0.01283,"105":0.00428,"106":0.00428,"107":0.00428,"109":0.00428,"110":0.00428,"111":0.00428,"113":0.01711,"115":0.68004,"116":0.00428,"118":0.02139,"119":0.00855,"120":0.00428,"121":0.00855,"122":0.01283,"123":0.03422,"124":1.06925,"125":0.61161,"126":0.00428,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 87 89 90 93 94 96 97 98 99 100 101 108 112 114 117 127 128 3.5","3.6":0.00855},D:{"33":0.00428,"34":0.00855,"38":0.00428,"39":0.00428,"40":0.00428,"41":0.01283,"42":0.00428,"43":0.00855,"44":0.00855,"45":0.00855,"46":0.00428,"47":0.00428,"49":0.01711,"51":0.01711,"70":0.00855,"71":0.00428,"75":0.00428,"79":0.02566,"80":0.01711,"81":0.00428,"83":0.00428,"84":0.00855,"85":0.00428,"86":0.00855,"87":0.01711,"88":0.00855,"89":0.00428,"90":0.00855,"91":0.00428,"92":0.00428,"94":0.01711,"96":0.01711,"97":0.01283,"98":0.00428,"99":0.23096,"100":0.02139,"101":0.01711,"102":0.10693,"103":0.04277,"104":0.02566,"105":0.03422,"106":0.1112,"107":0.03849,"108":0.70143,"109":4.1658,"110":0.03849,"111":0.01283,"112":0.07271,"113":0.29084,"114":0.29511,"115":0.03422,"116":0.21813,"117":0.02139,"118":0.11976,"119":0.06416,"120":0.15397,"121":0.26517,"122":0.74848,"123":15.12775,"124":6.88597,"125":0.01711,"126":0.00855,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 72 73 74 76 77 78 93 95 127"},F:{"31":0.00428,"36":0.00428,"77":0.00428,"79":0.03422,"82":0.00855,"85":0.04705,"86":0.01711,"94":0.00855,"95":0.44053,"101":0.00855,"102":0.00855,"103":0.00855,"105":0.00428,"106":0.00428,"107":1.04787,"108":1.1163,"109":0.27801,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 83 84 87 88 89 90 91 92 93 96 97 98 99 100 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00428},B:{"14":0.00428,"16":0.00428,"18":0.00855,"92":0.00428,"105":0.00428,"108":0.00428,"109":0.01711,"110":0.00428,"112":0.02994,"113":0.00428,"115":0.00428,"117":0.00428,"118":0.02139,"119":0.00855,"120":0.07699,"121":0.01283,"122":0.1112,"123":1.20184,"124":0.56884,_:"12 13 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 107 111 114 116"},E:{"9":0.01711,"14":0.01283,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.03422,"9.1":0.00428,"12.1":0.00428,"13.1":0.01283,"14.1":0.02139,"15.1":0.00428,"15.2-15.3":0.00428,"15.4":0.01283,"15.5":0.01283,"15.6":0.07271,"16.0":0.01283,"16.1":0.01711,"16.2":0.02566,"16.3":0.03849,"16.4":0.05988,"16.5":0.07699,"16.6":0.09837,"17.0":0.04277,"17.1":0.03849,"17.2":0.05988,"17.3":0.08554,"17.4":0.38065,"17.5":0.00428},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00264,"5.0-5.1":0.00264,"6.0-6.1":0.0066,"7.0-7.1":0.01055,"8.1-8.4":0.00264,"9.0-9.2":0.0066,"9.3":0.03298,"10.0-10.2":0.0066,"10.3":0.05277,"11.0-11.2":0.04485,"11.3-11.4":0.01319,"12.0-12.1":0.00923,"12.2-12.5":0.21502,"13.0-13.1":0.00396,"13.2":0.04353,"13.3":0.01055,"13.4-13.7":0.04089,"14.0-14.4":0.08047,"14.5-14.8":0.12268,"15.0-15.1":0.05672,"15.2-15.3":0.06464,"15.4":0.07387,"15.5":0.09366,"15.6-15.8":0.81787,"16.0":0.19128,"16.1":0.39838,"16.2":0.19128,"16.3":0.3377,"16.4":0.06992,"16.5":0.14643,"16.6-16.7":1.1569,"17.0":0.13851,"17.1":0.25592,"17.2":0.34034,"17.3":2.48264,"17.4":5.60376,"17.5":0.05145},P:{"4":0.09306,"20":0.03102,"21":0.0517,"22":0.06204,"23":0.19646,"24":1.76812,_:"5.0-5.4 8.2 10.1 12.0 13.0 15.0 16.0","6.2-6.4":0.02068,"7.2-7.4":0.03102,"9.2":0.01034,"11.1-11.2":0.02068,"14.0":0.01034,"17.0":0.01034,"18.0":0.01034,"19.0":0.02068},I:{"0":0.11399,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00029},A:{"6":0.00436,"7":0.00436,"8":0.06975,"9":0.01308,"10":0.00872,"11":0.12206,_:"5.5"},K:{"0":0.43495,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00572,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0744},H:{"0":0},L:{"0":41.61705},R:{_:"0"},M:{"0":0.14308}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js index cf3f79ff520955..6bd9b1f62695ab 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ME.js @@ -1 +1 @@ -module.exports={C:{"3":0.00325,"4":0.00325,"31":0.00325,"35":0.00325,"39":0.00325,"40":0.00325,"41":0.00325,"52":0.02274,"68":0.00325,"75":0.0065,"78":0.0065,"87":0.00325,"88":0.0065,"89":0.00325,"91":0.00325,"102":0.00325,"103":0.0065,"107":0.00325,"112":0.00325,"113":0.00325,"114":0.09094,"115":0.23386,"116":0.00974,"118":0.0065,"121":0.0065,"122":0.01624,"123":0.70482,"124":0.38002,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 36 37 38 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 90 92 93 94 95 96 97 98 99 100 101 104 105 106 108 109 110 111 117 119 120 125 126 127 3.5","3.6":0.00325},D:{"28":0.00325,"31":0.00325,"37":0.00325,"38":0.01624,"39":0.00325,"40":0.00325,"41":0.00325,"42":0.00325,"43":0.01299,"44":0.00974,"45":0.00974,"46":0.0065,"47":0.0065,"49":0.04872,"51":0.00974,"53":0.00325,"64":0.0065,"66":0.00974,"68":0.00325,"69":0.00325,"70":0.00325,"72":0.0065,"75":0.00325,"77":0.0065,"79":0.44173,"80":0.01624,"81":0.00325,"83":0.03248,"84":0.00325,"85":0.01624,"86":0.05522,"87":0.32155,"88":0.02274,"89":0.0065,"90":0.01299,"91":0.00325,"93":0.03248,"94":0.04872,"95":0.00325,"97":0.0065,"98":0.00974,"99":0.0812,"100":0.00974,"102":0.00325,"103":0.26958,"104":0.0065,"105":0.03898,"106":0.06171,"107":0.03898,"108":0.02923,"109":2.50746,"110":0.03573,"111":0.00974,"112":0.0065,"114":0.05197,"115":0.00974,"116":0.20462,"117":0.03573,"118":0.02598,"119":0.09094,"120":0.21762,"121":1.11082,"122":13.76827,"123":3.94632,"124":0.00325,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 48 50 52 54 55 56 57 58 59 60 61 62 63 65 67 71 73 74 76 78 92 96 101 113 125 126"},F:{"28":0.00974,"31":0.00325,"46":0.10069,"68":0.66909,"82":0.0065,"95":0.02598,"102":0.00325,"106":0.01299,"107":1.29595,"108":0.2436,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00325},B:{"92":0.01299,"98":0.00325,"101":0.00974,"107":0.0065,"109":0.0065,"110":0.00325,"113":0.00325,"115":0.00325,"117":0.01624,"118":0.00325,"119":0.02598,"120":0.00974,"121":0.04872,"122":1.66622,"123":0.12342,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 99 100 102 103 104 105 106 108 111 112 114 116"},E:{"8":0.00325,"9":0.01624,"14":0.01624,_:"0 4 5 6 7 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 17.5","9.1":0.00325,"13.1":0.03248,"14.1":0.02923,"15.1":0.01299,"15.2-15.3":0.0065,"15.4":0.00974,"15.5":0.0065,"15.6":0.0747,"16.0":0.00325,"16.1":0.01949,"16.2":0.07146,"16.3":0.02598,"16.4":0.02923,"16.5":0.00974,"16.6":0.10069,"17.0":0.01624,"17.1":0.11693,"17.2":0.0747,"17.3":0.23061,"17.4":0.0812},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00277,"5.0-5.1":0.00138,"6.0-6.1":0.0083,"7.0-7.1":0.00969,"8.1-8.4":0.00277,"9.0-9.2":0.00554,"9.3":0.0346,"10.0-10.2":0.00554,"10.3":0.05813,"11.0-11.2":0.04152,"11.3-11.4":0.01384,"12.0-12.1":0.01246,"12.2-12.5":0.23942,"13.0-13.1":0.00415,"13.2":0.04152,"13.3":0.01246,"13.4-13.7":0.04705,"14.0-14.4":0.08996,"14.5-14.8":0.14116,"15.0-15.1":0.06089,"15.2-15.3":0.07197,"15.4":0.08442,"15.5":0.10795,"15.6-15.8":0.90372,"16.0":0.22005,"16.1":0.45532,"16.2":0.22005,"16.3":0.39166,"16.4":0.08304,"16.5":0.17576,"16.6-16.7":1.33136,"17.0":0.17299,"17.1":0.34599,"17.2":0.55773,"17.3":6.86442,"17.4":1.00752,"17.5":0},P:{"4":0.44963,"20":0.02091,"21":0.09411,"22":0.11502,"23":1.82988,"24":1.1293,"5.0-5.4":0.06274,"6.2-6.4":0.1673,"7.2-7.4":0.02091,_:"8.2 9.2 10.1 15.0","11.1-11.2":0.01046,"12.0":0.02091,"13.0":0.01046,"14.0":0.01046,"16.0":0.01046,"17.0":0.02091,"18.0":0.0732,"19.0":0.10456},I:{"0":0.10085,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},K:{"0":0.27679,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00325,"7":0.0065,"8":0.05846,"9":0.00974,"10":0.01299,"11":0.04222,_:"5.5"},S:{"2.5":0.00675,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":49.7647},R:{_:"0"},M:{"0":0.31055},Q:{_:"14.9"},O:{"0":0.02025},H:{"0":0}}; +module.exports={C:{"3":0.00305,"4":0.00305,"29":0.00305,"38":0.00305,"40":0.00305,"52":0.0244,"68":0.00305,"75":0.0061,"78":0.0061,"81":0.00305,"91":0.0122,"106":0.00305,"107":0.00305,"112":0.00305,"113":0.00305,"114":0.0915,"115":0.2135,"116":0.00305,"117":0.00305,"118":0.0122,"121":0.00305,"122":0.00305,"123":0.01525,"124":0.83875,"125":0.36905,"126":0.00305,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 79 80 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 108 109 110 111 119 120 127 128 3.5","3.6":0.0061},D:{"33":0.00305,"34":0.00305,"35":0.00305,"36":0.00305,"37":0.00305,"38":0.0061,"39":0.00305,"40":0.00305,"41":0.0061,"42":0.0061,"43":0.00915,"44":0.01525,"45":0.0061,"46":0.0122,"47":0.00915,"49":0.03355,"51":0.01525,"53":0.0122,"66":0.00915,"70":0.00305,"71":0.00305,"73":0.00305,"75":0.0061,"76":0.00305,"77":0.00305,"79":0.44835,"80":0.00915,"81":0.0122,"83":0.0244,"84":0.0122,"85":0.0244,"86":0.00915,"87":0.27755,"88":0.0244,"89":0.0061,"90":0.0061,"91":0.00305,"93":0.02135,"94":0.061,"95":0.00305,"96":0.00305,"97":0.0061,"98":0.01525,"99":0.0427,"100":0.00305,"102":0.00305,"103":0.03965,"104":0.00915,"105":0.0305,"106":0.03965,"107":0.02135,"108":0.0183,"109":2.3546,"110":0.00915,"111":0.0061,"112":0.0183,"113":0.00305,"114":0.03965,"115":0.0183,"116":0.22265,"117":0.05795,"118":0.0244,"119":0.09455,"120":0.10065,"121":0.1403,"122":0.54595,"123":12.261,"124":4.85255,"125":0.0183,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 48 50 52 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 72 74 78 92 101 126 127"},F:{"28":0.0122,"31":0.00305,"36":0.00305,"40":0.0061,"46":0.0427,"68":0.91195,"70":0.00305,"95":0.0305,"106":0.00305,"107":0.7015,"108":0.3904,"109":0.2013,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00305},B:{"12":0.00305,"18":0.00305,"85":0.00305,"92":0.0122,"100":0.00305,"107":0.00915,"109":0.00305,"110":0.00305,"113":0.00305,"115":0.00305,"118":0.00305,"119":0.00915,"120":0.0122,"121":0.00915,"122":0.0854,"123":1.10105,"124":0.5307,_:"13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 108 111 112 114 116 117"},E:{"4":0.00305,"7":0.00305,"8":0.00305,"9":0.0244,"14":0.02135,_:"0 5 6 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00305,"12.1":0.00305,"13.1":0.0122,"14.1":0.01525,"15.1":0.0061,"15.2-15.3":0.00305,"15.4":0.01525,"15.5":0.0183,"15.6":0.0488,"16.0":0.0061,"16.1":0.00915,"16.2":0.07625,"16.3":0.0366,"16.4":0.03355,"16.5":0.01525,"16.6":0.1159,"17.0":0.02745,"17.1":0.11285,"17.2":0.04575,"17.3":0.1403,"17.4":0.3233},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00268,"5.0-5.1":0.00268,"6.0-6.1":0.00669,"7.0-7.1":0.0107,"8.1-8.4":0.00268,"9.0-9.2":0.00669,"9.3":0.03345,"10.0-10.2":0.00669,"10.3":0.05352,"11.0-11.2":0.04549,"11.3-11.4":0.01338,"12.0-12.1":0.00937,"12.2-12.5":0.21807,"13.0-13.1":0.00401,"13.2":0.04415,"13.3":0.0107,"13.4-13.7":0.04147,"14.0-14.4":0.08161,"14.5-14.8":0.12442,"15.0-15.1":0.05753,"15.2-15.3":0.06556,"15.4":0.07492,"15.5":0.09499,"15.6-15.8":0.82948,"16.0":0.19399,"16.1":0.40404,"16.2":0.19399,"16.3":0.3425,"16.4":0.07091,"16.5":0.1485,"16.6-16.7":1.17332,"17.0":0.14048,"17.1":0.25955,"17.2":0.34517,"17.3":2.51788,"17.4":5.68329,"17.5":0.05218},P:{"4":0.56815,"20":0.08264,"21":0.1033,"22":0.18594,"23":0.55782,"24":3.41925,"5.0-5.4":0.01033,"6.2-6.4":0.14462,"7.2-7.4":0.06198,_:"8.2 9.2 12.0 13.0 16.0","10.1":0.04132,"11.1-11.2":0.02066,"14.0":0.02066,"15.0":0.01033,"17.0":0.01033,"18.0":0.05165,"19.0":0.07231},I:{"0":0.18688,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00047},A:{"6":0.00305,"7":0.0061,"8":0.061,"9":0.0122,"10":0.0122,"11":0.0488,_:"5.5"},K:{"0":0.2363,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00695,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0278},H:{"0":0},L:{"0":50.4466},R:{_:"0"},M:{"0":0.3197}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js index 2d6e97400edd2d..7b16b127c44c2a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MG.js @@ -1 +1 @@ -module.exports={C:{"40":0.00406,"43":0.00406,"45":0.00406,"46":0.00406,"47":0.00406,"48":0.00811,"52":0.3407,"60":0.00406,"67":0.00811,"68":0.00811,"72":0.04056,"75":0.02434,"77":0.00406,"78":0.00811,"79":0.00406,"80":0.00406,"84":0.00406,"88":0.00406,"89":0.00406,"91":0.00811,"92":0.00811,"93":0.00406,"94":0.00406,"95":0.00811,"96":0.00406,"97":0.00406,"99":0.00406,"100":0.00406,"101":0.00811,"102":0.01217,"103":0.00406,"106":0.01217,"109":0.00811,"110":0.00811,"111":0.01622,"112":0.00406,"113":0.00811,"114":0.00811,"115":1.08295,"116":0.00811,"117":0.00406,"118":0.00811,"119":0.00811,"120":0.05273,"121":0.02434,"122":0.09734,"123":2.19024,"124":0.72197,"125":0.00811,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 69 70 71 73 74 76 81 82 83 85 86 87 90 98 104 105 107 108 126 127 3.5 3.6"},D:{"11":0.04867,"32":0.00811,"40":0.00811,"42":0.04867,"43":0.02839,"48":0.00811,"49":0.00811,"50":0.00406,"55":0.00406,"56":0.00406,"57":0.01622,"60":0.00811,"61":0.00406,"63":0.00406,"64":0.01217,"65":0.00811,"68":0.00406,"69":0.00406,"70":0.01217,"71":0.00811,"73":0.01217,"74":0.04867,"76":0.00811,"77":0.00406,"78":0.01217,"79":0.04056,"80":0.01622,"81":0.10951,"83":0.01217,"85":0.05273,"86":0.01622,"87":0.07706,"88":0.01622,"89":0.01217,"90":0.02028,"91":0.00406,"92":0.00811,"93":0.00406,"94":0.00811,"95":0.02839,"96":0.00811,"97":0.00406,"98":0.00406,"99":0.00811,"100":0.00811,"101":0.01622,"102":0.02839,"103":0.04867,"104":0.01622,"105":0.02434,"106":0.05273,"107":0.02434,"108":0.03245,"109":4.563,"110":0.01622,"111":0.02028,"112":0.01217,"113":0.01217,"114":0.02434,"115":0.02839,"116":0.15413,"117":0.08112,"118":0.04056,"119":0.55162,"120":0.45022,"121":0.92071,"122":11.39736,"123":2.87165,"124":0.00406,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 37 38 39 41 44 45 46 47 51 52 53 54 58 59 62 66 67 72 75 84 125 126"},F:{"36":0.00406,"37":0.00811,"40":0.08518,"53":0.0649,"65":0.00406,"71":0.00406,"74":0.00811,"79":0.02434,"85":0.00811,"86":0.00406,"95":0.08923,"102":0.00406,"103":0.00406,"105":0.00406,"106":0.00811,"107":0.83554,"108":0.27986,"109":0.00406,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 66 67 68 69 70 72 73 75 76 77 78 80 81 82 83 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00406},B:{"12":0.00406,"14":0.00406,"15":0.01217,"16":0.00811,"17":0.00811,"18":0.04056,"84":0.02028,"85":0.01622,"89":0.04462,"90":0.01217,"92":0.17035,"100":0.02839,"103":0.00406,"106":0.00406,"109":0.18252,"113":0.04056,"114":0.02028,"115":0.00811,"116":0.00406,"117":0.00811,"118":0.01217,"119":0.03245,"120":0.08518,"121":0.14602,"122":3.43138,"123":0.19063,_:"13 79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 107 108 110 111 112"},E:{"7":0.01217,"14":0.00406,"15":0.00406,_:"0 4 5 6 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 15.4 17.5","12.1":0.00406,"13.1":0.01217,"14.1":0.00811,"15.1":0.00406,"15.5":0.02839,"15.6":0.0649,"16.0":0.04462,"16.1":0.00406,"16.2":0.00406,"16.3":0.00811,"16.4":0.00811,"16.5":0.00406,"16.6":0.07706,"17.0":0.00406,"17.1":0.02839,"17.2":0.02434,"17.3":0.08112,"17.4":0.0365},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0.00035,"6.0-6.1":0.00212,"7.0-7.1":0.00247,"8.1-8.4":0.00071,"9.0-9.2":0.00141,"9.3":0.00883,"10.0-10.2":0.00141,"10.3":0.01483,"11.0-11.2":0.01059,"11.3-11.4":0.00353,"12.0-12.1":0.00318,"12.2-12.5":0.06108,"13.0-13.1":0.00106,"13.2":0.01059,"13.3":0.00318,"13.4-13.7":0.012,"14.0-14.4":0.02295,"14.5-14.8":0.03601,"15.0-15.1":0.01554,"15.2-15.3":0.01836,"15.4":0.02154,"15.5":0.02754,"15.6-15.8":0.23056,"16.0":0.05614,"16.1":0.11616,"16.2":0.05614,"16.3":0.09992,"16.4":0.02118,"16.5":0.04484,"16.6-16.7":0.33966,"17.0":0.04413,"17.1":0.08827,"17.2":0.14229,"17.3":1.75125,"17.4":0.25704,"17.5":0},P:{"4":0.07417,"20":0.0106,"21":0.02119,"22":0.0106,"23":0.33907,"24":0.13775,"5.0-5.4":0.02119,_:"6.2-6.4 8.2 10.1 12.0 16.0 17.0 18.0","7.2-7.4":0.03179,"9.2":0.0106,"11.1-11.2":0.0106,"13.0":0.0106,"14.0":0.03179,"15.0":0.0106,"19.0":0.0106},I:{"0":0.13615,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00033},K:{"0":2.36098,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02434,_:"6 7 8 9 10 5.5"},S:{"2.5":0.6895,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.63232},R:{_:"0"},M:{"0":0.3507},Q:{"14.9":0.01189},O:{"0":0.93321},H:{"0":4.54}}; +module.exports={C:{"40":0.00744,"43":0.00372,"48":0.01488,"49":0.00372,"52":0.03719,"56":0.00372,"59":0.00372,"65":0.00744,"67":0.00372,"68":0.00744,"72":0.01488,"75":0.01488,"78":0.01116,"79":0.00372,"82":0.00372,"88":0.00744,"89":0.01488,"91":0.0186,"92":0.00744,"95":0.01488,"96":0.00372,"97":0.00372,"99":0.00744,"100":0.00372,"102":0.00372,"103":0.00372,"104":0.00372,"105":0.00372,"106":0.00372,"109":0.01116,"110":0.00744,"111":0.02603,"112":0.00744,"113":0.01488,"114":0.01116,"115":1.06363,"116":0.00744,"117":0.00372,"118":0.01116,"119":0.00372,"120":0.07066,"121":0.0186,"122":0.02975,"123":0.09298,"124":1.91157,"125":1.02644,"126":0.01488,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 44 45 46 47 50 51 53 54 55 57 58 60 61 62 63 64 66 69 70 71 73 74 76 77 80 81 83 84 85 86 87 90 93 94 98 101 107 108 127 128 3.5 3.6"},D:{"11":0.04091,"25":0.00372,"32":0.01116,"33":0.00372,"36":0.00372,"38":0.00372,"40":0.00372,"42":0.0595,"43":0.02231,"48":0.01116,"49":0.00744,"50":0.00744,"54":0.00372,"56":0.00372,"57":0.03347,"58":0.00372,"60":0.00372,"61":0.00372,"64":0.00372,"65":0.00372,"66":0.00372,"67":0.00744,"68":0.00744,"69":0.02603,"70":0.00744,"71":0.00744,"72":0.00372,"73":0.00744,"74":0.01488,"76":0.00744,"77":0.00744,"78":0.00372,"79":0.04091,"80":0.01116,"81":0.06322,"83":0.00372,"84":0.00372,"85":0.04463,"86":0.00744,"87":0.07438,"88":0.01488,"89":0.04835,"90":0.01116,"91":0.01488,"92":0.00372,"93":0.00372,"94":0.00372,"95":0.06322,"96":0.01488,"97":0.00744,"98":0.01116,"99":0.01488,"100":0.00372,"101":0.01116,"102":0.0595,"103":0.05579,"104":0.01488,"105":0.02975,"106":0.02231,"107":0.01116,"108":0.04091,"109":3.74131,"110":0.02603,"111":0.0186,"112":0.01488,"113":0.01116,"114":0.02975,"115":0.05579,"116":0.10413,"117":0.03347,"118":0.02603,"119":0.18223,"120":0.24545,"121":0.41281,"122":0.71405,"123":10.1789,"124":3.53677,"125":0.01488,"126":0.01116,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 34 35 37 39 41 44 45 46 47 51 52 53 55 59 62 63 75 127"},F:{"18":0.00372,"36":0.00372,"53":0.07066,"54":0.00372,"65":0.00372,"68":0.00744,"74":0.00372,"79":0.02975,"95":0.06322,"102":0.00372,"103":0.00372,"106":0.01488,"107":0.30868,"108":0.54297,"109":0.21198,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 55 56 57 58 60 62 63 64 66 67 69 70 71 72 73 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00372},B:{"12":0.00744,"15":0.00372,"17":0.01488,"18":0.02603,"84":0.01116,"85":0.00372,"88":0.00372,"89":0.01116,"90":0.00744,"92":0.14132,"100":0.01488,"109":0.27149,"111":0.00372,"114":0.0186,"115":0.01116,"116":0.00744,"117":0.00744,"118":0.01116,"119":0.01116,"120":0.03719,"121":0.03719,"122":0.18595,"123":1.9376,"124":0.83678,_:"13 14 16 79 80 81 83 86 87 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113"},E:{"7":0.01116,"14":0.00372,"15":0.00372,_:"0 4 5 6 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3 17.5","11.1":0.00372,"13.1":0.02231,"14.1":0.03347,"15.1":0.00744,"15.4":0.00372,"15.5":0.00372,"15.6":0.03719,"16.0":0.00744,"16.1":0.00744,"16.2":0.00372,"16.3":0.01488,"16.4":0.00744,"16.5":0.00372,"16.6":0.09669,"17.0":0.00744,"17.1":0.00744,"17.2":0.03719,"17.3":0.04463,"17.4":0.07438},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00065,"5.0-5.1":0.00065,"6.0-6.1":0.00162,"7.0-7.1":0.0026,"8.1-8.4":0.00065,"9.0-9.2":0.00162,"9.3":0.00812,"10.0-10.2":0.00162,"10.3":0.01299,"11.0-11.2":0.01104,"11.3-11.4":0.00325,"12.0-12.1":0.00227,"12.2-12.5":0.05293,"13.0-13.1":0.00097,"13.2":0.01072,"13.3":0.0026,"13.4-13.7":0.01007,"14.0-14.4":0.01981,"14.5-14.8":0.0302,"15.0-15.1":0.01396,"15.2-15.3":0.01591,"15.4":0.01818,"15.5":0.02306,"15.6-15.8":0.20133,"16.0":0.04709,"16.1":0.09807,"16.2":0.04709,"16.3":0.08313,"16.4":0.01721,"16.5":0.03604,"16.6-16.7":0.28479,"17.0":0.0341,"17.1":0.063,"17.2":0.08378,"17.3":0.61114,"17.4":1.37944,"17.5":0.01266},P:{"4":0.06387,"20":0.01065,"21":0.01065,"22":0.02129,"23":0.10646,"24":0.29808,_:"5.0-5.4 8.2 9.2 10.1 12.0 13.0 18.0","6.2-6.4":0.01065,"7.2-7.4":0.01065,"11.1-11.2":0.01065,"14.0":0.01065,"15.0":0.01065,"16.0":0.01065,"17.0":0.01065,"19.0":0.01065},I:{"0":0.21893,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00055},A:{"11":0.01488,_:"6 7 8 9 10 5.5"},K:{"0":2.91497,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.64694,_:"3.0-3.1"},Q:{"14.9":0.00628},O:{"0":0.83537},H:{"0":4.17},L:{"0":56.24691},R:{_:"0"},M:{"0":0.27636}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MH.js index 039dc5152ccdb1..3ed9fd9fb70d27 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MH.js @@ -1 +1 @@ -module.exports={C:{"115":0.0264,"122":0.01056,"123":2.12744,"124":0.22172,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"44":0.05279,"70":0.03695,"71":0.01056,"79":0.01056,"89":0.03695,"93":0.35897,"103":0.13725,"108":0.01056,"109":0.20588,"112":0.09502,"115":0.0264,"116":2.78203,"117":0.01056,"118":0.01584,"119":0.41176,"120":0.97134,"121":1.12443,"122":16.80306,"123":4.65608,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 90 91 92 94 95 96 97 98 99 100 101 102 104 105 106 107 110 111 113 114 124 125 126"},F:{"107":0.12142,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.01056,"84":0.11086,"119":0.19004,"120":0.93438,"121":0.08446,"122":11.23371,"123":0.60181,_:"12 13 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118"},E:{"14":0.06863,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.2 17.5","14.1":0.05807,"15.6":0.01056,"16.1":0.03695,"16.3":0.01056,"16.4":0.01056,"16.5":0.03695,"16.6":0.09502,"17.0":0.1267,"17.1":0.10558,"17.2":1.75263,"17.3":1.09803,"17.4":0.01584},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00262,"5.0-5.1":0.00131,"6.0-6.1":0.00787,"7.0-7.1":0.00919,"8.1-8.4":0.00262,"9.0-9.2":0.00525,"9.3":0.03281,"10.0-10.2":0.00525,"10.3":0.05512,"11.0-11.2":0.03937,"11.3-11.4":0.01312,"12.0-12.1":0.01181,"12.2-12.5":0.22705,"13.0-13.1":0.00394,"13.2":0.03937,"13.3":0.01181,"13.4-13.7":0.04462,"14.0-14.4":0.08531,"14.5-14.8":0.13387,"15.0-15.1":0.05775,"15.2-15.3":0.06825,"15.4":0.08006,"15.5":0.10237,"15.6-15.8":0.85702,"16.0":0.20868,"16.1":0.43179,"16.2":0.20868,"16.3":0.37142,"16.4":0.07875,"16.5":0.16668,"16.6-16.7":1.26257,"17.0":0.16405,"17.1":0.32811,"17.2":0.52891,"17.3":6.50969,"17.4":0.95545,"17.5":0},P:{"21":0.04369,"22":0.05462,"23":3.53922,"24":0.85204,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0","7.2-7.4":0.05462,"16.0":0.03277,"18.0":0.01092,"19.0":0.07646},I:{"0":0.04702,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.05279,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":33.07848},R:{_:"0"},M:{"0":0.28326},Q:{_:"14.9"},O:{"0":0.16996},H:{"0":0}}; +module.exports={C:{"115":0.01105,"119":0.01105,"122":0.01105,"123":0.14368,"124":1.39255,"125":0.83443,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 121 126 127 128 3.5 3.6"},D:{"38":0.01105,"73":0.03316,"78":0.01105,"79":0.0221,"87":0.0221,"93":0.0221,"97":0.01105,"103":0.28735,"108":0.04421,"109":0.26525,"110":0.04421,"116":3.96767,"120":0.28735,"121":0.43655,"122":0.59128,"123":21.55693,"124":6.2057,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 80 81 83 84 85 86 88 89 90 91 92 94 95 96 98 99 100 101 102 104 105 106 107 111 112 113 114 115 117 118 119 125 126 127"},F:{"50":0.01105,"52":0.01105,"107":0.24314,"108":0.12157,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01105,"89":0.05526,"92":0.0221,"113":0.16578,"115":0.03316,"117":0.07736,"118":0.03316,"119":0.14368,"120":1.3594,"121":0.66865,"122":0.30946,"123":4.9734,"124":1.19362,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 14.1 15.2-15.3 15.4 15.5 16.2 16.3 16.4 17.0 17.5","9.1":0.01105,"13.1":0.0221,"15.1":0.01105,"15.6":0.03316,"16.0":0.01105,"16.1":0.2763,"16.5":0.13262,"16.6":0.05526,"17.1":0.17683,"17.2":0.01105,"17.3":2.47565,"17.4":1.82911},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00191,"5.0-5.1":0.00191,"6.0-6.1":0.00478,"7.0-7.1":0.00765,"8.1-8.4":0.00191,"9.0-9.2":0.00478,"9.3":0.02389,"10.0-10.2":0.00478,"10.3":0.03823,"11.0-11.2":0.03249,"11.3-11.4":0.00956,"12.0-12.1":0.00669,"12.2-12.5":0.15577,"13.0-13.1":0.00287,"13.2":0.03154,"13.3":0.00765,"13.4-13.7":0.02963,"14.0-14.4":0.05829,"14.5-14.8":0.08888,"15.0-15.1":0.04109,"15.2-15.3":0.04683,"15.4":0.05352,"15.5":0.06785,"15.6-15.8":0.5925,"16.0":0.13857,"16.1":0.28861,"16.2":0.13857,"16.3":0.24465,"16.4":0.05065,"16.5":0.10608,"16.6-16.7":0.8381,"17.0":0.10034,"17.1":0.1854,"17.2":0.24656,"17.3":1.79853,"17.4":4.05959,"17.5":0.03727},P:{"21":0.03447,"22":0.02298,"23":0.04596,"24":0.80422,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.01149,"19.0":0.01149},I:{"0":0.05347,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.30423,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00895,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.1208},H:{"0":0},L:{"0":35.04508},R:{_:"0"},M:{"0":1.45405}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js index cdd4420d5ac132..4f95bb5e04b5e0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MK.js @@ -1 +1 @@ -module.exports={C:{"5":0.03092,"40":0.00344,"43":0.04123,"44":0.00344,"48":0.00687,"50":0.00344,"51":0.01031,"52":0.07559,"56":0.02749,"61":0.01031,"68":0.00344,"77":0.01031,"78":0.01718,"82":0.00344,"88":0.00344,"94":0.00687,"99":0.00687,"106":0.00344,"107":0.00344,"109":0.00344,"111":0.00344,"113":0.00344,"115":0.34016,"117":0.00344,"118":0.00344,"119":0.00687,"120":0.01374,"121":0.00687,"122":0.03092,"123":1.24727,"124":0.57038,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 45 46 47 49 53 54 55 57 58 59 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 83 84 85 86 87 89 90 91 92 93 95 96 97 98 100 101 102 103 104 105 108 110 112 114 116 125 126 127 3.5 3.6"},D:{"38":0.00344,"39":0.00344,"41":0.00687,"42":0.00344,"43":0.00344,"44":0.00344,"45":0.00344,"46":0.00344,"47":0.00344,"49":0.06528,"51":0.00344,"53":0.00344,"56":0.00344,"58":0.00344,"63":0.02062,"64":0.00344,"66":0.00344,"68":0.00344,"69":0.00687,"70":0.0481,"71":0.03092,"72":0.00687,"73":0.04123,"74":0.00344,"75":0.00687,"76":0.00344,"77":0.00687,"79":0.28519,"80":0.00344,"81":0.00344,"83":0.02062,"84":0.00344,"85":0.00687,"86":0.00344,"87":0.24739,"88":0.02062,"89":0.02749,"90":0.01718,"91":0.01374,"92":0.00344,"93":0.00344,"94":0.0378,"95":0.01031,"96":0.00344,"98":0.00687,"99":0.03436,"100":0.00687,"101":0.00344,"102":0.01031,"103":0.02405,"104":0.01718,"105":0.01031,"106":0.0378,"107":0.16836,"108":0.14431,"109":3.45662,"110":0.08246,"111":0.07903,"112":0.01718,"113":0.01718,"114":0.02749,"115":0.01718,"116":0.09964,"117":0.01374,"118":0.03436,"119":0.09621,"120":0.17867,"121":1.01706,"122":14.85726,"123":4.52521,"124":0.01031,"125":0.00344,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 48 50 52 54 55 57 59 60 61 62 65 67 78 97 126"},F:{"28":0.00687,"32":0.00344,"36":0.00344,"40":0.00344,"46":0.04467,"79":0.00344,"90":0.00344,"95":0.11682,"100":0.00344,"105":0.00344,"106":0.00344,"107":0.91741,"108":0.21303,"109":0.00344,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01374,"18":0.00344,"83":0.00687,"84":0.00344,"92":0.01031,"103":0.01374,"105":0.00687,"107":0.01031,"108":0.01718,"109":0.03092,"115":0.00344,"117":0.00344,"119":0.00344,"120":0.01374,"121":0.08934,"122":1.8417,"123":0.134,_:"12 13 14 15 16 79 80 81 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 106 110 111 112 113 114 116 118"},E:{"9":0.00687,"14":0.00687,"15":0.00344,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.1 15.4 17.5","9.1":0.00344,"13.1":0.00687,"14.1":0.03436,"15.2-15.3":0.00344,"15.5":0.00344,"15.6":0.02749,"16.0":0.01031,"16.1":0.01718,"16.2":0.00344,"16.3":0.01718,"16.4":0.00687,"16.5":0.01031,"16.6":0.0859,"17.0":0.00344,"17.1":0.06528,"17.2":0.11682,"17.3":0.20272,"17.4":0.0378},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.00124,"6.0-6.1":0.00743,"7.0-7.1":0.00867,"8.1-8.4":0.00248,"9.0-9.2":0.00495,"9.3":0.03097,"10.0-10.2":0.00495,"10.3":0.05202,"11.0-11.2":0.03716,"11.3-11.4":0.01239,"12.0-12.1":0.01115,"12.2-12.5":0.21428,"13.0-13.1":0.00372,"13.2":0.03716,"13.3":0.01115,"13.4-13.7":0.04211,"14.0-14.4":0.08051,"14.5-14.8":0.12634,"15.0-15.1":0.0545,"15.2-15.3":0.06441,"15.4":0.07556,"15.5":0.09661,"15.6-15.8":0.80882,"16.0":0.19694,"16.1":0.40751,"16.2":0.19694,"16.3":0.35053,"16.4":0.07432,"16.5":0.15731,"16.6-16.7":1.19156,"17.0":0.15483,"17.1":0.30966,"17.2":0.49917,"17.3":6.14359,"17.4":0.90172,"17.5":0},P:{"4":0.45276,"20":0.02058,"21":0.03087,"22":0.04116,"23":1.59496,"24":1.00842,"5.0-5.4":0.1029,"6.2-6.4":0.07203,"7.2-7.4":0.01029,_:"8.2 10.1 12.0 15.0","9.2":0.01029,"11.1-11.2":0.01029,"13.0":0.06174,"14.0":0.01029,"16.0":0.02058,"17.0":0.01029,"18.0":0.01029,"19.0":0.02058},I:{"0":0.07191,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},K:{"0":0.20348,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00344,"8":0.02405,"9":0.01031,"10":0.00344,"11":0.07559,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.56942},R:{_:"0"},M:{"0":0.08533},Q:{_:"14.9"},O:{"0":0.01969},H:{"0":0}}; +module.exports={C:{"5":0.02177,"34":0.00726,"40":0.00363,"43":0.00363,"44":0.00726,"48":0.00363,"50":0.00363,"51":0.01089,"52":0.07621,"56":0.04718,"61":0.00726,"65":0.01815,"70":0.00726,"77":0.02177,"78":0.01089,"82":0.00363,"89":0.00726,"94":0.01452,"99":0.00363,"100":0.00363,"105":0.00363,"106":0.00726,"107":0.02177,"108":0.01089,"109":0.0254,"110":0.00726,"111":0.00726,"113":0.00726,"114":0.00363,"115":0.34113,"118":0.00363,"119":0.00363,"120":0.00363,"121":0.00726,"122":0.01815,"123":0.0254,"124":1.1141,"125":0.66774,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 45 46 47 49 53 54 55 57 58 59 60 62 63 64 66 67 68 69 71 72 73 74 75 76 79 80 81 83 84 85 86 87 88 90 91 92 93 95 96 97 98 101 102 103 104 112 116 117 126 127 128 3.5","3.6":0.00363},D:{"38":0.00726,"39":0.00363,"41":0.00363,"42":0.00363,"43":0.00363,"44":0.00363,"45":0.00363,"46":0.00363,"47":0.00363,"49":0.07258,"51":0.00726,"53":0.01089,"55":0.00363,"56":0.00363,"58":0.01089,"61":0.00363,"64":0.00363,"66":0.00363,"69":0.01815,"70":0.01815,"71":0.00363,"72":0.00726,"73":0.05081,"75":0.00363,"77":0.00363,"79":0.29032,"83":0.01452,"85":0.00726,"86":0.00363,"87":0.15242,"88":0.06895,"89":0.02177,"90":0.00363,"91":0.01452,"92":0.00363,"94":0.02177,"95":0.02903,"96":0.00726,"98":0.00363,"99":0.05806,"100":0.00363,"102":0.00726,"103":0.01452,"104":0.00363,"105":0.01452,"106":0.04718,"107":0.06169,"108":0.10161,"109":3.66529,"110":0.10887,"111":0.03266,"112":0.01089,"113":0.01452,"114":0.01815,"115":0.225,"116":0.16693,"117":0.01089,"118":0.02903,"119":0.05081,"120":0.10161,"121":0.21048,"122":0.65322,"123":15.31075,"124":5.66124,"125":0.02177,"126":0.00363,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 48 50 52 54 57 59 60 62 63 65 67 68 74 76 78 80 81 84 93 97 101 127"},F:{"28":0.00363,"36":0.00363,"46":0.03629,"84":0.00363,"86":0.00363,"91":0.00363,"93":0.00726,"95":0.11613,"97":0.00726,"107":0.64596,"108":0.38467,"109":0.18508,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 87 88 89 90 92 94 96 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00363,"83":0.01452,"92":0.01452,"99":0.00363,"103":0.00726,"105":0.00726,"106":0.00363,"107":0.00726,"109":0.03266,"110":0.02177,"114":0.00363,"115":0.00363,"117":0.00363,"118":0.00363,"119":0.00363,"120":0.01089,"121":0.01815,"122":0.13064,"123":1.40442,"124":0.59516,_:"12 13 14 15 16 17 79 80 81 84 85 86 87 88 89 90 91 93 94 95 96 97 98 100 101 102 104 108 111 112 113 116"},E:{"9":0.01089,"14":0.01815,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5","12.1":0.00363,"13.1":0.01089,"14.1":0.03992,"15.6":0.02903,"16.0":0.02177,"16.1":0.01089,"16.2":0.00363,"16.3":0.01452,"16.4":0.00726,"16.5":0.01089,"16.6":0.14879,"17.0":0.01089,"17.1":0.05444,"17.2":0.05806,"17.3":0.0871,"17.4":0.26855,"17.5":0.00726},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00246,"5.0-5.1":0.00246,"6.0-6.1":0.00614,"7.0-7.1":0.00982,"8.1-8.4":0.00246,"9.0-9.2":0.00614,"9.3":0.0307,"10.0-10.2":0.00614,"10.3":0.04912,"11.0-11.2":0.04175,"11.3-11.4":0.01228,"12.0-12.1":0.0086,"12.2-12.5":0.20015,"13.0-13.1":0.00368,"13.2":0.04052,"13.3":0.00982,"13.4-13.7":0.03806,"14.0-14.4":0.0749,"14.5-14.8":0.11419,"15.0-15.1":0.0528,"15.2-15.3":0.06017,"15.4":0.06876,"15.5":0.08718,"15.6-15.8":0.76129,"16.0":0.17804,"16.1":0.37082,"16.2":0.17804,"16.3":0.31434,"16.4":0.06508,"16.5":0.1363,"16.6-16.7":1.07685,"17.0":0.12893,"17.1":0.23821,"17.2":0.31679,"17.3":2.31088,"17.4":5.21605,"17.5":0.04789},P:{"4":0.37009,"20":0.01028,"21":0.03084,"22":0.07196,"23":0.21589,"24":2.32337,"5.0-5.4":0.11308,"6.2-6.4":0.07196,"7.2-7.4":0.01028,_:"8.2 10.1 12.0 15.0 17.0","9.2":0.01028,"11.1-11.2":0.01028,"13.0":0.07196,"14.0":0.01028,"16.0":0.01028,"18.0":0.01028,"19.0":0.02056},I:{"0":0.10153,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},A:{"7":0.00363,"8":0.03992,"9":0.01452,"10":0.00726,"11":0.06532,_:"6 5.5"},K:{"0":0.24851,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00637},O:{"0":0.01912},H:{"0":0},L:{"0":48.57659},R:{_:"0"},M:{"0":0.12744}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js index 2f38889dd33ddc..fc369293cbb4bc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ML.js @@ -1 +1 @@ -module.exports={C:{"43":0.00119,"66":0.00119,"76":0.00119,"99":0.00238,"102":0.00358,"113":0.00119,"115":0.03934,"119":0.00238,"120":0.00238,"121":0.01311,"122":0.0143,"123":0.33972,"124":0.14066,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 103 104 105 106 107 108 109 110 111 112 114 116 117 118 125 126 127 3.5 3.6"},D:{"34":0.00119,"49":0.00358,"55":0.00358,"57":0.00238,"58":0.00477,"63":0.00119,"65":0.00238,"68":0.00119,"69":0.0143,"72":0.00358,"73":0.00238,"74":0.00119,"75":0.00119,"76":0.00715,"79":0.00477,"80":0.00358,"81":0.00358,"83":0.0143,"84":0.00238,"86":0.00119,"87":0.00715,"88":0.00834,"90":0.00119,"91":0.00119,"92":0.00715,"93":0.00119,"94":0.00119,"95":0.00238,"98":0.00119,"99":0.00477,"102":0.00119,"103":0.01311,"105":0.00119,"106":0.00238,"107":0.00596,"108":0.00119,"109":0.2682,"110":0.00119,"111":0.00119,"114":0.00596,"116":0.0155,"117":0.00238,"118":0.00477,"119":0.02146,"120":0.02384,"121":0.12874,"122":2.95735,"123":0.76407,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 59 60 61 62 64 66 67 70 71 77 78 85 89 96 97 100 101 104 112 113 115 124 125 126"},F:{"95":0.00358,"100":0.00119,"102":0.00119,"106":0.00238,"107":0.07748,"108":0.0298,"109":0.00238,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00119,"13":0.00834,"14":0.00119,"15":0.00119,"16":0.00238,"17":0.00119,"18":0.01311,"84":0.00119,"89":0.00119,"90":0.00596,"92":0.00715,"100":0.00238,"103":0.00238,"109":0.04649,"110":0.00954,"114":0.00119,"115":0.02742,"116":0.00119,"117":0.00119,"118":0.00238,"119":0.00358,"120":0.01192,"121":0.03457,"122":1.08472,"123":0.11562,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 111 112 113"},E:{"7":0.00119,"14":0.00119,"15":0.01192,_:"0 4 5 6 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 16.1 16.2 16.4 17.5","5.1":0.00715,"12.1":0.00119,"13.1":0.05841,"14.1":0.00119,"15.5":0.00238,"15.6":0.02146,"16.0":0.00119,"16.3":0.00119,"16.5":0.00119,"16.6":0.00477,"17.0":0.00238,"17.1":0.00119,"17.2":0.02742,"17.3":0.01311,"17.4":0.0143},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00217,"5.0-5.1":0.00109,"6.0-6.1":0.00652,"7.0-7.1":0.0076,"8.1-8.4":0.00217,"9.0-9.2":0.00434,"9.3":0.02715,"10.0-10.2":0.00434,"10.3":0.04561,"11.0-11.2":0.03258,"11.3-11.4":0.01086,"12.0-12.1":0.00977,"12.2-12.5":0.18788,"13.0-13.1":0.00326,"13.2":0.03258,"13.3":0.00977,"13.4-13.7":0.03692,"14.0-14.4":0.07059,"14.5-14.8":0.11077,"15.0-15.1":0.04779,"15.2-15.3":0.05647,"15.4":0.06625,"15.5":0.08471,"15.6-15.8":0.70918,"16.0":0.17268,"16.1":0.3573,"16.2":0.17268,"16.3":0.30735,"16.4":0.06516,"16.5":0.13793,"16.6-16.7":1.04476,"17.0":0.13575,"17.1":0.27151,"17.2":0.43767,"17.3":5.38669,"17.4":0.79063,"17.5":0},P:{"4":0.4042,"20":0.03031,"21":0.29304,"22":0.19199,"23":1.21259,"24":0.26273,_:"5.0-5.4 6.2-6.4 8.2 15.0","7.2-7.4":0.4042,"9.2":0.03031,"10.1":0.05052,"11.1-11.2":0.02021,"12.0":0.02021,"13.0":0.13136,"14.0":0.03031,"16.0":0.05052,"17.0":0.03031,"18.0":0.0101,"19.0":0.12126},I:{"0":0.00877,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.40822,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00119,"11":0.00358,_:"6 7 8 10 5.5"},S:{"2.5":0.08808,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":77.92179},R:{_:"0"},M:{"0":0.15854},Q:{_:"14.9"},O:{"0":0.14093},H:{"0":0.27}}; +module.exports={C:{"47":0.00112,"52":0.00112,"66":0.00112,"72":0.00112,"77":0.00112,"78":0.00112,"99":0.00112,"101":0.00112,"102":0.01122,"108":0.00112,"115":0.0359,"116":0.00112,"118":0.00112,"119":0.00112,"122":0.00337,"123":0.00449,"124":0.35343,"125":0.17391,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 100 103 104 105 106 107 109 110 111 112 113 114 117 120 121 126 127 128 3.5 3.6"},D:{"18":0.00112,"33":0.00112,"35":0.00112,"49":0.00224,"58":0.00337,"65":0.00337,"66":0.00112,"67":0.00112,"68":0.00224,"69":0.00112,"71":0.00112,"72":0.00337,"73":0.00112,"75":0.00337,"76":0.00224,"79":0.00449,"80":0.0101,"83":0.00673,"84":0.00112,"87":0.00449,"88":0.01234,"91":0.00112,"92":0.02468,"93":0.00112,"95":0.00449,"96":0.00112,"98":0.00224,"99":0.0101,"102":0.00112,"103":0.01571,"104":0.00337,"106":0.00112,"107":0.01683,"108":0.00112,"109":0.20645,"110":0.00224,"111":0.00112,"112":0.00112,"114":0.00561,"115":0.00112,"116":0.01683,"117":0.00449,"118":0.00112,"119":0.00785,"120":0.01795,"121":0.04151,"122":0.12679,"123":2.59743,"124":1.08161,"125":0.00224,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 70 74 77 78 81 85 86 89 90 94 97 100 101 105 113 126 127"},F:{"40":0.00112,"79":0.00337,"95":0.00561,"106":0.00112,"107":0.0101,"108":0.06171,"109":0.01907,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00112,"13":0.01795,"16":0.00224,"17":0.00112,"18":0.00673,"89":0.00112,"90":0.00224,"92":0.00337,"100":0.00112,"103":0.00449,"109":0.03254,"113":0.01346,"114":0.00561,"115":0.03142,"117":0.00112,"118":0.00224,"119":0.00785,"120":0.00561,"121":0.00224,"122":0.06283,"123":0.70462,"124":0.4589,_:"14 15 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 111 112 116"},E:{"14":0.00337,"15":0.00561,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.4 15.5 16.0 16.2 16.3 17.5","13.1":0.06283,"14.1":0.00337,"15.2-15.3":0.01459,"15.6":0.02693,"16.1":0.00112,"16.4":0.00337,"16.5":0.00112,"16.6":0.00561,"17.0":0.00561,"17.1":0.00112,"17.2":0.02581,"17.3":0.00785,"17.4":0.01795},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00236,"5.0-5.1":0.00236,"6.0-6.1":0.00591,"7.0-7.1":0.00945,"8.1-8.4":0.00236,"9.0-9.2":0.00591,"9.3":0.02954,"10.0-10.2":0.00591,"10.3":0.04727,"11.0-11.2":0.04018,"11.3-11.4":0.01182,"12.0-12.1":0.00827,"12.2-12.5":0.19261,"13.0-13.1":0.00354,"13.2":0.03899,"13.3":0.00945,"13.4-13.7":0.03663,"14.0-14.4":0.07208,"14.5-14.8":0.10989,"15.0-15.1":0.05081,"15.2-15.3":0.0579,"15.4":0.06617,"15.5":0.0839,"15.6-15.8":0.73263,"16.0":0.17134,"16.1":0.35686,"16.2":0.17134,"16.3":0.30251,"16.4":0.06263,"16.5":0.13116,"16.6-16.7":1.03632,"17.0":0.12407,"17.1":0.22924,"17.2":0.30487,"17.3":2.22389,"17.4":5.0197,"17.5":0.04608},P:{"4":0.26359,"20":0.03041,"21":0.26359,"22":0.20276,"23":0.79077,"24":0.7705,"5.0-5.4":0.01014,_:"6.2-6.4 8.2","7.2-7.4":0.37511,"9.2":0.04055,"10.1":0.04055,"11.1-11.2":0.03041,"12.0":0.02028,"13.0":0.01014,"14.0":0.03041,"15.0":0.01014,"16.0":0.07097,"17.0":0.03041,"18.0":0.01014,"19.0":0.12166},I:{"0":0.00884,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.00673,_:"6 7 8 9 10 5.5"},K:{"0":0.27829,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.09766,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.14205},H:{"0":0.21},L:{"0":77.33805},R:{_:"0"},M:{"0":0.11541}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js index 7798e3e4dd667a..b8b0c61912bdf9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MM.js @@ -1 +1 @@ -module.exports={C:{"3":0.00255,"39":0.00255,"41":0.00255,"45":0.00255,"47":0.00255,"57":0.00255,"61":0.00255,"64":0.00255,"72":0.01018,"92":0.00255,"97":0.00255,"99":0.00255,"102":0.00255,"104":0.00255,"107":0.00255,"108":0.00764,"109":0.00255,"110":0.00255,"111":0.00255,"112":0.00255,"113":0.01018,"114":0.00764,"115":0.24696,"116":0.00255,"117":0.00509,"118":0.02291,"119":0.00509,"120":0.01018,"121":0.01528,"122":0.04837,"123":1.26791,"124":0.59067,"125":0.02037,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 42 43 44 46 48 49 50 51 52 53 54 55 56 58 59 60 62 63 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 98 100 101 103 105 106 126 127 3.5","3.6":0.00255},D:{"11":0.00255,"31":0.00255,"32":0.00255,"33":0.00255,"37":0.00255,"38":0.00509,"39":0.00255,"40":0.00255,"41":0.00255,"43":0.00509,"44":0.00509,"45":0.00255,"46":0.00255,"47":0.00509,"49":0.00255,"51":0.00255,"53":0.00255,"55":0.00255,"56":0.00255,"61":0.00255,"62":0.01018,"63":0.00764,"65":0.00255,"67":0.00255,"68":0.01018,"69":0.00255,"70":0.00255,"71":0.01018,"74":0.00509,"75":0.00255,"76":0.00764,"78":0.00255,"79":0.02801,"80":0.01528,"81":0.00509,"83":0.00509,"84":0.00255,"86":0.00255,"87":0.01782,"88":0.00764,"89":0.02291,"90":0.00764,"91":0.00255,"92":0.00509,"94":0.00255,"95":0.00764,"96":0.00255,"97":0.00509,"98":0.00255,"99":0.01782,"100":0.00764,"101":0.00255,"102":0.00509,"103":0.01528,"104":0.00509,"105":0.00764,"106":0.01273,"107":0.02291,"108":0.01018,"109":0.63395,"110":0.00509,"111":0.01018,"112":0.02291,"113":0.01273,"114":0.02801,"115":0.01273,"116":0.05347,"117":0.02037,"118":0.02037,"119":0.04328,"120":0.16549,"121":0.49138,"122":8.50619,"123":2.37033,"124":0.00509,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 34 35 36 42 48 50 52 54 57 58 59 60 64 66 72 73 77 85 93 125 126"},F:{"37":0.00509,"79":0.00255,"81":0.00509,"82":0.00255,"95":0.00764,"102":0.00255,"103":0.00255,"104":0.00255,"105":0.00255,"106":0.00509,"107":0.41754,"108":0.10184,"109":0.00509,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00509,"13":0.00255,"14":0.00509,"15":0.00764,"16":0.00255,"17":0.00509,"18":0.02801,"84":0.00255,"86":0.00255,"88":0.00255,"89":0.00255,"90":0.00255,"92":0.03819,"100":0.00509,"103":0.00255,"108":0.00255,"109":0.02291,"110":0.00255,"111":0.00255,"112":0.00255,"113":0.00255,"114":0.00764,"115":0.00255,"116":0.00255,"117":0.00764,"118":0.00509,"119":0.01018,"120":0.02037,"121":0.04837,"122":2.24048,"123":0.1884,_:"79 80 81 83 85 87 91 93 94 95 96 97 98 99 101 102 104 105 106 107"},E:{"9":0.00509,"13":0.00255,"14":0.01528,"15":0.00255,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 11.1 17.5","10.1":0.00255,"12.1":0.00509,"13.1":0.01018,"14.1":0.02801,"15.1":0.01528,"15.2-15.3":0.00509,"15.4":0.00509,"15.5":0.01018,"15.6":0.07638,"16.0":0.01273,"16.1":0.0331,"16.2":0.01018,"16.3":0.0662,"16.4":0.02037,"16.5":0.01782,"16.6":0.10184,"17.0":0.03055,"17.1":0.0611,"17.2":0.10439,"17.3":0.443,"17.4":0.08911},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00132,"5.0-5.1":0.00066,"6.0-6.1":0.00395,"7.0-7.1":0.00461,"8.1-8.4":0.00132,"9.0-9.2":0.00264,"9.3":0.01647,"10.0-10.2":0.00264,"10.3":0.02768,"11.0-11.2":0.01977,"11.3-11.4":0.00659,"12.0-12.1":0.00593,"12.2-12.5":0.114,"13.0-13.1":0.00198,"13.2":0.01977,"13.3":0.00593,"13.4-13.7":0.0224,"14.0-14.4":0.04283,"14.5-14.8":0.06721,"15.0-15.1":0.02899,"15.2-15.3":0.03426,"15.4":0.04019,"15.5":0.0514,"15.6-15.8":0.43028,"16.0":0.10477,"16.1":0.21679,"16.2":0.10477,"16.3":0.18648,"16.4":0.03954,"16.5":0.08368,"16.6-16.7":0.63389,"17.0":0.08237,"17.1":0.16473,"17.2":0.26555,"17.3":3.26831,"17.4":0.4797,"17.5":0},P:{"4":0.1284,"20":0.0321,"21":0.0428,"22":0.0321,"23":0.4922,"24":0.4601,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 14.0 15.0","7.2-7.4":0.0107,"11.1-11.2":0.0214,"12.0":0.0107,"13.0":0.0107,"16.0":0.0107,"17.0":0.0214,"18.0":0.0107,"19.0":0.0428},I:{"0":0.40087,"3":0,"4":0.00004,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00024,"4.4":0,"4.4.3-4.4.4":0.00097},K:{"0":0.46215,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00405,"8":0.02835,"9":0.0081,"10":0.00405,"11":0.04456,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":69.21146},R:{_:"0"},M:{"0":0.14908},Q:{"14.9":0.05963},O:{"0":1.34172},H:{"0":0}}; +module.exports={C:{"3":0.00222,"30":0.00222,"40":0.00222,"41":0.00222,"45":0.00222,"47":0.00222,"52":0.00666,"57":0.00222,"61":0.00222,"72":0.00666,"74":0.00222,"80":0.00222,"88":0.00222,"91":0.00666,"92":0.00222,"95":0.00222,"106":0.00222,"108":0.00444,"109":0.00222,"110":0.00444,"112":0.00222,"113":0.00222,"114":0.00444,"115":0.2221,"116":0.00222,"117":0.00666,"118":0.01111,"119":0.00444,"120":0.00444,"121":0.01111,"122":0.01999,"123":0.05553,"124":1.12605,"125":0.57746,"126":0.01999,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 42 43 44 46 48 49 50 51 53 54 55 56 58 59 60 62 63 64 65 66 67 68 69 70 71 73 75 76 77 78 79 81 82 83 84 85 86 87 89 90 93 94 96 97 98 99 100 101 102 103 104 105 107 111 127 128 3.5","3.6":0.00222},D:{"11":0.00444,"29":0.00222,"32":0.00444,"33":0.00222,"37":0.00444,"38":0.00444,"39":0.00222,"40":0.00222,"41":0.00222,"42":0.00222,"43":0.00444,"44":0.00444,"45":0.00222,"46":0.00444,"47":0.00222,"49":0.00222,"51":0.00444,"53":0.00222,"55":0.00222,"56":0.00222,"61":0.00222,"62":0.00444,"63":0.00444,"65":0.00444,"67":0.00222,"68":0.00666,"70":0.00444,"71":0.01111,"72":0.00444,"74":0.00444,"76":0.00666,"78":0.00222,"79":0.01333,"80":0.00888,"81":0.00444,"83":0.00222,"84":0.00222,"85":0.00222,"86":0.00222,"87":0.01777,"88":0.00666,"89":0.01777,"90":0.01777,"91":0.00444,"92":0.00444,"93":0.00222,"94":0.00222,"95":0.00888,"96":0.00222,"97":0.00444,"98":0.00222,"99":0.01999,"100":0.00444,"101":0.00222,"102":0.00666,"103":0.01111,"104":0.00444,"105":0.00888,"106":0.01111,"107":0.01777,"108":0.00888,"109":0.51527,"110":0.00444,"111":0.00888,"112":0.01555,"113":0.01111,"114":0.01777,"115":0.01333,"116":0.06663,"117":0.03332,"118":0.01111,"119":0.02665,"120":0.07329,"121":0.10883,"122":0.27985,"123":6.81181,"124":3.14049,"125":0.01333,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 34 35 36 48 50 52 54 57 58 59 60 64 66 69 73 75 77 126 127"},F:{"46":0.00444,"79":0.00222,"82":0.00222,"95":0.01111,"102":0.00222,"105":0.00222,"106":0.00222,"107":0.19989,"108":0.211,"109":0.07774,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00666,"15":0.00222,"16":0.00222,"17":0.00222,"18":0.02221,"84":0.00222,"89":0.00444,"90":0.00222,"92":0.03998,"100":0.00444,"101":0.00222,"109":0.01555,"113":0.00222,"114":0.00666,"115":0.00222,"116":0.00222,"117":0.00888,"118":0.00222,"119":0.00444,"120":0.01111,"121":0.01111,"122":0.11327,"123":1.31483,"124":0.72627,_:"13 14 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 102 103 104 105 106 107 108 110 111 112"},E:{"9":0.00666,"11":0.00222,"12":0.00222,"14":0.03109,_:"0 4 5 6 7 8 10 13 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1","10.1":0.00666,"12.1":0.00444,"13.1":0.00888,"14.1":0.01999,"15.1":0.01555,"15.2-15.3":0.00222,"15.4":0.00444,"15.5":0.01111,"15.6":0.06219,"16.0":0.00444,"16.1":0.01999,"16.2":0.01999,"16.3":0.09106,"16.4":0.01333,"16.5":0.01111,"16.6":0.08662,"17.0":0.02221,"17.1":0.02887,"17.2":0.0533,"17.3":0.17546,"17.4":0.37757,"17.5":0.00222},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00138,"5.0-5.1":0.00138,"6.0-6.1":0.00345,"7.0-7.1":0.00552,"8.1-8.4":0.00138,"9.0-9.2":0.00345,"9.3":0.01725,"10.0-10.2":0.00345,"10.3":0.0276,"11.0-11.2":0.02346,"11.3-11.4":0.0069,"12.0-12.1":0.00483,"12.2-12.5":0.11246,"13.0-13.1":0.00207,"13.2":0.02277,"13.3":0.00552,"13.4-13.7":0.02139,"14.0-14.4":0.04208,"14.5-14.8":0.06416,"15.0-15.1":0.02967,"15.2-15.3":0.03381,"15.4":0.03863,"15.5":0.04898,"15.6-15.8":0.42774,"16.0":0.10004,"16.1":0.20835,"16.2":0.10004,"16.3":0.17662,"16.4":0.03657,"16.5":0.07658,"16.6-16.7":0.60505,"17.0":0.07244,"17.1":0.13384,"17.2":0.178,"17.3":1.29841,"17.4":2.93073,"17.5":0.02691},P:{"4":0.10231,"20":0.02046,"21":0.03069,"22":0.03069,"23":0.11254,"24":0.86964,"5.0-5.4":0.01023,"6.2-6.4":0.01023,"7.2-7.4":0.03069,_:"8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0","9.2":0.01023,"16.0":0.01023,"17.0":0.02046,"18.0":0.01023,"19.0":0.02046},I:{"0":0.6042,"3":0,"4":0.00006,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00012,"4.2-4.3":0.00036,"4.4":0,"4.4.3-4.4.4":0.00152},A:{"7":0.00304,"8":0.03042,"9":0.00608,"10":0.00608,"11":0.09125,_:"6 5.5"},K:{"0":0.41223,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.09334},O:{"0":1.32226},H:{"0":0},L:{"0":70.80508},R:{_:"0"},M:{"0":0.14778}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js index 47b0953c90efa1..d5b7338c3557b0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MN.js @@ -1 +1 @@ -module.exports={C:{"38":0.00424,"40":0.00424,"52":0.00424,"89":0.00424,"99":0.00424,"112":0.01273,"115":0.19942,"116":0.00424,"121":0.00849,"122":0.03819,"123":0.91225,"124":0.41157,"125":0.00424,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 113 114 117 118 119 120 126 127","3.5":0.00424,"3.6":0.00849},D:{"21":0.00424,"30":0.00424,"36":0.00424,"39":0.00424,"40":0.00424,"41":0.00424,"42":0.00424,"43":0.00849,"44":0.00849,"45":0.00849,"46":0.00424,"47":0.00849,"49":0.00424,"50":0.00424,"51":0.00849,"60":0.00424,"63":0.00849,"68":0.00849,"69":0.00849,"70":0.0297,"72":0.00424,"74":0.02122,"75":0.00424,"77":0.00424,"78":0.00424,"79":0.02122,"80":0.01273,"81":0.00849,"83":0.00849,"84":0.00424,"85":0.00424,"86":0.00424,"87":0.01273,"88":0.00849,"89":0.00424,"90":0.0297,"91":0.00424,"92":0.00424,"93":0.00424,"94":0.00849,"96":0.00424,"97":0.00424,"98":0.00424,"99":0.0297,"100":0.00424,"101":0.00424,"102":0.01273,"103":0.03394,"104":0.00424,"105":0.01273,"106":0.00424,"107":0.00849,"108":0.00849,"109":3.0295,"110":0.01273,"111":0.02122,"112":0.0297,"113":0.01697,"114":0.02122,"115":0.04243,"116":0.13153,"117":0.02546,"118":0.06365,"119":0.14851,"120":0.33944,"121":1.56142,"122":17.19688,"123":5.04917,"124":0.02122,"125":0.00424,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 31 32 33 34 35 37 38 48 52 53 54 55 56 57 58 59 61 62 64 65 66 67 71 73 76 95 126"},F:{"31":0.00424,"69":0.00424,"79":0.00424,"95":0.03819,"103":0.00424,"106":0.00849,"107":1.38322,"108":0.28428,"109":0.00849,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00424,"14":0.00424,"18":0.00849,"84":0.00424,"89":0.00424,"90":0.00424,"92":0.02546,"100":0.00849,"105":0.00424,"107":0.00424,"108":0.00424,"109":0.0594,"110":0.00424,"111":0.00424,"112":0.02122,"113":0.01273,"114":0.00849,"115":0.00424,"116":0.01273,"117":0.01273,"118":0.00849,"119":0.02122,"120":0.08062,"121":0.12729,"122":5.34618,"123":0.3055,_:"13 15 16 17 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106"},E:{"9":0.01273,"14":0.18669,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00424,"12.1":0.00424,"13.1":0.01697,"14.1":0.16548,"15.1":0.08062,"15.2-15.3":0.00849,"15.4":0.01273,"15.5":0.02122,"15.6":0.08486,"16.0":0.00849,"16.1":0.11456,"16.2":0.03394,"16.3":0.07637,"16.4":0.06789,"16.5":0.07637,"16.6":0.20366,"17.0":0.04243,"17.1":0.08062,"17.2":0.14851,"17.3":0.38611,"17.4":0.0594},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00377,"5.0-5.1":0.00189,"6.0-6.1":0.01132,"7.0-7.1":0.0132,"8.1-8.4":0.00377,"9.0-9.2":0.00754,"9.3":0.04715,"10.0-10.2":0.00754,"10.3":0.07921,"11.0-11.2":0.05658,"11.3-11.4":0.01886,"12.0-12.1":0.01697,"12.2-12.5":0.32628,"13.0-13.1":0.00566,"13.2":0.05658,"13.3":0.01697,"13.4-13.7":0.06412,"14.0-14.4":0.12259,"14.5-14.8":0.19237,"15.0-15.1":0.08298,"15.2-15.3":0.09807,"15.4":0.11505,"15.5":0.14711,"15.6-15.8":1.23155,"16.0":0.29987,"16.1":0.62049,"16.2":0.29987,"16.3":0.53374,"16.4":0.11316,"16.5":0.23952,"16.6-16.7":1.81433,"17.0":0.23575,"17.1":0.4715,"17.2":0.76006,"17.3":9.35453,"17.4":1.373,"17.5":0},P:{"4":0.13284,"20":0.04087,"21":0.10218,"22":0.13284,"23":1.76776,"24":1.14445,"5.0-5.4":0.03065,"6.2-6.4":0.02044,"7.2-7.4":0.05109,_:"8.2 10.1","9.2":0.01022,"11.1-11.2":0.01022,"12.0":0.01022,"13.0":0.01022,"14.0":0.01022,"15.0":0.01022,"16.0":0.02044,"17.0":0.02044,"18.0":0.01022,"19.0":0.04087},I:{"0":0.13187,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00032},K:{"0":0.10363,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00476,"8":0.06184,"9":0.00951,"10":0.01427,"11":0.06184,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":36.9184},R:{_:"0"},M:{"0":0.14968},Q:{"14.9":0.02303},O:{"0":0.09211},H:{"0":0}}; +module.exports={C:{"3":0.00472,"4":0.00472,"30":0.00472,"38":0.00472,"39":0.00472,"40":0.00472,"47":0.00944,"89":0.00472,"99":0.00472,"115":0.20296,"120":0.00472,"121":0.00472,"122":0.00472,"123":0.13216,"124":0.79768,"125":0.4248,"126":0.00472,_:"2 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 127 128","3.5":0.00472,"3.6":0.00472},D:{"21":0.00472,"31":0.00472,"35":0.00472,"36":0.00472,"37":0.00472,"38":0.00472,"39":0.00472,"40":0.00944,"41":0.00472,"42":0.00472,"43":0.00944,"44":0.01416,"45":0.00944,"46":0.00944,"47":0.00944,"49":0.00472,"50":0.00472,"51":0.01888,"56":0.00472,"62":0.00472,"63":0.00944,"68":0.00472,"69":0.00472,"70":0.0472,"71":0.00472,"72":0.00472,"73":0.00472,"74":0.01416,"75":0.00472,"76":0.00472,"78":0.00944,"79":0.00944,"80":0.00472,"81":0.00472,"85":0.00472,"87":0.01416,"88":0.00944,"89":0.00472,"90":0.00472,"91":0.00472,"92":0.00472,"93":0.00472,"94":0.00944,"95":0.00472,"96":0.00472,"97":0.00944,"98":0.00472,"99":0.02832,"100":0.00472,"101":0.00472,"102":0.01888,"103":0.03776,"104":0.00472,"105":0.00944,"106":0.00472,"107":0.00472,"108":0.00472,"109":4.17248,"110":0.00472,"111":0.01888,"112":0.01416,"113":0.00944,"114":0.01416,"115":0.0472,"116":0.10856,"117":0.02832,"118":0.03304,"119":0.16992,"120":0.25488,"121":0.25016,"122":0.77408,"123":18.5496,"124":6.6788,"125":0.0236,"126":0.00472,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 32 33 34 48 52 53 54 55 57 58 59 60 61 64 65 66 67 77 83 84 86 127"},F:{"31":0.00472,"54":0.00472,"79":0.00472,"95":0.02832,"107":1.20832,"108":0.59944,"109":0.236,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00472},B:{"12":0.00944,"14":0.00472,"16":0.00472,"17":0.00472,"18":0.01888,"84":0.00472,"92":0.03776,"99":0.00472,"100":0.00944,"108":0.00472,"109":0.08496,"110":0.00472,"112":0.00472,"113":0.00944,"114":0.00944,"115":0.00472,"116":0.00472,"117":0.01416,"118":0.00944,"119":0.01416,"120":0.03776,"121":0.0472,"122":0.39176,"123":4.63504,"124":2.02488,_:"13 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 106 107 111"},E:{"9":0.02832,"14":0.0236,"15":0.00944,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1","5.1":0.00472,"13.1":0.01888,"14.1":0.0944,"15.1":0.06136,"15.2-15.3":0.00944,"15.4":0.01416,"15.5":0.03304,"15.6":0.0708,"16.0":0.00472,"16.1":0.08496,"16.2":0.03776,"16.3":0.07552,"16.4":0.04248,"16.5":0.07552,"16.6":0.14632,"17.0":0.03776,"17.1":0.08496,"17.2":0.10856,"17.3":0.20296,"17.4":0.42952,"17.5":0.00944},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00358,"5.0-5.1":0.00358,"6.0-6.1":0.00894,"7.0-7.1":0.0143,"8.1-8.4":0.00358,"9.0-9.2":0.00894,"9.3":0.0447,"10.0-10.2":0.00894,"10.3":0.07151,"11.0-11.2":0.06079,"11.3-11.4":0.01788,"12.0-12.1":0.01251,"12.2-12.5":0.29141,"13.0-13.1":0.00536,"13.2":0.059,"13.3":0.0143,"13.4-13.7":0.05542,"14.0-14.4":0.10906,"14.5-14.8":0.16627,"15.0-15.1":0.07688,"15.2-15.3":0.0876,"15.4":0.10012,"15.5":0.12693,"15.6-15.8":1.10844,"16.0":0.25923,"16.1":0.53992,"16.2":0.25923,"16.3":0.45768,"16.4":0.09475,"16.5":0.19845,"16.6-16.7":1.56791,"17.0":0.18772,"17.1":0.34683,"17.2":0.46125,"17.3":3.36465,"17.4":7.59461,"17.5":0.06972},P:{"4":0.10275,"20":0.02055,"21":0.0822,"22":0.16439,"23":0.41098,"24":2.20904,"5.0-5.4":0.0411,"6.2-6.4":0.01027,"7.2-7.4":0.0411,_:"8.2 10.1 12.0","9.2":0.01027,"11.1-11.2":0.03082,"13.0":0.02055,"14.0":0.01027,"15.0":0.01027,"16.0":0.02055,"17.0":0.02055,"18.0":0.01027,"19.0":0.0411},I:{"0":0.16301,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00041},A:{"6":0.00532,"7":0.01065,"8":0.09581,"9":0.02661,"10":0.01597,"11":0.09048,_:"5.5"},K:{"0":0.11616,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00528,_:"3.0-3.1"},Q:{"14.9":0.02112},O:{"0":0.14256},H:{"0":0},L:{"0":32.95048},R:{_:"0"},M:{"0":0.1584}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js index fc8df21ba441b6..8df983276d1207 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MO.js @@ -1 +1 @@ -module.exports={C:{"34":0.07368,"52":0.00867,"78":0.01734,"81":0.00433,"88":0.00433,"100":0.00867,"115":0.12135,"118":0.00433,"119":0.00433,"121":0.00433,"122":0.03034,"123":0.88847,"124":0.34239,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 120 125 126 127 3.5 3.6"},D:{"11":0.00433,"22":0.01734,"26":0.00867,"30":0.00867,"34":0.06068,"38":0.18203,"43":0.00433,"44":0.00433,"45":0.00433,"46":0.00433,"47":0.00433,"49":0.026,"51":0.00433,"53":0.026,"55":0.07801,"57":0.00433,"58":0.00433,"61":0.10835,"62":0.02167,"64":0.00433,"69":0.013,"70":0.00433,"71":0.00433,"73":0.01734,"74":0.05201,"75":0.00433,"76":0.013,"77":0.026,"78":0.02167,"79":0.36406,"80":0.06068,"81":0.04334,"83":0.03901,"86":0.04767,"87":0.36406,"88":0.00867,"89":0.04767,"90":0.00867,"91":0.00433,"92":0.00433,"94":0.04334,"95":0.00433,"96":0.07801,"97":0.07368,"98":0.05201,"99":0.18203,"100":0.00433,"101":0.03034,"102":0.06068,"103":0.07368,"104":0.013,"105":0.08235,"106":0.026,"107":0.04334,"108":0.04767,"109":1.64259,"110":0.00867,"111":0.013,"112":0.02167,"113":0.03034,"114":0.04767,"115":0.02167,"116":0.30338,"117":0.03901,"118":0.04334,"119":0.17769,"120":0.50708,"121":1.62092,"122":14.17651,"123":3.74458,"124":0.05201,"125":0.013,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 40 41 42 48 50 52 54 56 59 60 63 65 66 67 68 72 84 85 93 126"},F:{"28":0.00867,"32":0.00867,"36":0.026,"46":0.16036,"95":0.013,"105":0.00433,"106":0.00433,"107":0.08235,"108":0.02167,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00433,"92":0.00433,"100":0.00433,"109":0.13435,"112":0.01734,"113":0.01734,"114":0.00433,"115":0.026,"116":0.00433,"117":0.00433,"118":0.00433,"119":0.013,"120":0.03467,"121":0.2037,"122":3.58422,"123":0.20803,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111"},E:{"9":0.00867,"13":0.02167,"14":0.29471,"15":0.03467,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00433,"12.1":0.03467,"13.1":0.13869,"14.1":0.6761,"15.1":0.05201,"15.2-15.3":0.05634,"15.4":0.11702,"15.5":0.22537,"15.6":0.65443,"16.0":0.09101,"16.1":0.07368,"16.2":0.08668,"16.3":0.39439,"16.4":0.06934,"16.5":0.19936,"16.6":1.21352,"17.0":0.05201,"17.1":0.26004,"17.2":0.52875,"17.3":3.28951,"17.4":0.24704},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00481,"5.0-5.1":0.00241,"6.0-6.1":0.01444,"7.0-7.1":0.01685,"8.1-8.4":0.00481,"9.0-9.2":0.00963,"9.3":0.06017,"10.0-10.2":0.00963,"10.3":0.10109,"11.0-11.2":0.07221,"11.3-11.4":0.02407,"12.0-12.1":0.02166,"12.2-12.5":0.4164,"13.0-13.1":0.00722,"13.2":0.07221,"13.3":0.02166,"13.4-13.7":0.08184,"14.0-14.4":0.15645,"14.5-14.8":0.24551,"15.0-15.1":0.1059,"15.2-15.3":0.12516,"15.4":0.14682,"15.5":0.18774,"15.6-15.8":1.57172,"16.0":0.3827,"16.1":0.79188,"16.2":0.3827,"16.3":0.68116,"16.4":0.14442,"16.5":0.30568,"16.6-16.7":2.31545,"17.0":0.30086,"17.1":0.60173,"17.2":0.96999,"17.3":11.93831,"17.4":1.75224,"17.5":0},P:{"4":0.95681,"20":0.02306,"21":0.09222,"22":0.05764,"23":1.3257,"24":1.98279,"5.0-5.4":0.05764,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","13.0":0.03458,"16.0":0.01153,"17.0":0.01153,"18.0":0.03458,"19.0":0.0807},I:{"0":0.079,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":0.04533,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.15802,"9":0.02634,"10":0.02634,"11":0.13169,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":29.08293},R:{_:"0"},M:{"0":0.17565},Q:{"14.9":0.27763},O:{"0":0.52127},H:{"0":0}}; +module.exports={C:{"34":0.09775,"40":0.00444,"75":0.00444,"78":0.02666,"81":0.00444,"88":0.01333,"100":0.00889,"115":0.18216,"122":0.01333,"123":0.04887,"124":0.75087,"125":0.43097,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5","3.6":0.00444},D:{"22":0.02222,"26":0.00889,"30":0.00444,"34":0.07109,"38":0.19105,"40":0.00444,"43":0.00444,"44":0.00444,"45":0.00444,"46":0.00444,"47":0.00444,"49":0.02666,"51":0.00889,"53":0.01777,"55":0.03999,"57":0.00889,"58":0.01777,"61":0.11996,"62":0.02666,"65":0.00889,"69":0.01777,"70":0.00444,"73":0.00889,"74":0.08442,"75":0.00444,"76":0.00889,"77":0.01333,"78":0.00889,"79":0.35544,"80":0.03999,"81":0.03554,"83":0.07553,"85":0.00444,"86":0.02666,"87":0.27102,"88":0.00444,"89":0.02666,"90":0.00444,"91":0.00889,"92":0.00444,"94":0.16883,"96":0.0622,"97":0.08442,"98":0.0622,"99":0.17328,"100":0.00444,"101":0.04443,"102":0.03999,"103":0.08442,"104":0.01333,"105":0.05776,"106":0.01777,"107":0.02222,"108":0.03554,"109":1.57282,"110":0.00889,"111":0.01333,"112":0.02222,"113":0.03554,"114":0.02666,"115":0.0311,"116":0.33323,"117":0.03554,"118":0.04443,"119":0.19549,"120":0.35544,"121":0.41764,"122":1.05299,"123":13.81773,"124":5.54042,"125":0.03999,"126":0.01777,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 31 32 33 35 36 37 39 41 42 48 50 52 54 56 59 60 63 64 66 67 68 71 72 84 93 95 127"},F:{"28":0.00444,"36":0.01777,"46":0.11552,"95":0.00889,"105":0.00444,"107":0.15551,"108":0.07997,"109":0.01333,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00444,"109":0.15106,"113":0.01777,"114":0.00444,"115":0.01333,"116":0.00444,"117":0.00444,"118":0.01777,"119":0.00889,"120":0.03999,"121":0.05332,"122":0.21771,"123":2.86129,"124":1.37289,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112"},E:{"9":0.00889,"13":0.02222,"14":0.23548,"15":0.02666,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.02666,"13.1":0.13773,"14.1":0.43541,"15.1":0.05332,"15.2-15.3":0.07553,"15.4":0.11996,"15.5":0.18216,"15.6":0.64424,"16.0":0.08886,"16.1":0.05332,"16.2":0.16439,"16.3":0.29324,"16.4":0.04887,"16.5":0.19549,"16.6":1.12408,"17.0":0.04887,"17.1":0.18661,"17.2":0.32434,"17.3":1.35512,"17.4":2.65691,"17.5":0.03554},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00461,"5.0-5.1":0.00461,"6.0-6.1":0.01151,"7.0-7.1":0.01842,"8.1-8.4":0.00461,"9.0-9.2":0.01151,"9.3":0.05757,"10.0-10.2":0.01151,"10.3":0.09211,"11.0-11.2":0.0783,"11.3-11.4":0.02303,"12.0-12.1":0.01612,"12.2-12.5":0.37536,"13.0-13.1":0.00691,"13.2":0.07599,"13.3":0.01842,"13.4-13.7":0.07139,"14.0-14.4":0.14047,"14.5-14.8":0.21416,"15.0-15.1":0.09902,"15.2-15.3":0.11284,"15.4":0.12896,"15.5":0.1635,"15.6-15.8":1.42775,"16.0":0.33391,"16.1":0.69545,"16.2":0.33391,"16.3":0.58952,"16.4":0.12205,"16.5":0.25561,"16.6-16.7":2.01957,"17.0":0.2418,"17.1":0.44675,"17.2":0.59413,"17.3":4.33391,"17.4":9.78238,"17.5":0.08981},P:{"4":1.05565,"20":0.10441,"21":0.12761,"22":0.058,"23":0.058,"24":3.10895,"5.0-5.4":0.058,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","13.0":0.0232,"17.0":0.0464,"18.0":0.0232,"19.0":0.0928},I:{"0":0.06641,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"8":0.17518,"9":0.0292,"10":0.0292,"11":0.17518,_:"6 7 5.5"},K:{"0":0.08336,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.30564},O:{"0":0.5557},H:{"0":0},L:{"0":28.2294},R:{_:"0"},M:{"0":0.22784}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js index 0b5125d548c3d3..2b1bfcf722ed6d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MP.js @@ -1 +1 @@ -module.exports={C:{"52":0.00563,"61":0.01127,"78":0.06197,"87":0.00563,"115":0.10705,"122":0.00563,"123":0.32114,"124":0.20282,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"38":0.00563,"77":0.00563,"79":0.02817,"81":0.01127,"90":0.00563,"91":0.00563,"93":0.12395,"96":0.00563,"99":0.01127,"103":0.15212,"108":0.0169,"109":0.98032,"110":0.00563,"112":0.02817,"113":0.01127,"114":0.20846,"115":0.3155,"116":0.63664,"117":0.00563,"118":0.5296,"119":0.12395,"120":1.00285,"121":4.09028,"122":23.84872,"123":5.21145,"124":0.02254,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 83 84 85 86 87 88 89 92 94 95 97 98 100 101 102 104 105 106 107 111 125 126"},F:{"104":0.01127,"106":0.12958,"107":2.06768,"108":0.07324,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.01127,"102":0.00563,"109":0.00563,"117":0.00563,"120":0.03944,"121":1.18314,"122":6.82277,"123":0.30987,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 110 111 112 113 114 115 116 118 119"},E:{"14":0.03944,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.0338,"14.1":1.12117,"15.1":0.00563,"15.2-15.3":0.02817,"15.4":0.05634,"15.5":0.02254,"15.6":0.10141,"16.0":0.04507,"16.1":0.05071,"16.2":0.2648,"16.3":0.16902,"16.4":0.02817,"16.5":0.08451,"16.6":0.22536,"17.0":0.01127,"17.1":0.07888,"17.2":0.17465,"17.3":0.5296,"17.4":0.06761},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00212,"5.0-5.1":0.00106,"6.0-6.1":0.00637,"7.0-7.1":0.00744,"8.1-8.4":0.00212,"9.0-9.2":0.00425,"9.3":0.02656,"10.0-10.2":0.00425,"10.3":0.04461,"11.0-11.2":0.03187,"11.3-11.4":0.01062,"12.0-12.1":0.00956,"12.2-12.5":0.18377,"13.0-13.1":0.00319,"13.2":0.03187,"13.3":0.00956,"13.4-13.7":0.03612,"14.0-14.4":0.06905,"14.5-14.8":0.10835,"15.0-15.1":0.04674,"15.2-15.3":0.05524,"15.4":0.0648,"15.5":0.08286,"15.6-15.8":0.69365,"16.0":0.1689,"16.1":0.34948,"16.2":0.1689,"16.3":0.30062,"16.4":0.06373,"16.5":0.13491,"16.6-16.7":1.02188,"17.0":0.13278,"17.1":0.26556,"17.2":0.42809,"17.3":5.26875,"17.4":0.77332,"17.5":0},P:{"21":0.06498,"22":0.06498,"23":2.97842,"24":3.19503,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 17.0","7.2-7.4":0.01083,"11.1-11.2":0.05415,"13.0":0.01083,"18.0":0.02166,"19.0":0.04332},I:{"0":0.19132,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00012,"4.4":0,"4.4.3-4.4.4":0.00046},K:{"0":0.2314,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00563,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":29.91153},R:{_:"0"},M:{"0":0.1921},Q:{_:"14.9"},O:{"0":0.11788},H:{"0":0}}; +module.exports={C:{"78":0.44047,"108":0.01129,"113":0.01129,"115":0.06212,"122":0.02824,"124":1.80704,"125":0.25976,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 114 116 117 118 119 120 121 123 126 127 128 3.5 3.6"},D:{"65":0.00565,"67":0.01129,"74":0.00565,"79":0.01694,"80":0.00565,"87":0.01129,"91":0.01129,"93":0.17506,"99":0.01129,"103":0.15812,"109":0.98823,"110":0.01129,"111":0.00565,"112":0.02259,"114":0.00565,"115":0.01694,"116":0.11859,"117":0.02824,"118":0.3727,"119":0.02824,"120":0.16376,"121":0.83576,"122":1.8861,"123":25.65997,"124":8.30109,"125":0.02824,"126":0.01129,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 68 69 70 71 72 73 75 76 77 78 81 83 84 85 86 88 89 90 92 94 95 96 97 98 100 101 102 104 105 106 107 108 113 127"},F:{"106":0.00565,"107":1.67716,"108":0.20329,"109":0.01129,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00565,"92":0.01129,"109":0.01129,"113":0.01129,"115":0.00565,"119":0.00565,"120":0.00565,"121":0.10729,"122":0.33882,"123":4.02631,"124":1.50775,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 114 116 117 118"},E:{"11":0.00565,"14":0.11859,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 16.0","12.1":0.02259,"13.1":0.02259,"14.1":0.31623,"15.2-15.3":0.03388,"15.4":0.06776,"15.5":0.01129,"15.6":0.15812,"16.1":0.03388,"16.2":0.03953,"16.3":0.13553,"16.4":0.04518,"16.5":0.05082,"16.6":0.29364,"17.0":0.19765,"17.1":0.06212,"17.2":1.51904,"17.3":0.23717,"17.4":0.4687,"17.5":0.00565},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00223,"5.0-5.1":0.00223,"6.0-6.1":0.00558,"7.0-7.1":0.00892,"8.1-8.4":0.00223,"9.0-9.2":0.00558,"9.3":0.02788,"10.0-10.2":0.00558,"10.3":0.04461,"11.0-11.2":0.03792,"11.3-11.4":0.01115,"12.0-12.1":0.00781,"12.2-12.5":0.18178,"13.0-13.1":0.00335,"13.2":0.0368,"13.3":0.00892,"13.4-13.7":0.03457,"14.0-14.4":0.06803,"14.5-14.8":0.10372,"15.0-15.1":0.04796,"15.2-15.3":0.05465,"15.4":0.06245,"15.5":0.07918,"15.6-15.8":0.69145,"16.0":0.16171,"16.1":0.3368,"16.2":0.16171,"16.3":0.2855,"16.4":0.05911,"16.5":0.12379,"16.6-16.7":0.97806,"17.0":0.1171,"17.1":0.21636,"17.2":0.28773,"17.3":2.09888,"17.4":4.73753,"17.5":0.04349},P:{"4":0.05341,"20":0.01068,"21":0.01068,"22":0.27772,"23":0.87589,"24":3.4715,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0 18.0","7.2-7.4":0.01068,"11.1-11.2":0.04273,"16.0":0.02136,"19.0":0.05341},I:{"0":0.05636,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"11":0.02824,_:"6 7 8 9 10 5.5"},K:{"0":0.05224,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.074},H:{"0":0},L:{"0":29.34833},R:{_:"0"},M:{"0":0.02177}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js index 524be78a17c6ef..1d776d1321ba1f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MQ.js @@ -1 +1 @@ -module.exports={C:{"48":0.00415,"52":0.00415,"72":0.00415,"78":0.02074,"113":0.00415,"114":0.00415,"115":0.31103,"117":0.00415,"118":0.00415,"119":0.00415,"120":0.06221,"121":0.02074,"122":0.04976,"123":1.65465,"124":0.91234,"125":0.00415,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 116 126 127 3.5 3.6"},D:{"49":0.00415,"55":0.00829,"64":0.00415,"65":0.00415,"75":0.00415,"76":0.00415,"78":0.00415,"79":0.00415,"83":0.00415,"87":0.01244,"88":0.02903,"94":0.00415,"95":0.01244,"97":0.00415,"98":0.04147,"99":0.02074,"100":0.00415,"102":0.00829,"103":0.05806,"104":0.00415,"105":0.00415,"106":0.00415,"107":0.00415,"108":0.00829,"109":0.92063,"110":0.00415,"111":0.02488,"112":0.02488,"113":0.00415,"114":0.09538,"115":0.00415,"116":0.19906,"117":0.01244,"118":0.02903,"119":0.04147,"120":0.19906,"121":1.50951,"122":15.80007,"123":4.11382,"124":0.00415,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 66 67 68 69 70 71 72 73 74 77 80 81 84 85 86 89 90 91 92 93 96 101 125 126"},F:{"40":0.00829,"46":0.00829,"89":0.09953,"95":0.00415,"102":0.01244,"106":0.02488,"107":1.20678,"108":0.12441,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00415,"92":0.08709,"100":0.00415,"104":0.00415,"109":0.02903,"112":0.00415,"115":0.00415,"117":0.00415,"118":0.00829,"119":0.16588,"120":0.09538,"121":0.15344,"122":5.92606,"123":0.4147,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 106 107 108 110 111 113 114 116"},E:{"14":0.05806,"15":0.01244,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00415,"13.1":0.12026,"14.1":0.19906,"15.1":0.02903,"15.2-15.3":0.01659,"15.4":0.02903,"15.5":0.18662,"15.6":0.24882,"16.0":0.02488,"16.1":0.14515,"16.2":0.06635,"16.3":0.16173,"16.4":0.02074,"16.5":0.10782,"16.6":1.13213,"17.0":0.1327,"17.1":0.24053,"17.2":0.85428,"17.3":1.14872,"17.4":0.24467},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00367,"5.0-5.1":0.00184,"6.0-6.1":0.01101,"7.0-7.1":0.01285,"8.1-8.4":0.00367,"9.0-9.2":0.00734,"9.3":0.04589,"10.0-10.2":0.00734,"10.3":0.07709,"11.0-11.2":0.05507,"11.3-11.4":0.01836,"12.0-12.1":0.01652,"12.2-12.5":0.31754,"13.0-13.1":0.00551,"13.2":0.05507,"13.3":0.01652,"13.4-13.7":0.06241,"14.0-14.4":0.11931,"14.5-14.8":0.18722,"15.0-15.1":0.08076,"15.2-15.3":0.09545,"15.4":0.11197,"15.5":0.14317,"15.6-15.8":1.19858,"16.0":0.29184,"16.1":0.60388,"16.2":0.29184,"16.3":0.51945,"16.4":0.11013,"16.5":0.23311,"16.6-16.7":1.76575,"17.0":0.22944,"17.1":0.45888,"17.2":0.73971,"17.3":9.10408,"17.4":1.33624,"17.5":0},P:{"4":0.01083,"20":0.01083,"21":0.04333,"22":0.15164,"23":2.6429,"24":1.37561,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 17.0","7.2-7.4":0.06499,"11.1-11.2":0.03249,"13.0":0.01083,"15.0":0.05416,"16.0":0.02166,"18.0":0.02166,"19.0":0.04333},I:{"0":0.01749,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.33362,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00829,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":36.09092},R:{_:"0"},M:{"0":0.23412},Q:{_:"14.9"},O:{"0":0.00585},H:{"0":0}}; +module.exports={C:{"68":0.009,"78":0.009,"89":0.0045,"102":0.0045,"104":0.0135,"114":0.018,"115":0.25644,"119":0.0045,"121":0.0135,"122":0.04499,"123":0.04949,"124":1.47567,"125":0.69285,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 103 105 106 107 108 109 110 111 112 113 116 117 118 120 126 127 128 3.5 3.6"},D:{"55":0.0045,"56":0.04049,"63":0.0045,"64":0.02699,"76":0.0045,"79":0.009,"81":0.0045,"85":0.0045,"87":0.018,"88":0.0045,"98":0.0045,"99":0.03149,"103":0.04049,"105":0.04499,"106":0.0045,"107":0.0045,"108":0.0045,"109":0.82332,"110":0.0045,"111":0.03149,"112":0.05849,"113":0.0045,"114":0.15747,"115":0.0045,"116":0.18896,"117":0.018,"118":0.0135,"119":0.03599,"120":0.08098,"121":0.14397,"122":0.98528,"123":16.10192,"124":6.69001,"125":0.009,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 57 58 59 60 61 62 65 66 67 68 69 70 71 72 73 74 75 77 78 80 83 84 86 89 90 91 92 93 94 95 96 97 100 101 102 104 126 127"},F:{"40":0.02699,"46":0.009,"83":0.0045,"89":0.09448,"106":0.0045,"107":0.71534,"108":0.4409,"109":0.27444,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.0045,"17":0.009,"91":0.0045,"92":0.0135,"97":0.0045,"108":0.0045,"109":0.03149,"112":0.0045,"113":0.0045,"114":0.03149,"116":0.0045,"117":0.0045,"118":0.0045,"119":0.11697,"120":0.15747,"121":0.04499,"122":0.39141,"123":4.23806,"124":2.28099,_:"12 13 14 15 18 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 98 99 100 101 102 103 104 105 106 107 110 111 115"},E:{"14":0.04949,"15":0.009,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.009,"13.1":0.04949,"14.1":0.09898,"15.1":0.0135,"15.2-15.3":0.07648,"15.4":0.0135,"15.5":0.28344,"15.6":0.36442,"16.0":0.02699,"16.1":0.04499,"16.2":0.06749,"16.3":0.14847,"16.4":0.05849,"16.5":0.07198,"16.6":1.41719,"17.0":0.09898,"17.1":0.23395,"17.2":0.4634,"17.3":0.52638,"17.4":1.39019,"17.5":0.009},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00347,"5.0-5.1":0.00347,"6.0-6.1":0.00867,"7.0-7.1":0.01387,"8.1-8.4":0.00347,"9.0-9.2":0.00867,"9.3":0.04333,"10.0-10.2":0.00867,"10.3":0.06933,"11.0-11.2":0.05893,"11.3-11.4":0.01733,"12.0-12.1":0.01213,"12.2-12.5":0.28254,"13.0-13.1":0.0052,"13.2":0.0572,"13.3":0.01387,"13.4-13.7":0.05373,"14.0-14.4":0.10574,"14.5-14.8":0.1612,"15.0-15.1":0.07453,"15.2-15.3":0.08493,"15.4":0.09707,"15.5":0.12307,"15.6-15.8":1.07469,"16.0":0.25134,"16.1":0.52348,"16.2":0.25134,"16.3":0.44374,"16.4":0.09187,"16.5":0.1924,"16.6-16.7":1.52016,"17.0":0.182,"17.1":0.33627,"17.2":0.44721,"17.3":3.26219,"17.4":7.36333,"17.5":0.0676},P:{"4":0.0106,"20":0.02119,"21":0.05298,"22":0.09536,"23":0.75228,"24":2.77603,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 17.0","7.2-7.4":0.08476,"11.1-11.2":0.0106,"13.0":0.0106,"15.0":0.04238,"16.0":0.02119,"18.0":0.0106,"19.0":0.09536},I:{"0":0.00548,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":1.17424,_:"6 7 8 9 10 5.5"},K:{"0":0.33556,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0055},O:{"0":0.011},H:{"0":0},L:{"0":33.2212},R:{_:"0"},M:{"0":0.31356}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js index c3912a1213f2ac..197b748de7cb6e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MR.js @@ -1 +1 @@ -module.exports={C:{"3":0.00433,"34":0.00144,"44":0.00144,"47":0.00144,"50":0.00144,"52":0.00433,"59":0.00144,"68":0.01298,"92":0.00144,"107":0.00433,"114":0.00144,"115":0.29417,"118":0.00577,"120":0.00288,"121":0.00288,"122":0.01154,"123":0.32589,"124":0.20765,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 48 49 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 110 111 112 113 116 117 119 125 126 127 3.5 3.6"},D:{"11":0.01009,"25":0.00144,"29":0.00721,"33":0.0173,"39":0.00721,"41":0.03749,"43":0.00577,"45":0.00144,"46":0.00144,"49":0.00144,"50":0.01154,"52":0.00144,"54":0.00288,"56":0.00144,"58":1.31799,"63":0.00288,"65":0.01442,"67":0.05047,"68":0.00577,"70":0.00721,"72":0.00577,"73":0.00144,"75":0.00288,"77":0.00577,"78":0.00144,"79":0.0173,"81":0.00144,"83":0.01009,"87":0.00721,"88":0.00288,"90":0.00144,"91":0.00721,"93":0.00865,"94":0.01009,"95":0.07498,"96":0.00144,"98":0.03461,"99":0.00288,"102":0.00433,"103":0.03317,"104":0.01154,"105":0.00577,"106":0.00288,"108":0.02307,"109":0.74263,"110":0.00288,"111":0.00433,"112":0.00144,"114":0.00433,"115":0.00288,"116":0.02019,"117":0.00288,"118":0.09517,"119":0.08652,"120":0.08652,"121":0.38501,"122":3.64393,"123":1.11755,"124":0.00577,"125":0.00433,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 30 31 32 34 35 36 37 38 40 42 44 47 48 51 53 55 57 59 60 61 62 64 66 69 71 74 76 80 84 85 86 89 92 97 100 101 107 113 126"},F:{"79":0.00288,"82":0.04903,"85":0.01009,"86":0.00144,"95":0.08508,"98":0.00144,"105":0.00144,"106":0.00288,"107":0.17016,"108":0.09661,"109":0.00144,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 87 88 89 90 91 92 93 94 96 97 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00433,"15":0.00288,"17":0.00144,"18":0.01009,"84":0.00721,"89":0.00288,"90":0.00144,"92":0.01875,"100":0.00288,"109":0.01009,"111":0.00144,"112":0.00144,"114":0.00433,"115":0.00144,"116":0.00144,"117":0.00144,"118":0.00433,"119":0.00433,"120":0.00577,"121":0.03605,"122":1.63955,"123":0.15429,_:"13 14 16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 113"},E:{"4":0.00144,"14":0.00721,_:"0 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 17.5","5.1":0.07354,"12.1":0.02019,"13.1":0.00721,"14.1":0.00144,"15.4":0.01875,"15.5":0.00144,"15.6":0.02307,"16.0":0.00433,"16.1":0.00288,"16.2":0.00144,"16.3":0.00577,"16.4":0.01442,"16.5":0.00865,"16.6":0.01154,"17.0":0.00433,"17.1":0.00865,"17.2":0.01154,"17.3":0.05191,"17.4":0.02307},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00277,"5.0-5.1":0.00138,"6.0-6.1":0.0083,"7.0-7.1":0.00969,"8.1-8.4":0.00277,"9.0-9.2":0.00554,"9.3":0.0346,"10.0-10.2":0.00554,"10.3":0.05812,"11.0-11.2":0.04151,"11.3-11.4":0.01384,"12.0-12.1":0.01245,"12.2-12.5":0.2394,"13.0-13.1":0.00415,"13.2":0.04151,"13.3":0.01245,"13.4-13.7":0.04705,"14.0-14.4":0.08995,"14.5-14.8":0.14115,"15.0-15.1":0.06089,"15.2-15.3":0.07196,"15.4":0.08441,"15.5":0.10794,"15.6-15.8":0.90364,"16.0":0.22003,"16.1":0.45528,"16.2":0.22003,"16.3":0.39162,"16.4":0.08303,"16.5":0.17575,"16.6-16.7":1.33124,"17.0":0.17298,"17.1":0.34596,"17.2":0.55768,"17.3":6.86379,"17.4":1.00743,"17.5":0},P:{"4":0.13132,"20":0.08081,"21":0.79805,"22":0.33336,"23":1.20212,"24":1.83854,"5.0-5.4":0.0101,"6.2-6.4":0.0202,"7.2-7.4":1.42436,_:"8.2 10.1 12.0","9.2":0.0202,"11.1-11.2":0.10102,"13.0":0.04041,"14.0":0.06061,"15.0":0.06061,"16.0":0.14143,"17.0":0.04041,"18.0":0.07071,"19.0":0.73743},I:{"0":0.06818,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":0.7331,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03201,"9":0.008,"10":0.0112,"11":0.25449,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":65.77442},R:{_:"0"},M:{"0":0.05135},Q:{_:"14.9"},O:{"0":0.23107},H:{"0":0.02}}; +module.exports={C:{"38":0.00127,"43":0.00127,"45":0.00127,"47":0.00254,"56":0.00127,"68":0.01652,"72":0.00508,"87":0.00636,"88":0.00127,"89":0.00127,"92":0.00127,"94":0.00254,"112":0.00127,"115":0.24276,"118":0.00381,"120":0.00254,"121":0.00127,"122":0.00254,"123":0.00636,"124":0.41435,"125":0.23895,"126":0.00127,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 90 91 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 119 127 128 3.5 3.6"},D:{"11":0.00254,"25":0.00381,"29":0.00254,"33":0.00636,"37":0.00127,"38":0.00508,"39":0.00381,"41":0.01144,"43":0.00763,"44":0.00254,"48":0.00127,"49":0.00127,"50":0.00254,"58":1.04222,"62":0.0089,"65":0.00381,"67":0.00127,"68":0.00127,"69":0.00254,"70":0.00636,"72":0.00254,"73":0.00636,"75":0.00127,"77":0.0089,"79":0.01271,"80":0.00127,"81":0.00254,"83":0.01398,"84":0.00636,"86":0.00381,"87":0.00381,"88":0.00381,"90":0.00127,"91":0.00127,"92":0.00127,"93":0.00127,"95":0.01652,"96":0.00254,"97":0.00127,"98":0.05465,"99":0.00636,"100":0.00127,"102":0.00636,"103":0.1271,"104":0.00254,"105":0.01525,"106":0.00763,"108":0.02288,"109":0.57703,"110":0.00127,"111":0.00254,"113":0.00254,"114":0.00127,"115":0.07499,"116":0.01907,"117":0.00508,"118":0.01017,"119":0.04576,"120":0.06736,"121":0.04449,"122":0.1576,"123":3.32367,"124":1.21126,"125":0.0089,"126":0.00636,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 30 31 32 34 35 36 40 42 45 46 47 51 52 53 54 55 56 57 59 60 61 63 64 66 71 74 76 78 85 89 94 101 107 112 127"},F:{"79":0.00636,"82":0.00254,"85":0.01907,"95":0.08389,"102":0.00127,"107":0.02288,"108":0.14235,"109":0.05847,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00254,"14":0.00508,"16":0.00127,"17":0.00127,"18":0.01144,"84":0.00254,"89":0.00127,"90":0.00636,"92":0.01144,"100":0.00254,"108":0.00127,"109":0.0089,"112":0.00127,"114":0.00381,"116":0.00127,"117":0.00254,"118":0.0089,"119":0.00254,"120":0.00381,"121":0.01017,"122":0.1271,"123":0.82869,"124":0.44612,_:"13 15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 113 115"},E:{"14":0.01017,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3","5.1":0.0089,"12.1":0.00636,"13.1":0.00127,"14.1":0.00254,"15.4":0.00127,"15.5":0.01017,"15.6":0.01398,"16.0":0.05084,"16.1":0.02923,"16.2":0.00127,"16.3":0.01144,"16.4":0.0483,"16.5":0.00381,"16.6":0.05465,"17.0":0.00254,"17.1":0.00763,"17.2":0.00254,"17.3":0.0089,"17.4":0.09914,"17.5":0.00127},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00257,"5.0-5.1":0.00257,"6.0-6.1":0.00643,"7.0-7.1":0.01029,"8.1-8.4":0.00257,"9.0-9.2":0.00643,"9.3":0.03217,"10.0-10.2":0.00643,"10.3":0.05147,"11.0-11.2":0.04375,"11.3-11.4":0.01287,"12.0-12.1":0.00901,"12.2-12.5":0.20972,"13.0-13.1":0.00386,"13.2":0.04246,"13.3":0.01029,"13.4-13.7":0.03989,"14.0-14.4":0.07849,"14.5-14.8":0.11966,"15.0-15.1":0.05533,"15.2-15.3":0.06305,"15.4":0.07205,"15.5":0.09135,"15.6-15.8":0.79773,"16.0":0.18656,"16.1":0.38857,"16.2":0.18656,"16.3":0.32938,"16.4":0.06819,"16.5":0.14282,"16.6-16.7":1.1284,"17.0":0.1351,"17.1":0.24961,"17.2":0.33196,"17.3":2.42148,"17.4":5.46571,"17.5":0.05018},P:{"4":0.11088,"20":0.11088,"21":0.66527,"22":0.33264,"23":0.59472,"24":2.2075,"5.0-5.4":0.01008,"6.2-6.4":0.03024,"7.2-7.4":1.24991,_:"8.2 12.0","9.2":0.01008,"10.1":0.01008,"11.1-11.2":0.09072,"13.0":0.03024,"14.0":0.08064,"15.0":0.03024,"16.0":0.13104,"17.0":0.04032,"18.0":0.0504,"19.0":0.86687},I:{"0":0.07824,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.0096,"9":0.00137,"10":0.00411,"11":0.08914,_:"6 7 5.5"},K:{"0":1.00129,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.29679},H:{"0":0.02},L:{"0":68.25902},R:{_:"0"},M:{"0":0.0611}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js index 559324dd4370c5..7f231cb528535f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MS.js @@ -1 +1 @@ -module.exports={C:{"115":0.01748,"120":0.03496,"122":0.03496,"123":0.47633,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 124 125 126 127 3.5 3.6"},D:{"103":0.05244,"109":0.0874,"113":0.03496,"116":0.33649,"118":0.03496,"119":0.05244,"120":0.10488,"121":0.9177,"122":17.2615,"123":3.88493,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 110 111 112 114 115 117 124 125 126"},F:{"105":0.12236,"107":2.13693,"108":0.01748,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.0874,"98":0.01748,"109":0.0874,"120":0.01748,"121":0.23161,"122":6.01749,"123":0.15732,_:"12 13 14 15 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.5 16.0 16.2 16.4 17.0 17.5","13.1":0.0874,"15.4":0.37145,"15.6":0.05244,"16.1":0.33649,"16.3":0.15732,"16.5":0.03496,"16.6":0.79534,"17.1":0.37145,"17.2":0.45885,"17.3":3.00219,"17.4":0.24909},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00383,"5.0-5.1":0.00192,"6.0-6.1":0.01149,"7.0-7.1":0.01341,"8.1-8.4":0.00383,"9.0-9.2":0.00766,"9.3":0.04788,"10.0-10.2":0.00766,"10.3":0.08043,"11.0-11.2":0.05745,"11.3-11.4":0.01915,"12.0-12.1":0.01724,"12.2-12.5":0.33131,"13.0-13.1":0.00575,"13.2":0.05745,"13.3":0.01724,"13.4-13.7":0.06511,"14.0-14.4":0.12448,"14.5-14.8":0.19534,"15.0-15.1":0.08426,"15.2-15.3":0.09959,"15.4":0.11682,"15.5":0.14938,"15.6-15.8":1.25056,"16.0":0.3045,"16.1":0.63007,"16.2":0.3045,"16.3":0.54197,"16.4":0.11491,"16.5":0.24322,"16.6-16.7":1.84233,"17.0":0.23939,"17.1":0.47878,"17.2":0.77179,"17.3":9.49891,"17.4":1.3942,"17.5":0},P:{"4":0.06816,"20":0.03408,"21":0.15335,"22":0.03408,"23":1.72097,"24":1.68689,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.15335,"19.0":0.0852},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":33.35113},R:{_:"0"},M:{"0":0.18019},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"115":0.01988,"123":0.05964,"124":0.50495,"125":0.42543,"126":0.07952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 127 128 3.5 3.6"},D:{"56":0.01988,"89":0.03976,"108":0.03976,"109":0.30218,"116":0.01988,"118":0.01988,"120":0.11928,"121":0.05964,"122":0.80713,"123":12.62778,"124":9.47481,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 114 115 117 119 125 126 127"},F:{"107":0.22266,"108":0.11928,"109":0.72761,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.01988,"109":0.01988,"122":0.16302,"123":4.54457,"124":2.89055,_:"12 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.4 17.0 17.5","14.1":0.1829,"15.6":0.1829,"16.1":0.56459,"16.2":0.01988,"16.3":0.52483,"16.5":0.32206,"16.6":0.30218,"17.1":0.01988,"17.2":0.16302,"17.3":0.52483,"17.4":1.71763},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00291,"5.0-5.1":0.00291,"6.0-6.1":0.00727,"7.0-7.1":0.01163,"8.1-8.4":0.00291,"9.0-9.2":0.00727,"9.3":0.03634,"10.0-10.2":0.00727,"10.3":0.05814,"11.0-11.2":0.04942,"11.3-11.4":0.01454,"12.0-12.1":0.01018,"12.2-12.5":0.23694,"13.0-13.1":0.00436,"13.2":0.04797,"13.3":0.01163,"13.4-13.7":0.04506,"14.0-14.4":0.08867,"14.5-14.8":0.13518,"15.0-15.1":0.0625,"15.2-15.3":0.07123,"15.4":0.0814,"15.5":0.1032,"15.6-15.8":0.90123,"16.0":0.21077,"16.1":0.43898,"16.2":0.21077,"16.3":0.37212,"16.4":0.07704,"16.5":0.16135,"16.6-16.7":1.2748,"17.0":0.15263,"17.1":0.282,"17.2":0.37503,"17.3":2.73566,"17.4":6.17486,"17.5":0.05669},P:{"4":0.11052,"21":0.22104,"22":0.02763,"23":0.08289,"24":4.47614,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.30394,"19.0":0.11052},I:{"0":0.05399,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.03012,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":41.37845},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js index 64c377074d2ccc..1f3f3c4c7760a1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MT.js @@ -1 +1 @@ -module.exports={C:{"39":0.0047,"40":0.0047,"52":0.0047,"68":0.02348,"83":0.0047,"88":0.00939,"107":0.0047,"108":0.01878,"113":0.0047,"115":0.16433,"116":0.0047,"119":0.01878,"120":0.00939,"121":0.00939,"122":0.0939,"123":1.32869,"124":0.47889,"125":0.0047,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 110 111 112 114 117 118 126 127 3.5","3.6":0.0047},D:{"26":0.0047,"31":0.0047,"33":0.0047,"37":0.0047,"38":0.0047,"40":0.0047,"41":0.0047,"42":0.0047,"43":0.0047,"44":0.00939,"45":0.0047,"46":0.0047,"47":0.0047,"49":0.01409,"51":0.00939,"56":0.0047,"70":0.00939,"76":0.00939,"77":0.03756,"79":0.07043,"81":0.0047,"86":0.00939,"87":0.01878,"88":0.0047,"89":0.0047,"90":0.0047,"91":0.0047,"92":0.0047,"93":0.5634,"94":0.0047,"95":0.0047,"98":0.01409,"99":0.0047,"102":0.00939,"103":0.03287,"104":0.00939,"107":0.20189,"108":0.01409,"109":1.18314,"110":0.01409,"111":0.08451,"112":0.02348,"113":0.01878,"114":0.00939,"115":0.21597,"116":0.2864,"117":0.0939,"118":0.02348,"119":0.15494,"120":0.40377,"121":2.76536,"122":20.27301,"123":5.76546,"125":0.0047,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 34 35 36 39 48 50 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 78 80 83 84 85 96 97 100 101 105 106 124 126"},F:{"28":0.03756,"31":0.0047,"90":0.06573,"94":0.00939,"95":0.01409,"106":0.00939,"107":1.13619,"108":0.17372,"109":0.0047,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00939,"107":0.0047,"108":0.01409,"109":0.03287,"112":0.05165,"114":0.0047,"115":0.0047,"117":0.00939,"118":0.00939,"119":0.06573,"120":0.05165,"121":0.0986,"122":5.79363,"123":0.39438,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 113 116"},E:{"9":0.01409,"13":0.0047,"14":0.03756,"15":0.00939,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.0047,"12.1":0.0047,"13.1":0.06104,"14.1":0.07043,"15.1":0.02817,"15.2-15.3":0.00939,"15.4":0.01878,"15.5":0.02348,"15.6":0.24884,"16.0":0.03756,"16.1":0.03287,"16.2":0.03756,"16.3":0.08921,"16.4":0.04226,"16.5":0.10329,"16.6":0.38499,"17.0":0.04226,"17.1":0.13146,"17.2":0.61974,"17.3":0.87797,"17.4":0.21128},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00342,"5.0-5.1":0.00171,"6.0-6.1":0.01027,"7.0-7.1":0.01198,"8.1-8.4":0.00342,"9.0-9.2":0.00685,"9.3":0.0428,"10.0-10.2":0.00685,"10.3":0.0719,"11.0-11.2":0.05136,"11.3-11.4":0.01712,"12.0-12.1":0.01541,"12.2-12.5":0.29616,"13.0-13.1":0.00514,"13.2":0.05136,"13.3":0.01541,"13.4-13.7":0.05821,"14.0-14.4":0.11128,"14.5-14.8":0.17462,"15.0-15.1":0.07532,"15.2-15.3":0.08902,"15.4":0.10443,"15.5":0.13353,"15.6-15.8":1.11789,"16.0":0.2722,"16.1":0.56322,"16.2":0.2722,"16.3":0.48447,"16.4":0.10272,"16.5":0.21741,"16.6-16.7":1.64687,"17.0":0.21399,"17.1":0.42798,"17.2":0.68991,"17.3":8.49114,"17.4":1.24628,"17.5":0},P:{"4":0.07374,"20":0.02107,"21":0.04214,"22":0.02107,"23":1.30631,"24":1.36952,_:"5.0-5.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0","6.2-6.4":0.02107,"7.2-7.4":0.05267,"11.1-11.2":0.01053,"16.0":0.01053,"17.0":0.01053,"18.0":0.01053,"19.0":0.02107},I:{"0":0.24831,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00015,"4.4":0,"4.4.3-4.4.4":0.0006},K:{"0":0.23342,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00488,"7":0.00488,"8":0.05363,"9":0.00975,"10":0.00975,"11":0.039,_:"5.5"},S:{"2.5":0.00531,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":31.9307},R:{_:"0"},M:{"0":0.33952},Q:{_:"14.9"},O:{"0":0.20159},H:{"0":0}}; +module.exports={C:{"40":0.00435,"68":0.06086,"78":0.00435,"83":0.00435,"88":0.00435,"108":0.01304,"113":0.00435,"115":0.16084,"120":0.00435,"121":0.00435,"122":0.00869,"123":0.03043,"124":0.7955,"125":0.39123,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 114 116 117 118 119 126 127 128 3.5","3.6":0.00435},D:{"4":0.00435,"11":0.00435,"26":0.00435,"37":0.00435,"38":0.00435,"39":0.00435,"40":0.00435,"41":0.00435,"42":0.00435,"43":0.00869,"44":0.00869,"45":0.00869,"46":0.00869,"47":0.00435,"49":0.01739,"51":0.01304,"56":0.00869,"70":0.00435,"75":0.00435,"76":0.00869,"77":0.02608,"79":0.06521,"80":0.00435,"81":0.00435,"86":0.00869,"87":0.00869,"88":0.01304,"90":0.00435,"92":0.00435,"93":0.33907,"94":0.00435,"95":0.00435,"97":0.00435,"98":0.01304,"99":0.00435,"103":0.04782,"104":0.00435,"106":0.00435,"107":0.11737,"108":0.00435,"109":0.87375,"110":0.00869,"111":0.00435,"112":0.02174,"113":0.00869,"114":0.01739,"115":0.17823,"116":0.26951,"117":0.09998,"118":0.01739,"119":0.15215,"120":0.19996,"121":0.32168,"122":1.69533,"123":18.60081,"124":6.91608,"125":0.01739,"126":0.00435,_:"5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 48 50 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 78 83 84 85 89 91 96 100 101 102 105 127"},F:{"28":0.03478,"31":0.00435,"36":0.00435,"90":0.04347,"94":0.00869,"95":0.00435,"107":0.88679,"108":0.37819,"109":0.19996,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00435,"92":0.00435,"107":0.00435,"108":0.00869,"109":0.02174,"112":0.04347,"113":0.00435,"114":0.00435,"117":0.00869,"119":0.03912,"120":0.03478,"121":0.06955,"122":0.18692,"123":4.09487,"124":1.60839,_:"13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111 115 116 118"},E:{"9":0.02174,"13":0.00435,"14":0.03043,_:"0 4 5 6 7 8 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00435,"13.1":0.04347,"14.1":0.06521,"15.1":0.00435,"15.2-15.3":0.00869,"15.4":0.01304,"15.5":0.01304,"15.6":0.19996,"16.0":0.01739,"16.1":0.06086,"16.2":0.12172,"16.3":0.06521,"16.4":0.08694,"16.5":0.09998,"16.6":0.44339,"17.0":0.06521,"17.1":0.07825,"17.2":0.17823,"17.3":0.29994,"17.4":1.28671,"17.5":0.02174},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00382,"5.0-5.1":0.00382,"6.0-6.1":0.00956,"7.0-7.1":0.0153,"8.1-8.4":0.00382,"9.0-9.2":0.00956,"9.3":0.0478,"10.0-10.2":0.00956,"10.3":0.07649,"11.0-11.2":0.06501,"11.3-11.4":0.01912,"12.0-12.1":0.01339,"12.2-12.5":0.31169,"13.0-13.1":0.00574,"13.2":0.0631,"13.3":0.0153,"13.4-13.7":0.05928,"14.0-14.4":0.11664,"14.5-14.8":0.17783,"15.0-15.1":0.08222,"15.2-15.3":0.0937,"15.4":0.10708,"15.5":0.13576,"15.6-15.8":1.18555,"16.0":0.27727,"16.1":0.57748,"16.2":0.27727,"16.3":0.48952,"16.4":0.10135,"16.5":0.21225,"16.6-16.7":1.67698,"17.0":0.20078,"17.1":0.37096,"17.2":0.49334,"17.3":3.59873,"17.4":8.12295,"17.5":0.07458},P:{"4":0.0628,"20":0.02093,"21":0.0314,"22":0.02093,"23":0.16748,"24":2.22953,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 13.0 15.0 17.0 18.0","6.2-6.4":0.02093,"7.2-7.4":0.01047,"12.0":0.02093,"14.0":0.01047,"16.0":0.01047,"19.0":0.01047},I:{"0":0.27028,"3":0,"4":0.00003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.00068},A:{"6":0.0048,"7":0.0048,"8":0.05756,"9":0.00959,"10":0.00959,"11":0.04797,_:"5.5"},K:{"0":0.21616,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00565,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.16397},H:{"0":0.01},L:{"0":33.28921},R:{_:"0"},M:{"0":0.25443}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js index 4220b755b8a18d..5b8b21fab170e3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MU.js @@ -1 +1 @@ -module.exports={C:{"20":0.00321,"34":0.00321,"44":0.01285,"52":0.00321,"78":0.00643,"88":0.00643,"94":0.00643,"98":0.00321,"108":0.00321,"113":0.03213,"114":0.0257,"115":0.25061,"116":0.00321,"117":0.00321,"120":0.00643,"121":0.01285,"122":0.02892,"123":1.12455,"124":0.46589,"125":0.00321,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 99 100 101 102 103 104 105 106 107 109 110 111 112 118 119 126 127 3.5 3.6"},D:{"26":0.00321,"34":0.00643,"38":0.01607,"47":0.00321,"49":0.01928,"50":0.00321,"55":0.00321,"56":0.00321,"58":0.00643,"68":0.00643,"69":0.00321,"72":0.00321,"73":0.00321,"74":0.00643,"78":0.00643,"79":0.08033,"80":0.00643,"81":0.01607,"83":0.00964,"85":0.00321,"86":0.00643,"87":0.02892,"88":0.02249,"89":0.00321,"90":0.00321,"91":0.00643,"92":0.00321,"93":0.02249,"94":0.00964,"95":0.00643,"96":0.00321,"97":0.00321,"98":0.00321,"99":0.09318,"100":0.0257,"101":0.00321,"102":0.00321,"103":0.04498,"104":0.00964,"105":0.00321,"106":0.01607,"107":0.01285,"108":0.00643,"109":1.33661,"110":0.00643,"111":0.01285,"112":0.00643,"113":0.00643,"114":0.01928,"115":0.04177,"116":0.11246,"117":0.06747,"118":0.01607,"119":0.11567,"120":0.2217,"121":0.97033,"122":13.62312,"123":3.81062,"124":0.01285,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 51 52 53 54 57 59 60 61 62 63 64 65 66 67 70 71 75 76 77 84 125 126"},F:{"28":0.02892,"95":0.03213,"102":0.00643,"106":0.00321,"107":0.48838,"108":0.13173,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00643,"17":0.00643,"18":0.00964,"92":0.00964,"100":0.00321,"108":0.00321,"109":0.08996,"110":0.00643,"114":0.00643,"115":0.00321,"116":0.05141,"117":0.00321,"118":0.00643,"119":0.00964,"120":0.0257,"121":0.23776,"122":3.10055,"123":0.19921,_:"12 13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 111 112 113"},E:{"14":0.00964,"15":0.00321,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00321,"13.1":0.0482,"14.1":0.07069,"15.1":0.21206,"15.2-15.3":0.00643,"15.4":0.00964,"15.5":0.03534,"15.6":0.22491,"16.0":0.01285,"16.1":0.02249,"16.2":0.02892,"16.3":0.18957,"16.4":0.00643,"16.5":0.05462,"16.6":0.19278,"17.0":0.06105,"17.1":0.10924,"17.2":0.25383,"17.3":0.48195,"17.4":0.1478},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00173,"5.0-5.1":0.00086,"6.0-6.1":0.00519,"7.0-7.1":0.00605,"8.1-8.4":0.00173,"9.0-9.2":0.00346,"9.3":0.02162,"10.0-10.2":0.00346,"10.3":0.03632,"11.0-11.2":0.02594,"11.3-11.4":0.00865,"12.0-12.1":0.00778,"12.2-12.5":0.14959,"13.0-13.1":0.00259,"13.2":0.02594,"13.3":0.00778,"13.4-13.7":0.0294,"14.0-14.4":0.0562,"14.5-14.8":0.0882,"15.0-15.1":0.03805,"15.2-15.3":0.04496,"15.4":0.05274,"15.5":0.06744,"15.6-15.8":0.56463,"16.0":0.13748,"16.1":0.28447,"16.2":0.13748,"16.3":0.2447,"16.4":0.05188,"16.5":0.10981,"16.6-16.7":0.83181,"17.0":0.10808,"17.1":0.21617,"17.2":0.34846,"17.3":4.28873,"17.4":0.62948,"17.5":0},P:{"4":0.10351,"20":0.0414,"21":0.10351,"22":0.19667,"23":2.83617,"24":2.29792,_:"5.0-5.4 8.2 9.2 10.1","6.2-6.4":0.01035,"7.2-7.4":0.16562,"11.1-11.2":0.03105,"12.0":0.01035,"13.0":0.0207,"14.0":0.12421,"15.0":0.01035,"16.0":0.06211,"17.0":0.03105,"18.0":0.20702,"19.0":0.13456},I:{"0":0.06759,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":1.15058,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02249,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.22998},R:{_:"0"},M:{"0":0.38007},Q:{"14.9":0.01357},O:{"0":0.99769},H:{"0":0.01}}; +module.exports={C:{"20":0.00326,"34":0.00326,"44":0.00652,"72":0.00326,"78":0.00652,"88":0.00652,"94":0.00652,"112":0.03586,"113":0.00652,"114":0.02934,"115":0.20864,"117":0.00652,"118":0.00326,"120":0.00652,"121":0.00652,"122":0.01304,"123":0.02934,"124":1.12796,"125":0.50204,"126":0.00326,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 116 119 127 128 3.5 3.6"},D:{"38":0.02934,"49":0.02282,"53":0.00652,"56":0.00326,"60":0.00326,"65":0.00326,"67":0.00978,"68":0.00652,"69":0.00326,"72":0.00326,"78":0.00652,"79":0.02282,"80":0.00978,"81":0.02934,"83":0.00652,"85":0.00326,"86":0.00326,"87":0.0489,"88":0.0163,"89":0.00326,"91":0.00978,"92":0.00652,"93":0.00652,"94":0.02934,"95":0.00326,"96":0.01956,"98":0.00326,"99":0.02934,"100":0.01304,"101":0.00326,"102":0.00326,"103":0.03586,"104":0.00978,"106":0.00978,"107":0.00652,"108":0.00978,"109":1.57458,"110":0.00326,"111":0.03912,"112":0.00326,"113":0.00652,"114":0.0326,"115":0.03912,"116":0.10106,"117":0.0163,"118":0.0163,"119":0.14996,"120":0.0978,"121":0.2608,"122":0.8639,"123":13.47032,"124":4.9389,"125":0.0326,"126":0.00326,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 58 59 61 62 63 64 66 70 71 73 74 75 76 77 84 90 97 105 127"},F:{"28":0.0326,"95":0.02934,"102":0.00652,"107":0.44662,"108":0.26406,"109":0.12388,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00326,"15":0.00326,"16":0.00978,"17":0.01304,"18":0.00652,"92":0.00978,"100":0.00326,"109":0.08802,"110":0.00652,"114":0.00652,"115":0.00326,"116":0.00326,"117":0.00326,"119":0.00652,"120":0.01304,"121":0.02608,"122":0.19886,"123":2.45804,"124":1.0432,_:"13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112 113 118"},E:{"14":0.02608,"15":0.00326,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00326,"13.1":0.02282,"14.1":0.09128,"15.1":0.00326,"15.2-15.3":0.00978,"15.4":0.01304,"15.5":0.02282,"15.6":0.18256,"16.0":0.00978,"16.1":0.02934,"16.2":0.0326,"16.3":0.1141,"16.4":0.00978,"16.5":0.04564,"16.6":0.19234,"17.0":0.06194,"17.1":0.07172,"17.2":0.10432,"17.3":0.17604,"17.4":0.61288,"17.5":0.02934},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00173,"5.0-5.1":0.00173,"6.0-6.1":0.00432,"7.0-7.1":0.00691,"8.1-8.4":0.00173,"9.0-9.2":0.00432,"9.3":0.02158,"10.0-10.2":0.00432,"10.3":0.03454,"11.0-11.2":0.02936,"11.3-11.4":0.00863,"12.0-12.1":0.00604,"12.2-12.5":0.14073,"13.0-13.1":0.00259,"13.2":0.02849,"13.3":0.00691,"13.4-13.7":0.02677,"14.0-14.4":0.05267,"14.5-14.8":0.0803,"15.0-15.1":0.03713,"15.2-15.3":0.04231,"15.4":0.04835,"15.5":0.0613,"15.6-15.8":0.5353,"16.0":0.12519,"16.1":0.26074,"16.2":0.12519,"16.3":0.22103,"16.4":0.04576,"16.5":0.09584,"16.6-16.7":0.7572,"17.0":0.09066,"17.1":0.1675,"17.2":0.22276,"17.3":1.62491,"17.4":3.6677,"17.5":0.03367},P:{"4":0.13582,"20":0.04179,"21":0.07313,"22":0.15671,"23":0.45969,"24":4.19992,"5.0-5.4":0.01045,"6.2-6.4":0.0209,"7.2-7.4":0.14627,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.0209,"13.0":0.01045,"14.0":0.10448,"16.0":0.10448,"17.0":0.0209,"18.0":0.4388,"19.0":0.14627},I:{"0":0.08055,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"11":0.0163,_:"6 7 8 9 10 5.5"},K:{"0":1.07188,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":1.00426},H:{"0":0.02},L:{"0":51.09662},R:{_:"0"},M:{"0":0.48528}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js index ed2a709c6c20de..560068b937d35e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MV.js @@ -1 +1 @@ -module.exports={C:{"96":0.00281,"103":0.00561,"109":0.00281,"114":0.00561,"115":0.04211,"116":0.00561,"121":0.00561,"122":0.01684,"123":0.79157,"124":0.37614,"125":0.00281,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 104 105 106 107 108 110 111 112 113 117 118 119 120 126 127 3.5 3.6"},D:{"57":0.01123,"58":0.00281,"68":0.00561,"69":0.00281,"70":0.00561,"74":0.00281,"77":0.00281,"78":0.00281,"79":0.00281,"81":0.00281,"83":0.06737,"87":0.00561,"88":0.00281,"89":0.00281,"90":0.00281,"91":0.00561,"92":0.01404,"93":0.00281,"94":0.00281,"95":0.00281,"97":0.00842,"98":0.00561,"99":0.01123,"103":0.01123,"105":0.00281,"106":0.00281,"107":0.00281,"108":0.00281,"109":0.39859,"110":0.00281,"111":0.00281,"112":0.01965,"113":0.00561,"114":0.01684,"115":0.01123,"116":0.08421,"117":0.01404,"118":0.07018,"119":0.09544,"120":0.14877,"121":1.06105,"122":14.38868,"123":3.89892,"124":0.01123,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 59 60 61 62 63 64 65 66 67 71 72 73 75 76 80 84 85 86 96 100 101 102 104 125 126"},F:{"95":0.00281,"102":0.00281,"106":0.00561,"107":0.51087,"108":0.05614,"109":0.00281,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00281,"16":0.00561,"18":0.00281,"84":0.00281,"89":0.00281,"92":0.00561,"100":0.00561,"109":0.00561,"111":0.00281,"112":0.00281,"114":0.01123,"115":0.01965,"118":0.00561,"119":0.01684,"120":0.0786,"121":0.16561,"122":1.7628,"123":0.12632,_:"13 14 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 113 116 117"},E:{"14":0.00842,"15":0.01404,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 17.5","9.1":0.00281,"13.1":0.00842,"14.1":0.02526,"15.1":0.00561,"15.2-15.3":0.01684,"15.4":0.00561,"15.5":0.02526,"15.6":0.12632,"16.0":0.15439,"16.1":0.08982,"16.2":0.00842,"16.3":0.07298,"16.4":0.02807,"16.5":0.04491,"16.6":0.12632,"17.0":0.04211,"17.1":0.12351,"17.2":0.1207,"17.3":0.39579,"17.4":0.12632},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00354,"5.0-5.1":0.00177,"6.0-6.1":0.01063,"7.0-7.1":0.0124,"8.1-8.4":0.00354,"9.0-9.2":0.00708,"9.3":0.04427,"10.0-10.2":0.00708,"10.3":0.07438,"11.0-11.2":0.05313,"11.3-11.4":0.01771,"12.0-12.1":0.01594,"12.2-12.5":0.30637,"13.0-13.1":0.00531,"13.2":0.05313,"13.3":0.01594,"13.4-13.7":0.06021,"14.0-14.4":0.11511,"14.5-14.8":0.18063,"15.0-15.1":0.07792,"15.2-15.3":0.09209,"15.4":0.10803,"15.5":0.13813,"15.6-15.8":1.15641,"16.0":0.28158,"16.1":0.58263,"16.2":0.28158,"16.3":0.50117,"16.4":0.10625,"16.5":0.22491,"16.6-16.7":1.70362,"17.0":0.22136,"17.1":0.44273,"17.2":0.71368,"17.3":8.78375,"17.4":1.28923,"17.5":0},P:{"4":0.03125,"20":0.01042,"21":0.03125,"22":0.03125,"23":0.72922,"24":0.59379,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.03125,"11.1-11.2":0.01042,"16.0":0.01042,"17.0":0.01042,"18.0":0.01042,"19.0":0.01042},I:{"0":0.09313,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":1.23,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.06175,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":51.03678},R:{_:"0"},M:{"0":1.14369},Q:{"14.9":0.00719},O:{"0":0.89193},H:{"0":0}}; +module.exports={C:{"103":0.00509,"104":0.00254,"115":0.02544,"120":0.00509,"122":0.00509,"123":0.01526,"124":0.57749,"125":0.28747,"126":0.00509,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 105 106 107 108 109 110 111 112 113 114 116 117 118 119 121 127 128 3.5 3.6"},D:{"60":0.00254,"70":0.01526,"71":0.00509,"77":0.00254,"79":0.00509,"83":0.03562,"86":0.00254,"87":0.00254,"88":0.02035,"89":0.00254,"90":0.00509,"91":0.00509,"93":0.00509,"95":0.00254,"96":0.01526,"97":0.00254,"99":0.00254,"100":0.00254,"101":0.00509,"103":0.01272,"104":0.00254,"105":0.00254,"106":0.00254,"107":0.00254,"108":0.00254,"109":0.4045,"110":0.00509,"111":0.00509,"112":0.01018,"113":0.01272,"114":0.01272,"115":0.00254,"116":0.1043,"117":0.02035,"118":0.01018,"119":0.06614,"120":0.07123,"121":0.15518,"122":0.9947,"123":11.92627,"124":4.84632,"125":0.01272,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 72 73 74 75 76 78 80 81 84 85 92 94 98 102 126 127"},F:{"95":0.00254,"107":0.40958,"108":0.11194,"109":0.05851,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00509,"18":0.00254,"87":0.00254,"92":0.01018,"109":0.00254,"112":0.00509,"113":0.00763,"114":0.00254,"115":0.02798,"116":0.02798,"118":0.00254,"119":0.01018,"120":0.0229,"121":0.02035,"122":0.10939,"123":1.2949,"124":0.67416,_:"12 13 14 15 17 79 80 81 83 84 85 86 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 117"},E:{"14":0.01272,"15":0.03053,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00254,"13.1":0.00254,"14.1":0.03053,"15.1":0.00254,"15.2-15.3":0.01272,"15.4":0.00509,"15.5":0.01018,"15.6":0.06614,"16.0":0.05088,"16.1":0.07378,"16.2":0.01272,"16.3":0.02798,"16.4":0.05597,"16.5":0.02798,"16.6":0.11194,"17.0":0.0407,"17.1":0.08395,"17.2":0.11448,"17.3":0.17808,"17.4":0.44011,"17.5":0.01272},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00329,"5.0-5.1":0.00329,"6.0-6.1":0.00822,"7.0-7.1":0.01315,"8.1-8.4":0.00329,"9.0-9.2":0.00822,"9.3":0.04108,"10.0-10.2":0.00822,"10.3":0.06573,"11.0-11.2":0.05587,"11.3-11.4":0.01643,"12.0-12.1":0.0115,"12.2-12.5":0.26786,"13.0-13.1":0.00493,"13.2":0.05423,"13.3":0.01315,"13.4-13.7":0.05094,"14.0-14.4":0.10024,"14.5-14.8":0.15283,"15.0-15.1":0.07066,"15.2-15.3":0.08052,"15.4":0.09202,"15.5":0.11667,"15.6-15.8":1.01885,"16.0":0.23828,"16.1":0.49628,"16.2":0.23828,"16.3":0.42069,"16.4":0.0871,"16.5":0.18241,"16.6-16.7":1.44118,"17.0":0.17255,"17.1":0.3188,"17.2":0.42397,"17.3":3.0927,"17.4":6.98075,"17.5":0.06409},P:{"4":0.0205,"21":0.0205,"22":0.07176,"23":0.12302,"24":1.25074,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 16.0 17.0","7.2-7.4":0.0205,"11.1-11.2":0.01025,"13.0":0.01025,"15.0":0.01025,"18.0":0.01025,"19.0":0.01025},I:{"0":0.08168,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"11":0.12211,_:"6 7 8 9 10 5.5"},K:{"0":1.3048,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00746},O:{"0":0.71578},H:{"0":0},L:{"0":54.64424},R:{_:"0"},M:{"0":0.87235}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js index 36cec4d2390fc2..aa2072887fe8dc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MW.js @@ -1 +1 @@ -module.exports={C:{"34":0.00238,"42":0.00238,"47":0.00475,"69":0.00238,"72":0.00475,"75":0.00238,"80":0.00475,"88":0.00238,"89":0.00238,"90":0.00238,"100":0.00475,"102":0.00238,"105":0.00475,"107":0.00238,"109":0.00475,"112":0.00238,"113":0.02852,"115":0.16401,"116":0.00951,"117":0.00238,"118":0.00238,"119":0.00238,"120":0.00238,"121":0.00713,"122":0.03566,"123":0.97695,"124":0.27336,"125":0.00713,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 73 74 76 77 78 79 81 82 83 84 85 86 87 91 92 93 94 95 96 97 98 99 101 103 104 106 108 110 111 114 126 127 3.5 3.6"},D:{"11":0.00238,"33":0.00475,"39":0.00238,"40":0.00238,"43":0.00238,"44":0.04279,"46":0.01189,"48":0.00238,"49":0.01189,"50":0.00951,"51":0.00475,"58":0.00713,"59":0.00238,"60":0.00475,"61":0.00238,"64":0.00713,"65":0.00713,"66":0.00951,"67":0.00951,"68":0.00475,"69":0.00713,"70":0.01189,"71":0.00951,"72":0.00475,"73":0.00238,"74":0.01902,"75":0.00238,"76":0.00475,"77":0.00238,"79":0.01902,"80":0.00475,"81":0.00951,"83":0.00238,"84":0.00713,"85":0.00238,"86":0.00238,"87":0.00475,"88":0.04041,"89":0.00475,"90":0.00475,"92":0.01426,"93":0.00475,"94":0.09983,"95":0.00951,"96":0.00238,"97":0.00238,"99":0.00238,"100":0.00238,"101":0.00238,"102":0.02139,"103":0.0309,"104":0.00475,"105":0.00475,"106":0.01189,"107":0.00238,"108":0.00475,"109":0.73449,"110":0.01664,"111":0.33278,"112":0.01426,"113":0.00475,"114":0.00713,"115":0.00951,"116":0.02377,"117":0.0309,"118":0.03566,"119":0.05467,"120":0.14262,"121":0.42311,"122":4.96318,"123":1.42858,"124":0.00475,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 41 42 45 47 52 53 54 55 56 57 62 63 78 91 98 125 126"},F:{"28":0.00238,"34":0.00713,"35":0.00475,"36":0.01189,"37":0.00238,"38":0.00238,"42":0.00713,"53":0.00238,"73":0.00238,"79":0.01664,"90":0.00238,"91":0.00238,"95":0.10221,"105":0.00475,"106":0.00951,"107":0.40409,"108":0.23532,"109":0.00951,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 39 40 41 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00238},B:{"12":0.0618,"13":0.01664,"14":0.01189,"15":0.02139,"16":0.01664,"17":0.02139,"18":0.12123,"84":0.0309,"85":0.00238,"88":0.00238,"89":0.02615,"90":0.03566,"91":0.00475,"92":0.11885,"96":0.00238,"99":0.00238,"100":0.02615,"103":0.00475,"106":0.01189,"107":0.00475,"108":0.00475,"109":0.03566,"110":0.00238,"111":0.00475,"112":0.01664,"113":0.00238,"114":0.01426,"115":0.03328,"116":0.02139,"117":0.02139,"118":0.01664,"119":0.10459,"120":0.0927,"121":0.2686,"122":3.01641,"123":0.18541,_:"79 80 81 83 86 87 93 94 95 97 98 101 102 104 105"},E:{"11":0.00713,"14":0.01189,"15":0.00475,_:"0 4 5 6 7 8 9 10 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 16.4 17.5","5.1":0.00951,"12.1":0.00238,"13.1":0.00475,"14.1":0.02377,"15.5":0.00475,"15.6":0.03328,"16.0":0.00238,"16.1":0.01189,"16.2":0.00238,"16.3":0.00238,"16.5":0.00951,"16.6":0.01902,"17.0":0.00238,"17.1":0.00475,"17.2":0.01902,"17.3":0.0309,"17.4":0.00713},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00033,"5.0-5.1":0.00017,"6.0-6.1":0.001,"7.0-7.1":0.00116,"8.1-8.4":0.00033,"9.0-9.2":0.00066,"9.3":0.00415,"10.0-10.2":0.00066,"10.3":0.00698,"11.0-11.2":0.00499,"11.3-11.4":0.00166,"12.0-12.1":0.0015,"12.2-12.5":0.02875,"13.0-13.1":0.0005,"13.2":0.00499,"13.3":0.0015,"13.4-13.7":0.00565,"14.0-14.4":0.0108,"14.5-14.8":0.01695,"15.0-15.1":0.00731,"15.2-15.3":0.00864,"15.4":0.01014,"15.5":0.01296,"15.6-15.8":0.10852,"16.0":0.02642,"16.1":0.05467,"16.2":0.02642,"16.3":0.04703,"16.4":0.00997,"16.5":0.02111,"16.6-16.7":0.15987,"17.0":0.02077,"17.1":0.04155,"17.2":0.06697,"17.3":0.82426,"17.4":0.12098,"17.5":0},P:{"4":0.53295,"20":0.0209,"21":0.0418,"22":0.1254,"23":0.28215,"24":0.2508,"5.0-5.4":0.01045,"6.2-6.4":0.0209,"7.2-7.4":0.1463,_:"8.2 10.1 12.0 13.0 15.0","9.2":0.01045,"11.1-11.2":0.01045,"14.0":0.01045,"16.0":0.0209,"17.0":0.03135,"18.0":0.03135,"19.0":0.03135},I:{"0":0.15183,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00037},K:{"0":5.02251,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00768,"11":0.0256,_:"6 7 8 9 5.5"},S:{"2.5":0.12959,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":69.67713},R:{_:"0"},M:{"0":0.70132},Q:{"14.9":0.00762},O:{"0":1.86001},H:{"0":2.57}}; +module.exports={C:{"42":0.00233,"44":0.00466,"47":0.00233,"52":0.00233,"59":0.00233,"65":0.00233,"68":0.00233,"69":0.00233,"71":0.00933,"72":0.00233,"78":0.00233,"80":0.00233,"81":0.00466,"83":0.00233,"87":0.00233,"88":0.00233,"91":0.00233,"97":0.00233,"102":0.00233,"105":0.007,"109":0.007,"113":0.03964,"115":0.2402,"118":0.00233,"121":0.007,"122":0.007,"123":0.03265,"124":1.18932,"125":0.7649,"126":0.00933,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 45 46 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 66 67 70 73 74 75 76 77 79 82 84 85 86 89 90 92 93 94 95 96 98 99 100 101 103 104 106 107 108 110 111 112 114 116 117 119 120 127 128 3.5 3.6"},D:{"11":0.00233,"29":0.00233,"40":0.00466,"43":0.00233,"44":0.00466,"46":0.007,"49":0.00233,"50":0.00233,"55":0.00466,"58":0.00466,"62":0.00233,"63":0.00233,"64":0.00233,"65":0.01399,"67":0.00233,"68":0.00466,"69":0.00466,"70":0.02332,"71":0.01866,"74":0.01399,"75":0.00233,"76":0.00233,"78":0.00233,"79":0.00233,"80":0.00233,"81":0.007,"83":0.00466,"84":0.00233,"85":0.00233,"86":0.00233,"87":0.007,"88":0.03265,"89":0.00233,"90":0.007,"91":0.00466,"92":0.00466,"93":0.007,"94":0.00466,"95":0.00466,"97":0.007,"98":0.00233,"99":0.00466,"100":0.00233,"101":0.00933,"102":0.02099,"103":0.02798,"104":0.00233,"105":0.01866,"106":0.00933,"107":0.00233,"108":0.00233,"109":0.59932,"110":0.00233,"111":0.20755,"112":0.00233,"113":0.00466,"114":0.03265,"115":0.01866,"116":0.03731,"117":0.00933,"118":0.03032,"119":0.03964,"120":0.05597,"121":0.07229,"122":0.33581,"123":5.07443,"124":2.00086,"125":0.00933,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 41 42 45 47 48 51 52 53 54 56 57 59 60 61 66 72 73 77 96 126 127"},F:{"34":0.00466,"36":0.007,"42":0.01166,"45":0.00233,"51":0.00233,"60":0.00233,"79":0.01166,"82":0.00233,"86":0.00233,"90":0.00233,"95":0.06296,"105":0.00233,"106":0.00233,"107":0.07229,"108":0.41043,"109":0.2262,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 43 44 46 47 48 49 50 52 53 54 55 56 57 58 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 87 88 89 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00233},B:{"12":0.0513,"13":0.02332,"14":0.03032,"15":0.03731,"16":0.01166,"17":0.01632,"18":0.10261,"84":0.007,"85":0.00233,"89":0.01866,"90":0.01866,"92":0.11427,"100":0.02099,"103":0.00233,"104":0.00233,"105":0.00233,"107":0.00233,"108":0.00933,"109":0.01632,"110":0.00466,"111":0.00466,"112":0.01166,"114":0.00233,"115":0.01166,"116":0.00466,"117":0.007,"118":0.01632,"119":0.02798,"120":0.04897,"121":0.06996,"122":0.26818,"123":1.93323,"124":0.77189,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 106 113"},E:{"11":0.00933,"13":0.00233,"14":0.00233,"15":0.00466,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 6.1 7.1 9.1 10.1 15.1 15.5 16.0 16.2","5.1":0.01166,"11.1":0.00233,"12.1":0.00466,"13.1":0.01166,"14.1":0.01632,"15.2-15.3":0.00233,"15.4":0.00233,"15.6":0.03498,"16.1":0.007,"16.3":0.00233,"16.4":0.007,"16.5":0.00466,"16.6":0.01866,"17.0":0.00466,"17.1":0.007,"17.2":0.0583,"17.3":0.02099,"17.4":0.06063,"17.5":0.00233},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00032,"5.0-5.1":0.00032,"6.0-6.1":0.0008,"7.0-7.1":0.00128,"8.1-8.4":0.00032,"9.0-9.2":0.0008,"9.3":0.00401,"10.0-10.2":0.0008,"10.3":0.00641,"11.0-11.2":0.00545,"11.3-11.4":0.0016,"12.0-12.1":0.00112,"12.2-12.5":0.02612,"13.0-13.1":0.00048,"13.2":0.00529,"13.3":0.00128,"13.4-13.7":0.00497,"14.0-14.4":0.00978,"14.5-14.8":0.0149,"15.0-15.1":0.00689,"15.2-15.3":0.00785,"15.4":0.00897,"15.5":0.01138,"15.6-15.8":0.09936,"16.0":0.02324,"16.1":0.0484,"16.2":0.02324,"16.3":0.04103,"16.4":0.00849,"16.5":0.01779,"16.6-16.7":0.14055,"17.0":0.01683,"17.1":0.03109,"17.2":0.04135,"17.3":0.30161,"17.4":0.68079,"17.5":0.00625},P:{"4":0.55456,"20":0.03081,"21":0.04108,"22":0.12324,"23":0.13351,"24":0.37998,"5.0-5.4":0.01027,"6.2-6.4":0.02054,"7.2-7.4":0.17458,_:"8.2 10.1 12.0 15.0","9.2":0.01027,"11.1-11.2":0.01027,"13.0":0.03081,"14.0":0.02054,"16.0":0.02054,"17.0":0.07189,"18.0":0.03081,"19.0":0.04108},I:{"0":0.13746,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00035},A:{"10":0.00505,"11":0.02526,_:"6 7 8 9 5.5"},K:{"0":5.11531,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.11502,_:"3.0-3.1"},Q:{"14.9":0.023},O:{"0":1.73297},H:{"0":2.43},L:{"0":69.33016},R:{_:"0"},M:{"0":0.94316}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js index d32fb038fd1bcf..5110efae751de6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MX.js @@ -1 +1 @@ -module.exports={C:{"4":0.0042,"34":0.0042,"48":0.0042,"52":0.02522,"59":0.00841,"66":0.0042,"78":0.01682,"88":0.00841,"102":0.01261,"103":0.0042,"105":0.0042,"109":0.0042,"110":0.0042,"113":0.01261,"114":0.0042,"115":0.27326,"116":0.0042,"117":0.0042,"118":0.0042,"119":0.0042,"120":0.02102,"121":0.02522,"122":0.04624,"123":1.0468,"124":0.39938,"125":0.0042,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 106 107 108 111 112 126 127 3.5 3.6"},D:{"22":0.0042,"29":0.0042,"38":0.00841,"47":0.0042,"49":0.02102,"52":0.01261,"63":0.0042,"65":0.0042,"66":0.04624,"67":0.0042,"68":0.0042,"69":0.0042,"70":0.0042,"71":0.0042,"72":0.0042,"74":0.00841,"75":0.00841,"76":0.00841,"77":0.0042,"78":0.0042,"79":0.04624,"80":0.01261,"81":0.00841,"83":0.00841,"84":0.0042,"85":0.0042,"86":0.00841,"87":0.07567,"88":0.02522,"89":0.00841,"90":0.00841,"91":0.05045,"92":0.00841,"93":0.02522,"94":0.01682,"95":0.0042,"96":0.0042,"97":0.00841,"98":0.00841,"99":0.02522,"100":0.00841,"101":0.0042,"102":0.00841,"103":0.12192,"104":0.00841,"105":0.01261,"106":0.02522,"107":0.02522,"108":0.03363,"109":2.37106,"110":0.02522,"111":0.02943,"112":0.02102,"113":0.05045,"114":0.07147,"115":0.02102,"116":0.26485,"117":0.02943,"118":0.02943,"119":0.11351,"120":0.3111,"121":1.34948,"122":17.45921,"123":4.47306,"124":0.00841,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 53 54 55 56 57 58 59 60 61 62 64 73 125 126"},F:{"28":0.0042,"46":0.0042,"74":0.0042,"82":0.0042,"86":0.0042,"89":0.0042,"95":0.06306,"102":0.00841,"105":0.0042,"106":0.02102,"107":1.66478,"108":0.23542,"109":0.0042,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 81 83 84 85 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00841,"16":0.0042,"17":0.0042,"18":0.00841,"85":0.0042,"92":0.01682,"99":0.0042,"100":0.0042,"108":0.0042,"109":0.06726,"110":0.00841,"112":0.0042,"113":0.00841,"114":0.01261,"115":0.0042,"116":0.0042,"117":0.00841,"118":0.00841,"119":0.02522,"120":0.05886,"121":0.27746,"122":4.69166,"123":0.28167,_:"13 14 15 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 106 107 111"},E:{"8":0.0042,"13":0.0042,"14":0.02102,"15":0.0042,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.01261,"9.1":0.00841,"11.1":0.00841,"12.1":0.01261,"13.1":0.05886,"14.1":0.06306,"15.1":0.00841,"15.2-15.3":0.00841,"15.4":0.01682,"15.5":0.02102,"15.6":0.20179,"16.0":0.02102,"16.1":0.04624,"16.2":0.03363,"16.3":0.08408,"16.4":0.03784,"16.5":0.05886,"16.6":0.23963,"17.0":0.04204,"17.1":0.11351,"17.2":0.23122,"17.3":0.69366,"17.4":0.16396},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00221,"5.0-5.1":0.00111,"6.0-6.1":0.00664,"7.0-7.1":0.00775,"8.1-8.4":0.00221,"9.0-9.2":0.00443,"9.3":0.02768,"10.0-10.2":0.00443,"10.3":0.0465,"11.0-11.2":0.03322,"11.3-11.4":0.01107,"12.0-12.1":0.00997,"12.2-12.5":0.19155,"13.0-13.1":0.00332,"13.2":0.03322,"13.3":0.00997,"13.4-13.7":0.03765,"14.0-14.4":0.07197,"14.5-14.8":0.11294,"15.0-15.1":0.04872,"15.2-15.3":0.05758,"15.4":0.06754,"15.5":0.08636,"15.6-15.8":0.72302,"16.0":0.17605,"16.1":0.36428,"16.2":0.17605,"16.3":0.31335,"16.4":0.06643,"16.5":0.14062,"16.6-16.7":1.06515,"17.0":0.1384,"17.1":0.27681,"17.2":0.44621,"17.3":5.49185,"17.4":0.80606,"17.5":0},P:{"4":0.09598,"20":0.01066,"21":0.02133,"22":0.02133,"23":0.39458,"24":0.50122,_:"5.0-5.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","6.2-6.4":0.01066,"7.2-7.4":0.03199,"11.1-11.2":0.01066,"17.0":0.02133,"19.0":0.01066},I:{"0":0.04619,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},K:{"0":0.26666,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01955,"9":0.00489,"10":0.00489,"11":0.18087,_:"6 7 5.5"},S:{"2.5":0.0058,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":47.31232},R:{_:"0"},M:{"0":0.21449},Q:{_:"14.9"},O:{"0":0.05797},H:{"0":0}}; +module.exports={C:{"4":0.01322,"48":0.00441,"52":0.00881,"57":0.00441,"59":0.01322,"66":0.00441,"78":0.02203,"88":0.00441,"102":0.00881,"103":0.00441,"105":0.00441,"108":0.00441,"109":0.00441,"110":0.00441,"112":0.00441,"113":0.01322,"114":0.00441,"115":0.27752,"116":0.00441,"117":0.01322,"118":0.00441,"119":0.00441,"120":0.01762,"121":0.00881,"122":0.01762,"123":0.04846,"124":1.0528,"125":0.50217,"126":0.00881,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 106 107 111 127 128 3.5 3.6"},D:{"22":0.00441,"38":0.00441,"42":0.00441,"47":0.00441,"49":0.01762,"52":0.01322,"63":0.00441,"65":0.00441,"66":0.05286,"67":0.00441,"68":0.00441,"70":0.00441,"71":0.00441,"74":0.00441,"75":0.00881,"76":0.00881,"77":0.00441,"78":0.00441,"79":0.03524,"80":0.02643,"81":0.00441,"83":0.00441,"84":0.00441,"85":0.00441,"86":0.00441,"87":0.07048,"88":0.02203,"89":0.00441,"90":0.00441,"91":0.03524,"92":0.00441,"93":0.02643,"94":0.01762,"95":0.00881,"96":0.00441,"97":0.00881,"98":0.00881,"99":0.02203,"100":0.00881,"101":0.00441,"102":0.00881,"103":0.14977,"104":0.00881,"105":0.00881,"106":0.01762,"107":0.02203,"108":0.02203,"109":2.41835,"110":0.02203,"111":0.02643,"112":0.01762,"113":0.07048,"114":0.0881,"115":0.02643,"116":0.24228,"117":0.01762,"118":0.03084,"119":0.07929,"120":0.15858,"121":0.26871,"122":1.25102,"123":16.65971,"124":7.07443,"125":0.02643,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 43 44 45 46 48 50 51 53 54 55 56 57 58 59 60 61 62 64 69 72 73 126 127"},F:{"28":0.00441,"46":0.00441,"89":0.00441,"95":0.06167,"102":0.00441,"106":0.00441,"107":1.35234,"108":0.50217,"109":0.1718,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00881,"16":0.00441,"17":0.00881,"18":0.00441,"92":0.01322,"99":0.00441,"100":0.00441,"107":0.00441,"108":0.00441,"109":0.06608,"110":0.00441,"111":0.00441,"112":0.00441,"113":0.00881,"114":0.01322,"115":0.00441,"116":0.00441,"117":0.00881,"118":0.00881,"119":0.01762,"120":0.03965,"121":0.04405,"122":0.39205,"123":3.59889,"124":1.60783,_:"13 14 15 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 106"},E:{"8":0.00441,"13":0.00441,"14":0.01762,"15":0.00441,_:"0 4 5 6 7 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.01322,"11.1":0.00881,"12.1":0.01322,"13.1":0.05727,"14.1":0.06167,"15.1":0.00881,"15.2-15.3":0.00881,"15.4":0.01322,"15.5":0.01762,"15.6":0.18942,"16.0":0.02203,"16.1":0.04405,"16.2":0.02643,"16.3":0.07489,"16.4":0.03084,"16.5":0.05286,"16.6":0.22025,"17.0":0.06167,"17.1":0.0881,"17.2":0.11894,"17.3":0.28192,"17.4":0.76647,"17.5":0.00441},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00219,"5.0-5.1":0.00219,"6.0-6.1":0.00546,"7.0-7.1":0.00874,"8.1-8.4":0.00219,"9.0-9.2":0.00546,"9.3":0.02731,"10.0-10.2":0.00546,"10.3":0.0437,"11.0-11.2":0.03715,"11.3-11.4":0.01093,"12.0-12.1":0.00765,"12.2-12.5":0.17808,"13.0-13.1":0.00328,"13.2":0.03605,"13.3":0.00874,"13.4-13.7":0.03387,"14.0-14.4":0.06664,"14.5-14.8":0.1016,"15.0-15.1":0.04698,"15.2-15.3":0.05353,"15.4":0.06118,"15.5":0.07757,"15.6-15.8":0.67736,"16.0":0.15841,"16.1":0.32994,"16.2":0.15841,"16.3":0.27968,"16.4":0.0579,"16.5":0.12127,"16.6-16.7":0.95813,"17.0":0.11471,"17.1":0.21195,"17.2":0.28187,"17.3":2.0561,"17.4":4.64097,"17.5":0.04261},P:{"4":0.1341,"20":0.01032,"21":0.02063,"22":0.02063,"23":0.05158,"24":0.74272,"5.0-5.4":0.01032,"6.2-6.4":0.01032,"7.2-7.4":0.03095,_:"8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","11.1-11.2":0.01032,"17.0":0.02063,"19.0":0.01032},I:{"0":0.04457,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00461,"11":0.0923,_:"6 7 9 10 5.5"},K:{"0":0.25732,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01119,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04475},H:{"0":0},L:{"0":45.05219},R:{_:"0"},M:{"0":0.22376}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js index 214a04d73d08e7..64940a3de942b8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MY.js @@ -1 +1 @@ -module.exports={C:{"34":0.00834,"39":0.01251,"52":0.00834,"60":0.00417,"78":0.00417,"83":0.00417,"88":0.00834,"109":0.00417,"111":0.00417,"112":0.00417,"113":0.00417,"114":0.00417,"115":0.23352,"116":0.00417,"118":0.00417,"119":0.00417,"120":0.00417,"121":0.01251,"122":0.02502,"123":0.71724,"124":0.31692,"125":0.00834,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 117 126 127 3.5 3.6"},D:{"29":0.02085,"34":0.00834,"38":0.02502,"47":0.00417,"49":0.00834,"53":0.01668,"55":0.01668,"56":0.00834,"62":0.00417,"63":0.00417,"65":0.00417,"67":0.00417,"68":0.00417,"69":0.00417,"70":0.00417,"71":0.00417,"72":0.00417,"73":0.00417,"74":0.01251,"75":0.00834,"76":0.00417,"77":0.00417,"78":0.00417,"79":0.10842,"80":0.00417,"81":0.02085,"83":0.00834,"84":0.00417,"85":0.00417,"86":0.02919,"87":0.10842,"88":0.01668,"89":0.00417,"90":0.00417,"91":0.02502,"92":0.00417,"93":0.01251,"94":0.01251,"95":0.00417,"96":0.00834,"97":0.01251,"98":0.01668,"99":0.07923,"100":0.00834,"101":0.00834,"102":0.03753,"103":0.23352,"104":0.00834,"105":0.03753,"106":0.01251,"107":0.01668,"108":0.03336,"109":1.7931,"110":0.01251,"111":0.03336,"112":0.02502,"113":0.02085,"114":0.0417,"115":0.03336,"116":0.11676,"117":0.06255,"118":0.04587,"119":0.12093,"120":0.417,"121":1.42614,"122":19.57815,"123":5.36262,"124":0.01251,"125":0.00417,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 64 66 126"},F:{"28":0.02085,"36":0.02502,"46":0.03336,"81":0.00417,"85":0.00417,"95":0.01668,"106":0.00834,"107":0.53376,"108":0.09591,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00417,"107":0.00417,"108":0.00417,"109":0.02502,"112":0.00417,"113":0.00417,"114":0.00417,"115":0.00417,"116":0.00417,"117":0.00417,"118":0.00417,"119":0.00834,"120":0.02919,"121":0.09591,"122":2.57706,"123":0.18348,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 110 111"},E:{"13":0.00417,"14":0.0417,"15":0.01251,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00834,"13.1":0.02502,"14.1":0.12093,"15.1":0.02085,"15.2-15.3":0.01668,"15.4":0.03753,"15.5":0.07089,"15.6":0.28356,"16.0":0.03336,"16.1":0.10842,"16.2":0.06672,"16.3":0.20433,"16.4":0.04587,"16.5":0.10008,"16.6":0.42951,"17.0":0.07506,"17.1":0.17514,"17.2":0.417,"17.3":1.5012,"17.4":0.20016},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00317,"5.0-5.1":0.00159,"6.0-6.1":0.00952,"7.0-7.1":0.01111,"8.1-8.4":0.00317,"9.0-9.2":0.00635,"9.3":0.03968,"10.0-10.2":0.00635,"10.3":0.06666,"11.0-11.2":0.04762,"11.3-11.4":0.01587,"12.0-12.1":0.01429,"12.2-12.5":0.27459,"13.0-13.1":0.00476,"13.2":0.04762,"13.3":0.01429,"13.4-13.7":0.05397,"14.0-14.4":0.10317,"14.5-14.8":0.1619,"15.0-15.1":0.06984,"15.2-15.3":0.08254,"15.4":0.09682,"15.5":0.1238,"15.6-15.8":1.03647,"16.0":0.25237,"16.1":0.5222,"16.2":0.25237,"16.3":0.44919,"16.4":0.09523,"16.5":0.20158,"16.6-16.7":1.52692,"17.0":0.1984,"17.1":0.39681,"17.2":0.63966,"17.3":7.87269,"17.4":1.15551,"17.5":0},P:{"4":0.35189,"20":0.02133,"21":0.04265,"22":0.05332,"23":0.81042,"24":0.84241,"5.0-5.4":0.03199,"6.2-6.4":0.01066,"7.2-7.4":0.02133,_:"8.2 9.2 10.1 12.0 13.0 14.0 18.0","11.1-11.2":0.01066,"15.0":0.01066,"16.0":0.02133,"17.0":0.01066,"19.0":0.01066},I:{"0":0.03483,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.78109,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00589,"9":0.00589,"10":0.00589,"11":0.08242,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":39.93104},R:{_:"0"},M:{"0":0.25065},Q:{"14.9":0.00583},O:{"0":1.10168},H:{"0":0}}; +module.exports={C:{"34":0.00796,"39":0.01195,"52":0.00796,"53":0.01991,"78":0.00398,"83":0.00398,"88":0.00398,"110":0.00398,"113":0.00796,"114":0.00398,"115":0.20308,"119":0.00398,"120":0.00398,"121":0.00796,"122":0.00796,"123":0.02787,"124":0.61323,"125":0.3544,"126":0.00398,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 116 117 118 127 128 3.5 3.6"},D:{"29":0.01991,"34":0.00796,"38":0.01991,"47":0.00398,"49":0.00796,"53":0.00398,"55":0.01593,"56":0.00796,"65":0.00398,"66":0.00398,"67":0.00398,"68":0.00398,"70":0.00398,"72":0.00398,"74":0.00796,"75":0.00796,"76":0.00398,"77":0.00398,"78":0.00398,"79":0.05973,"80":0.00398,"81":0.01991,"83":0.00398,"84":0.00398,"85":0.00398,"86":0.02787,"87":0.06371,"88":0.01593,"89":0.01195,"90":0.00398,"91":0.01991,"92":0.00796,"93":0.01593,"94":0.05973,"95":0.00398,"96":0.03982,"97":0.01991,"98":0.01593,"99":0.07964,"100":0.00398,"101":0.00796,"102":0.0438,"103":0.77251,"104":0.00796,"105":0.0438,"106":0.00796,"107":0.01195,"108":0.02389,"109":1.83172,"110":0.00796,"111":0.02389,"112":0.02389,"113":0.01991,"114":0.04778,"115":0.01593,"116":0.10751,"117":0.13937,"118":0.03186,"119":0.08362,"120":0.14733,"121":0.20706,"122":0.82029,"123":17.62831,"124":6.6141,"125":0.03186,"126":0.00398,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 57 58 59 60 61 62 63 64 69 71 73 127"},F:{"28":0.01195,"36":0.01195,"46":0.01991,"95":0.01593,"107":0.32254,"108":0.17919,"109":0.05575,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00796,"108":0.00398,"109":0.0438,"113":0.00398,"114":0.00398,"115":0.00398,"117":0.00398,"118":0.00796,"119":0.00796,"120":0.01593,"121":0.01593,"122":0.12742,"123":1.97109,"124":0.86409,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 116"},E:{"13":0.00398,"14":0.03982,"15":0.00796,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00398,"13.1":0.01593,"14.1":0.09955,"15.1":0.01991,"15.2-15.3":0.01593,"15.4":0.03186,"15.5":0.06371,"15.6":0.24688,"16.0":0.02787,"16.1":0.07566,"16.2":0.04778,"16.3":0.16326,"16.4":0.03186,"16.5":0.07168,"16.6":0.3544,"17.0":0.04778,"17.1":0.10751,"17.2":0.20706,"17.3":0.54952,"17.4":1.21849,"17.5":0.00796},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00311,"5.0-5.1":0.00311,"6.0-6.1":0.00778,"7.0-7.1":0.01244,"8.1-8.4":0.00311,"9.0-9.2":0.00778,"9.3":0.03888,"10.0-10.2":0.00778,"10.3":0.06222,"11.0-11.2":0.05288,"11.3-11.4":0.01555,"12.0-12.1":0.01089,"12.2-12.5":0.25353,"13.0-13.1":0.00467,"13.2":0.05133,"13.3":0.01244,"13.4-13.7":0.04822,"14.0-14.4":0.09488,"14.5-14.8":0.14465,"15.0-15.1":0.06688,"15.2-15.3":0.07621,"15.4":0.0871,"15.5":0.11043,"15.6-15.8":0.96434,"16.0":0.22553,"16.1":0.46973,"16.2":0.22553,"16.3":0.39818,"16.4":0.08244,"16.5":0.17265,"16.6-16.7":1.36408,"17.0":0.16332,"17.1":0.30175,"17.2":0.40129,"17.3":2.92725,"17.4":6.60732,"17.5":0.06066},P:{"4":0.23152,"20":0.02105,"21":0.04209,"22":0.05262,"23":0.21047,"24":1.71532,"5.0-5.4":0.03157,"6.2-6.4":0.01052,"7.2-7.4":0.04209,_:"8.2 9.2 10.1 12.0 13.0 14.0","11.1-11.2":0.01052,"15.0":0.01052,"16.0":0.02105,"17.0":0.01052,"18.0":0.01052,"19.0":0.01052},I:{"0":0.02397,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.0091,"11":0.05461,_:"6 7 9 10 5.5"},K:{"0":0.76416,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01203},O:{"0":0.81831},H:{"0":0},L:{"0":41.81928},R:{_:"0"},M:{"0":0.27077}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js index 74304c4c71bb87..5a3a500a4316eb 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/MZ.js @@ -1 +1 @@ -module.exports={C:{"52":0.00263,"54":0.00263,"78":0.00263,"90":0.00263,"91":0.00525,"99":0.00263,"100":0.00263,"104":0.00263,"107":0.00263,"110":0.00263,"113":0.02363,"115":0.1418,"118":0.00788,"120":0.00263,"121":0.00263,"122":0.00525,"123":0.45692,"124":0.11554,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 94 95 96 97 98 101 102 103 105 106 108 109 111 112 114 116 117 119 125 126 127 3.5 3.6"},D:{"11":0.00525,"33":0.00263,"38":0.00263,"40":0.00263,"43":0.00788,"50":0.00263,"55":0.00263,"57":0.00263,"58":0.00263,"60":0.00525,"63":0.00525,"64":0.00263,"67":0.00263,"68":0.00263,"69":0.00263,"70":0.00788,"73":0.00525,"74":0.02363,"76":0.00263,"78":0.00263,"79":0.00263,"81":0.05777,"83":0.00263,"84":0.00263,"85":0.00263,"86":0.00525,"87":0.02889,"88":0.00525,"89":0.00263,"90":0.01576,"91":0.01838,"92":0.02626,"93":0.00263,"94":0.03939,"95":0.00525,"96":0.00263,"98":0.00263,"99":0.00263,"100":0.00263,"101":0.00263,"102":0.04202,"103":0.01838,"104":0.06302,"105":0.02363,"106":0.02101,"107":0.00525,"108":0.00788,"109":1.31037,"110":0.00788,"111":0.07615,"112":0.00525,"113":0.0105,"114":0.06828,"115":0.00788,"116":0.04464,"117":0.00788,"118":0.02363,"119":0.03676,"120":0.17857,"121":0.44379,"122":5.52773,"123":1.40754,"124":0.00525,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 47 48 49 51 52 53 54 56 59 61 62 65 66 71 72 75 77 80 97 125 126"},F:{"42":0.00263,"46":0.00263,"66":0.00263,"79":0.07878,"81":0.00263,"87":0.00263,"90":0.00263,"92":0.00263,"95":0.08141,"104":0.00263,"105":0.00263,"106":0.0105,"107":0.38865,"108":0.18382,"109":0.00263,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 88 89 91 93 94 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0105,"13":0.00788,"14":0.00788,"15":0.00788,"16":0.00263,"17":0.00263,"18":0.02363,"84":0.00525,"89":0.00525,"90":0.00263,"91":0.00525,"92":0.03414,"100":0.0105,"102":0.03414,"108":0.00263,"109":0.01838,"110":0.01576,"112":0.00263,"113":0.00525,"114":0.00525,"115":0.00263,"116":0.02626,"117":0.00788,"118":0.02101,"119":0.04202,"120":0.10504,"121":0.10241,"122":1.78043,"123":0.11554,_:"79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 103 104 105 106 107 111"},E:{"14":0.00263,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 15.1 15.4 15.5 16.0 16.1 16.2 17.5","5.1":0.00263,"11.1":0.00263,"12.1":0.00263,"13.1":0.01313,"14.1":0.00788,"15.2-15.3":0.00263,"15.6":0.00788,"16.3":0.00788,"16.4":0.00263,"16.5":0.00263,"16.6":0.02363,"17.0":0.00263,"17.1":0.00788,"17.2":0.01576,"17.3":0.03939,"17.4":0.01313},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0008,"5.0-5.1":0.0004,"6.0-6.1":0.0024,"7.0-7.1":0.0028,"8.1-8.4":0.0008,"9.0-9.2":0.0016,"9.3":0.01001,"10.0-10.2":0.0016,"10.3":0.01682,"11.0-11.2":0.01201,"11.3-11.4":0.004,"12.0-12.1":0.0036,"12.2-12.5":0.06927,"13.0-13.1":0.0012,"13.2":0.01201,"13.3":0.0036,"13.4-13.7":0.01361,"14.0-14.4":0.02603,"14.5-14.8":0.04084,"15.0-15.1":0.01762,"15.2-15.3":0.02082,"15.4":0.02442,"15.5":0.03123,"15.6-15.8":0.26147,"16.0":0.06366,"16.1":0.13173,"16.2":0.06366,"16.3":0.11332,"16.4":0.02402,"16.5":0.05085,"16.6-16.7":0.38519,"17.0":0.05005,"17.1":0.1001,"17.2":0.16136,"17.3":1.98602,"17.4":0.2915,"17.5":0},P:{"4":0.1772,"20":0.05212,"21":0.03127,"22":0.07296,"23":0.28143,"24":0.30228,"5.0-5.4":0.01042,_:"6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.14593,"11.1-11.2":0.02085,"12.0":0.04169,"13.0":0.01042,"14.0":0.01042,"15.0":0.02085,"16.0":0.03127,"17.0":0.02085,"18.0":0.01042,"19.0":0.14593},I:{"0":0.00734,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":2.41294,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01313,_:"6 7 8 9 10 5.5"},S:{"2.5":0.44244,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.77359},R:{_:"0"},M:{"0":0.05899},Q:{_:"14.9"},O:{"0":0.10324},H:{"0":0.78}}; +module.exports={C:{"34":0.0027,"78":0.0027,"91":0.0027,"100":0.0027,"103":0.0027,"107":0.0027,"113":0.01352,"115":0.15137,"118":0.01081,"121":0.00811,"122":0.0027,"123":0.01081,"124":0.3622,"125":0.19732,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 101 102 104 105 106 108 109 110 111 112 114 116 117 119 120 126 127 128 3.5 3.6"},D:{"11":0.00541,"33":0.0027,"43":0.00811,"56":0.0027,"58":0.0027,"63":0.0027,"64":0.0027,"65":0.0027,"68":0.0027,"69":0.0027,"70":0.01081,"73":0.0027,"74":0.01622,"76":0.0027,"77":0.0027,"78":0.0027,"79":0.00541,"80":0.0027,"81":0.11082,"83":0.0027,"85":0.0027,"86":0.00541,"87":0.01352,"88":0.00811,"90":0.03244,"91":0.02703,"92":0.03784,"94":0.02703,"95":0.01352,"97":0.0027,"98":0.0027,"99":0.0027,"101":0.00541,"102":0.04865,"103":0.01622,"104":0.07839,"105":0.01622,"106":0.04865,"107":0.0027,"108":0.0027,"109":1.41367,"110":0.00541,"111":0.05676,"112":0.0027,"113":0.01081,"114":0.05136,"115":0.00541,"116":0.04325,"117":0.00811,"118":0.01892,"119":0.02433,"120":0.0919,"121":0.13245,"122":0.28922,"123":5.30329,"124":2.21105,"125":0.01622,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 57 59 60 61 62 66 67 71 72 75 84 89 93 96 100 126 127"},F:{"46":0.0027,"79":0.03784,"83":0.0027,"85":0.00811,"95":0.10001,"106":0.00541,"107":0.14326,"108":0.48113,"109":0.16218,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01081,"13":0.0027,"14":0.00811,"15":0.0027,"16":0.0027,"17":0.0027,"18":0.02433,"84":0.0027,"89":0.0027,"90":0.0027,"91":0.01352,"92":0.03514,"96":0.01352,"100":0.00811,"102":0.01892,"105":0.0027,"109":0.03244,"114":0.00541,"116":0.03244,"117":0.02433,"118":0.01352,"119":0.02973,"120":0.02433,"121":0.01352,"122":0.15948,"123":1.2569,"124":0.66764,_:"79 80 81 83 85 86 87 88 93 94 95 97 98 99 101 103 104 106 107 108 110 111 112 113 115"},E:{"14":0.0027,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.4 15.5 16.0 16.1 16.2 16.4 17.5","12.1":0.0027,"13.1":0.01352,"14.1":0.00541,"15.2-15.3":0.0027,"15.6":0.01352,"16.3":0.00541,"16.5":0.0027,"16.6":0.01892,"17.0":0.0027,"17.1":0.00541,"17.2":0.00541,"17.3":0.01892,"17.4":0.03244},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00083,"5.0-5.1":0.00083,"6.0-6.1":0.00208,"7.0-7.1":0.00333,"8.1-8.4":0.00083,"9.0-9.2":0.00208,"9.3":0.0104,"10.0-10.2":0.00208,"10.3":0.01664,"11.0-11.2":0.01414,"11.3-11.4":0.00416,"12.0-12.1":0.00291,"12.2-12.5":0.0678,"13.0-13.1":0.00125,"13.2":0.01373,"13.3":0.00333,"13.4-13.7":0.01289,"14.0-14.4":0.02537,"14.5-14.8":0.03868,"15.0-15.1":0.01788,"15.2-15.3":0.02038,"15.4":0.02329,"15.5":0.02953,"15.6-15.8":0.25788,"16.0":0.06031,"16.1":0.12561,"16.2":0.06031,"16.3":0.10648,"16.4":0.02204,"16.5":0.04617,"16.6-16.7":0.36477,"17.0":0.04367,"17.1":0.08069,"17.2":0.10731,"17.3":0.78278,"17.4":1.76687,"17.5":0.01622},P:{"4":0.15468,"20":0.03094,"21":0.02062,"22":0.07219,"23":0.14437,"24":0.40218,"5.0-5.4":0.01031,_:"6.2-6.4 8.2 9.2","7.2-7.4":0.15468,"10.1":0.01031,"11.1-11.2":0.01031,"12.0":0.01031,"13.0":0.02062,"14.0":0.03094,"15.0":0.02062,"16.0":0.03094,"17.0":0.02062,"18.0":0.02062,"19.0":0.06187},I:{"0":0.00727,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.01352,_:"6 7 8 9 10 5.5"},K:{"0":2.50176,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.44512,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.10946},H:{"0":0.76},L:{"0":75.90013},R:{_:"0"},M:{"0":0.09486}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js index e9f17fed8d9fff..05a2fb45616c69 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NA.js @@ -1 +1 @@ -module.exports={C:{"34":0.01835,"38":0.0153,"48":0.00306,"49":0.00306,"52":0.00612,"56":0.00306,"68":0.00306,"78":0.00612,"88":0.00612,"98":0.00306,"100":0.00306,"102":0.00306,"111":0.00306,"112":0.00612,"114":0.00306,"115":0.26307,"116":0.00306,"117":0.00306,"118":0.00306,"119":0.00306,"120":0.00306,"121":0.00612,"122":0.03977,"123":0.88711,"124":0.37626,"125":0.00306,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 99 101 103 104 105 106 107 108 109 110 113 126 127 3.5 3.6"},D:{"39":0.00306,"43":0.04283,"46":0.00306,"47":0.00306,"49":0.00918,"50":0.00306,"58":0.00306,"59":0.00306,"63":0.00918,"69":0.0153,"70":0.00306,"72":0.00306,"73":0.00306,"74":0.00612,"77":0.02141,"78":0.04283,"79":0.00918,"81":0.00612,"83":0.00306,"86":0.00612,"87":0.0153,"88":0.07036,"89":0.00918,"90":0.00612,"91":0.00306,"92":0.00306,"93":0.02141,"94":0.05812,"95":0.08259,"96":0.00306,"98":0.00306,"99":0.02141,"100":0.00612,"101":0.00306,"102":0.00918,"103":0.03059,"104":0.03671,"105":0.0153,"106":0.04589,"107":0.00306,"108":0.00306,"109":1.78952,"110":0.00306,"111":0.0153,"112":0.02753,"113":0.00306,"114":0.01224,"115":0.00918,"116":0.04589,"117":0.08259,"118":0.03671,"119":0.05506,"120":0.21413,"121":0.70051,"122":9.99987,"123":2.3799,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 48 51 52 53 54 55 56 57 60 61 62 64 65 66 67 68 71 75 76 80 84 85 97 124 125 126"},F:{"79":0.00306,"95":0.03671,"99":0.00306,"105":0.00306,"106":0.00918,"107":0.41297,"108":0.19578,"109":0.00306,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02141,"13":0.00918,"14":0.00306,"15":0.00306,"16":0.00918,"17":0.00306,"18":0.03671,"84":0.00918,"89":0.00918,"90":0.00612,"92":0.03671,"97":0.00306,"100":0.01835,"103":0.00306,"107":0.00306,"108":0.07036,"109":0.052,"110":0.00306,"112":0.00306,"113":0.00612,"114":0.0153,"115":0.00612,"116":0.00612,"117":0.00918,"118":0.01224,"119":0.02447,"120":0.11624,"121":0.13766,"122":5.41137,"123":0.26002,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 98 99 101 102 104 105 106 111"},E:{"14":0.00306,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00306,"13.1":0.0153,"14.1":0.01835,"15.1":0.00306,"15.2-15.3":0.01224,"15.4":0.00918,"15.5":0.00612,"15.6":0.11624,"16.0":0.01224,"16.1":0.00918,"16.2":0.00918,"16.3":0.10095,"16.4":0.01224,"16.5":0.04589,"16.6":0.14377,"17.0":0.01224,"17.1":0.052,"17.2":0.07342,"17.3":0.22637,"17.4":0.05506},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00171,"5.0-5.1":0.00085,"6.0-6.1":0.00512,"7.0-7.1":0.00597,"8.1-8.4":0.00171,"9.0-9.2":0.00341,"9.3":0.02133,"10.0-10.2":0.00341,"10.3":0.03583,"11.0-11.2":0.02559,"11.3-11.4":0.00853,"12.0-12.1":0.00768,"12.2-12.5":0.14758,"13.0-13.1":0.00256,"13.2":0.02559,"13.3":0.00768,"13.4-13.7":0.029,"14.0-14.4":0.05545,"14.5-14.8":0.08701,"15.0-15.1":0.03753,"15.2-15.3":0.04436,"15.4":0.05204,"15.5":0.06654,"15.6-15.8":0.55704,"16.0":0.13563,"16.1":0.28065,"16.2":0.13563,"16.3":0.24141,"16.4":0.05118,"16.5":0.10834,"16.6-16.7":0.82063,"17.0":0.10663,"17.1":0.21326,"17.2":0.34378,"17.3":4.23112,"17.4":0.62102,"17.5":0},P:{"4":0.37228,"20":0.01034,"21":0.10341,"22":0.05171,"23":0.99274,"24":1.07547,"5.0-5.4":0.01034,"6.2-6.4":0.01034,"7.2-7.4":0.37228,_:"8.2 9.2 12.0","10.1":0.08273,"11.1-11.2":0.02068,"13.0":0.02068,"14.0":0.03102,"15.0":0.01034,"16.0":0.01034,"17.0":0.07239,"18.0":0.02068,"19.0":0.29989},I:{"0":0.0553,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":2.26017,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0673,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":58.58867},R:{_:"0"},M:{"0":0.38176},Q:{"14.9":0.00694},O:{"0":0.40258},H:{"0":0.19}}; +module.exports={C:{"34":0.01263,"52":0.00316,"59":0.00316,"94":0.00316,"113":0.00316,"115":0.24948,"119":0.00316,"120":0.00316,"121":0.00632,"122":0.01895,"123":0.02526,"124":0.86529,"125":0.5337,"126":0.00947,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 127 128 3.5 3.6"},D:{"49":0.00947,"65":0.00632,"69":0.00632,"70":0.01579,"71":0.00316,"74":0.00632,"77":0.00316,"78":0.01263,"79":0.00316,"83":0.00316,"85":0.00316,"86":0.00316,"87":0.00316,"88":0.07263,"89":0.00316,"91":0.00316,"93":0.01263,"94":0.00632,"95":0.08842,"99":0.00632,"100":0.01579,"102":0.01579,"103":0.02526,"104":0.00947,"105":0.04105,"106":0.26211,"107":0.00316,"108":0.00632,"109":1.90112,"110":0.00316,"111":0.01579,"112":0.01579,"113":0.00316,"114":0.01263,"115":0.0979,"116":0.04421,"117":0.00947,"118":0.02842,"119":0.02526,"120":0.12,"121":0.12,"122":0.67265,"123":9.73611,"124":3.77381,"125":0.01895,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 72 73 75 76 80 81 84 90 92 96 97 98 101 126 127"},F:{"79":0.00316,"95":0.03158,"107":0.15158,"108":0.39159,"109":0.08527,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01263,"13":0.00947,"14":0.00632,"15":0.00632,"16":0.01263,"17":0.00316,"18":0.02211,"83":0.00316,"84":0.00632,"89":0.00316,"90":0.00316,"92":0.04737,"100":0.01895,"106":0.00632,"108":0.0379,"109":0.13895,"112":0.00316,"113":0.00316,"114":0.00632,"115":0.01579,"116":0.00632,"117":0.01263,"118":0.00947,"119":0.01895,"120":0.13579,"121":0.04105,"122":0.28106,"123":3.31274,"124":1.85059,_:"79 80 81 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 107 110 111"},E:{"14":0.00632,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1","11.1":0.00316,"13.1":0.01263,"14.1":0.01579,"15.2-15.3":0.02526,"15.4":0.00316,"15.5":0.01579,"15.6":0.32527,"16.0":0.01263,"16.1":0.01895,"16.2":0.00947,"16.3":0.02211,"16.4":0.01263,"16.5":0.02526,"16.6":0.10737,"17.0":0.01579,"17.1":0.03474,"17.2":0.06632,"17.3":0.10737,"17.4":0.29054,"17.5":0.00316},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00161,"5.0-5.1":0.00161,"6.0-6.1":0.00403,"7.0-7.1":0.00645,"8.1-8.4":0.00161,"9.0-9.2":0.00403,"9.3":0.02015,"10.0-10.2":0.00403,"10.3":0.03224,"11.0-11.2":0.0274,"11.3-11.4":0.00806,"12.0-12.1":0.00564,"12.2-12.5":0.13138,"13.0-13.1":0.00242,"13.2":0.0266,"13.3":0.00645,"13.4-13.7":0.02499,"14.0-14.4":0.04917,"14.5-14.8":0.07496,"15.0-15.1":0.03466,"15.2-15.3":0.03949,"15.4":0.04514,"15.5":0.05723,"15.6-15.8":0.49971,"16.0":0.11687,"16.1":0.24341,"16.2":0.11687,"16.3":0.20633,"16.4":0.04272,"16.5":0.08946,"16.6-16.7":0.70685,"17.0":0.08463,"17.1":0.15636,"17.2":0.20794,"17.3":1.51687,"17.4":3.42384,"17.5":0.03143},P:{"4":0.32682,"20":0.01021,"21":0.08171,"22":0.04085,"23":0.21448,"24":1.82815,"5.0-5.4":0.02043,"6.2-6.4":0.01021,"7.2-7.4":0.51066,_:"8.2 9.2 11.1-11.2 12.0","10.1":0.08171,"13.0":0.03064,"14.0":0.04085,"15.0":0.01021,"16.0":0.01021,"17.0":0.04085,"18.0":0.01021,"19.0":0.17362},I:{"0":0.02044,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.10737,_:"6 7 8 9 10 5.5"},K:{"0":1.87155,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.04789},O:{"0":0.38999},H:{"0":0.14},L:{"0":58.30564},R:{_:"0"},M:{"0":0.36947}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NC.js index fd3be3a2d51790..ccfefd74c3dcf7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NC.js @@ -1 +1 @@ -module.exports={C:{"48":0.00755,"52":0.00377,"59":0.00377,"60":0.00377,"61":0.00755,"63":0.00377,"70":0.00377,"73":0.00377,"78":0.21883,"84":0.00377,"85":0.24147,"88":0.00377,"91":0.02264,"95":0.00377,"97":0.00377,"98":0.00377,"101":0.00377,"102":0.01509,"105":0.01509,"106":0.00377,"108":0.00377,"113":0.00377,"114":0.00377,"115":0.69046,"117":0.01509,"119":0.01509,"120":0.00755,"121":0.13206,"122":0.12451,"123":3.66358,"124":1.11681,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 62 64 65 66 67 68 69 71 72 74 75 76 77 79 80 81 82 83 86 87 89 90 92 93 94 96 99 100 103 104 107 109 110 111 112 116 118 125 126 127 3.5 3.6"},D:{"38":0.00377,"49":0.01509,"56":0.01132,"64":0.00377,"65":0.00377,"68":0.00377,"70":0.00755,"76":0.00377,"79":0.02264,"87":0.01887,"88":0.00377,"91":0.00755,"92":0.00377,"93":0.00377,"94":0.03773,"96":0.00377,"97":0.01509,"99":0.00377,"100":0.00377,"102":0.00377,"103":0.03018,"104":0.03018,"107":0.0981,"108":0.00377,"109":1.0904,"111":0.00755,"112":0.00377,"113":0.00755,"114":0.01887,"115":0.01132,"116":0.28675,"117":0.01132,"118":0.02641,"119":0.0566,"120":0.26411,"121":0.97343,"122":10.63986,"123":4.05598,"124":0.00377,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 66 67 69 71 72 73 74 75 77 78 80 81 83 84 85 86 89 90 95 98 101 105 106 110 125 126"},F:{"46":0.01132,"77":0.00377,"95":0.01132,"102":0.00377,"106":0.00755,"107":0.99607,"108":0.14715,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00755,"84":0.01132,"92":0.00377,"99":0.00377,"100":0.00755,"106":0.00377,"109":0.02641,"110":0.00377,"112":0.00377,"113":0.00377,"114":0.01132,"115":0.00377,"116":0.01887,"117":0.00377,"118":0.01132,"119":0.26788,"120":0.10187,"121":0.24525,"122":4.87094,"123":0.38862,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 107 108 111"},E:{"14":0.06791,"15":0.02641,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 11.1 17.5","10.1":0.01132,"12.1":0.01887,"13.1":0.08301,"14.1":0.19242,"15.1":0.00755,"15.2-15.3":0.04905,"15.4":0.03396,"15.5":0.0415,"15.6":0.38862,"16.0":0.07546,"16.1":0.10187,"16.2":0.04528,"16.3":0.19997,"16.4":0.05282,"16.5":0.11319,"16.6":0.66405,"17.0":0.11696,"17.1":0.35466,"17.2":0.2377,"17.3":1.32055,"17.4":0.30184},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0031,"5.0-5.1":0.00155,"6.0-6.1":0.00929,"7.0-7.1":0.01084,"8.1-8.4":0.0031,"9.0-9.2":0.00619,"9.3":0.03871,"10.0-10.2":0.00619,"10.3":0.06503,"11.0-11.2":0.04645,"11.3-11.4":0.01548,"12.0-12.1":0.01394,"12.2-12.5":0.26787,"13.0-13.1":0.00465,"13.2":0.04645,"13.3":0.01394,"13.4-13.7":0.05265,"14.0-14.4":0.10065,"14.5-14.8":0.15794,"15.0-15.1":0.06813,"15.2-15.3":0.08052,"15.4":0.09445,"15.5":0.12078,"15.6-15.8":1.01111,"16.0":0.2462,"16.1":0.50943,"16.2":0.2462,"16.3":0.4382,"16.4":0.0929,"16.5":0.19665,"16.6-16.7":1.48957,"17.0":0.19355,"17.1":0.3871,"17.2":0.62401,"17.3":7.68009,"17.4":1.12724,"17.5":0},P:{"4":0.1646,"20":0.03292,"21":0.2085,"22":0.12071,"23":2.43611,"24":1.95328,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.64743,"11.1-11.2":0.02195,"13.0":0.09876,"16.0":0.03292,"17.0":0.03292,"18.0":0.05487,"19.0":0.10973},I:{"0":0.0248,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":1.54405,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00755,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":40.02115},R:{_:"0"},M:{"0":0.73467},Q:{_:"14.9"},O:{"0":0.03113},H:{"0":0}}; +module.exports={C:{"34":0.00415,"48":0.0249,"52":0.00415,"61":0.00415,"73":0.00415,"78":0.4399,"80":0.00415,"85":0.00415,"88":0.0083,"91":0.0332,"99":0.0249,"100":0.0415,"101":0.0996,"102":0.07055,"106":0.00415,"110":0.00415,"113":0.01245,"115":1.00015,"117":0.0083,"119":0.02075,"120":0.0083,"121":0.0498,"122":0.0083,"123":0.1162,"124":3.71425,"125":2.13725,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 81 82 83 84 86 87 89 90 92 93 94 95 96 97 98 103 104 105 107 108 109 111 112 114 116 118 126 127 128 3.5 3.6"},D:{"49":0.02905,"67":0.00415,"77":0.00415,"79":0.06225,"84":0.00415,"87":0.0083,"88":0.02075,"89":0.01245,"90":0.00415,"92":0.02075,"93":0.01245,"94":0.0249,"99":0.00415,"101":0.02905,"102":0.00415,"103":0.08715,"104":0.08715,"107":0.00415,"109":1.3031,"110":0.00415,"111":0.00415,"112":0.0083,"113":0.0249,"114":0.01245,"115":0.02075,"116":0.166,"117":0.00415,"118":0.02075,"119":0.0332,"120":0.1411,"121":0.1328,"122":0.7304,"123":11.8524,"124":5.0464,"125":0.00415,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 78 80 81 83 85 86 91 95 96 97 98 100 105 106 108 126 127"},F:{"36":0.00415,"46":0.00415,"77":0.00415,"95":0.0083,"102":0.00415,"107":0.4731,"108":0.4648,"109":0.2988,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.0083,"18":0.00415,"81":0.00415,"90":0.00415,"92":0.00415,"100":0.00415,"104":0.02075,"109":0.0166,"112":0.01245,"115":0.0083,"116":0.00415,"117":0.00415,"119":0.15355,"120":0.166,"121":0.03735,"122":0.20335,"123":3.63125,"124":1.63925,_:"12 13 14 15 16 79 80 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 105 106 107 108 110 111 113 114 118"},E:{"14":0.02905,"15":0.0083,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01245,"13.1":0.09545,"14.1":0.13695,"15.1":0.0083,"15.2-15.3":0.06225,"15.4":0.0249,"15.5":0.0332,"15.6":0.51045,"16.0":0.0498,"16.1":0.1162,"16.2":0.0581,"16.3":0.2158,"16.4":0.0664,"16.5":0.10375,"16.6":0.70965,"17.0":0.0581,"17.1":0.1245,"17.2":0.1079,"17.3":0.49385,"17.4":1.45665,"17.5":0.01245},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00263,"5.0-5.1":0.00263,"6.0-6.1":0.00658,"7.0-7.1":0.01053,"8.1-8.4":0.00263,"9.0-9.2":0.00658,"9.3":0.03292,"10.0-10.2":0.00658,"10.3":0.05266,"11.0-11.2":0.04476,"11.3-11.4":0.01317,"12.0-12.1":0.00922,"12.2-12.5":0.21461,"13.0-13.1":0.00395,"13.2":0.04345,"13.3":0.01053,"13.4-13.7":0.04081,"14.0-14.4":0.08031,"14.5-14.8":0.12244,"15.0-15.1":0.05661,"15.2-15.3":0.06451,"15.4":0.07373,"15.5":0.09348,"15.6-15.8":0.8163,"16.0":0.19091,"16.1":0.39762,"16.2":0.19091,"16.3":0.33705,"16.4":0.06978,"16.5":0.14614,"16.6-16.7":1.15467,"17.0":0.13824,"17.1":0.25542,"17.2":0.33969,"17.3":2.47786,"17.4":5.59296,"17.5":0.05135},P:{"4":0.04353,"20":0.08705,"21":0.18499,"22":0.14146,"23":0.51144,"24":3.90649,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0","7.2-7.4":0.38086,"13.0":0.05441,"15.0":0.01088,"16.0":0.02176,"17.0":0.01088,"18.0":0.07617,"19.0":0.06529},I:{"0":0.02913,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"10":0.01245,"11":0.0498,_:"6 7 8 9 5.5"},K:{"0":1.48565,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00585},O:{"0":0.0234},H:{"0":0},L:{"0":38.77377},R:{_:"0"},M:{"0":0.76622}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NE.js index 3432d177320344..551d28210e44d3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NE.js @@ -1 +1 @@ -module.exports={C:{"21":0.00826,"51":0.00138,"52":0.00138,"57":0.00138,"60":0.00138,"63":0.00138,"67":0.00138,"69":0.00138,"70":0.00138,"72":0.00275,"77":0.00138,"81":0.00138,"82":0.00275,"90":0.00138,"91":0.00138,"93":0.00138,"94":0.0055,"103":0.0055,"104":0.00138,"106":0.03715,"109":0.00138,"111":0.00138,"115":0.344,"117":0.00138,"118":0.00138,"119":0.00138,"120":0.00688,"121":0.00688,"122":0.02064,"123":0.42656,"124":0.13485,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 58 59 61 62 64 65 66 68 71 73 74 75 76 78 79 80 83 84 85 86 87 88 89 92 95 96 97 98 99 100 101 102 105 107 108 110 112 113 114 116 125 126 127 3.5 3.6"},D:{"11":0.09632,"21":0.00138,"26":0.00138,"28":0.0055,"32":0.00138,"43":0.00138,"47":0.00275,"50":0.00275,"55":0.00275,"58":0.01101,"59":0.00138,"63":0.00138,"67":0.00138,"68":0.01238,"70":0.00275,"71":0.00138,"76":0.00963,"79":0.03578,"80":0.00138,"81":0.00138,"83":0.00413,"86":0.00138,"87":0.00275,"88":0.00275,"91":0.00138,"94":0.00275,"97":0.00138,"100":0.00275,"102":0.00963,"103":0.00138,"104":0.00138,"105":0.00138,"107":0.00138,"108":0.00138,"109":0.19539,"110":0.00138,"112":0.00138,"113":0.00138,"114":0.00413,"115":0.00138,"116":0.00413,"117":0.0055,"118":0.00138,"119":0.00963,"120":0.09219,"121":0.12797,"122":1.89338,"123":0.5105,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 27 29 30 31 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 51 52 53 54 56 57 60 61 62 64 65 66 69 72 73 74 75 77 78 84 85 89 90 92 93 95 96 98 99 101 106 111 124 125 126"},F:{"40":0.00138,"45":0.00138,"48":0.00138,"82":0.03853,"95":0.01101,"98":0.0055,"106":0.00275,"107":0.1775,"108":0.07706,"109":0.00413,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01101,"13":0.00275,"14":0.00413,"16":0.00275,"17":0.00138,"18":0.00963,"83":0.00138,"84":0.01101,"85":0.00138,"89":0.00275,"90":0.01789,"92":0.02202,"100":0.00413,"101":0.00138,"106":0.01514,"107":0.00138,"109":0.05642,"110":0.00138,"111":0.00413,"113":0.00138,"114":0.00138,"115":0.00826,"116":0.00413,"117":0.00413,"118":0.01789,"119":0.02339,"120":0.05504,"121":0.05779,"122":1.01962,"123":0.04816,_:"15 79 80 81 86 87 88 91 93 94 95 96 97 98 99 102 103 104 105 108 112"},E:{"13":0.00138,"14":0.00138,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 6.1 9.1 10.1 11.1 15.4 16.0 16.2 16.4 17.5","5.1":0.16099,"7.1":0.00275,"12.1":0.02752,"13.1":0.01376,"14.1":0.00963,"15.1":2.66806,"15.2-15.3":0.00138,"15.5":0.00275,"15.6":0.00413,"16.1":0.00138,"16.3":0.00688,"16.5":0.00275,"16.6":0.0055,"17.0":0.00138,"17.1":0.01238,"17.2":0.01926,"17.3":0.02202,"17.4":0.00138},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00126,"5.0-5.1":0.00063,"6.0-6.1":0.00378,"7.0-7.1":0.00441,"8.1-8.4":0.00126,"9.0-9.2":0.00252,"9.3":0.01576,"10.0-10.2":0.00252,"10.3":0.02648,"11.0-11.2":0.01891,"11.3-11.4":0.0063,"12.0-12.1":0.00567,"12.2-12.5":0.10906,"13.0-13.1":0.00189,"13.2":0.01891,"13.3":0.00567,"13.4-13.7":0.02143,"14.0-14.4":0.04098,"14.5-14.8":0.0643,"15.0-15.1":0.02774,"15.2-15.3":0.03278,"15.4":0.03846,"15.5":0.04917,"15.6-15.8":0.41166,"16.0":0.10024,"16.1":0.20741,"16.2":0.10024,"16.3":0.17841,"16.4":0.03782,"16.5":0.08006,"16.6-16.7":0.60646,"17.0":0.0788,"17.1":0.1576,"17.2":0.25406,"17.3":3.12686,"17.4":0.45894,"17.5":0},P:{"4":0.06197,"20":0.01033,"21":0.03099,"22":0.03099,"23":0.33052,"24":0.13427,_:"5.0-5.4 8.2 12.0 13.0 14.0","6.2-6.4":0.01033,"7.2-7.4":0.02066,"9.2":0.05164,"10.1":0.01033,"11.1-11.2":0.03099,"15.0":0.02066,"16.0":0.03099,"17.0":0.01033,"18.0":0.01033,"19.0":0.09296},I:{"0":0.09448,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},K:{"0":3.552,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01514,_:"6 7 8 9 10 5.5"},S:{"2.5":0.04312,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":78.34752},R:{_:"0"},M:{"0":0.0345},Q:{"14.9":0.01725},O:{"0":0.77616},H:{"0":0.76}}; +module.exports={C:{"43":0.0012,"45":0.00241,"47":0.0012,"52":0.00241,"63":0.03609,"70":0.0012,"72":0.01925,"77":0.0012,"86":0.0012,"96":0.00481,"101":0.0012,"104":0.0385,"106":0.03248,"112":0.00241,"115":0.30677,"117":0.0012,"121":0.00481,"123":0.00962,"124":0.59909,"125":0.42466,"126":0.00241,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 71 73 74 75 76 78 79 80 81 82 83 84 85 87 88 89 90 91 92 93 94 95 97 98 99 100 102 103 105 107 108 109 110 111 113 114 116 118 119 120 122 127 128 3.5 3.6"},D:{"11":0.0397,"47":0.00481,"55":0.0012,"58":0.00602,"65":0.0012,"67":0.00481,"68":0.00722,"70":0.00361,"71":0.0012,"78":0.0012,"79":0.03489,"81":0.0012,"84":0.0012,"85":0.00241,"87":0.00481,"88":0.00241,"89":0.00241,"91":0.08541,"92":0.02165,"93":0.0012,"95":0.00962,"97":0.00842,"101":0.00241,"103":0.00361,"105":0.00241,"106":0.0012,"109":0.16,"111":0.01323,"113":0.06617,"114":0.00602,"115":0.00241,"116":0.01684,"117":0.00361,"118":0.0012,"119":0.02887,"120":0.07699,"121":0.02045,"122":0.08421,"123":1.28721,"124":0.58586,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 56 57 59 60 61 62 63 64 66 69 72 73 74 75 76 77 80 83 86 90 94 96 98 99 100 102 104 107 108 110 112 125 126 127"},F:{"37":0.00241,"40":0.0012,"74":0.0012,"79":0.00602,"82":0.2791,"83":0.0012,"95":0.03368,"104":0.00722,"106":0.0012,"107":0.00481,"108":0.25143,"109":0.06737,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00361,"13":0.00602,"14":0.0012,"16":0.0012,"17":0.01444,"18":0.01323,"84":0.01203,"89":0.0012,"90":0.01684,"92":0.01684,"99":0.0012,"108":0.0012,"109":0.04331,"111":0.00361,"112":0.00241,"114":0.0012,"116":0.00361,"117":0.00241,"118":0.01323,"119":0.00361,"120":0.07098,"121":0.01805,"122":0.02887,"123":0.51128,"124":0.43428,_:"15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 100 101 102 103 104 105 106 107 110 113 115"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.4 15.5 16.0 16.3 16.4 16.5 17.0 17.5","5.1":0.02526,"12.1":0.0012,"13.1":0.0012,"14.1":0.0012,"15.1":0.16481,"15.2-15.3":0.00241,"15.6":0.00361,"16.1":0.02045,"16.2":0.0012,"16.6":0.00481,"17.1":0.0012,"17.2":0.02526,"17.3":0.00241,"17.4":0.09504},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00118,"5.0-5.1":0.00118,"6.0-6.1":0.00294,"7.0-7.1":0.00471,"8.1-8.4":0.00118,"9.0-9.2":0.00294,"9.3":0.01471,"10.0-10.2":0.00294,"10.3":0.02354,"11.0-11.2":0.02001,"11.3-11.4":0.00589,"12.0-12.1":0.00412,"12.2-12.5":0.09593,"13.0-13.1":0.00177,"13.2":0.01942,"13.3":0.00471,"13.4-13.7":0.01824,"14.0-14.4":0.0359,"14.5-14.8":0.05473,"15.0-15.1":0.02531,"15.2-15.3":0.02884,"15.4":0.03296,"15.5":0.04178,"15.6-15.8":0.36488,"16.0":0.08534,"16.1":0.17773,"16.2":0.08534,"16.3":0.15066,"16.4":0.03119,"16.5":0.06533,"16.6-16.7":0.51613,"17.0":0.06179,"17.1":0.11417,"17.2":0.15184,"17.3":1.10759,"17.4":2.50003,"17.5":0.02295},P:{"4":0.04074,"20":0.01019,"21":0.09167,"22":0.04074,"23":0.29539,"24":0.31577,_:"5.0-5.4 8.2 12.0 13.0 14.0","6.2-6.4":0.02037,"7.2-7.4":0.09167,"9.2":0.05093,"10.1":0.01019,"11.1-11.2":0.01019,"15.0":0.02037,"16.0":0.02037,"17.0":0.02037,"18.0":0.01019,"19.0":0.10186},I:{"0":0.05257,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"9":0.00163,"11":0.02122,_:"6 7 8 10 5.5"},K:{"0":3.62617,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.04399,_:"3.0-3.1"},Q:{"14.9":0.01759},O:{"0":0.80932},H:{"0":0.57},L:{"0":81.16943},R:{_:"0"},M:{"0":0.02639}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NF.js index a54ec0a3da3ea9..9b60fdff1adaf9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NF.js @@ -1 +1 @@ -module.exports={C:{"123":4.05357,"124":2.30762,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 125 126 127 3.5 3.6"},D:{"76":1.04931,"109":0.13933,"121":1.39763,"122":20.19821,"123":6.63985,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 124 125 126"},F:{"108":0.55731,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"122":3.84458,"123":0.27866,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.5","16.6":0.62698,"17.0":0.06966,"17.1":0.13933,"17.2":0.13933,"17.3":0.70099,"17.4":0.06966},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00457,"5.0-5.1":0.00229,"6.0-6.1":0.01372,"7.0-7.1":0.01601,"8.1-8.4":0.00457,"9.0-9.2":0.00915,"9.3":0.05717,"10.0-10.2":0.00915,"10.3":0.09604,"11.0-11.2":0.0686,"11.3-11.4":0.02287,"12.0-12.1":0.02058,"12.2-12.5":0.39559,"13.0-13.1":0.00686,"13.2":0.0686,"13.3":0.02058,"13.4-13.7":0.07775,"14.0-14.4":0.14863,"14.5-14.8":0.23324,"15.0-15.1":0.10061,"15.2-15.3":0.1189,"15.4":0.13948,"15.5":0.17836,"15.6-15.8":1.49317,"16.0":0.36357,"16.1":0.7523,"16.2":0.36357,"16.3":0.64712,"16.4":0.1372,"16.5":0.2904,"16.6-16.7":2.19974,"17.0":0.28583,"17.1":0.57166,"17.2":0.92151,"17.3":11.34168,"17.4":1.66467,"17.5":0},P:{"21":0.22503,"22":0.22503,"23":1.20018,"24":0.45007,_:"4 20 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":31.70527},R:{_:"0"},M:{"0":0.29924},Q:{_:"14.9"},O:{"0":0.15244},H:{"0":0}}; +module.exports={C:{"124":1.04513,"125":5.5678,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"109":1.3935,"122":2.17735,"123":20.53552,"124":6.9613,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121 125 126 127"},F:{"109":4.34848,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"122":0.43547,"123":6.26455,"124":4.43557,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{"14":0.43547,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.3 17.5","16.6":0.26128,"17.4":4.87104},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00181,"5.0-5.1":0.00181,"6.0-6.1":0.00452,"7.0-7.1":0.00723,"8.1-8.4":0.00181,"9.0-9.2":0.00452,"9.3":0.02261,"10.0-10.2":0.00452,"10.3":0.03617,"11.0-11.2":0.03075,"11.3-11.4":0.00904,"12.0-12.1":0.00633,"12.2-12.5":0.1474,"13.0-13.1":0.00271,"13.2":0.02984,"13.3":0.00723,"13.4-13.7":0.02803,"14.0-14.4":0.05516,"14.5-14.8":0.0841,"15.0-15.1":0.03889,"15.2-15.3":0.04431,"15.4":0.05064,"15.5":0.06421,"15.6-15.8":0.56068,"16.0":0.13113,"16.1":0.2731,"16.2":0.13113,"16.3":0.2315,"16.4":0.04793,"16.5":0.10038,"16.6-16.7":0.79308,"17.0":0.09495,"17.1":0.17544,"17.2":0.23331,"17.3":1.70192,"17.4":3.84153,"17.5":0.03527},P:{"24":0.26669,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.35901},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{"11":1.91607,_:"6 7 8 9 10 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":28.29013},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js index 1ed48dd98996d3..2dcbc3146dceb0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NG.js @@ -1 +1 @@ -module.exports={C:{"41":0.00138,"43":0.00826,"44":0.00138,"47":0.00275,"52":0.00138,"57":0.00138,"58":0.00138,"65":0.00275,"71":0.00138,"72":0.00413,"74":0.00138,"76":0.00138,"78":0.00413,"80":0.00138,"94":0.00138,"95":0.00138,"96":0.00275,"99":0.00275,"100":0.00138,"101":0.00275,"102":0.00138,"103":0.00138,"105":0.00138,"106":0.00138,"107":0.00138,"108":0.00138,"109":0.00138,"110":0.00275,"111":0.00138,"112":0.00275,"113":0.00275,"114":0.00275,"115":0.43757,"116":0.00138,"118":0.00138,"119":0.00275,"120":0.00275,"121":0.0055,"122":0.01926,"123":0.27245,"124":0.10182,"125":0.00275,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 45 46 48 49 50 51 53 54 55 56 59 60 61 62 63 64 66 67 68 69 70 73 75 77 79 81 82 83 84 85 86 87 88 89 90 91 92 93 97 98 104 117 126 127 3.5 3.6"},D:{"11":0.00138,"23":0.00138,"33":0.00138,"37":0.00138,"39":0.00138,"40":0.00138,"43":0.00138,"47":0.01651,"49":0.00138,"50":0.00138,"55":0.00138,"56":0.00275,"58":0.00413,"59":0.00275,"61":0.00138,"62":0.01514,"63":0.01101,"64":0.00826,"65":0.00138,"66":0.00138,"67":0.03302,"68":0.00688,"69":0.00275,"70":0.01651,"71":0.00138,"72":0.00138,"73":0.00138,"74":0.00688,"75":0.00413,"76":0.0055,"77":0.00688,"78":0.00138,"79":0.01376,"80":0.01238,"81":0.00963,"83":0.0055,"84":0.00275,"85":0.00413,"86":0.00826,"87":0.01101,"88":0.01101,"89":0.00275,"90":0.00275,"91":0.00963,"92":0.0055,"93":0.05091,"94":0.00826,"95":0.01514,"96":0.00413,"97":0.00413,"98":0.00275,"99":0.00413,"100":0.0055,"101":0.00138,"102":0.00826,"103":0.01926,"104":0.0055,"105":0.01789,"106":0.01238,"107":0.00963,"108":0.01926,"109":0.67424,"110":0.00826,"111":0.01651,"112":0.01101,"113":0.0055,"114":0.02339,"115":0.01101,"116":0.04541,"117":0.02064,"118":0.01514,"119":0.05779,"120":0.12384,"121":0.36602,"122":3.0327,"123":0.82835,"124":0.00413,"125":0.00138,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 34 35 36 38 41 42 44 45 46 48 51 52 53 54 57 60 126"},F:{"33":0.00138,"53":0.00138,"58":0.00138,"67":0.00138,"74":0.00138,"75":0.00138,"76":0.00138,"77":0.00138,"79":0.01238,"80":0.00275,"81":0.01238,"83":0.00138,"85":0.00963,"92":0.00138,"95":0.0289,"100":0.00963,"102":0.00138,"103":0.00138,"105":0.00138,"106":0.00688,"107":0.15411,"108":0.07706,"109":0.00138,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 60 62 63 64 65 66 68 69 70 71 72 73 78 82 84 86 87 88 89 90 91 93 94 96 97 98 99 101 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00688,"14":0.00138,"15":0.00138,"17":0.0055,"18":0.01789,"84":0.00275,"89":0.00275,"90":0.00413,"92":0.01376,"100":0.00275,"106":0.00138,"107":0.00413,"108":0.00138,"109":0.00826,"110":0.00138,"111":0.00138,"112":0.00138,"113":0.00138,"114":0.00138,"115":0.00275,"116":0.00275,"117":0.00275,"118":0.00413,"119":0.00963,"120":0.01926,"121":0.05091,"122":0.54352,"123":0.03302,_:"13 16 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"10":0.00138,"11":0.00413,"13":0.0055,"14":0.00826,_:"0 4 5 6 7 8 9 12 15 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.00138,"11.1":0.00413,"12.1":0.00275,"13.1":0.01376,"14.1":0.01101,"15.1":0.00275,"15.2-15.3":0.00275,"15.4":0.00275,"15.5":0.00275,"15.6":0.03165,"16.0":0.00275,"16.1":0.00413,"16.2":0.00138,"16.3":0.0055,"16.4":0.00275,"16.5":0.00688,"16.6":0.02202,"17.0":0.0055,"17.1":0.00688,"17.2":0.01514,"17.3":0.0289,"17.4":0.01376},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00111,"5.0-5.1":0.00056,"6.0-6.1":0.00333,"7.0-7.1":0.00389,"8.1-8.4":0.00111,"9.0-9.2":0.00222,"9.3":0.01388,"10.0-10.2":0.00222,"10.3":0.02333,"11.0-11.2":0.01666,"11.3-11.4":0.00555,"12.0-12.1":0.005,"12.2-12.5":0.09608,"13.0-13.1":0.00167,"13.2":0.01666,"13.3":0.005,"13.4-13.7":0.01888,"14.0-14.4":0.0361,"14.5-14.8":0.05665,"15.0-15.1":0.02444,"15.2-15.3":0.02888,"15.4":0.03388,"15.5":0.04332,"15.6-15.8":0.36267,"16.0":0.08831,"16.1":0.18272,"16.2":0.08831,"16.3":0.15717,"16.4":0.03332,"16.5":0.07053,"16.6-16.7":0.53428,"17.0":0.06942,"17.1":0.13885,"17.2":0.22382,"17.3":2.75471,"17.4":0.40432,"17.5":0},P:{"4":0.0413,"20":0.01033,"21":0.0413,"22":0.06196,"23":0.25815,"24":0.22717,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 14.0","7.2-7.4":0.0413,"9.2":0.02065,"11.1-11.2":0.01033,"15.0":0.01033,"16.0":0.02065,"17.0":0.01033,"18.0":0.01033,"19.0":0.02065},I:{"0":0.05153,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":26.65733,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00168,"9":0.00168,"10":0.00168,"11":0.01009,_:"6 7 5.5"},S:{"2.5":0.02587,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.4717},R:{_:"0"},M:{"0":0.18973},Q:{"14.9":0.00862},O:{"0":0.6123},H:{"0":5.01}}; +module.exports={C:{"34":0.00118,"43":0.0071,"47":0.00237,"52":0.00237,"58":0.00118,"65":0.00237,"68":0.00237,"71":0.00118,"72":0.00355,"76":0.00118,"78":0.00473,"80":0.00118,"87":0.00118,"89":0.00118,"94":0.00118,"95":0.00118,"96":0.00118,"99":0.00355,"101":0.00118,"102":0.00118,"103":0.00237,"104":0.00118,"105":0.00118,"106":0.00118,"107":0.00118,"108":0.00118,"109":0.00118,"110":0.00118,"111":0.00118,"112":0.00237,"113":0.00118,"114":0.00237,"115":0.4247,"116":0.00118,"118":0.00118,"119":0.00237,"120":0.00237,"121":0.00355,"122":0.00473,"123":0.01775,"124":0.26263,"125":0.11475,"126":0.00355,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 66 67 69 70 73 74 75 77 79 81 82 83 84 85 86 88 90 91 92 93 97 98 100 117 127 128 3.5 3.6"},D:{"11":0.00118,"23":0.00118,"37":0.00118,"38":0.00118,"39":0.00118,"43":0.00118,"46":0.00118,"47":0.0142,"49":0.00118,"50":0.00237,"52":0.00118,"55":0.00118,"56":0.00237,"58":0.00592,"59":0.00946,"62":0.00946,"63":0.01183,"64":0.0071,"65":0.00237,"66":0.00118,"67":0.00118,"68":0.01183,"69":0.00355,"70":0.02366,"71":0.00118,"72":0.00118,"73":0.00118,"74":0.00592,"75":0.00473,"76":0.00355,"77":0.01065,"78":0.00118,"79":0.01183,"80":0.00828,"81":0.00828,"83":0.00473,"84":0.00355,"85":0.00355,"86":0.00473,"87":0.01065,"88":0.00828,"89":0.00237,"90":0.00355,"91":0.02839,"92":0.00355,"93":0.05324,"94":0.00592,"95":0.01538,"96":0.00237,"97":0.00237,"98":0.00473,"99":0.00355,"100":0.00355,"101":0.00237,"102":0.00592,"103":0.01656,"104":0.00473,"105":0.00946,"106":0.00946,"107":0.00592,"108":0.00946,"109":0.68851,"110":0.0071,"111":0.01065,"112":0.00828,"113":0.00473,"114":0.02011,"115":0.00828,"116":0.03549,"117":0.01656,"118":0.01183,"119":0.0485,"120":0.06861,"121":0.08044,"122":0.26854,"123":2.90072,"124":1.0789,"125":0.00946,"126":0.00118,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 24 25 26 27 28 29 30 31 32 33 34 35 36 40 41 42 44 45 48 51 53 54 57 60 61 127"},F:{"33":0.00118,"42":0.00118,"46":0.00118,"58":0.00118,"75":0.00118,"76":0.00118,"77":0.00118,"78":0.00118,"79":0.00946,"80":0.00118,"81":0.00473,"82":0.00118,"83":0.00118,"85":0.00237,"95":0.02603,"100":0.0071,"102":0.00118,"105":0.00118,"106":0.00237,"107":0.04022,"108":0.15261,"109":0.05087,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 60 62 63 64 65 66 67 68 69 70 71 72 73 74 84 86 87 88 89 90 91 92 93 94 96 97 98 99 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00828,"13":0.00118,"14":0.00118,"15":0.00118,"16":0.00237,"17":0.00118,"18":0.01775,"84":0.00237,"89":0.00237,"90":0.00473,"92":0.0142,"100":0.00237,"106":0.00118,"107":0.00118,"109":0.0071,"111":0.00118,"112":0.00118,"113":0.00118,"114":0.00118,"115":0.00355,"116":0.00118,"117":0.00237,"118":0.00237,"119":0.00355,"120":0.01301,"121":0.0142,"122":0.06152,"123":0.37265,"124":0.15852,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 108 110"},E:{"10":0.00118,"11":0.00355,"13":0.00473,"14":0.00946,"15":0.00118,_:"0 4 5 6 7 8 9 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00237,"12.1":0.00118,"13.1":0.01183,"14.1":0.00946,"15.1":0.00473,"15.2-15.3":0.00237,"15.4":0.00237,"15.5":0.00237,"15.6":0.02603,"16.0":0.00237,"16.1":0.00237,"16.2":0.00237,"16.3":0.01538,"16.4":0.00355,"16.5":0.00828,"16.6":0.02011,"17.0":0.00355,"17.1":0.0071,"17.2":0.01065,"17.3":0.01538,"17.4":0.03904,"17.5":0.00118},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00113,"5.0-5.1":0.00113,"6.0-6.1":0.00283,"7.0-7.1":0.00452,"8.1-8.4":0.00113,"9.0-9.2":0.00283,"9.3":0.01413,"10.0-10.2":0.00283,"10.3":0.0226,"11.0-11.2":0.01921,"11.3-11.4":0.00565,"12.0-12.1":0.00396,"12.2-12.5":0.09211,"13.0-13.1":0.0017,"13.2":0.01865,"13.3":0.00452,"13.4-13.7":0.01752,"14.0-14.4":0.03447,"14.5-14.8":0.05255,"15.0-15.1":0.0243,"15.2-15.3":0.02769,"15.4":0.03165,"15.5":0.04012,"15.6-15.8":0.35037,"16.0":0.08194,"16.1":0.17066,"16.2":0.08194,"16.3":0.14467,"16.4":0.02995,"16.5":0.06273,"16.6-16.7":0.4956,"17.0":0.05934,"17.1":0.10963,"17.2":0.1458,"17.3":1.06353,"17.4":2.40057,"17.5":0.02204},P:{"4":0.04251,"20":0.01063,"21":0.03188,"22":0.06377,"23":0.14879,"24":0.35071,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.03188,"9.2":0.01063,"11.1-11.2":0.01063,"16.0":0.02126,"17.0":0.01063,"18.0":0.01063,"19.0":0.02126},I:{"0":0.05268,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.0026,"9":0.0013,"10":0.0013,"11":0.00781,_:"6 7 5.5"},K:{"0":26.91235,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02645,_:"3.0-3.1"},Q:{"14.9":0.00882},O:{"0":0.57304},H:{"0":5.46},L:{"0":51.97749},R:{_:"0"},M:{"0":0.19395}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NI.js index 357bc9c0659b9a..61674b9bd3489a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NI.js @@ -1 +1 @@ -module.exports={C:{"4":0.01876,"47":0.00313,"66":0.01563,"88":0.00313,"98":0.01876,"104":0.00313,"105":0.0125,"106":0.00313,"109":0.00313,"111":0.00313,"113":0.00313,"114":0.00313,"115":0.12191,"116":0.00313,"117":0.00625,"118":0.00313,"119":0.00625,"120":0.00313,"121":0.01563,"122":0.0125,"123":0.84089,"124":0.27196,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 99 100 101 102 103 107 108 110 112 125 126 127 3.5 3.6"},D:{"11":0.00625,"34":0.00625,"38":0.00938,"47":0.00313,"56":0.00313,"63":0.00313,"66":0.0125,"68":0.00313,"69":0.06252,"70":0.03439,"73":0.00625,"75":0.00313,"76":0.00938,"77":0.00313,"79":0.04376,"80":0.00625,"81":0.00938,"83":0.03126,"84":0.00313,"86":0.00625,"87":0.0719,"88":0.02188,"91":2.29136,"92":0.00313,"93":0.01563,"94":0.00938,"96":0.0125,"97":0.00313,"98":0.0125,"99":0.04376,"100":0.00313,"101":0.05314,"102":0.00313,"103":0.05627,"104":0.02188,"105":0.00625,"106":0.01876,"107":0.00313,"108":0.02188,"109":1.6474,"110":0.00938,"111":0.01563,"112":0.00625,"113":0.02188,"114":0.05002,"115":0.00938,"116":0.0719,"117":0.0125,"118":0.02188,"119":0.10941,"120":0.18443,"121":0.68147,"122":12.04135,"123":2.81965,"124":0.00313,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 57 58 59 60 61 62 64 65 67 71 72 74 78 85 89 90 95 125 126"},F:{"46":0.00313,"95":0.01876,"106":0.00938,"107":1.18788,"108":0.18131,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00625,"13":0.00313,"14":0.00313,"16":0.00313,"18":0.0125,"80":0.00313,"84":0.00313,"92":0.03751,"100":0.00938,"103":0.00313,"108":0.00313,"109":0.06252,"111":0.04376,"112":0.00313,"114":0.00625,"115":0.00313,"116":0.00625,"117":0.00625,"118":0.0125,"119":0.01563,"120":0.04376,"121":0.09378,"122":3.14163,"123":0.18131,_:"15 17 79 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105 106 107 110 113"},E:{"14":0.0125,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.5","5.1":0.00625,"9.1":0.00313,"13.1":0.00625,"14.1":0.03751,"15.1":0.00313,"15.2-15.3":0.00313,"15.4":0.00313,"15.5":0.00625,"15.6":0.08753,"16.0":0.01563,"16.1":0.00625,"16.2":0.02813,"16.3":0.01876,"16.4":0.00938,"16.5":0.0125,"16.6":0.06877,"17.0":0.02188,"17.1":0.03126,"17.2":0.05627,"17.3":0.28134,"17.4":0.02501},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0013,"5.0-5.1":0.00065,"6.0-6.1":0.00391,"7.0-7.1":0.00456,"8.1-8.4":0.0013,"9.0-9.2":0.0026,"9.3":0.01627,"10.0-10.2":0.0026,"10.3":0.02734,"11.0-11.2":0.01953,"11.3-11.4":0.00651,"12.0-12.1":0.00586,"12.2-12.5":0.11262,"13.0-13.1":0.00195,"13.2":0.01953,"13.3":0.00586,"13.4-13.7":0.02213,"14.0-14.4":0.04231,"14.5-14.8":0.0664,"15.0-15.1":0.02864,"15.2-15.3":0.03385,"15.4":0.03971,"15.5":0.05078,"15.6-15.8":0.42508,"16.0":0.1035,"16.1":0.21417,"16.2":0.1035,"16.3":0.18422,"16.4":0.03906,"16.5":0.08267,"16.6-16.7":0.62623,"17.0":0.08137,"17.1":0.16274,"17.2":0.26234,"17.3":3.2288,"17.4":0.4739,"17.5":0},P:{"4":0.21756,"20":0.07252,"21":0.13468,"22":0.14504,"23":1.33643,"24":1.06708,_:"5.0-5.4 8.2 10.1 12.0","6.2-6.4":0.02072,"7.2-7.4":0.32116,"9.2":0.01036,"11.1-11.2":0.07252,"13.0":0.03108,"14.0":0.02072,"15.0":0.01036,"16.0":0.04144,"17.0":0.03108,"18.0":0.02072,"19.0":0.08288},I:{"0":0.09584,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},K:{"0":0.54992,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03751,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00687,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":60.57891},R:{_:"0"},M:{"0":0.16498},Q:{_:"14.9"},O:{"0":0.15123},H:{"0":0}}; +module.exports={C:{"4":0.05307,"11":0.00663,"69":0.00332,"78":0.00332,"98":0.04312,"103":0.00332,"114":0.01327,"115":0.16253,"116":0.00995,"117":0.00995,"118":0.00663,"121":0.01327,"122":0.01659,"123":0.04312,"124":0.84252,"125":0.42458,"126":0.00663,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 104 105 106 107 108 109 110 111 112 113 119 120 127 128 3.5 3.6"},D:{"11":0.00332,"31":0.00332,"38":0.00663,"47":0.00332,"49":0.00332,"56":0.00663,"64":0.00332,"65":0.00332,"68":0.00332,"69":0.01327,"70":0.00332,"73":0.00332,"74":0.00332,"75":0.00332,"76":0.00663,"77":0.00332,"78":0.00332,"79":0.11278,"81":0.00663,"83":0.02654,"85":0.00332,"86":0.00663,"87":0.07629,"88":0.03649,"91":0.84252,"92":0.00332,"93":0.00663,"94":0.00663,"96":0.01327,"97":0.00332,"98":0.00332,"99":0.02654,"100":0.00332,"101":0.05307,"102":0.00663,"103":0.08624,"104":0.00663,"105":0.00332,"106":0.00995,"107":0.00332,"108":0.01659,"109":2.01342,"110":0.00995,"111":0.00995,"112":0.00663,"113":0.00663,"114":0.06302,"115":0.01659,"116":0.06966,"117":0.01327,"118":0.00995,"119":0.04976,"120":0.20565,"121":0.15258,"122":0.8193,"123":12.35914,"124":4.84282,"125":0.00995,"126":0.00332,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 62 63 66 67 71 72 80 84 89 90 95 127"},F:{"28":0.00332,"39":0.00332,"74":0.00332,"81":0.00332,"86":0.00663,"95":0.0199,"106":0.00663,"107":0.98515,"108":0.3516,"109":0.10946,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 79 80 82 83 84 85 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00663,"84":0.00663,"92":0.03317,"100":0.00332,"109":0.05639,"111":0.06634,"112":0.00332,"114":0.01327,"115":0.00332,"117":0.00995,"118":0.00332,"119":0.02322,"120":0.0199,"121":0.02322,"122":0.17248,"123":2.4778,"124":1.11783,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 113 116"},E:{"14":0.02654,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.5","5.1":0.00995,"13.1":0.00995,"14.1":0.03649,"15.1":0.00995,"15.4":0.00332,"15.5":0.00332,"15.6":0.04644,"16.0":0.00332,"16.1":0.01327,"16.2":0.00995,"16.3":0.01327,"16.4":0.00663,"16.5":0.27199,"16.6":0.09619,"17.0":0.00995,"17.1":0.04644,"17.2":0.03649,"17.3":0.10283,"17.4":0.26536},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00125,"5.0-5.1":0.00125,"6.0-6.1":0.00314,"7.0-7.1":0.00502,"8.1-8.4":0.00125,"9.0-9.2":0.00314,"9.3":0.01569,"10.0-10.2":0.00314,"10.3":0.0251,"11.0-11.2":0.02133,"11.3-11.4":0.00627,"12.0-12.1":0.00439,"12.2-12.5":0.10227,"13.0-13.1":0.00188,"13.2":0.02071,"13.3":0.00502,"13.4-13.7":0.01945,"14.0-14.4":0.03827,"14.5-14.8":0.05835,"15.0-15.1":0.02698,"15.2-15.3":0.03074,"15.4":0.03514,"15.5":0.04455,"15.6-15.8":0.38901,"16.0":0.09098,"16.1":0.18949,"16.2":0.09098,"16.3":0.16062,"16.4":0.03325,"16.5":0.06965,"16.6-16.7":0.55026,"17.0":0.06588,"17.1":0.12172,"17.2":0.16188,"17.3":1.18084,"17.4":2.66536,"17.5":0.02447},P:{"4":0.18695,"20":0.03116,"21":0.10386,"22":0.16618,"23":0.43621,"24":1.98372,_:"5.0-5.4 10.1 12.0","6.2-6.4":0.02077,"7.2-7.4":0.36351,"8.2":0.01039,"9.2":0.01039,"11.1-11.2":0.0727,"13.0":0.01039,"14.0":0.01039,"15.0":0.01039,"16.0":0.03116,"17.0":0.02077,"18.0":0.02077,"19.0":0.0727},I:{"0":0.09316,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},A:{"11":0.03317,_:"6 7 8 9 10 5.5"},K:{"0":0.62811,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00668,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.13364},H:{"0":0},L:{"0":58.12458},R:{_:"0"},M:{"0":0.20714}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js index 936f664bf3b635..38d75b981a2865 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NL.js @@ -1 +1 @@ -module.exports={C:{"4":0.02382,"38":0.00476,"43":0.00476,"44":0.01906,"45":0.00476,"50":0.00476,"52":0.01429,"54":0.00476,"78":0.01429,"81":0.01906,"83":0.00476,"87":0.00476,"88":0.00476,"91":0.00476,"95":0.00476,"102":0.00953,"103":0.00476,"104":0.00953,"105":0.00476,"106":0.00476,"107":0.00476,"108":0.00953,"109":0.00953,"110":0.00476,"111":0.00476,"112":0.00953,"113":0.01906,"114":0.00476,"115":0.36683,"116":0.00476,"117":0.00476,"118":0.01906,"119":0.00476,"120":0.00953,"121":0.02382,"122":0.10004,"123":1.71504,"124":0.77177,"125":0.00953,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 49 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 84 85 86 89 90 92 93 94 96 97 98 99 100 101 126 127 3.5 3.6"},D:{"38":0.00953,"45":0.00476,"47":0.00476,"48":0.04764,"49":0.01906,"52":0.01429,"61":0.00476,"66":0.00953,"67":0.00476,"68":0.00476,"69":0.00476,"70":0.00476,"71":0.00476,"72":0.01906,"74":0.00476,"75":0.00476,"76":0.00476,"77":0.00476,"78":0.00953,"79":0.05717,"80":0.00953,"81":0.00953,"83":0.00476,"84":0.00953,"85":0.02382,"86":0.33348,"87":0.02858,"88":0.02382,"89":0.00953,"90":0.00953,"91":0.00953,"92":0.07622,"93":0.02382,"94":0.00953,"95":0.00476,"96":0.03811,"97":0.01906,"98":0.01429,"99":0.01429,"100":0.32395,"101":0.64314,"102":0.32395,"103":0.424,"104":0.40494,"105":0.07146,"106":0.11434,"107":0.0524,"108":0.17627,"109":0.82894,"110":0.03811,"111":0.04288,"112":0.0524,"113":0.13816,"114":0.19056,"115":0.02382,"116":0.17627,"117":0.04764,"118":0.08575,"119":0.20485,"120":0.44305,"121":2.34865,"122":15.27338,"123":4.24472,"124":0.00953,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 50 51 53 54 55 56 57 58 59 60 62 63 64 65 73 125 126"},F:{"46":0.00476,"85":0.00476,"91":0.00476,"94":0.00476,"95":0.03811,"102":0.00476,"105":0.00476,"106":0.07622,"107":0.90516,"108":0.21914,"109":0.00476,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 92 93 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"84":0.00953,"92":0.00476,"103":0.00476,"106":0.00476,"107":0.00953,"108":0.00953,"109":0.10957,"110":0.01429,"111":0.00476,"112":0.00476,"113":0.00476,"114":0.02382,"115":0.00476,"116":0.00953,"117":0.00476,"118":0.00476,"119":0.02858,"120":0.10957,"121":0.2906,"122":7.25081,"123":0.53833,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 105"},E:{"9":0.00953,"13":0.00476,"14":0.04764,"15":0.01429,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00476,"9.1":0.01906,"12.1":0.02382,"13.1":0.07146,"14.1":0.10957,"15.1":0.02382,"15.2-15.3":0.01429,"15.4":0.02858,"15.5":0.04288,"15.6":0.40494,"16.0":0.05717,"16.1":0.08099,"16.2":0.07146,"16.3":0.1715,"16.4":0.0524,"16.5":0.10957,"16.6":0.65267,"17.0":0.10957,"17.1":0.20485,"17.2":0.5288,"17.3":2.05805,"17.4":0.50022},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00373,"5.0-5.1":0.00187,"6.0-6.1":0.01119,"7.0-7.1":0.01306,"8.1-8.4":0.00373,"9.0-9.2":0.00746,"9.3":0.04663,"10.0-10.2":0.00746,"10.3":0.07833,"11.0-11.2":0.05595,"11.3-11.4":0.01865,"12.0-12.1":0.01679,"12.2-12.5":0.32266,"13.0-13.1":0.0056,"13.2":0.05595,"13.3":0.01679,"13.4-13.7":0.06341,"14.0-14.4":0.12123,"14.5-14.8":0.19024,"15.0-15.1":0.08206,"15.2-15.3":0.09698,"15.4":0.11377,"15.5":0.14547,"15.6-15.8":1.21789,"16.0":0.29655,"16.1":0.61361,"16.2":0.29655,"16.3":0.52781,"16.4":0.1119,"16.5":0.23686,"16.6-16.7":1.79419,"17.0":0.23313,"17.1":0.46627,"17.2":0.75162,"17.3":9.25071,"17.4":1.35777,"17.5":0},P:{"4":0.02123,"20":0.02123,"21":0.05307,"22":0.06368,"23":2.37736,"24":2.47288,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0","7.2-7.4":0.01061,"13.0":0.01061,"15.0":0.01061,"16.0":0.02123,"17.0":0.02123,"18.0":0.01061,"19.0":0.02123},I:{"0":0.06257,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.48171,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00515,"9":0.02573,"11":0.09776,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":27.62885},R:{_:"0"},M:{"0":0.51836},Q:{"14.9":0.01571},O:{"0":0.36128},H:{"0":0}}; +module.exports={C:{"4":0.00481,"52":0.00962,"78":0.01924,"81":0.01443,"83":0.00481,"88":0.00481,"102":0.01443,"103":0.00481,"104":0.00481,"107":0.00481,"108":0.00481,"109":0.00481,"110":0.00481,"111":0.00481,"112":0.00962,"113":0.01443,"114":0.00481,"115":0.38472,"116":0.00962,"117":0.00962,"118":0.03847,"119":0.00481,"120":0.00481,"121":0.01443,"122":0.03366,"123":0.0529,"124":1.61582,"125":0.87524,"126":0.00962,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 105 106 127 128 3.5 3.6"},D:{"38":0.00962,"45":0.11061,"49":0.01443,"52":0.03847,"56":0.00481,"61":0.00481,"66":0.00962,"72":0.08656,"73":0.00481,"76":0.00481,"78":0.00962,"79":0.0529,"80":0.00481,"81":0.00481,"84":0.00481,"85":0.01924,"86":0.60113,"87":0.02885,"88":0.01924,"89":0.00481,"90":0.00481,"91":0.00962,"92":0.01924,"93":0.02405,"94":0.00962,"95":0.00481,"96":0.03847,"97":0.01443,"98":0.00962,"99":0.02405,"100":0.60593,"101":1.17821,"102":0.60593,"103":0.69731,"104":0.856,"105":0.03847,"106":0.09618,"107":0.02405,"108":0.14427,"109":0.75501,"110":0.01924,"111":0.02405,"112":0.16351,"113":0.17793,"114":0.22121,"115":0.02405,"116":0.13946,"117":0.08656,"118":0.07694,"119":0.12984,"120":0.22121,"121":0.29335,"122":1.75529,"123":14.03747,"124":5.30433,"125":0.01924,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 46 47 48 50 51 53 54 55 57 58 59 60 62 63 64 65 67 68 69 70 71 74 75 77 83 126 127"},F:{"46":0.00481,"79":0.00481,"85":0.00481,"95":0.03847,"102":0.00481,"105":0.00481,"106":0.06733,"107":0.56265,"108":0.38472,"109":0.1587,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00481,"107":0.00481,"108":0.00481,"109":0.09137,"110":0.00481,"111":0.00481,"112":0.00481,"113":0.00481,"114":0.01924,"115":0.00481,"116":0.00481,"117":0.00481,"118":0.00481,"119":0.01443,"120":0.05771,"121":0.05771,"122":0.40396,"123":4.98212,"124":2.27947,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"9":0.00481,"13":0.00481,"14":0.03366,"15":0.00962,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00481,"12.1":0.01443,"13.1":0.07694,"14.1":0.09137,"15.1":0.01924,"15.2-15.3":0.00962,"15.4":0.02885,"15.5":0.03847,"15.6":0.37029,"16.0":0.0529,"16.1":0.06252,"16.2":0.05771,"16.3":0.14427,"16.4":0.04809,"16.5":0.07694,"16.6":0.5867,"17.0":0.10099,"17.1":0.13946,"17.2":0.24045,"17.3":0.67807,"17.4":2.15443,"17.5":0.01443},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00357,"5.0-5.1":0.00357,"6.0-6.1":0.00894,"7.0-7.1":0.0143,"8.1-8.4":0.00357,"9.0-9.2":0.00894,"9.3":0.04468,"10.0-10.2":0.00894,"10.3":0.07149,"11.0-11.2":0.06077,"11.3-11.4":0.01787,"12.0-12.1":0.01251,"12.2-12.5":0.29132,"13.0-13.1":0.00536,"13.2":0.05898,"13.3":0.0143,"13.4-13.7":0.05541,"14.0-14.4":0.10902,"14.5-14.8":0.16622,"15.0-15.1":0.07685,"15.2-15.3":0.08758,"15.4":0.10009,"15.5":0.1269,"15.6-15.8":1.1081,"16.0":0.25915,"16.1":0.53975,"16.2":0.25915,"16.3":0.45754,"16.4":0.09472,"16.5":0.19839,"16.6-16.7":1.56743,"17.0":0.18766,"17.1":0.34673,"17.2":0.46111,"17.3":3.36363,"17.4":7.59229,"17.5":0.0697},P:{"4":0.05257,"20":0.02103,"21":0.05257,"22":0.05257,"23":0.27338,"24":4.07964,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0","7.2-7.4":0.01051,"13.0":0.01051,"15.0":0.01051,"16.0":0.01051,"17.0":0.02103,"18.0":0.01051,"19.0":0.02103},I:{"0":0.05687,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"8":0.05069,"9":0.02534,"11":0.11152,_:"6 7 10 5.5"},K:{"0":0.49315,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01557},O:{"0":0.31146},H:{"0":0},L:{"0":28.06439},R:{_:"0"},M:{"0":0.53467}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NO.js index 053b56b87e6b42..e77a97defb5fe9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NO.js @@ -1 +1 @@ -module.exports={C:{"48":0.00514,"52":0.00514,"59":0.04622,"78":0.01541,"84":0.01541,"94":0.00514,"102":0.00514,"108":0.00514,"113":0.00514,"115":0.31837,"118":0.00514,"119":0.00514,"120":0.01027,"121":0.01541,"122":0.06162,"123":1.24781,"124":0.45702,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 103 104 105 106 107 109 110 111 112 114 116 117 125 126 127 3.5 3.6"},D:{"38":0.01027,"41":0.00514,"49":0.02568,"66":0.21054,"79":0.01541,"83":0.00514,"86":0.03081,"87":0.06162,"88":0.00514,"89":0.00514,"90":0.00514,"91":0.00514,"92":0.00514,"93":0.00514,"94":0.00514,"96":0.00514,"98":0.00514,"99":0.00514,"100":0.03081,"101":0.06162,"102":0.03595,"103":0.11811,"104":0.04108,"105":0.00514,"106":0.01541,"107":0.01541,"108":0.06676,"109":1.18619,"110":0.03081,"111":0.02054,"112":0.04622,"113":0.03081,"114":0.0873,"115":0.03081,"116":0.24135,"117":0.07189,"118":7.00928,"119":0.16946,"120":0.60593,"121":3.3737,"122":15.56932,"123":4.01557,"124":0.00514,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 95 97 125 126"},F:{"87":0.00514,"95":0.02054,"102":0.00514,"105":0.01027,"106":0.04108,"107":1.74077,"108":0.24648,"109":0.00514,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.02568,"92":0.00514,"104":0.00514,"106":0.00514,"108":0.00514,"109":0.06676,"112":0.00514,"113":0.00514,"114":0.01027,"115":0.01027,"116":0.00514,"117":0.01027,"118":0.00514,"119":0.01541,"120":0.0873,"121":0.34405,"122":5.84877,"123":0.34405,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 107 110 111"},E:{"13":0.00514,"14":0.03595,"15":0.00514,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.00514,"11.1":0.04622,"12.1":0.01027,"13.1":0.07189,"14.1":0.15405,"15.1":0.02568,"15.2-15.3":0.02568,"15.4":0.04622,"15.5":0.06676,"15.6":0.47242,"16.0":0.03595,"16.1":0.09243,"16.2":0.11811,"16.3":0.21054,"16.4":0.09243,"16.5":0.12324,"16.6":0.71377,"17.0":0.09243,"17.1":0.24648,"17.2":0.46215,"17.3":2.22859,"17.4":0.61107},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00543,"5.0-5.1":0.00271,"6.0-6.1":0.01629,"7.0-7.1":0.019,"8.1-8.4":0.00543,"9.0-9.2":0.01086,"9.3":0.06785,"10.0-10.2":0.01086,"10.3":0.114,"11.0-11.2":0.08143,"11.3-11.4":0.02714,"12.0-12.1":0.02443,"12.2-12.5":0.46955,"13.0-13.1":0.00814,"13.2":0.08143,"13.3":0.02443,"13.4-13.7":0.09228,"14.0-14.4":0.17642,"14.5-14.8":0.27685,"15.0-15.1":0.11942,"15.2-15.3":0.14114,"15.4":0.16557,"15.5":0.21171,"15.6-15.8":1.77236,"16.0":0.43156,"16.1":0.89297,"16.2":0.43156,"16.3":0.76811,"16.4":0.16285,"16.5":0.3447,"16.6-16.7":2.61104,"17.0":0.33927,"17.1":0.67855,"17.2":1.09382,"17.3":13.46235,"17.4":1.97593,"17.5":0},P:{"4":0.05215,"20":0.01043,"21":0.03129,"22":0.03129,"23":1.87754,"24":1.73151,"5.0-5.4":0.01043,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01043,"19.0":0.01043},I:{"0":0.02907,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.24325,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0055,"11":0.07152,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":17.29316},R:{_:"0"},M:{"0":0.37461},Q:{_:"14.9"},O:{"0":0.02433},H:{"0":0}}; +module.exports={C:{"4":0.01016,"50":0.03049,"52":0.04573,"53":0.03557,"56":0.03049,"59":0.06097,"78":0.01524,"84":0.00508,"87":0.00508,"102":0.00508,"103":0.00508,"108":0.00508,"111":0.00508,"113":0.00508,"115":0.33027,"118":0.02541,"119":0.00508,"120":0.00508,"121":0.01016,"122":0.01016,"123":0.10162,"124":1.36679,"125":0.59448,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 109 110 112 114 116 117 126 127 128 3.5 3.6"},D:{"38":0.01016,"41":0.00508,"49":0.03049,"66":0.25913,"79":0.01016,"83":0.00508,"86":0.07622,"87":0.13211,"89":0.00508,"91":0.00508,"93":0.01016,"94":0.00508,"96":0.00508,"98":0.01016,"99":0.00508,"100":0.06605,"101":0.13719,"102":0.07113,"103":0.12194,"104":0.0813,"105":0.00508,"106":0.01016,"107":0.01524,"108":0.02032,"109":0.45221,"110":0.02541,"111":0.01524,"112":0.03049,"113":0.00508,"114":0.07113,"115":0.02032,"116":0.18292,"117":0.02541,"118":7.76885,"119":0.06605,"120":0.23881,"121":0.38108,"122":2.02732,"123":13.70854,"124":5.11657,"125":0.01016,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 88 90 92 95 97 126 127"},F:{"87":0.00508,"95":0.03049,"105":0.01016,"106":0.03049,"107":1.53446,"108":0.53859,"109":0.16259,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.03049,"92":0.00508,"100":0.00508,"106":0.00508,"107":0.00508,"108":0.00508,"109":0.05589,"110":0.00508,"112":0.00508,"113":0.01524,"114":0.01524,"115":0.01016,"117":0.01016,"118":0.00508,"119":0.02032,"120":0.04573,"121":0.04573,"122":0.5081,"123":4.15626,"124":1.91046,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 111 116"},E:{"9":0.00508,"13":0.00508,"14":0.03557,"15":0.01016,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.04573,"12.1":0.01016,"13.1":0.07113,"14.1":0.13211,"15.1":0.25405,"15.2-15.3":0.02541,"15.4":0.04573,"15.5":0.06097,"15.6":0.43697,"16.0":0.05081,"16.1":0.10162,"16.2":0.09654,"16.3":0.19816,"16.4":0.09146,"16.5":0.12194,"16.6":0.74183,"17.0":0.08638,"17.1":0.21848,"17.2":0.28454,"17.3":0.89934,"17.4":2.74374,"17.5":0.01524},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00533,"5.0-5.1":0.00533,"6.0-6.1":0.01333,"7.0-7.1":0.02132,"8.1-8.4":0.00533,"9.0-9.2":0.01333,"9.3":0.06663,"10.0-10.2":0.01333,"10.3":0.10661,"11.0-11.2":0.09062,"11.3-11.4":0.02665,"12.0-12.1":0.01866,"12.2-12.5":0.43442,"13.0-13.1":0.008,"13.2":0.08795,"13.3":0.02132,"13.4-13.7":0.08262,"14.0-14.4":0.16258,"14.5-14.8":0.24786,"15.0-15.1":0.1146,"15.2-15.3":0.13059,"15.4":0.14925,"15.5":0.18923,"15.6-15.8":1.6524,"16.0":0.38645,"16.1":0.80488,"16.2":0.38645,"16.3":0.68228,"16.4":0.14125,"16.5":0.29583,"16.6-16.7":2.33735,"17.0":0.27984,"17.1":0.51704,"17.2":0.68761,"17.3":5.01584,"17.4":11.32162,"17.5":0.10394},P:{"4":0.04214,"20":0.01053,"21":0.02107,"22":0.02107,"23":0.14748,"24":2.91798,"5.0-5.4":0.01053,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01053,"19.0":0.01053},I:{"0":0.0294,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"8":0.00508,"11":0.18292,_:"6 7 9 10 5.5"},K:{"0":0.28536,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01476},H:{"0":0},L:{"0":18.14083},R:{_:"0"},M:{"0":0.57072}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js index 9ac126428e6981..1790c26f698ed7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NP.js @@ -1 +1 @@ -module.exports={C:{"50":0.00231,"52":0.00461,"65":0.00231,"87":0.00231,"89":0.00231,"91":0.00231,"100":0.00231,"110":0.00231,"114":0.00231,"115":0.17756,"116":0.00231,"117":0.00231,"118":0.00231,"119":0.00461,"120":0.00461,"121":0.00692,"122":0.01614,"123":0.6157,"124":0.30439,"125":0.01614,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 90 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 111 112 113 126 127 3.5 3.6"},D:{"49":0.00231,"69":0.00231,"70":0.00231,"72":0.00231,"73":0.00231,"74":0.00231,"76":0.00231,"79":0.01153,"83":0.00231,"85":0.00231,"87":0.00922,"88":0.00692,"91":0.00231,"92":0.00231,"93":0.00692,"94":0.00231,"95":0.00231,"96":0.00461,"97":0.00231,"98":0.00231,"99":0.00231,"100":0.00231,"102":0.00461,"103":0.04381,"104":0.00231,"105":0.00231,"106":0.01845,"107":0.00461,"108":0.00692,"109":1.60959,"110":0.00231,"111":0.00692,"112":0.00692,"113":0.00461,"114":0.01153,"115":0.00692,"116":0.05304,"117":0.01153,"118":0.00922,"119":0.02998,"120":0.13605,"121":0.53269,"122":11.97506,"123":3.90867,"124":0.03228,"125":0.00231,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 71 75 77 78 80 81 84 86 89 90 101 126"},F:{"85":0.00231,"95":0.01614,"106":0.00231,"107":0.18679,"108":0.08763,"109":0.00231,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00231,"89":0.00231,"92":0.00692,"105":0.02537,"107":0.00231,"108":0.00231,"109":0.02306,"113":0.00231,"114":0.00231,"115":0.00231,"116":0.00231,"117":0.00231,"118":0.00231,"119":0.00461,"120":0.01384,"121":0.04612,"122":1.38821,"123":0.11299,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 110 111 112"},E:{"13":0.00231,"14":0.00461,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00231,"12.1":0.00461,"13.1":0.00922,"14.1":0.01845,"15.1":0.00231,"15.2-15.3":0.00231,"15.4":0.00231,"15.5":0.00922,"15.6":0.03459,"16.0":0.00461,"16.1":0.01153,"16.2":0.00461,"16.3":0.00922,"16.4":0.00692,"16.5":0.00922,"16.6":0.05304,"17.0":0.00692,"17.1":0.02998,"17.2":0.05534,"17.3":0.11299,"17.4":0.0369},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00186,"5.0-5.1":0.00093,"6.0-6.1":0.00558,"7.0-7.1":0.00651,"8.1-8.4":0.00186,"9.0-9.2":0.00372,"9.3":0.02325,"10.0-10.2":0.00372,"10.3":0.03906,"11.0-11.2":0.0279,"11.3-11.4":0.0093,"12.0-12.1":0.00837,"12.2-12.5":0.1609,"13.0-13.1":0.00279,"13.2":0.0279,"13.3":0.00837,"13.4-13.7":0.03162,"14.0-14.4":0.06046,"14.5-14.8":0.09487,"15.0-15.1":0.04092,"15.2-15.3":0.04836,"15.4":0.05674,"15.5":0.07255,"15.6-15.8":0.60734,"16.0":0.14788,"16.1":0.306,"16.2":0.14788,"16.3":0.26321,"16.4":0.05581,"16.5":0.11812,"16.6-16.7":0.89474,"17.0":0.11626,"17.1":0.23252,"17.2":0.37482,"17.3":4.61322,"17.4":0.6771,"17.5":0},P:{"4":0.04179,"20":0.01045,"21":0.01045,"22":0.01045,"23":0.27167,"24":0.27167,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","7.2-7.4":0.03135,"13.0":0.01045,"17.0":0.0209,"18.0":0.01045,"19.0":0.01045},I:{"0":0.05363,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},K:{"0":0.66929,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00231,"11":0.00461,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":66.30753},R:{_:"0"},M:{"0":0.04616},Q:{_:"14.9"},O:{"0":0.70776},H:{"0":0}}; +module.exports={C:{"52":0.00238,"89":0.00238,"91":0.00238,"100":0.00238,"103":0.00238,"114":0.00238,"115":0.17619,"117":0.00238,"118":0.00238,"119":0.00476,"120":0.00476,"121":0.00714,"122":0.00476,"123":0.01667,"124":0.59763,"125":0.35001,"126":0.01667,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 92 93 94 95 96 97 98 99 101 102 104 105 106 107 108 109 110 111 112 113 116 127 128 3.5 3.6"},D:{"49":0.00238,"65":0.00238,"68":0.00238,"69":0.00238,"72":0.00238,"73":0.00238,"74":0.00238,"75":0.00238,"76":0.00238,"79":0.00714,"83":0.00238,"87":0.00714,"88":0.00714,"89":0.00238,"90":0.00238,"91":0.00238,"92":0.00238,"93":0.00476,"95":0.00238,"96":0.00476,"97":0.00238,"98":0.00238,"99":0.00238,"100":0.00238,"102":0.00476,"103":0.04762,"104":0.00476,"105":0.00238,"106":0.01667,"107":0.00714,"108":0.00952,"109":1.73099,"110":0.00238,"111":0.00476,"112":0.00952,"113":0.00476,"114":0.00952,"115":0.00476,"116":0.04762,"117":0.01191,"118":0.01191,"119":0.03095,"120":0.07381,"121":0.12381,"122":0.3262,"123":11.46928,"124":4.98105,"125":0.07381,"126":0.00238,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 70 71 77 78 80 81 84 85 86 94 101 127"},F:{"85":0.00238,"95":0.01429,"107":0.0881,"108":0.16429,"109":0.06667,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00238,"92":0.00714,"105":0.01667,"107":0.00238,"108":0.00238,"109":0.01667,"111":0.00238,"113":0.00238,"114":0.00238,"115":0.00238,"116":0.00238,"117":0.00238,"118":0.00238,"119":0.00476,"120":0.01191,"121":0.00952,"122":0.06191,"123":1.11669,"124":0.51906,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 110 112"},E:{"13":0.00238,"14":0.00476,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00476,"13.1":0.00714,"14.1":0.01905,"15.1":0.00952,"15.2-15.3":0.00238,"15.4":0.00476,"15.5":0.00952,"15.6":0.04048,"16.0":0.00238,"16.1":0.00952,"16.2":0.00476,"16.3":0.00952,"16.4":0.00714,"16.5":0.00952,"16.6":0.05714,"17.0":0.02143,"17.1":0.02143,"17.2":0.04048,"17.3":0.05,"17.4":0.15715,"17.5":0.00238},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0019,"5.0-5.1":0.0019,"6.0-6.1":0.00474,"7.0-7.1":0.00758,"8.1-8.4":0.0019,"9.0-9.2":0.00474,"9.3":0.0237,"10.0-10.2":0.00474,"10.3":0.03792,"11.0-11.2":0.03223,"11.3-11.4":0.00948,"12.0-12.1":0.00664,"12.2-12.5":0.15451,"13.0-13.1":0.00284,"13.2":0.03128,"13.3":0.00758,"13.4-13.7":0.02939,"14.0-14.4":0.05782,"14.5-14.8":0.08816,"15.0-15.1":0.04076,"15.2-15.3":0.04645,"15.4":0.05308,"15.5":0.0673,"15.6-15.8":0.58772,"16.0":0.13745,"16.1":0.28627,"16.2":0.13745,"16.3":0.24267,"16.4":0.05024,"16.5":0.10522,"16.6-16.7":0.83133,"17.0":0.09953,"17.1":0.1839,"17.2":0.24457,"17.3":1.784,"17.4":4.0268,"17.5":0.03697},P:{"4":0.0422,"20":0.01055,"21":0.01055,"22":0.01055,"23":0.05275,"24":0.46423,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.03165,"17.0":0.0211,"19.0":0.01055},I:{"0":0.05312,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"8":0.00238,"11":0.00952,_:"6 7 9 10 5.5"},K:{"0":0.71628,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.6477},H:{"0":0},L:{"0":65.29427},R:{_:"0"},M:{"0":0.04572}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js index 498bde74b0b582..be3ae0f9db122b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NR.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 3.5 3.6"},D:{"88":0.1732,"91":0.11681,"111":0.05841,"120":0.1732,"122":10.50502,"123":0.87005,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 112 113 114 115 116 117 118 119 121 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.05841,"121":0.29002,"122":5.45593,"123":0.11681,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.5","16.6":0.34842,"17.3":0.29002,"17.4":0.05841},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00042,"5.0-5.1":0.00021,"6.0-6.1":0.00127,"7.0-7.1":0.00148,"8.1-8.4":0.00042,"9.0-9.2":0.00085,"9.3":0.00529,"10.0-10.2":0.00085,"10.3":0.00889,"11.0-11.2":0.00635,"11.3-11.4":0.00212,"12.0-12.1":0.0019,"12.2-12.5":0.03661,"13.0-13.1":0.00063,"13.2":0.00635,"13.3":0.0019,"13.4-13.7":0.0072,"14.0-14.4":0.01376,"14.5-14.8":0.02159,"15.0-15.1":0.00931,"15.2-15.3":0.011,"15.4":0.01291,"15.5":0.01651,"15.6-15.8":0.13819,"16.0":0.03365,"16.1":0.06963,"16.2":0.03365,"16.3":0.05989,"16.4":0.0127,"16.5":0.02688,"16.6-16.7":0.20359,"17.0":0.02645,"17.1":0.05291,"17.2":0.08529,"17.3":1.04968,"17.4":0.15407,"17.5":0},P:{"23":0.58483,"24":0.41342,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.70277,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.59787},R:{_:"0"},M:{_:"0"},Q:{_:"14.9"},O:{"0":1.06214},H:{"0":0}}; +module.exports={C:{"125":0.34992,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 126 127 128 3.5 3.6"},D:{"110":0.08813,"116":0.61171,"122":0.61171,"123":2.79158,"124":2.96784,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 111 112 113 114 115 117 118 119 120 121 125 126 127"},F:{"109":0.95904,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"122":0.61171,"123":8.11555,"124":1.92067,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{"14":3.05338,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.3 17.5","17.2":0.26179,"17.4":0.08813},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00153,"5.0-5.1":0.00153,"6.0-6.1":0.00381,"7.0-7.1":0.0061,"8.1-8.4":0.00153,"9.0-9.2":0.00381,"9.3":0.01907,"10.0-10.2":0.00381,"10.3":0.03052,"11.0-11.2":0.02594,"11.3-11.4":0.00763,"12.0-12.1":0.00534,"12.2-12.5":0.12436,"13.0-13.1":0.00229,"13.2":0.02518,"13.3":0.0061,"13.4-13.7":0.02365,"14.0-14.4":0.04654,"14.5-14.8":0.07095,"15.0-15.1":0.03281,"15.2-15.3":0.03738,"15.4":0.04272,"15.5":0.05417,"15.6-15.8":0.47301,"16.0":0.11062,"16.1":0.2304,"16.2":0.11062,"16.3":0.19531,"16.4":0.04043,"16.5":0.08468,"16.6-16.7":0.66908,"17.0":0.08011,"17.1":0.14801,"17.2":0.19683,"17.3":1.43582,"17.4":3.24089,"17.5":0.02975},P:{"21":0.17209,"23":0.34418,"24":0.60737,_:"4 20 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.09111},I:{"0":0.16966,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00043},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.34813,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":6.15522},H:{"0":0},L:{"0":61.86599},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js index 24923b1f38443b..7939f73364db83 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NU.js @@ -1 +1 @@ -module.exports={C:{"123":0.15423,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 124 125 126 127 3.5 3.6"},D:{"122":0.70432,"123":0.07712,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.4 15.5 16.4 17.5","15.1":0.07712,"15.2-15.3":0.07712,"15.6":0.3136,"16.0":3.04861,"16.1":1.01792,"16.2":0.46783,"16.3":0.54495,"16.5":0.23649,"16.6":13.36146,"17.0":0.3136,"17.1":6.7964,"17.2":5.39291,"17.3":13.98352,"17.4":3.04861},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00956,"5.0-5.1":0.00478,"6.0-6.1":0.02868,"7.0-7.1":0.03346,"8.1-8.4":0.00956,"9.0-9.2":0.01912,"9.3":0.11951,"10.0-10.2":0.01912,"10.3":0.20077,"11.0-11.2":0.14341,"11.3-11.4":0.0478,"12.0-12.1":0.04302,"12.2-12.5":0.82699,"13.0-13.1":0.01434,"13.2":0.14341,"13.3":0.04302,"13.4-13.7":0.16253,"14.0-14.4":0.31072,"14.5-14.8":0.48759,"15.0-15.1":0.21033,"15.2-15.3":0.24858,"15.4":0.2916,"15.5":0.37286,"15.6-15.8":3.12153,"16.0":0.76007,"16.1":1.57272,"16.2":0.76007,"16.3":1.35282,"16.4":0.28682,"16.5":0.6071,"16.6-16.7":4.59864,"17.0":0.59754,"17.1":1.19507,"17.2":1.92646,"17.3":23.71027,"17.4":3.48006,"17.5":0},P:{_:"4 20 21 22 23 24 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":0.71928},R:{_:"0"},M:{_:"0"},Q:{_:"14.9"},O:{"0":0.07776},H:{"0":0}}; +module.exports={C:{"125":0.93546,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 126 127 128 3.5 3.6"},D:{"123":0.25471,"124":5.77949,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 125 126 127"},F:{"109":4.16327,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"124":1.27353,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.2-15.3 15.4 17.0","15.1":0.25471,"15.5":0.17135,"15.6":0.08336,"16.0":1.52823,"16.1":2.7184,"16.2":0.17135,"16.3":1.36151,"16.4":0.08336,"16.5":0.08336,"16.6":5.6915,"17.1":2.80639,"17.2":1.61622,"17.3":3.73722,"17.4":12.74451,"17.5":0.59277},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.01051,"5.0-5.1":0.01051,"6.0-6.1":0.02627,"7.0-7.1":0.04203,"8.1-8.4":0.01051,"9.0-9.2":0.02627,"9.3":0.13134,"10.0-10.2":0.02627,"10.3":0.21014,"11.0-11.2":0.17862,"11.3-11.4":0.05254,"12.0-12.1":0.03677,"12.2-12.5":0.85633,"13.0-13.1":0.01576,"13.2":0.17337,"13.3":0.04203,"13.4-13.7":0.16286,"14.0-14.4":0.32047,"14.5-14.8":0.48858,"15.0-15.1":0.2259,"15.2-15.3":0.25742,"15.4":0.2942,"15.5":0.373,"15.6-15.8":3.25721,"16.0":0.76177,"16.1":1.58658,"16.2":0.76177,"16.3":1.34491,"16.4":0.27844,"16.5":0.58315,"16.6-16.7":4.60738,"17.0":0.55162,"17.1":1.01919,"17.2":1.35542,"17.3":9.88721,"17.4":22.31715,"17.5":0.20489},P:{"24":0.09127,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":1.06843},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js index 0469140c72004b..bb68c273efb976 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/NZ.js @@ -1 +1 @@ -module.exports={C:{"34":0.005,"37":0.00999,"44":0.005,"48":0.005,"52":0.02498,"54":0.005,"59":0.02998,"71":0.005,"78":0.05995,"88":0.005,"89":0.00999,"102":0.005,"108":0.005,"109":0.005,"113":0.00999,"114":0.00999,"115":0.27478,"116":0.005,"117":0.005,"118":0.005,"119":0.005,"120":0.01499,"121":0.01499,"122":0.04996,"123":1.54876,"124":0.59952,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 110 111 112 125 126 127 3.5 3.6"},D:{"26":0.005,"34":0.01998,"38":0.10492,"48":0.005,"49":0.01499,"52":0.01499,"53":0.00999,"59":0.01499,"61":0.00999,"65":0.00999,"66":0.15987,"67":0.005,"69":0.005,"70":0.005,"73":0.005,"74":0.005,"75":0.005,"76":0.005,"77":0.005,"78":0.005,"79":0.07494,"80":0.005,"81":0.005,"83":0.00999,"84":0.005,"85":0.005,"86":0.00999,"87":0.05995,"88":0.01499,"89":0.005,"90":0.08993,"91":0.005,"92":0.005,"93":0.04996,"94":0.02498,"95":0.005,"96":0.00999,"97":0.00999,"98":0.01499,"99":0.02498,"100":0.005,"101":0.005,"102":0.01998,"103":0.22482,"104":0.01499,"105":0.005,"106":0.02998,"107":0.02998,"108":0.04496,"109":0.77938,"110":0.01998,"111":0.03497,"112":0.04496,"113":0.16986,"114":0.16986,"115":0.01499,"116":0.28977,"117":0.05995,"118":0.06994,"119":0.27478,"120":0.53457,"121":2.73781,"122":18.46522,"123":4.92606,"124":0.01998,"125":0.005,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 50 51 54 55 56 57 58 60 62 63 64 68 71 72 126"},F:{"45":0.00999,"46":0.01998,"81":0.005,"89":0.005,"91":0.005,"93":0.005,"95":0.01998,"105":0.005,"106":0.02998,"107":0.81934,"108":0.08993,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 90 92 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01499,"18":0.005,"92":0.005,"103":0.005,"105":0.00999,"106":0.005,"108":0.005,"109":0.03497,"110":0.005,"111":0.005,"112":0.005,"113":0.01499,"114":0.00999,"115":0.005,"116":0.005,"117":0.005,"118":0.005,"119":0.01499,"120":0.06495,"121":0.25979,"122":6.18505,"123":0.42466,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 104 107"},E:{"13":0.04496,"14":0.09492,"15":0.01998,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.02998,"12.1":0.02498,"13.1":0.17986,"14.1":0.2548,"15.1":0.03497,"15.2-15.3":0.03997,"15.4":0.04496,"15.5":0.10991,"15.6":0.70943,"16.0":0.07494,"16.1":0.1199,"16.2":0.2448,"16.3":0.2498,"16.4":0.07494,"16.5":0.15987,"16.6":0.94924,"17.0":0.07494,"17.1":0.2548,"17.2":0.6245,"17.3":2.7428,"17.4":0.47462},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00306,"5.0-5.1":0.00153,"6.0-6.1":0.00919,"7.0-7.1":0.01072,"8.1-8.4":0.00306,"9.0-9.2":0.00612,"9.3":0.03828,"10.0-10.2":0.00612,"10.3":0.06431,"11.0-11.2":0.04594,"11.3-11.4":0.01531,"12.0-12.1":0.01378,"12.2-12.5":0.2649,"13.0-13.1":0.00459,"13.2":0.04594,"13.3":0.01378,"13.4-13.7":0.05206,"14.0-14.4":0.09953,"14.5-14.8":0.15618,"15.0-15.1":0.06737,"15.2-15.3":0.07962,"15.4":0.0934,"15.5":0.11944,"15.6-15.8":0.99989,"16.0":0.24346,"16.1":0.50377,"16.2":0.24346,"16.3":0.43334,"16.4":0.09187,"16.5":0.19447,"16.6-16.7":1.47304,"17.0":0.1914,"17.1":0.38281,"17.2":0.61708,"17.3":7.59487,"17.4":1.11473,"17.5":0},P:{"4":0.21542,"20":0.01077,"21":0.06463,"22":0.06463,"23":1.16327,"24":1.35715,"5.0-5.4":0.03231,"6.2-6.4":0.03231,"7.2-7.4":0.01077,_:"8.2 9.2 10.1 11.1-11.2 12.0 18.0","13.0":0.01077,"14.0":0.01077,"15.0":0.01077,"16.0":0.02154,"17.0":0.01077,"19.0":0.02154},I:{"0":0.0299,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":0.17014,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01388,"11":0.23592,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":31.65872},R:{_:"0"},M:{"0":0.43034},Q:{"14.9":0.005},O:{"0":0.06505},H:{"0":0}}; +module.exports={C:{"34":0.00485,"37":0.00485,"48":0.00485,"52":0.03396,"54":0.00485,"59":0.03396,"78":0.05337,"88":0.00485,"108":0.00485,"112":0.00485,"113":0.0097,"114":0.00485,"115":0.26201,"116":0.00485,"117":0.00485,"118":0.00485,"119":0.00485,"120":0.00485,"121":0.00485,"122":0.00485,"123":0.05822,"124":1.5866,"125":0.70354,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 44 45 46 47 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 126 127 128 3.5 3.6"},D:{"34":0.0097,"38":0.1116,"49":0.05822,"52":0.0097,"53":0.00485,"59":0.01456,"61":0.0097,"63":0.00485,"65":0.00485,"66":0.16497,"67":0.00485,"68":0.00485,"69":0.00485,"70":0.00485,"73":0.00485,"74":0.00485,"75":0.00485,"76":0.00485,"77":0.00485,"78":0.00485,"79":0.07763,"80":0.00485,"83":0.01941,"84":0.00485,"86":0.0097,"87":0.04852,"88":0.01456,"89":0.01456,"90":0.08248,"91":0.00485,"92":0.0097,"93":0.04367,"94":0.02911,"95":0.00485,"96":0.00485,"97":0.00485,"98":0.01456,"99":0.0097,"100":0.00485,"101":0.00485,"102":0.02426,"103":0.18923,"104":0.01456,"105":0.0097,"106":0.01456,"107":0.01941,"108":0.02426,"109":0.73265,"110":0.01941,"111":0.01941,"112":0.01941,"113":0.20378,"114":0.20864,"115":0.01456,"116":0.28142,"117":0.03396,"118":0.05822,"119":0.17952,"120":0.25716,"121":0.44153,"122":2.11062,"123":16.92863,"124":6.36582,"125":0.03882,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 54 55 56 57 58 60 62 64 71 72 81 85 126 127"},F:{"42":0.00485,"45":0.00485,"46":0.0097,"82":0.00485,"91":0.00485,"95":0.02911,"105":0.00485,"106":0.00485,"107":0.70354,"108":0.19893,"109":0.08734,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01456,"18":0.00485,"91":0.00485,"92":0.00485,"103":0.00485,"105":0.01456,"107":0.00485,"109":0.03882,"111":0.00485,"113":0.01456,"114":0.00485,"115":0.00485,"116":0.00485,"117":0.00485,"118":0.00485,"119":0.01456,"120":0.04852,"121":0.03882,"122":0.36875,"123":4.4784,"124":1.92139,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 100 101 102 104 106 108 110 112"},E:{"9":0.00485,"12":0.00485,"13":0.03882,"14":0.08734,"15":0.01941,_:"0 4 5 6 7 8 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.03396,"12.1":0.01456,"13.1":0.17952,"14.1":0.22804,"15.1":0.02911,"15.2-15.3":0.03396,"15.4":0.03882,"15.5":0.10189,"15.6":0.66958,"16.0":0.05822,"16.1":0.12615,"16.2":0.13586,"16.3":0.2523,"16.4":0.05822,"16.5":0.13586,"16.6":0.87336,"17.0":0.05822,"17.1":0.18438,"17.2":0.27656,"17.3":1.01892,"17.4":2.68801,"17.5":0.0097},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00306,"5.0-5.1":0.00306,"6.0-6.1":0.00764,"7.0-7.1":0.01223,"8.1-8.4":0.00306,"9.0-9.2":0.00764,"9.3":0.03822,"10.0-10.2":0.00764,"10.3":0.06116,"11.0-11.2":0.05198,"11.3-11.4":0.01529,"12.0-12.1":0.0107,"12.2-12.5":0.24922,"13.0-13.1":0.00459,"13.2":0.05046,"13.3":0.01223,"13.4-13.7":0.0474,"14.0-14.4":0.09327,"14.5-14.8":0.14219,"15.0-15.1":0.06575,"15.2-15.3":0.07492,"15.4":0.08562,"15.5":0.10856,"15.6-15.8":0.94795,"16.0":0.2217,"16.1":0.46174,"16.2":0.2217,"16.3":0.39141,"16.4":0.08103,"16.5":0.16971,"16.6-16.7":1.34089,"17.0":0.16054,"17.1":0.29662,"17.2":0.39447,"17.3":2.8775,"17.4":6.49501,"17.5":0.05963},P:{"4":0.18319,"20":0.01078,"21":0.06465,"22":0.05388,"23":0.14008,"24":2.20903,"5.0-5.4":0.03233,"6.2-6.4":0.02155,"7.2-7.4":0.01078,"8.2":0.01078,_:"9.2 10.1 12.0 15.0 18.0","11.1-11.2":0.02155,"13.0":0.01078,"14.0":0.01078,"16.0":0.02155,"17.0":0.01078,"19.0":0.02155},I:{"0":0.03589,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.02232,"11":0.20087,_:"6 7 9 10 5.5"},K:{"0":0.16474,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0103},O:{"0":0.05663},H:{"0":0},L:{"0":32.74369},R:{_:"0"},M:{"0":0.43758}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js index c33429993be362..fbbeb7138800f8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/OM.js @@ -1 +1 @@ -module.exports={C:{"34":0.00566,"66":0.00283,"68":0.00566,"105":0.00283,"106":0.01132,"108":0.00283,"113":0.00283,"115":0.09619,"118":0.00283,"120":0.00283,"121":0.00283,"122":0.00849,"123":0.2829,"124":0.215,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 107 109 110 111 112 114 116 117 119 125 126 127 3.5 3.6"},D:{"11":0.00849,"26":0.00283,"38":0.01132,"49":0.00566,"56":0.00283,"58":0.13296,"64":0.00283,"65":0.00849,"66":0.01132,"68":0.00566,"69":0.01415,"70":0.00283,"72":0.01132,"73":0.00566,"74":0.00283,"75":0.00283,"76":0.00566,"77":0.00283,"78":0.00566,"79":0.05658,"81":0.00566,"83":0.02546,"84":0.00283,"85":0.00566,"86":0.01415,"87":0.02546,"88":0.01132,"89":0.00566,"90":0.00849,"91":0.00849,"92":0.00283,"93":0.04809,"94":0.00283,"95":0.02546,"96":0.00566,"97":0.00283,"98":0.0198,"99":0.05092,"100":0.00566,"101":0.01415,"102":0.01132,"103":0.28007,"104":0.00566,"105":0.01415,"106":0.01132,"107":0.02263,"108":0.05941,"109":1.49937,"110":0.02829,"111":0.01697,"112":0.02546,"113":0.01132,"114":0.0198,"115":0.01132,"116":0.05658,"117":0.01697,"118":0.01697,"119":0.07921,"120":0.20086,"121":0.79495,"122":12.82952,"123":3.72296,"124":0.01415,"125":0.00283,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 63 67 71 80 126"},F:{"28":0.00283,"36":0.00283,"46":0.00283,"95":0.00849,"106":0.00283,"107":0.3904,"108":0.09619,"109":0.00283,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00283,"18":0.00849,"84":0.00283,"92":0.01132,"94":0.00283,"101":0.00566,"106":0.00283,"107":0.00283,"108":0.00849,"109":0.05941,"110":0.00849,"111":0.00849,"112":0.00566,"114":0.00566,"115":0.00283,"116":0.00566,"117":0.00566,"118":0.00849,"119":0.01415,"120":0.03395,"121":0.09053,"122":2.21511,"123":0.18106,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 89 90 91 93 95 96 97 98 99 100 102 103 104 105 113"},E:{"13":0.00283,"14":0.0198,"15":0.00283,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00566,"13.1":0.0198,"14.1":0.03395,"15.1":0.00566,"15.2-15.3":0.00283,"15.4":0.03395,"15.5":0.02546,"15.6":0.12448,"16.0":0.00566,"16.1":0.02829,"16.2":0.02829,"16.3":0.05658,"16.4":0.03112,"16.5":0.02546,"16.6":0.13579,"17.0":0.02829,"17.1":0.03961,"17.2":0.07638,"17.3":0.43001,"17.4":0.07921},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00362,"5.0-5.1":0.00181,"6.0-6.1":0.01086,"7.0-7.1":0.01266,"8.1-8.4":0.00362,"9.0-9.2":0.00724,"9.3":0.04523,"10.0-10.2":0.00724,"10.3":0.07599,"11.0-11.2":0.05428,"11.3-11.4":0.01809,"12.0-12.1":0.01628,"12.2-12.5":0.313,"13.0-13.1":0.00543,"13.2":0.05428,"13.3":0.01628,"13.4-13.7":0.06151,"14.0-14.4":0.1176,"14.5-14.8":0.18454,"15.0-15.1":0.07961,"15.2-15.3":0.09408,"15.4":0.11036,"15.5":0.14112,"15.6-15.8":1.18144,"16.0":0.28767,"16.1":0.59524,"16.2":0.28767,"16.3":0.51202,"16.4":0.10855,"16.5":0.22977,"16.6-16.7":1.74049,"17.0":0.22616,"17.1":0.45231,"17.2":0.72913,"17.3":8.97385,"17.4":1.31713,"17.5":0},P:{"4":0.09334,"20":0.03111,"21":0.10371,"22":0.11408,"23":1.76312,"24":1.05787,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01037,"7.2-7.4":0.13483,"9.2":0.01037,"11.1-11.2":0.05186,"12.0":0.01037,"13.0":0.04149,"14.0":0.02074,"15.0":0.1452,"16.0":0.04149,"17.0":0.05186,"18.0":0.02074,"19.0":0.05186},I:{"0":0.09284,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.42309,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02263,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00717,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.84654},R:{_:"0"},M:{"0":0.09322},Q:{_:"14.9"},O:{"0":0.83901},H:{"0":0}}; +module.exports={C:{"34":0.0072,"66":0.0048,"88":0.0048,"103":0.0024,"105":0.0024,"106":0.0024,"107":0.0024,"109":0.0024,"115":0.0624,"117":0.0072,"118":0.0024,"123":0.0048,"124":0.216,"125":0.1416,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 108 110 111 112 113 114 116 119 120 121 122 126 127 128 3.5 3.6"},D:{"11":0.012,"34":0.0024,"38":0.0072,"40":0.0024,"49":0.0048,"50":0.0024,"56":0.0024,"58":0.1248,"59":0.0024,"64":0.0048,"65":0.0048,"66":0.0048,"68":0.0072,"69":0.0072,"72":0.012,"73":0.0144,"74":0.0024,"75":0.0048,"76":0.0048,"78":0.0048,"79":0.0672,"80":0.0024,"81":0.0072,"83":0.0288,"84":0.0024,"85":0.0072,"86":0.0096,"87":0.036,"88":0.0144,"89":0.0048,"90":0.0096,"91":0.0072,"92":0.0024,"93":0.0288,"94":0.0048,"95":0.0216,"96":0.0096,"97":0.0048,"98":0.0288,"99":0.0576,"100":0.0024,"101":0.012,"102":0.0096,"103":0.228,"104":0.0024,"105":0.0096,"106":0.0072,"107":0.0168,"108":0.0336,"109":1.32,"110":0.024,"111":0.024,"112":0.0216,"113":0.0048,"114":0.0144,"115":0.0144,"116":0.0408,"117":0.012,"118":0.0192,"119":0.0624,"120":0.0768,"121":0.096,"122":0.4128,"123":9.156,"124":5.0448,"125":0.048,"126":0.0024,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 41 42 43 44 45 46 47 48 51 52 53 54 55 57 60 61 62 63 67 70 71 77 127"},F:{"28":0.0048,"46":0.0072,"93":0.0024,"95":0.0072,"106":0.0024,"107":0.168,"108":0.1368,"109":0.0432,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.012,"92":0.0072,"94":0.0024,"99":0.0024,"104":0.0024,"107":0.0024,"109":0.0456,"110":0.0048,"111":0.0048,"112":0.0024,"114":0.0096,"115":0.0024,"116":0.0024,"117":0.0048,"118":0.0048,"119":0.0096,"120":0.0144,"121":0.0192,"122":0.1128,"123":1.2456,"124":0.8376,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96 97 98 100 101 102 103 105 106 108 113"},E:{"13":0.0024,"14":0.0096,"15":0.0024,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.0264,"14.1":0.0408,"15.1":0.0024,"15.2-15.3":0.0048,"15.4":0.036,"15.5":0.0168,"15.6":0.1008,"16.0":0.012,"16.1":0.0336,"16.2":0.0192,"16.3":0.0384,"16.4":0.0168,"16.5":0.024,"16.6":0.1368,"17.0":0.0168,"17.1":0.0336,"17.2":0.0624,"17.3":0.1488,"17.4":0.36,"17.5":0.0048},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00388,"5.0-5.1":0.00388,"6.0-6.1":0.0097,"7.0-7.1":0.01552,"8.1-8.4":0.00388,"9.0-9.2":0.0097,"9.3":0.04849,"10.0-10.2":0.0097,"10.3":0.07758,"11.0-11.2":0.06594,"11.3-11.4":0.0194,"12.0-12.1":0.01358,"12.2-12.5":0.31614,"13.0-13.1":0.00582,"13.2":0.064,"13.3":0.01552,"13.4-13.7":0.06013,"14.0-14.4":0.11831,"14.5-14.8":0.18038,"15.0-15.1":0.0834,"15.2-15.3":0.09504,"15.4":0.10861,"15.5":0.13771,"15.6-15.8":1.2025,"16.0":0.28123,"16.1":0.58574,"16.2":0.28123,"16.3":0.49652,"16.4":0.10279,"16.5":0.21529,"16.6-16.7":1.70096,"17.0":0.20365,"17.1":0.37627,"17.2":0.5004,"17.3":3.65018,"17.4":8.23908,"17.5":0.07564},P:{"4":0.09342,"20":0.03114,"21":0.13494,"22":0.1038,"23":0.30102,"24":2.82337,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.1557,"9.2":0.01038,"11.1-11.2":0.0519,"13.0":0.0519,"14.0":0.02076,"15.0":0.1557,"16.0":0.0519,"17.0":0.07266,"18.0":0.02076,"19.0":0.0519},I:{"0":0.13624,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00034},A:{"11":0.0192,_:"6 7 8 9 10 5.5"},K:{"0":0.6536,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.8664},H:{"0":0},L:{"0":52.4144},R:{_:"0"},M:{"0":0.0912}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js index ca65864487d9a1..c2b7706c2c9f6e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PA.js @@ -1 +1 @@ -module.exports={C:{"4":0.05031,"78":0.00335,"108":0.01342,"110":0.00335,"113":0.00335,"115":0.08385,"117":0.00671,"118":0.00335,"119":0.00335,"120":0.02683,"121":0.00671,"122":0.01677,"123":0.72782,"124":0.29851,"125":0.00335,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 111 112 114 116 126 127 3.5","3.6":0.00335},D:{"11":0.00335,"34":0.01342,"36":0.00671,"38":0.00335,"43":0.00335,"44":0.00335,"45":0.00335,"46":0.00335,"47":0.00671,"49":0.00671,"51":0.00335,"56":0.00335,"65":0.00335,"67":0.00335,"69":0.00335,"70":0.00335,"73":0.01006,"74":0.00671,"75":0.00671,"76":0.00335,"77":0.00335,"78":0.00671,"79":0.06037,"80":0.00335,"81":0.00671,"83":0.02683,"84":0.00335,"85":0.00335,"86":0.00671,"87":0.06708,"88":0.01677,"89":0.02348,"90":0.00335,"91":0.02348,"93":0.02012,"94":0.00671,"96":0.00335,"97":0.00335,"98":0.00335,"99":0.02012,"100":0.00335,"101":0.00335,"102":0.00335,"103":0.0872,"104":0.01006,"105":0.01342,"106":0.01006,"107":0.0436,"108":0.04025,"109":0.62384,"110":0.02348,"111":0.01677,"112":0.02348,"113":0.00671,"114":0.03354,"115":0.01342,"116":0.17441,"117":0.0805,"118":0.05366,"119":0.07714,"120":0.22807,"121":1.37179,"122":15.18356,"123":3.1058,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 41 42 48 50 52 53 54 55 57 58 59 60 61 62 63 64 66 68 71 72 92 95 124 125 126"},F:{"28":0.00671,"95":0.02012,"103":0.02012,"104":0.00335,"105":0.00671,"106":0.01677,"107":1.61998,"108":0.11068,"109":0.00335,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00335,"17":0.00335,"18":0.00671,"84":0.00335,"92":0.01006,"108":0.00671,"109":0.02683,"110":0.00335,"111":0.01342,"112":0.00335,"113":0.00335,"114":0.00335,"115":0.00335,"116":0.00335,"117":0.00671,"118":0.00335,"119":0.01006,"120":0.06037,"121":0.14422,"122":3.33388,"123":0.24484,_:"12 13 14 15 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107"},E:{"9":0.00671,"12":0.01006,"14":0.01006,"15":0.00335,_:"0 4 5 6 7 8 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00335,"12.1":0.00671,"13.1":0.02683,"14.1":0.25826,"15.1":0.00671,"15.2-15.3":0.00335,"15.4":0.01006,"15.5":0.02012,"15.6":0.13081,"16.0":0.00671,"16.1":0.0436,"16.2":0.03689,"16.3":0.05366,"16.4":0.06373,"16.5":0.05366,"16.6":0.19789,"17.0":0.03019,"17.1":0.11404,"17.2":0.20459,"17.3":0.57353,"17.4":0.22472},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00333,"5.0-5.1":0.00166,"6.0-6.1":0.00998,"7.0-7.1":0.01164,"8.1-8.4":0.00333,"9.0-9.2":0.00665,"9.3":0.04157,"10.0-10.2":0.00665,"10.3":0.06984,"11.0-11.2":0.04988,"11.3-11.4":0.01663,"12.0-12.1":0.01497,"12.2-12.5":0.28767,"13.0-13.1":0.00499,"13.2":0.04988,"13.3":0.01497,"13.4-13.7":0.05654,"14.0-14.4":0.10808,"14.5-14.8":0.16961,"15.0-15.1":0.07316,"15.2-15.3":0.08647,"15.4":0.10143,"15.5":0.1297,"15.6-15.8":1.08583,"16.0":0.26439,"16.1":0.54707,"16.2":0.26439,"16.3":0.47058,"16.4":0.09977,"16.5":0.21118,"16.6-16.7":1.59964,"17.0":0.20785,"17.1":0.41571,"17.2":0.67012,"17.3":8.24763,"17.4":1.21054,"17.5":0},P:{"4":0.0831,"20":0.05194,"21":0.13503,"22":0.2389,"23":1.98392,"24":1.82812,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 13.0 15.0","7.2-7.4":0.2389,"9.2":0.05194,"11.1-11.2":0.0831,"14.0":0.01039,"16.0":0.02077,"17.0":0.02077,"18.0":0.01039,"19.0":0.05194},I:{"0":0.05957,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00014},K:{"0":0.23261,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00373,"8":0.02609,"9":0.00373,"10":0.00373,"11":0.02609,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":46.48612},R:{_:"0"},M:{"0":0.28578},Q:{"14.9":0.00665},O:{"0":0.04652},H:{"0":0}}; +module.exports={C:{"4":0.01218,"40":0.00406,"78":0.00406,"85":0.00406,"88":0.00406,"97":0.01624,"103":0.00406,"104":0.00406,"108":0.00406,"113":0.00406,"115":0.10959,"118":0.00406,"119":0.00406,"120":0.04059,"121":0.00406,"122":0.00406,"123":0.04871,"124":0.85239,"125":0.37749,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 89 90 91 92 93 94 95 96 98 99 100 101 102 105 106 107 109 110 111 112 114 116 117 126 127 128 3.5","3.6":0.00406},D:{"11":0.00406,"34":0.01218,"36":0.00812,"38":0.00406,"39":0.00406,"40":0.00406,"41":0.00406,"42":0.00406,"43":0.00406,"44":0.00406,"45":0.00406,"46":0.00406,"47":0.00406,"49":0.00406,"51":0.00812,"56":0.00406,"62":0.00406,"64":0.00812,"69":0.00406,"70":0.00406,"73":0.00812,"74":0.00406,"75":0.00406,"76":0.00406,"78":0.00812,"79":0.08118,"80":0.00406,"81":0.00812,"83":0.05683,"85":0.00406,"86":0.00812,"87":0.10553,"88":0.02841,"89":0.03653,"91":0.04059,"92":0.00406,"93":0.02435,"94":0.0203,"95":0.00406,"96":0.00406,"97":0.00812,"98":0.00812,"99":0.01218,"100":0.00406,"101":0.00406,"102":0.00406,"103":0.0893,"104":0.01218,"105":0.02435,"106":0.01624,"107":0.03247,"108":0.01218,"109":0.94169,"110":0.05683,"111":0.01624,"112":0.03247,"113":0.01218,"114":0.02435,"115":0.02841,"116":0.25572,"117":0.06494,"118":0.02841,"119":0.09336,"120":0.12989,"121":0.18266,"122":3.38927,"123":14.47845,"124":5.88555,"125":0.01218,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 48 50 52 53 54 55 57 58 59 60 61 63 65 66 67 68 71 72 77 84 90 126 127"},F:{"28":0.00406,"90":0.00406,"95":0.03653,"103":0.01624,"105":0.00406,"106":0.00406,"107":1.91991,"108":0.45867,"109":0.12583,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 100 101 102 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00406,"16":0.00406,"17":0.00406,"18":0.00406,"92":0.01218,"100":0.00406,"109":0.02435,"112":0.00406,"113":0.00406,"114":0.00406,"115":0.00812,"116":0.00406,"117":0.00812,"118":0.01218,"119":0.01624,"120":0.03653,"121":0.03247,"122":0.23136,"123":3.14167,"124":1.59519,_:"12 13 14 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111"},E:{"9":0.01218,"12":0.02435,"13":0.00406,"14":0.01218,_:"0 4 5 6 7 8 10 11 15 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00406,"11.1":0.00406,"12.1":0.00406,"13.1":0.04465,"14.1":0.15018,"15.1":0.00406,"15.2-15.3":0.01218,"15.4":0.01218,"15.5":0.01624,"15.6":0.36937,"16.0":0.00812,"16.1":0.04871,"16.2":0.02435,"16.3":0.069,"16.4":0.10148,"16.5":0.02435,"16.6":0.27195,"17.0":0.03653,"17.1":0.06494,"17.2":0.10959,"17.3":0.20295,"17.4":0.77121,"17.5":0.00812},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00195,"5.0-5.1":0.00195,"6.0-6.1":0.00486,"7.0-7.1":0.00778,"8.1-8.4":0.00195,"9.0-9.2":0.00486,"9.3":0.02431,"10.0-10.2":0.00486,"10.3":0.0389,"11.0-11.2":0.03307,"11.3-11.4":0.00973,"12.0-12.1":0.00681,"12.2-12.5":0.15852,"13.0-13.1":0.00292,"13.2":0.03209,"13.3":0.00778,"13.4-13.7":0.03015,"14.0-14.4":0.05933,"14.5-14.8":0.09045,"15.0-15.1":0.04182,"15.2-15.3":0.04765,"15.4":0.05446,"15.5":0.06905,"15.6-15.8":0.60298,"16.0":0.14102,"16.1":0.29371,"16.2":0.14102,"16.3":0.24897,"16.4":0.05154,"16.5":0.10795,"16.6-16.7":0.85292,"17.0":0.10212,"17.1":0.18867,"17.2":0.25092,"17.3":1.83032,"17.4":4.13136,"17.5":0.03793},P:{"4":0.14577,"20":0.05206,"21":0.12494,"22":0.24989,"23":0.32277,"24":2.50931,_:"5.0-5.4 8.2 10.1 12.0 13.0 14.0 15.0","6.2-6.4":0.02082,"7.2-7.4":0.16659,"9.2":0.01041,"11.1-11.2":0.07288,"16.0":0.02082,"17.0":0.03124,"18.0":0.02082,"19.0":0.02082},I:{"0":0.08283,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"7":0.00446,"8":0.03572,"9":0.00893,"10":0.00893,"11":0.02679,_:"6 5.5"},K:{"0":0.27923,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00594},O:{"0":0.04753},H:{"0":0},L:{"0":46.40984},R:{_:"0"},M:{"0":0.38022}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js index ffe87fdcd48e1e..fbff4828d89800 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PE.js @@ -1 +1 @@ -module.exports={C:{"4":0.0051,"45":0.0102,"52":0.0051,"68":0.0051,"88":0.0153,"106":0.0051,"112":0.0051,"115":0.1173,"120":0.0051,"121":0.0051,"122":0.0153,"123":0.5508,"124":0.2601,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 113 114 116 117 118 119 125 126 127 3.5 3.6"},D:{"26":0.0051,"34":0.0051,"38":0.051,"39":0.0051,"47":0.0102,"49":0.0153,"53":0.0051,"56":0.0051,"62":0.0051,"63":0.0051,"65":0.0051,"66":0.0051,"68":0.0051,"70":0.0051,"72":0.0051,"73":0.0051,"74":0.0051,"79":0.2856,"80":0.0051,"81":0.0102,"83":0.0051,"84":0.0051,"85":0.0051,"86":0.0102,"87":0.1785,"88":0.0357,"90":0.0051,"91":0.0714,"92":0.0051,"93":0.0153,"94":0.0459,"95":0.0051,"96":0.0306,"97":0.0051,"98":0.0102,"99":0.0153,"100":0.0255,"101":0.0051,"102":0.0051,"103":0.0612,"104":0.0153,"105":0.0357,"106":0.0357,"107":0.0408,"108":0.0357,"109":2.6214,"110":0.0306,"111":0.0459,"112":0.0459,"113":0.0153,"114":0.0408,"115":0.0204,"116":0.1377,"117":0.0714,"118":0.0357,"119":0.1224,"120":0.4029,"121":1.428,"122":26.3976,"123":8.1396,"124":0.0204,"125":0.0051,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 59 60 61 64 67 69 71 75 76 77 78 89 126"},F:{"28":0.0051,"36":0.0153,"46":0.0051,"95":0.0459,"102":0.0051,"105":0.0051,"106":0.0204,"107":2.8611,"108":0.2601,"109":0.0051,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0051,"18":0.0051,"92":0.0153,"100":0.0051,"108":0.0051,"109":0.0306,"110":0.0051,"111":0.0051,"114":0.0051,"115":0.0051,"116":0.0051,"117":0.0051,"118":0.0051,"119":0.0153,"120":0.0408,"121":0.0969,"122":3.0141,"123":0.2805,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 112 113"},E:{"14":0.0153,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.5","5.1":0.0051,"13.1":0.0102,"14.1":0.0204,"15.1":0.0051,"15.4":0.0153,"15.5":0.0102,"15.6":0.0561,"16.0":0.0051,"16.1":0.0102,"16.2":0.0051,"16.3":0.0153,"16.4":0.0204,"16.5":0.0153,"16.6":0.0663,"17.0":0.0153,"17.1":0.051,"17.2":0.0663,"17.3":0.1428,"17.4":0.0561},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0.00035,"6.0-6.1":0.00212,"7.0-7.1":0.00248,"8.1-8.4":0.00071,"9.0-9.2":0.00141,"9.3":0.00884,"10.0-10.2":0.00141,"10.3":0.01486,"11.0-11.2":0.01061,"11.3-11.4":0.00354,"12.0-12.1":0.00318,"12.2-12.5":0.06119,"13.0-13.1":0.00106,"13.2":0.01061,"13.3":0.00318,"13.4-13.7":0.01203,"14.0-14.4":0.02299,"14.5-14.8":0.03608,"15.0-15.1":0.01556,"15.2-15.3":0.01839,"15.4":0.02158,"15.5":0.02759,"15.6-15.8":0.23097,"16.0":0.05624,"16.1":0.11637,"16.2":0.05624,"16.3":0.1001,"16.4":0.02122,"16.5":0.04492,"16.6-16.7":0.34027,"17.0":0.04421,"17.1":0.08843,"17.2":0.14254,"17.3":1.75439,"17.4":0.2575,"17.5":0},P:{"4":0.29856,"20":0.0103,"21":0.03089,"22":0.06177,"23":0.4118,"24":0.38092,"5.0-5.4":0.02059,"6.2-6.4":0.02059,"7.2-7.4":0.05148,_:"8.2 10.1 12.0 14.0 15.0","9.2":0.03089,"11.1-11.2":0.0103,"13.0":0.02059,"16.0":0.0103,"17.0":0.02059,"18.0":0.0103,"19.0":0.03089},I:{"0":0.04879,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":0.24005,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0051,"11":0.0204,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":44.42886},R:{_:"0"},M:{"0":0.08818},Q:{_:"14.9"},O:{"0":0.0245},H:{"0":0}}; +module.exports={C:{"4":0.02182,"45":0.00546,"52":0.00546,"88":0.03273,"112":0.00546,"115":0.12547,"117":0.00546,"119":0.00546,"120":0.00546,"121":0.01637,"122":0.03273,"123":0.01637,"124":0.55641,"125":0.27821,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 118 126 127 128 3.5 3.6"},D:{"22":0.00546,"34":0.00546,"38":0.03273,"47":0.01091,"49":0.01637,"56":0.00546,"62":0.00546,"65":0.00546,"68":0.00546,"70":0.00546,"73":0.00546,"74":0.00546,"77":0.00546,"79":0.2182,"80":0.00546,"81":0.01091,"83":0.00546,"85":0.00546,"86":0.00546,"87":0.13092,"88":0.02728,"89":0.00546,"90":0.00546,"91":0.02728,"92":0.01091,"93":0.01637,"94":0.03819,"95":0.00546,"96":0.04364,"97":0.01091,"98":0.01091,"99":0.01637,"100":0.01091,"101":0.00546,"102":0.01091,"103":0.06001,"104":0.01637,"105":0.02182,"106":0.02728,"107":0.02728,"108":0.0491,"109":2.55294,"110":0.03273,"111":0.03273,"112":0.0491,"113":0.01637,"114":0.03273,"115":0.01637,"116":0.11456,"117":0.03819,"118":0.04364,"119":0.08728,"120":0.22911,"121":0.31094,"122":1.12373,"123":26.80042,"124":11.83735,"125":0.0491,"126":0.00546,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 58 59 60 61 63 64 66 67 69 71 72 75 76 78 84 127"},F:{"36":0.00546,"95":0.04364,"105":0.00546,"107":2.36202,"108":0.54005,"109":0.24002,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00546,"92":0.01637,"100":0.00546,"109":0.02728,"110":0.00546,"113":0.00546,"114":0.00546,"115":0.00546,"116":0.01091,"117":0.00546,"118":0.00546,"119":0.01637,"120":0.02182,"121":0.02728,"122":0.13092,"123":2.28019,"124":1.13464,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112"},E:{"14":0.01637,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.2-15.3 17.5","13.1":0.00546,"14.1":0.02182,"15.1":0.00546,"15.4":0.02182,"15.5":0.00546,"15.6":0.0491,"16.0":0.00546,"16.1":0.01637,"16.2":0.00546,"16.3":0.02182,"16.4":0.01637,"16.5":0.01091,"16.6":0.06546,"17.0":0.01091,"17.1":0.03819,"17.2":0.03819,"17.3":0.07637,"17.4":0.24002},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00069,"5.0-5.1":0.00069,"6.0-6.1":0.00173,"7.0-7.1":0.00277,"8.1-8.4":0.00069,"9.0-9.2":0.00173,"9.3":0.00865,"10.0-10.2":0.00173,"10.3":0.01383,"11.0-11.2":0.01176,"11.3-11.4":0.00346,"12.0-12.1":0.00242,"12.2-12.5":0.05638,"13.0-13.1":0.00104,"13.2":0.01141,"13.3":0.00277,"13.4-13.7":0.01072,"14.0-14.4":0.0211,"14.5-14.8":0.03217,"15.0-15.1":0.01487,"15.2-15.3":0.01695,"15.4":0.01937,"15.5":0.02456,"15.6-15.8":0.21444,"16.0":0.05015,"16.1":0.10445,"16.2":0.05015,"16.3":0.08854,"16.4":0.01833,"16.5":0.03839,"16.6-16.7":0.30333,"17.0":0.03632,"17.1":0.0671,"17.2":0.08924,"17.3":0.65094,"17.4":1.46927,"17.5":0.01349},P:{"4":0.21876,"20":0.01042,"21":0.02083,"22":0.05209,"23":0.09376,"24":0.58337,"5.0-5.4":0.01042,"6.2-6.4":0.01042,"7.2-7.4":0.05209,_:"8.2 9.2 10.1 12.0 14.0 15.0 18.0","11.1-11.2":0.01042,"13.0":0.02083,"16.0":0.01042,"17.0":0.02083,"19.0":0.03125},I:{"0":0.03168,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.00546,"11":0.02182,_:"6 7 9 10 5.5"},K:{"0":0.19544,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02727},H:{"0":0},L:{"0":40.83433},R:{_:"0"},M:{"0":0.09545}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js index 857767220bef2d..5a420c38ae67ad 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PF.js @@ -1 +1 @@ -module.exports={C:{"52":0.00433,"67":0.03466,"68":0.05198,"72":0.02599,"75":0.11696,"78":0.26858,"82":0.013,"83":0.00433,"88":0.00433,"91":0.32923,"92":0.00433,"94":0.00433,"102":0.02166,"104":0.00433,"105":0.00433,"106":0.00433,"108":0.00433,"110":0.00866,"111":0.02166,"112":0.00433,"113":0.02599,"114":0.013,"115":0.72778,"117":0.013,"120":0.013,"121":0.02166,"122":0.07364,"123":2.18766,"124":1.30826,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 79 80 81 84 85 86 87 89 90 93 95 96 97 98 99 100 101 103 107 109 116 118 119 125 126 127 3.5 3.6"},D:{"41":0.00433,"49":0.00866,"57":0.00433,"65":0.00433,"67":0.00866,"70":0.00433,"71":0.02166,"74":0.00433,"76":0.02599,"79":0.13862,"80":0.00866,"81":0.1213,"83":0.00866,"84":0.00433,"85":0.29458,"86":0.00433,"87":0.33356,"89":0.00433,"92":0.02599,"93":0.02599,"94":0.00433,"95":0.18628,"96":0.00866,"98":0.02599,"99":0.00866,"101":0.00433,"102":0.02166,"103":0.05198,"104":0.00433,"105":0.00866,"106":0.03899,"107":0.00433,"108":0.25559,"109":1.15664,"110":0.00433,"111":0.20794,"112":0.00866,"113":0.013,"114":0.013,"115":0.013,"116":0.24259,"117":0.00433,"118":0.02599,"119":0.06931,"120":0.41154,"121":1.07867,"122":10.58308,"123":2.82446,"124":0.00433,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 62 63 64 66 68 69 72 73 75 77 78 88 90 91 97 100 125 126"},F:{"28":0.00866,"65":0.03032,"81":0.00433,"91":0.00433,"94":0.21227,"95":0.00433,"102":0.00433,"105":0.00433,"106":0.00433,"107":0.52417,"108":0.07798,"109":0.00433,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 92 93 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00433,"18":0.03032,"84":0.00433,"86":0.00433,"89":0.00433,"90":0.00866,"92":0.01733,"93":0.00433,"95":0.00433,"96":0.00433,"100":0.00433,"103":0.00866,"105":0.00433,"106":0.02166,"108":0.00433,"109":0.013,"110":0.00433,"112":0.00433,"119":0.00433,"120":0.013,"121":0.1083,"122":4.56593,"123":0.27292,_:"13 14 15 16 17 79 80 81 83 85 87 88 91 94 97 98 99 101 102 104 107 111 113 114 115 116 117 118"},E:{"13":0.00866,"14":0.07364,"15":0.00433,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00433,"12.1":0.013,"13.1":0.05198,"14.1":0.13429,"15.1":0.03466,"15.2-15.3":0.05632,"15.4":0.03899,"15.5":0.30757,"15.6":0.67579,"16.0":0.09097,"16.1":0.15162,"16.2":0.14296,"16.3":0.27725,"16.4":0.25559,"16.5":0.27725,"16.6":1.26494,"17.0":0.16028,"17.1":0.38988,"17.2":1.07434,"17.3":3.31831,"17.4":0.73211},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00418,"5.0-5.1":0.00209,"6.0-6.1":0.01254,"7.0-7.1":0.01463,"8.1-8.4":0.00418,"9.0-9.2":0.00836,"9.3":0.05224,"10.0-10.2":0.00836,"10.3":0.08777,"11.0-11.2":0.06269,"11.3-11.4":0.0209,"12.0-12.1":0.01881,"12.2-12.5":0.36153,"13.0-13.1":0.00627,"13.2":0.06269,"13.3":0.01881,"13.4-13.7":0.07105,"14.0-14.4":0.13584,"14.5-14.8":0.21316,"15.0-15.1":0.09195,"15.2-15.3":0.10867,"15.4":0.12748,"15.5":0.163,"15.6-15.8":1.36463,"16.0":0.33228,"16.1":0.68754,"16.2":0.33228,"16.3":0.59141,"16.4":0.12539,"16.5":0.2654,"16.6-16.7":2.01038,"17.0":0.26122,"17.1":0.52245,"17.2":0.84219,"17.3":10.36537,"17.4":1.52137,"17.5":0},P:{"4":0.06386,"21":0.10644,"22":0.11708,"23":3.42725,"24":1.23466,_:"20 5.0-5.4 6.2-6.4 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","7.2-7.4":0.04257,"8.2":0.01064,"13.0":0.01064,"17.0":0.06386,"18.0":0.02129,"19.0":0.04257},I:{"0":0.09032,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.38676,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00866,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":32.38005},R:{_:"0"},M:{"0":0.43644},Q:{"14.9":0.29474},O:{"0":0.10769},H:{"0":0.01}}; +module.exports={C:{"48":0.00451,"67":0.02706,"68":0.03608,"72":0.02706,"75":0.16687,"78":0.13079,"82":0.01804,"91":0.0902,"94":0.00902,"99":0.00902,"102":0.01804,"103":0.01353,"104":0.02706,"105":0.01353,"106":0.00451,"115":0.5863,"117":0.00451,"119":0.00451,"120":0.03157,"121":0.02255,"122":0.01804,"123":0.0902,"124":2.71502,"125":1.47477,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 79 80 81 83 84 85 86 87 88 89 90 92 93 95 96 97 98 100 101 107 108 109 110 111 112 113 114 116 118 126 127 128 3.5 3.6"},D:{"26":0.00451,"41":0.01804,"49":0.00451,"57":0.00451,"65":0.00451,"67":0.00902,"70":0.00902,"71":0.03157,"74":0.00451,"76":0.03608,"78":0.00451,"79":0.1804,"80":0.00902,"81":0.17589,"83":0.00451,"84":0.01353,"85":0.41943,"86":0.01353,"87":0.46002,"88":0.00451,"91":0.02255,"92":0.00902,"94":0.00902,"95":0.20295,"96":0.02255,"98":0.0451,"99":0.00451,"103":0.10824,"105":0.02255,"106":0.02706,"107":0.00902,"108":0.20295,"109":0.70356,"110":0.00902,"111":0.11275,"112":0.03608,"113":0.00451,"114":0.01804,"115":0.01353,"116":0.22099,"117":0.01804,"118":0.00451,"119":0.06314,"120":0.13079,"121":0.28413,"122":0.71258,"123":8.88921,"124":3.68016,"125":0.00451,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 58 59 60 61 62 63 64 66 68 69 72 73 75 77 89 90 93 97 100 101 102 104 126 127"},F:{"28":0.00902,"65":0.02706,"91":0.00902,"94":0.05863,"106":0.00451,"107":0.37433,"108":3.83801,"109":0.0451,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.04059,"86":0.00902,"90":0.00451,"92":0.02706,"100":0.00902,"101":0.00451,"104":0.00451,"105":0.00451,"106":0.03157,"109":0.01804,"110":0.00902,"112":0.00902,"116":0.00451,"120":0.00451,"121":0.0451,"122":0.15334,"123":2.87738,"124":1.52889,_:"12 13 14 15 16 17 79 80 81 83 84 85 87 88 89 91 93 94 95 96 97 98 99 102 103 107 108 111 113 114 115 117 118 119"},E:{"13":0.00902,"14":0.06765,"15":0.01804,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00451,"12.1":0.00451,"13.1":0.11275,"14.1":0.16687,"15.1":0.02706,"15.2-15.3":0.05412,"15.4":0.04961,"15.5":0.31119,"15.6":0.41943,"16.0":0.07667,"16.1":0.2706,"16.2":0.09471,"16.3":0.26609,"16.4":0.23452,"16.5":0.19844,"16.6":1.27633,"17.0":0.14432,"17.1":0.26158,"17.2":0.61336,"17.3":1.01024,"17.4":4.06802,"17.5":0.01353},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00434,"5.0-5.1":0.00434,"6.0-6.1":0.01084,"7.0-7.1":0.01735,"8.1-8.4":0.00434,"9.0-9.2":0.01084,"9.3":0.05421,"10.0-10.2":0.01084,"10.3":0.08674,"11.0-11.2":0.07373,"11.3-11.4":0.02169,"12.0-12.1":0.01518,"12.2-12.5":0.35347,"13.0-13.1":0.00651,"13.2":0.07156,"13.3":0.01735,"13.4-13.7":0.06723,"14.0-14.4":0.13228,"14.5-14.8":0.20168,"15.0-15.1":0.09325,"15.2-15.3":0.10626,"15.4":0.12144,"15.5":0.15397,"15.6-15.8":1.3445,"16.0":0.31444,"16.1":0.6549,"16.2":0.31444,"16.3":0.55515,"16.4":0.11493,"16.5":0.24071,"16.6-16.7":1.90182,"17.0":0.2277,"17.1":0.4207,"17.2":0.55949,"17.3":4.08121,"17.4":9.212,"17.5":0.08457},P:{"4":0.05361,"20":0.01072,"21":0.07506,"22":0.05361,"23":0.72915,"24":3.42059,"5.0-5.4":0.02145,"6.2-6.4":0.01072,"7.2-7.4":0.03217,_:"8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","17.0":0.01072,"19.0":0.04289},I:{"0":0.04374,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00902,"11":0.00451,_:"6 7 9 10 5.5"},K:{"0":0.18764,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02196,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02745},H:{"0":0.01},L:{"0":30.73836},R:{_:"0"},M:{"0":0.46116}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js index c3f10f856b970c..faae2339b093d0 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PG.js @@ -1 +1 @@ -module.exports={C:{"88":0.00317,"90":0.00317,"95":0.00317,"97":0.00317,"98":0.00317,"102":0.0222,"106":0.00317,"107":0.00317,"110":0.00634,"111":0.00317,"112":0.01586,"113":0.00317,"114":0.00634,"115":0.07296,"117":0.01586,"118":0.01903,"119":0.01903,"120":0.00317,"121":0.01269,"122":0.04124,"123":0.58999,"124":0.12688,"125":0.00317,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 91 92 93 94 96 99 100 101 103 104 105 108 109 116 126 127 3.5 3.6"},D:{"30":0.00317,"33":0.00317,"38":0.01586,"42":0.00317,"43":0.00317,"49":0.00317,"55":0.00317,"56":0.00317,"61":0.00317,"64":0.00634,"65":0.00317,"67":0.00952,"68":0.00952,"69":0.01269,"70":0.01903,"71":0.00317,"74":0.00317,"77":0.00317,"78":0.00317,"79":0.00634,"80":0.00317,"81":0.01269,"83":0.00317,"84":0.00317,"85":0.00634,"86":0.00317,"87":0.00952,"88":0.14274,"89":0.00634,"90":0.01903,"91":0.00317,"92":0.00317,"93":0.00317,"94":0.01903,"95":0.00317,"96":0.00317,"97":0.00317,"98":0.00634,"99":0.06661,"100":0.00317,"101":0.00634,"102":0.01586,"103":0.08564,"104":0.00317,"105":0.05392,"106":0.01903,"107":0.00634,"108":0.00952,"109":0.61854,"110":0.02538,"111":0.05075,"112":0.00952,"113":0.01269,"114":0.02855,"115":0.01586,"116":0.03806,"117":0.03806,"118":0.03806,"119":0.27279,"120":0.14274,"121":0.48532,"122":5.71277,"123":1.51939,"124":0.00317,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 34 35 36 37 39 40 41 44 45 46 47 48 50 51 52 53 54 57 58 59 60 62 63 66 72 73 75 76 125 126"},F:{"75":0.00317,"79":0.00317,"80":0.00317,"81":0.00634,"95":0.00952,"106":0.00952,"107":0.32989,"108":0.21887,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 78 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00634,"13":0.00634,"14":0.00634,"15":0.00952,"16":0.01269,"17":0.01586,"18":0.0571,"80":0.00317,"84":0.03172,"85":0.00317,"88":0.00317,"89":0.01903,"90":0.03806,"92":0.07613,"98":0.00317,"99":0.00317,"100":0.11102,"102":0.00317,"104":0.00317,"105":0.00317,"106":0.00634,"107":0.00317,"108":0.00317,"109":0.02538,"110":0.01586,"111":0.00952,"112":0.01269,"113":0.05392,"114":0.0222,"115":0.0222,"116":0.01269,"117":0.03172,"118":0.04124,"119":0.0793,"120":0.16812,"121":0.30134,"122":3.34646,"123":0.1015,_:"79 81 83 86 87 91 93 94 95 96 97 101 103"},E:{"13":0.00317,"14":0.00317,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 16.0 17.5","11.1":0.00634,"13.1":0.00634,"14.1":0.00952,"15.1":0.00317,"15.2-15.3":0.00317,"15.4":0.00317,"15.5":0.00317,"15.6":0.01586,"16.1":0.00634,"16.2":0.00317,"16.3":0.00317,"16.4":0.00634,"16.5":0.00634,"16.6":0.02855,"17.0":0.00317,"17.1":0.03489,"17.2":0.0793,"17.3":0.08564,"17.4":0.01903},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0004,"5.0-5.1":0.0002,"6.0-6.1":0.00121,"7.0-7.1":0.00141,"8.1-8.4":0.0004,"9.0-9.2":0.00081,"9.3":0.00504,"10.0-10.2":0.00081,"10.3":0.00846,"11.0-11.2":0.00604,"11.3-11.4":0.00201,"12.0-12.1":0.00181,"12.2-12.5":0.03485,"13.0-13.1":0.0006,"13.2":0.00604,"13.3":0.00181,"13.4-13.7":0.00685,"14.0-14.4":0.01309,"14.5-14.8":0.02055,"15.0-15.1":0.00886,"15.2-15.3":0.01047,"15.4":0.01229,"15.5":0.01571,"15.6-15.8":0.13153,"16.0":0.03203,"16.1":0.06627,"16.2":0.03203,"16.3":0.057,"16.4":0.01209,"16.5":0.02558,"16.6-16.7":0.19377,"17.0":0.02518,"17.1":0.05036,"17.2":0.08117,"17.3":0.99907,"17.4":0.14664,"17.5":0},P:{"4":0.0616,"20":0.09239,"21":0.39011,"22":0.41064,"23":1.41672,"24":1.1806,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01027,"7.2-7.4":0.16426,"9.2":0.02053,"11.1-11.2":0.04106,"12.0":0.01027,"13.0":0.04106,"14.0":0.04106,"15.0":0.02053,"16.0":0.10266,"17.0":0.0308,"18.0":0.05133,"19.0":0.27718},I:{"0":0.17,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00041},K:{"0":1.41533,_:"10 11 12 11.1 11.5 12.1"},A:{"9":0.00342,"10":0.00683,"11":0.03416,_:"6 7 8 5.5"},S:{"2.5":0.00683,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":73.93076},R:{_:"0"},M:{"0":0.15022},Q:{"14.9":0.04097},O:{"0":1.01737},H:{"0":0.08}}; +module.exports={C:{"72":0.00302,"78":0.00302,"84":0.00302,"98":0.00302,"103":0.00302,"109":0.00905,"110":0.00604,"111":0.00302,"112":0.00302,"113":0.01509,"115":0.03018,"117":0.01509,"118":0.00604,"119":0.01811,"120":0.00302,"121":0.01207,"122":0.01811,"123":0.06338,"124":0.58247,"125":0.21126,"126":0.00302,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 104 105 106 107 108 114 116 127 128 3.5 3.6"},D:{"26":0.00302,"38":0.00604,"43":0.01207,"49":0.01811,"55":0.00302,"62":0.00302,"63":0.00302,"64":0.00302,"65":0.00604,"67":0.00302,"68":0.00905,"69":0.01509,"70":0.0332,"71":0.00302,"74":0.00905,"76":0.00302,"77":0.00302,"78":0.00302,"79":0.00604,"80":0.00604,"81":0.02414,"83":0.00905,"84":0.00604,"86":0.00302,"87":0.02113,"88":0.14185,"89":0.00302,"90":0.01811,"91":0.00604,"92":0.00302,"93":0.01207,"94":0.00604,"95":0.00302,"98":0.00302,"99":0.12676,"102":0.01509,"103":0.03622,"104":0.00302,"105":0.04225,"106":0.01207,"107":0.02414,"108":0.00905,"109":0.74846,"110":0.00905,"111":0.03622,"112":0.01207,"113":0.04829,"114":0.01509,"115":0.00905,"116":0.05734,"117":0.03923,"118":0.01207,"119":0.29878,"120":0.16599,"121":0.09658,"122":0.33198,"123":5.5169,"124":1.84702,"125":0.00604,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 66 72 73 75 85 96 97 100 101 126 127"},F:{"78":0.00302,"80":0.00302,"81":0.02414,"83":0.00604,"86":0.00302,"92":0.00604,"95":0.00302,"106":0.00604,"107":0.12676,"108":0.25653,"109":0.17806,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 82 84 85 87 88 89 90 91 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02414,"13":0.01207,"14":0.00302,"15":0.00302,"16":0.02414,"17":0.00302,"18":0.05131,"80":0.00302,"81":0.00302,"83":0.00302,"84":0.02716,"85":0.00302,"88":0.00302,"89":0.0332,"90":0.03923,"92":0.07243,"98":0.00302,"100":0.05432,"104":0.00302,"106":0.00604,"107":0.00905,"109":0.02716,"110":0.00604,"111":0.00604,"112":0.01207,"113":0.01207,"114":0.02113,"115":0.05432,"116":0.02414,"117":0.02716,"118":0.02716,"119":0.04829,"120":0.1177,"121":0.05432,"122":0.42856,"123":2.31481,"124":0.94162,_:"79 86 87 91 93 94 95 96 97 99 101 102 103 105 108"},E:{"13":0.00302,"15":0.00604,_:"0 4 5 6 7 8 9 10 11 12 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 16.2 16.4 17.5","13.1":0.00604,"14.1":0.00604,"15.2-15.3":0.00302,"15.4":0.00604,"15.5":0.00302,"15.6":0.01811,"16.0":0.00302,"16.1":0.00302,"16.3":0.00604,"16.5":0.00604,"16.6":0.0332,"17.0":0.00302,"17.1":0.00302,"17.2":0.03622,"17.3":0.01207,"17.4":0.16599},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00038,"5.0-5.1":0.00038,"6.0-6.1":0.00095,"7.0-7.1":0.00151,"8.1-8.4":0.00038,"9.0-9.2":0.00095,"9.3":0.00473,"10.0-10.2":0.00095,"10.3":0.00757,"11.0-11.2":0.00643,"11.3-11.4":0.00189,"12.0-12.1":0.00132,"12.2-12.5":0.03084,"13.0-13.1":0.00057,"13.2":0.00624,"13.3":0.00151,"13.4-13.7":0.00587,"14.0-14.4":0.01154,"14.5-14.8":0.0176,"15.0-15.1":0.00814,"15.2-15.3":0.00927,"15.4":0.0106,"15.5":0.01343,"15.6-15.8":0.11731,"16.0":0.02744,"16.1":0.05714,"16.2":0.02744,"16.3":0.04844,"16.4":0.01003,"16.5":0.021,"16.6-16.7":0.16594,"17.0":0.01987,"17.1":0.03671,"17.2":0.04882,"17.3":0.3561,"17.4":0.80377,"17.5":0.00738},P:{"4":0.0307,"20":0.05117,"21":0.3275,"22":0.3275,"23":0.80852,"24":1.69891,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01023,"7.2-7.4":0.17398,"9.2":0.01023,"11.1-11.2":0.02047,"12.0":0.01023,"13.0":0.08187,"14.0":0.04094,"15.0":0.02047,"16.0":0.08187,"17.0":0.02047,"18.0":0.04094,"19.0":0.22516},I:{"0":0.20165,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00012,"4.4":0,"4.4.3-4.4.4":0.00051},A:{"10":0.00951,"11":0.05387,_:"6 7 8 9 5.5"},K:{"0":1.46397,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01396,_:"3.0-3.1"},Q:{"14.9":0.02095},O:{"0":0.80991},H:{"0":0.1},L:{"0":74.25179},R:{_:"0"},M:{"0":0.09077}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js index 1493e7d873b27a..331fc9b225d9c8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PH.js @@ -1 +1 @@ -module.exports={C:{"52":0.00499,"56":0.10483,"59":0.00998,"78":0.00499,"88":0.00499,"98":0.00499,"115":0.11482,"117":0.00499,"120":0.00499,"121":0.00998,"122":0.01498,"123":0.44429,"124":0.1847,"125":0.00499,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 118 119 126 127 3.5 3.6"},D:{"49":0.00998,"56":0.00499,"65":0.00499,"66":0.03494,"68":0.00499,"69":0.00499,"70":0.00998,"73":0.00499,"74":0.00499,"75":0.00998,"76":0.00998,"77":0.00499,"78":0.00998,"79":0.02995,"80":0.00499,"81":0.00998,"83":0.02496,"84":0.00499,"85":0.00499,"86":0.00998,"87":0.11981,"88":0.02496,"89":0.00499,"90":0.00499,"91":0.02496,"92":0.00499,"93":0.02995,"94":0.01997,"95":0.00499,"96":0.00499,"97":0.00998,"98":0.01498,"99":0.05491,"100":0.00499,"101":0.02496,"102":0.0649,"103":0.31949,"104":0.01498,"105":0.03494,"106":0.02995,"107":0.01498,"108":0.03494,"109":1.47264,"110":0.02496,"111":0.03994,"112":0.02995,"113":0.03994,"114":0.07488,"115":0.03994,"116":0.21965,"117":0.08486,"118":0.0599,"119":0.16973,"120":0.4343,"121":1.48762,"122":23.0281,"123":6.6743,"124":0.04493,"125":0.00998,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 67 71 72 126"},F:{"28":0.01498,"46":0.00499,"79":0.00499,"95":0.00998,"106":0.00998,"107":1.35782,"108":0.11482,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00499,"18":0.00998,"92":0.01498,"100":0.00499,"109":0.03494,"111":0.00499,"114":0.00998,"115":0.00499,"116":0.00499,"117":0.00499,"118":0.00499,"119":0.01498,"120":0.12979,"121":0.12979,"122":5.24659,"123":0.39437,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 112 113"},E:{"13":0.01498,"14":0.00998,"15":0.00499,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 17.5","11.1":0.00998,"13.1":0.01498,"14.1":0.03994,"15.1":0.03494,"15.2-15.3":0.00499,"15.4":0.00998,"15.5":0.01498,"15.6":0.08986,"16.0":0.01498,"16.1":0.02496,"16.2":0.01997,"16.3":0.04493,"16.4":0.01498,"16.5":0.02995,"16.6":0.12979,"17.0":0.02995,"17.1":0.04992,"17.2":0.13478,"17.3":0.41434,"17.4":0.08986},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00062,"6.0-6.1":0.00369,"7.0-7.1":0.00431,"8.1-8.4":0.00123,"9.0-9.2":0.00246,"9.3":0.01539,"10.0-10.2":0.00246,"10.3":0.02585,"11.0-11.2":0.01846,"11.3-11.4":0.00615,"12.0-12.1":0.00554,"12.2-12.5":0.10648,"13.0-13.1":0.00185,"13.2":0.01846,"13.3":0.00554,"13.4-13.7":0.02093,"14.0-14.4":0.04001,"14.5-14.8":0.06278,"15.0-15.1":0.02708,"15.2-15.3":0.03201,"15.4":0.03754,"15.5":0.04801,"15.6-15.8":0.40191,"16.0":0.09786,"16.1":0.20249,"16.2":0.09786,"16.3":0.17418,"16.4":0.03693,"16.5":0.07817,"16.6-16.7":0.59209,"17.0":0.07694,"17.1":0.15387,"17.2":0.24804,"17.3":3.0528,"17.4":0.44807,"17.5":0},P:{"4":0.13362,"20":0.01113,"21":0.02227,"22":0.0334,"23":0.34518,"24":0.43426,"5.0-5.4":0.01113,"6.2-6.4":0.02227,_:"7.2-7.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","11.1-11.2":0.01113,"17.0":0.01113,"19.0":0.01113},I:{"0":0.0798,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":0.53586,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00504,"9":0.00504,"11":2.03664,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":44.16632},R:{_:"0"},M:{"0":0.09014},Q:{"14.9":0.00501},O:{"0":0.40565},H:{"0":0}}; +module.exports={C:{"41":0.0051,"56":0.10208,"59":0.01021,"78":0.0051,"80":0.0051,"88":0.0051,"115":0.11229,"120":0.01021,"121":0.0051,"122":0.0051,"123":0.01531,"124":0.39811,"125":0.22968,"126":0.01531,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 127 128 3.5 3.6"},D:{"49":0.01021,"56":0.0051,"58":0.0051,"66":0.04083,"68":0.0051,"70":0.0051,"73":0.0051,"74":0.0051,"75":0.01021,"76":0.01021,"78":0.01021,"79":0.03062,"80":0.0051,"81":0.0051,"83":0.02042,"84":0.0051,"85":0.0051,"86":0.01021,"87":0.06635,"88":0.02552,"89":0.0051,"90":0.0051,"91":0.02042,"92":0.0051,"93":0.07146,"94":0.02042,"95":0.0051,"96":0.0051,"97":0.01021,"98":0.01021,"99":0.04594,"100":0.0051,"101":0.02042,"102":0.01531,"103":0.50019,"104":0.01531,"105":0.04083,"106":0.02552,"107":0.03062,"108":0.02552,"109":1.50568,"110":0.01531,"111":0.03062,"112":0.02552,"113":0.04083,"114":0.05614,"115":0.03062,"116":0.21947,"117":0.11739,"118":0.05614,"119":0.10208,"120":0.23478,"121":0.30624,"122":1.33214,"123":22.44229,"124":8.39098,"125":0.04594,"126":0.0051,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 59 60 61 62 63 64 65 67 69 71 72 77 127"},F:{"28":0.02042,"46":0.0051,"95":0.0051,"107":1.05653,"108":0.18374,"109":0.11739,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.0051,"18":0.01021,"90":0.0051,"92":0.01531,"100":0.01021,"109":0.02552,"112":0.0051,"113":0.01531,"114":0.0051,"115":0.0051,"116":0.0051,"117":0.01021,"118":0.0051,"119":0.01021,"120":0.04594,"121":0.02552,"122":0.35218,"123":4.13934,"124":1.98035,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111"},E:{"10":0.0051,"13":0.0051,"14":0.01021,"15":0.0051,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1","11.1":0.01021,"13.1":0.01021,"14.1":0.03573,"15.1":0.01531,"15.2-15.3":0.0051,"15.4":0.0051,"15.5":0.01531,"15.6":0.08166,"16.0":0.01531,"16.1":0.02042,"16.2":0.02042,"16.3":0.03573,"16.4":0.01531,"16.5":0.02552,"16.6":0.11739,"17.0":0.02552,"17.1":0.04083,"17.2":0.06635,"17.3":0.14802,"17.4":0.39811,"17.5":0.0051},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0.00121,"6.0-6.1":0.00303,"7.0-7.1":0.00485,"8.1-8.4":0.00121,"9.0-9.2":0.00303,"9.3":0.01516,"10.0-10.2":0.00303,"10.3":0.02426,"11.0-11.2":0.02062,"11.3-11.4":0.00606,"12.0-12.1":0.00425,"12.2-12.5":0.09886,"13.0-13.1":0.00182,"13.2":0.02001,"13.3":0.00485,"13.4-13.7":0.0188,"14.0-14.4":0.037,"14.5-14.8":0.0564,"15.0-15.1":0.02608,"15.2-15.3":0.02972,"15.4":0.03396,"15.5":0.04306,"15.6-15.8":0.37602,"16.0":0.08794,"16.1":0.18316,"16.2":0.08794,"16.3":0.15526,"16.4":0.03214,"16.5":0.06732,"16.6-16.7":0.53189,"17.0":0.06368,"17.1":0.11766,"17.2":0.15647,"17.3":1.14142,"17.4":2.57637,"17.5":0.02365},P:{"4":0.12695,"20":0.01058,"21":0.02116,"22":0.02116,"23":0.06348,"24":0.63477,"5.0-5.4":0.01058,"6.2-6.4":0.02116,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","13.0":0.01058,"17.0":0.01058,"19.0":0.01058},I:{"0":0.09262,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},A:{"8":0.00515,"11":2.80715,_:"6 7 9 10 5.5"},K:{"0":0.4895,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0049},O:{"0":0.32307},H:{"0":0},L:{"0":42.27274},R:{_:"0"},M:{"0":0.08322}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js index 4ed633e86c7b0f..4e3e9b2295dea3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PK.js @@ -1 +1 @@ -module.exports={C:{"44":0.003,"47":0.003,"52":0.00601,"65":0.003,"68":0.00901,"69":0.00901,"70":0.00901,"71":0.00901,"72":0.00901,"73":0.00901,"74":0.00901,"75":0.00901,"76":0.00901,"77":0.00901,"78":0.00901,"79":0.00901,"80":0.00901,"81":0.00901,"82":0.00901,"83":0.00901,"87":0.003,"88":0.003,"91":0.003,"99":0.003,"102":0.003,"103":0.00601,"105":0.00901,"106":0.01502,"107":0.00901,"108":0.01502,"109":0.01201,"110":0.00901,"111":0.01201,"112":0.003,"113":0.003,"115":0.13514,"117":0.003,"119":0.003,"121":0.003,"122":0.01802,"123":0.33934,"124":0.14414,"125":0.003,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 66 67 84 85 86 89 90 92 93 94 95 96 97 98 100 101 104 114 116 118 120 126 127 3.5 3.6"},D:{"11":0.003,"38":0.01201,"42":0.003,"43":0.003,"44":0.003,"46":0.003,"47":0.003,"48":0.00601,"49":0.00901,"50":0.003,"54":0.003,"55":0.003,"56":0.01802,"58":0.003,"61":0.003,"62":0.003,"63":0.003,"64":0.00601,"65":0.01802,"66":0.01502,"67":0.003,"68":0.13814,"69":0.07808,"70":0.07808,"71":0.07808,"72":0.12312,"73":0.05706,"74":0.13213,"75":0.08709,"76":0.08709,"77":0.08108,"78":0.11712,"79":0.12312,"80":0.16216,"81":0.12012,"83":0.13213,"84":0.08408,"85":0.48048,"86":0.1952,"87":0.13213,"88":0.15315,"89":0.12312,"90":0.15315,"91":0.05706,"92":0.00601,"93":0.03003,"94":0.003,"95":0.01802,"96":0.01502,"97":0.00601,"98":0.00901,"99":0.00901,"100":0.003,"101":0.00601,"102":0.03003,"103":0.12012,"104":0.02402,"105":0.04805,"106":0.12613,"107":0.16817,"108":0.17718,"109":2.95495,"110":0.08709,"111":0.10511,"112":0.1021,"113":0.00901,"114":0.02703,"115":0.01502,"116":0.04505,"117":0.02402,"118":0.02102,"119":0.07207,"120":0.18018,"121":0.58258,"122":10.86185,"123":3.24324,"124":0.01201,"125":0.003,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 45 51 52 53 57 59 60 126"},F:{"28":0.00601,"36":0.003,"37":0.003,"46":0.003,"47":0.003,"48":0.003,"49":0.003,"51":0.003,"52":0.003,"53":0.01502,"54":0.01502,"55":0.01802,"56":0.003,"60":0.003,"62":0.003,"63":0.003,"65":0.003,"66":0.003,"67":0.00601,"68":0.003,"70":0.003,"72":0.003,"73":0.003,"74":0.003,"75":0.003,"76":0.003,"79":0.00601,"81":0.003,"85":0.003,"86":0.003,"90":0.003,"91":0.003,"92":0.003,"93":0.00601,"94":0.00901,"95":0.06306,"106":0.00901,"107":0.38138,"108":0.15616,"109":0.003,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 38 39 40 41 42 43 44 45 50 57 58 64 69 71 77 78 80 82 83 84 87 88 89 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.06607,"13":0.003,"14":0.003,"15":0.00601,"16":0.00601,"17":0.003,"18":0.01502,"79":0.00901,"80":0.02703,"81":0.02402,"83":0.02402,"84":0.02703,"85":0.01502,"86":0.02402,"87":0.01502,"88":0.01502,"89":0.02402,"90":0.01802,"91":0.003,"92":0.02402,"100":0.003,"103":0.00601,"105":0.003,"106":0.01201,"107":0.02102,"108":0.02402,"109":0.03904,"110":0.01802,"111":0.01201,"112":0.003,"115":0.003,"117":0.00601,"118":0.003,"119":0.00601,"120":0.01502,"121":0.04505,"122":1.01201,"123":0.08408,_:"93 94 95 96 97 98 99 101 102 104 113 114 116"},E:{"14":0.00601,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 17.5","5.1":0.003,"9.1":0.65465,"13.1":0.00601,"14.1":0.01201,"15.1":0.003,"15.2-15.3":0.00601,"15.4":0.003,"15.5":0.003,"15.6":0.03003,"16.0":0.00601,"16.1":0.00901,"16.2":0.02703,"16.3":0.01502,"16.4":0.003,"16.5":0.003,"16.6":0.03303,"17.0":0.00601,"17.1":0.01201,"17.2":0.02402,"17.3":0.05405,"17.4":0.01802},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00056,"5.0-5.1":0.00028,"6.0-6.1":0.00168,"7.0-7.1":0.00196,"8.1-8.4":0.00056,"9.0-9.2":0.00112,"9.3":0.00701,"10.0-10.2":0.00112,"10.3":0.01178,"11.0-11.2":0.00842,"11.3-11.4":0.00281,"12.0-12.1":0.00253,"12.2-12.5":0.04854,"13.0-13.1":0.00084,"13.2":0.00842,"13.3":0.00253,"13.4-13.7":0.00954,"14.0-14.4":0.01824,"14.5-14.8":0.02862,"15.0-15.1":0.01235,"15.2-15.3":0.01459,"15.4":0.01712,"15.5":0.02189,"15.6-15.8":0.18322,"16.0":0.04461,"16.1":0.09231,"16.2":0.04461,"16.3":0.0794,"16.4":0.01683,"16.5":0.03563,"16.6-16.7":0.26992,"17.0":0.03507,"17.1":0.07014,"17.2":0.11307,"17.3":1.39168,"17.4":0.20426,"17.5":0},P:{"4":0.24221,"20":0.02106,"21":0.03159,"22":0.02106,"23":0.31593,"24":0.26327,"5.0-5.4":0.02106,"6.2-6.4":0.02106,"7.2-7.4":0.02106,_:"8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","13.0":0.01053,"17.0":0.05265,"18.0":0.01053,"19.0":0.01053},I:{"0":0.04878,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":2.33189,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01247,"9":0.00312,"10":0.00312,"11":0.14345,_:"6 7 5.5"},S:{"2.5":0.09096,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":62.06188},R:{_:"0"},M:{"0":0.09796},Q:{_:"14.9"},O:{"0":4.21219},H:{"0":0.25}}; +module.exports={C:{"44":0.00291,"47":0.00291,"52":0.00874,"56":0.00291,"68":0.00291,"72":0.00291,"75":0.00291,"78":0.00291,"88":0.00291,"91":0.00291,"99":0.00291,"102":0.00291,"103":0.00874,"105":0.00583,"106":0.00874,"107":0.00874,"108":0.01165,"109":0.00583,"110":0.00874,"111":0.00874,"112":0.00291,"115":0.16604,"119":0.00291,"121":0.00291,"122":0.00583,"123":0.01457,"124":0.29421,"125":0.19808,"126":0.00291,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 45 46 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 101 104 113 114 116 117 118 120 127 128 3.5 3.6"},D:{"38":0.01165,"41":0.00583,"43":0.00583,"47":0.00291,"48":0.00291,"49":0.00874,"50":0.00291,"55":0.00291,"56":0.02039,"58":0.00291,"62":0.00291,"63":0.00291,"64":0.00583,"65":0.01457,"66":0.00874,"67":0.00291,"68":0.02622,"69":0.01165,"70":0.00874,"71":0.00874,"72":0.01457,"73":0.01748,"74":0.02622,"75":0.02039,"76":0.01748,"77":0.01165,"78":0.01165,"79":0.02039,"80":0.0233,"81":0.01748,"83":0.0233,"84":0.01165,"85":0.34956,"86":0.0233,"87":0.03496,"88":0.01457,"89":0.0233,"90":0.01457,"91":0.01748,"92":0.00874,"93":0.03204,"94":0.00291,"95":0.02039,"96":0.00583,"97":0.00583,"98":0.01165,"99":0.00874,"100":0.00291,"101":0.00583,"102":0.02913,"103":0.12526,"104":0.02622,"105":0.02913,"106":0.08739,"107":0.11943,"108":0.11069,"109":3.26256,"110":0.05535,"111":0.067,"112":0.05826,"113":0.00874,"114":0.0233,"115":0.01165,"116":0.04952,"117":0.0233,"118":0.01457,"119":0.06117,"120":0.11652,"121":0.17187,"122":0.41073,"123":10.85675,"124":5.27253,"125":0.0437,"126":0.00291,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 51 52 53 54 57 59 60 61 127"},F:{"28":0.00583,"36":0.00583,"37":0.00583,"46":0.00291,"53":0.00291,"54":0.00291,"55":0.00291,"79":0.00874,"82":0.00291,"85":0.00291,"91":0.00291,"92":0.00291,"93":0.00583,"94":0.00583,"95":0.06991,"106":0.00291,"107":0.19517,"108":0.25926,"109":0.13691,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 38 39 40 41 42 43 44 45 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02622,"13":0.00291,"14":0.00291,"15":0.00583,"16":0.00874,"17":0.00291,"18":0.01748,"80":0.00291,"81":0.00291,"83":0.00291,"84":0.00583,"85":0.00291,"86":0.00291,"87":0.00291,"88":0.00291,"89":0.00583,"90":0.00583,"92":0.02622,"100":0.00291,"103":0.00291,"105":0.00583,"106":0.00583,"107":0.01457,"108":0.01165,"109":0.03204,"110":0.00874,"111":0.00874,"112":0.00291,"113":0.00291,"114":0.00291,"115":0.00291,"117":0.00583,"118":0.00583,"119":0.00583,"120":0.01457,"121":0.00874,"122":0.07283,"123":0.7836,"124":0.41073,_:"79 91 93 94 95 96 97 98 99 101 102 104 116"},E:{"14":0.00874,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.0437,"12.1":0.00291,"13.1":0.00583,"14.1":0.01457,"15.1":0.00291,"15.2-15.3":0.00291,"15.4":0.00291,"15.5":0.00583,"15.6":0.03204,"16.0":0.00874,"16.1":0.03787,"16.2":0.00874,"16.3":0.01457,"16.4":0.00291,"16.5":0.00583,"16.6":0.04661,"17.0":0.00583,"17.1":0.01165,"17.2":0.02039,"17.3":0.03496,"17.4":0.0903,"17.5":0.00291},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0.0006,"6.0-6.1":0.00149,"7.0-7.1":0.00238,"8.1-8.4":0.0006,"9.0-9.2":0.00149,"9.3":0.00744,"10.0-10.2":0.00149,"10.3":0.01191,"11.0-11.2":0.01012,"11.3-11.4":0.00298,"12.0-12.1":0.00208,"12.2-12.5":0.04852,"13.0-13.1":0.00089,"13.2":0.00982,"13.3":0.00238,"13.4-13.7":0.00923,"14.0-14.4":0.01816,"14.5-14.8":0.02768,"15.0-15.1":0.0128,"15.2-15.3":0.01459,"15.4":0.01667,"15.5":0.02113,"15.6-15.8":0.18455,"16.0":0.04316,"16.1":0.08989,"16.2":0.04316,"16.3":0.0762,"16.4":0.01578,"16.5":0.03304,"16.6-16.7":0.26104,"17.0":0.03125,"17.1":0.05774,"17.2":0.07679,"17.3":0.56018,"17.4":1.26443,"17.5":0.01161},P:{"4":0.17917,"20":0.02108,"21":0.02108,"22":0.01054,"23":0.0527,"24":0.40051,"5.0-5.4":0.01054,"6.2-6.4":0.01054,"7.2-7.4":0.02108,_:"8.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","9.2":0.01054,"13.0":0.01054,"17.0":0.03162,"18.0":0.01054,"19.0":0.01054},I:{"0":0.04235,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.01818,"9":0.00606,"10":0.00303,"11":0.12421,_:"6 7 5.5"},K:{"0":2.48763,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.07087,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":3.51515},H:{"0":0.17},L:{"0":62.8921},R:{_:"0"},M:{"0":0.63783}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js index 254974c1d55ca2..23ef61f38f82cc 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PL.js @@ -1 +1 @@ -module.exports={C:{"52":0.03508,"58":0.00351,"68":0.00351,"77":0.00351,"78":0.01403,"86":0.00351,"88":0.01052,"91":0.00351,"99":0.00351,"102":0.01052,"103":0.00351,"104":0.01052,"105":0.00351,"106":0.00351,"107":0.00351,"108":0.00351,"109":0.00351,"110":0.00702,"111":0.00351,"112":0.00351,"113":0.00702,"114":0.00702,"115":0.52971,"116":0.00702,"117":0.00351,"118":0.00702,"119":0.00702,"120":0.01052,"121":0.01754,"122":0.06665,"123":2.25214,"124":0.98575,"125":0.00351,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 83 84 85 87 89 90 92 93 94 95 96 97 98 100 101 126 127 3.5 3.6"},D:{"49":0.00702,"76":0.00351,"78":0.00351,"79":0.34028,"80":0.00351,"81":0.00351,"86":0.00351,"87":0.01403,"88":0.00702,"89":0.01403,"90":0.00702,"91":0.05262,"92":0.00351,"93":0.00351,"94":0.00351,"95":0.00702,"96":0.00351,"97":0.00351,"98":0.01052,"99":0.09472,"100":0.00351,"102":0.02105,"103":0.01403,"104":3.78513,"105":0.00351,"106":0.06314,"107":0.02105,"108":0.02105,"109":0.77527,"110":0.01052,"111":0.07718,"112":0.01403,"113":0.00702,"114":0.01754,"115":0.01052,"116":0.03859,"117":0.01403,"118":0.02456,"119":0.03859,"120":0.12629,"121":0.74019,"122":9.99429,"123":2.92918,"124":0.00351,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 83 84 85 101 125 126"},F:{"36":0.00351,"79":0.00351,"81":0.00702,"84":0.00351,"85":0.00351,"94":0.00351,"95":0.1298,"97":0.00351,"102":0.00702,"105":0.00351,"106":0.04911,"107":5.23043,"108":0.63144,"109":0.00702,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 86 87 88 89 90 91 92 93 96 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00702},B:{"92":0.00351,"106":0.00351,"107":0.00351,"109":0.05262,"110":0.00351,"112":0.00351,"114":0.02105,"115":0.00351,"116":0.00351,"117":0.00351,"118":0.00351,"119":0.00702,"120":0.01754,"121":0.09121,"122":2.20302,"123":0.16137,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 108 111 113"},E:{"14":0.00702,"15":0.00702,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 17.5","9.1":0.00351,"13.1":0.00702,"14.1":0.02105,"15.1":0.00351,"15.2-15.3":0.00351,"15.4":0.00351,"15.5":0.00702,"15.6":0.03859,"16.0":0.01403,"16.1":0.01052,"16.2":0.01052,"16.3":0.02105,"16.4":0.01052,"16.5":0.01754,"16.6":0.06314,"17.0":0.02105,"17.1":0.0421,"17.2":0.10173,"17.3":0.2175,"17.4":0.07718},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00155,"5.0-5.1":0.00078,"6.0-6.1":0.00466,"7.0-7.1":0.00544,"8.1-8.4":0.00155,"9.0-9.2":0.00311,"9.3":0.01943,"10.0-10.2":0.00311,"10.3":0.03264,"11.0-11.2":0.02331,"11.3-11.4":0.00777,"12.0-12.1":0.00699,"12.2-12.5":0.13444,"13.0-13.1":0.00233,"13.2":0.02331,"13.3":0.00699,"13.4-13.7":0.02642,"14.0-14.4":0.05051,"14.5-14.8":0.07926,"15.0-15.1":0.03419,"15.2-15.3":0.04041,"15.4":0.0474,"15.5":0.06061,"15.6-15.8":0.50744,"16.0":0.12356,"16.1":0.25566,"16.2":0.12356,"16.3":0.21992,"16.4":0.04663,"16.5":0.09869,"16.6-16.7":0.74756,"17.0":0.09714,"17.1":0.19427,"17.2":0.31317,"17.3":3.85438,"17.4":0.56572,"17.5":0},P:{"20":0.0305,"21":0.04066,"22":0.07116,"23":1.3825,"24":1.21985,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01017,"13.0":0.01017,"14.0":0.02033,"16.0":0.01017,"17.0":0.01017,"18.0":0.02033,"19.0":0.0305},I:{"0":0.0194,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":2.94088,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00702,"11":0.01754,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.3245},R:{_:"0"},M:{"0":0.58428},Q:{_:"14.9"},O:{"0":0.02597},H:{"0":0}}; +module.exports={C:{"47":0.00307,"52":0.03376,"68":0.00307,"78":0.01228,"88":0.00921,"91":0.00307,"102":0.00921,"103":0.00307,"104":0.00921,"105":0.00307,"106":0.00307,"107":0.00307,"108":0.00307,"109":0.00307,"110":0.00307,"111":0.00307,"112":0.00307,"113":0.00614,"114":0.00307,"115":0.49718,"116":0.00307,"117":0.00307,"118":0.00307,"119":0.00614,"120":0.00614,"121":0.01535,"122":0.01841,"123":0.07366,"124":1.94882,"125":1.07722,"126":0.00614,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 127 128 3.5 3.6"},D:{"41":0.00307,"49":0.00614,"74":0.00307,"76":0.00614,"79":0.356,"80":0.00307,"81":0.00307,"87":0.01535,"88":0.00614,"89":0.02148,"90":0.00614,"91":0.00307,"92":0.00307,"93":0.00307,"94":0.00614,"95":0.00614,"97":0.00307,"98":0.00614,"99":0.08286,"100":0.00307,"102":0.03683,"103":0.01228,"104":1.63578,"105":0.00614,"106":0.00921,"107":0.01228,"108":0.01841,"109":0.7427,"110":0.00921,"111":0.0399,"112":0.01228,"113":0.00614,"114":0.01228,"115":0.00921,"116":0.03069,"117":0.01228,"118":0.02148,"119":0.03069,"120":0.07366,"121":0.10435,"122":0.50025,"123":8.81417,"124":3.42194,"125":0.00921,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 77 78 83 84 85 86 96 101 126 127"},F:{"36":0.00307,"72":0.00307,"79":0.00307,"85":0.00307,"87":0.00307,"94":0.00307,"95":0.11969,"97":0.00307,"99":0.00307,"102":0.00614,"105":0.00307,"106":0.00921,"107":3.81784,"108":1.16929,"109":0.49411,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 80 81 82 83 84 86 88 89 90 91 92 93 96 98 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00307,"92":0.00307,"104":0.00307,"107":0.00307,"108":0.00307,"109":0.06138,"110":0.00921,"113":0.00307,"114":0.00307,"115":0.00307,"116":0.00307,"117":0.00307,"118":0.00307,"119":0.00307,"120":0.01228,"121":0.01841,"122":0.09514,"123":1.52222,"124":0.73042,_:"12 13 14 15 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 111 112"},E:{"13":0.00307,"14":0.00307,"15":0.00307,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00307,"13.1":0.00614,"14.1":0.02148,"15.1":0.00307,"15.2-15.3":0.00307,"15.4":0.00307,"15.5":0.00614,"15.6":0.03376,"16.0":0.01228,"16.1":0.01228,"16.2":0.00921,"16.3":0.01841,"16.4":0.00614,"16.5":0.01228,"16.6":0.06138,"17.0":0.01535,"17.1":0.02455,"17.2":0.05217,"17.3":0.08286,"17.4":0.25166,"17.5":0.00307},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00149,"5.0-5.1":0.00149,"6.0-6.1":0.00373,"7.0-7.1":0.00597,"8.1-8.4":0.00149,"9.0-9.2":0.00373,"9.3":0.01865,"10.0-10.2":0.00373,"10.3":0.02984,"11.0-11.2":0.02536,"11.3-11.4":0.00746,"12.0-12.1":0.00522,"12.2-12.5":0.12158,"13.0-13.1":0.00224,"13.2":0.02461,"13.3":0.00597,"13.4-13.7":0.02312,"14.0-14.4":0.0455,"14.5-14.8":0.06937,"15.0-15.1":0.03207,"15.2-15.3":0.03655,"15.4":0.04177,"15.5":0.05296,"15.6-15.8":0.46245,"16.0":0.10815,"16.1":0.22526,"16.2":0.10815,"16.3":0.19095,"16.4":0.03953,"16.5":0.08279,"16.6-16.7":0.65414,"17.0":0.07832,"17.1":0.1447,"17.2":0.19244,"17.3":1.40375,"17.4":3.16851,"17.5":0.02909},P:{"20":0.0306,"21":0.0408,"22":0.0714,"23":0.28559,"24":2.31531,_:"4 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0","11.1-11.2":0.0102,"13.0":0.0102,"14.0":0.0204,"15.0":0.0102,"16.0":0.0204,"17.0":0.0102,"18.0":0.0204,"19.0":0.0306},I:{"0":0.02071,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"8":0.00691,"11":0.02072,_:"6 7 9 10 5.5"},K:{"0":2.71041,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0208},H:{"0":0},L:{"0":56.86349},R:{_:"0"},M:{"0":0.55456}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js index 1615a4efede838..85100e6c4ab210 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PM.js @@ -1 +1 @@ -module.exports={C:{"78":0.00458,"89":0.00458,"108":0.00458,"115":0.03661,"119":0.0183,"121":0.00458,"123":0.81453,"124":0.28371,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 120 122 125 126 127 3.5 3.6"},D:{"96":0.00458,"100":0.00915,"103":0.0183,"105":0.00458,"109":0.51251,"111":0.04118,"116":0.05491,"120":0.11898,"121":0.5903,"122":2.96067,"123":0.75504,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 101 102 104 106 107 108 110 112 113 114 115 117 118 119 124 125 126"},F:{"106":0.09152,"107":0.05034,"108":0.0183,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00458,"109":0.00458,"121":0.01373,"122":2.09123,"123":0.15558,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00458,"13.1":0.02746,"14.1":0.03203,"15.1":0.20134,"15.2-15.3":0.11898,"15.4":0.00458,"15.5":0.03203,"15.6":1.39568,"16.0":0.19219,"16.1":0.44845,"16.2":0.3249,"16.3":1.89446,"16.4":0.49878,"16.5":1.40483,"16.6":5.06563,"17.0":0.42099,"17.1":2.13699,"17.2":4.63091,"17.3":14.03917,"17.4":3.42285},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00966,"5.0-5.1":0.00483,"6.0-6.1":0.02897,"7.0-7.1":0.0338,"8.1-8.4":0.00966,"9.0-9.2":0.01931,"9.3":0.1207,"10.0-10.2":0.01931,"10.3":0.20277,"11.0-11.2":0.14484,"11.3-11.4":0.04828,"12.0-12.1":0.04345,"12.2-12.5":0.83523,"13.0-13.1":0.01448,"13.2":0.14484,"13.3":0.04345,"13.4-13.7":0.16415,"14.0-14.4":0.31381,"14.5-14.8":0.49245,"15.0-15.1":0.21243,"15.2-15.3":0.25105,"15.4":0.2945,"15.5":0.37658,"15.6-15.8":3.15262,"16.0":0.76764,"16.1":1.58838,"16.2":0.76764,"16.3":1.3663,"16.4":0.28967,"16.5":0.61314,"16.6-16.7":4.64444,"17.0":0.60349,"17.1":1.20698,"17.2":1.94564,"17.3":23.9464,"17.4":3.51471,"17.5":0},P:{"21":0.03175,"23":0.20108,"24":0.20108,_:"4 20 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.3187,"3":0,"4":0.00003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00019,"4.4":0,"4.4.3-4.4.4":0.00077},K:{"0":0.00542,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":5.14754},R:{_:"0"},M:{"0":0.02712},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"78":0.00466,"89":0.00466,"108":0.00466,"112":0.00466,"115":0.04195,"119":0.00932,"121":0.00466,"123":0.01398,"124":0.75508,"125":0.20508,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 113 114 116 117 118 120 122 126 127 128 3.5 3.6"},D:{"85":0.00466,"86":0.03263,"100":0.00466,"103":0.05127,"108":0.01398,"109":0.49407,"111":0.02797,"113":0.00466,"116":0.00466,"118":0.00466,"120":0.06992,"121":0.20042,"122":0.40551,"123":3.63092,"124":0.50805,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 104 105 106 107 110 112 114 115 117 119 125 126 127"},F:{"106":0.02797,"107":0.05127,"108":0.04661,"109":0.06525,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"122":0.05127,"123":1.1233,"124":0.73644,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.4","12.1":0.00932,"13.1":0.01398,"14.1":0.06525,"15.1":0.23771,"15.2-15.3":0.11186,"15.5":0.03263,"15.6":1.66398,"16.0":0.18178,"16.1":0.3589,"16.2":0.46144,"16.3":1.27245,"16.4":1.19788,"16.5":1.10932,"16.6":4.86142,"17.0":0.23771,"17.1":1.48686,"17.2":2.57287,"17.3":4.31143,"17.4":16.9474,"17.5":0.06525},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00972,"5.0-5.1":0.00972,"6.0-6.1":0.0243,"7.0-7.1":0.03887,"8.1-8.4":0.00972,"9.0-9.2":0.0243,"9.3":0.12148,"10.0-10.2":0.0243,"10.3":0.19436,"11.0-11.2":0.16521,"11.3-11.4":0.04859,"12.0-12.1":0.03401,"12.2-12.5":0.79202,"13.0-13.1":0.01458,"13.2":0.16035,"13.3":0.03887,"13.4-13.7":0.15063,"14.0-14.4":0.2964,"14.5-14.8":0.45189,"15.0-15.1":0.20894,"15.2-15.3":0.23809,"15.4":0.27211,"15.5":0.34499,"15.6-15.8":3.01259,"16.0":0.70456,"16.1":1.46743,"16.2":0.70456,"16.3":1.24391,"16.4":0.25753,"16.5":0.53935,"16.6-16.7":4.26136,"17.0":0.5102,"17.1":0.94265,"17.2":1.25363,"17.3":9.14468,"17.4":20.64113,"17.5":0.1895},P:{"23":0.04202,"24":0.26264,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.18078,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00045},A:{"11":0.00466,_:"6 7 8 9 10 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":4.23637},R:{_:"0"},M:{"0":0.06941}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js index 0d6ed5e88fd79a..121af9d90a19f8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PN.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 3.5 3.6"},D:{"121":3.9996,"122":32.0012,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 123 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.8":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6-16.7":0,"17.0":0,"17.1":0,"17.2":0,"17.3":0,"17.4":0,"17.5":0},P:{_:"4 20 21 22 23 24 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":44.0016},R:{_:"0"},M:{_:"0"},Q:{"14.9":19.9976},O:{_:"0"},H:{"0":0}}; +module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 3.5 3.6"},D:{_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5"},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0,"15.2-15.3":0,"15.4":0,"15.5":0,"15.6-15.8":0,"16.0":0,"16.1":0,"16.2":0,"16.3":0,"16.4":0,"16.5":0,"16.6-16.7":0,"17.0":0,"17.1":0,"17.2":0,"17.3":0,"17.4":0,"17.5":0},P:{"24":20,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":80},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js index 05b003b567f5ab..eb463bdfe63d6c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PR.js @@ -1 +1 @@ -module.exports={C:{"52":0.01109,"73":0.06285,"78":0.00739,"108":0.01479,"115":0.09982,"120":0.07394,"121":0.01479,"122":0.05546,"123":1.06104,"124":0.38819,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 119 125 126 127 3.5","3.6":0.0037},D:{"39":0.0037,"41":0.0037,"43":0.0037,"44":0.0037,"45":0.0037,"46":0.0037,"47":0.0037,"49":0.00739,"51":0.0037,"65":0.01849,"70":0.0037,"76":0.0037,"79":0.01109,"84":0.0037,"85":0.0037,"87":0.01849,"88":0.0037,"89":0.00739,"91":0.0037,"92":0.0037,"93":0.0037,"94":0.0037,"95":0.0037,"98":0.0037,"99":0.00739,"101":0.01109,"102":0.00739,"103":0.14788,"104":0.0037,"105":0.02958,"106":0.00739,"107":0.01849,"108":0.03327,"109":1.50838,"110":0.0037,"111":0.00739,"112":0.0037,"113":0.07394,"114":0.01479,"115":0.01109,"116":0.08133,"117":0.02958,"118":0.02588,"119":0.11091,"120":0.34382,"121":1.2348,"122":11.85258,"123":3.28294,"124":0.01479,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 42 48 50 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 75 77 78 80 81 83 86 90 96 97 100 125 126"},F:{"28":0.00739,"73":0.0037,"93":0.01479,"95":0.01109,"106":0.01479,"107":1.03146,"108":0.1257,"109":0.0037,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.0037,"15":0.00739,"17":0.01479,"18":0.0037,"89":0.00739,"92":0.00739,"98":0.0037,"107":0.01849,"109":0.03327,"110":0.0037,"112":0.0037,"113":0.0037,"114":0.01109,"115":0.04067,"116":0.01479,"117":0.00739,"118":0.00739,"119":0.08873,"120":0.05915,"121":0.24031,"122":6.51781,"123":0.43625,_:"12 13 16 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 99 100 101 102 103 104 105 106 108 111"},E:{"9":0.00739,"13":0.01479,"14":0.02958,"15":0.00739,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.01849,"13.1":0.04436,"14.1":0.18485,"15.1":0.03697,"15.2-15.3":0.02218,"15.4":0.03327,"15.5":0.07764,"15.6":0.31425,"16.0":0.02218,"16.1":0.08873,"16.2":0.08133,"16.3":0.23291,"16.4":0.05176,"16.5":0.13679,"16.6":0.56194,"17.0":0.11461,"17.1":0.2477,"17.2":0.51019,"17.3":1.70432,"17.4":0.42146},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00553,"5.0-5.1":0.00276,"6.0-6.1":0.01659,"7.0-7.1":0.01935,"8.1-8.4":0.00553,"9.0-9.2":0.01106,"9.3":0.06911,"10.0-10.2":0.01106,"10.3":0.1161,"11.0-11.2":0.08293,"11.3-11.4":0.02764,"12.0-12.1":0.02488,"12.2-12.5":0.47822,"13.0-13.1":0.00829,"13.2":0.08293,"13.3":0.02488,"13.4-13.7":0.09399,"14.0-14.4":0.17968,"14.5-14.8":0.28196,"15.0-15.1":0.12163,"15.2-15.3":0.14374,"15.4":0.16862,"15.5":0.21562,"15.6-15.8":1.80509,"16.0":0.43952,"16.1":0.90946,"16.2":0.43952,"16.3":0.7823,"16.4":0.16586,"16.5":0.35107,"16.6-16.7":2.65926,"17.0":0.34554,"17.1":0.69108,"17.2":1.11401,"17.3":13.71095,"17.4":2.01241,"17.5":0},P:{"4":0.22147,"20":0.03164,"21":0.07382,"22":0.08437,"23":0.91753,"24":1.90888,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0","6.2-6.4":0.01055,"7.2-7.4":0.01055,"11.1-11.2":0.01055,"13.0":0.01055,"15.0":0.01055,"16.0":0.01055,"17.0":0.01055,"18.0":0.02109,"19.0":0.02109},I:{"0":0.06278,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.22694,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00387,"8":0.02711,"9":0.00775,"10":0.00775,"11":0.03098,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":33.09141},R:{_:"0"},M:{"0":0.34672},Q:{_:"14.9"},O:{"0":0.02522},H:{"0":0}}; +module.exports={C:{"40":0.00372,"52":0.00743,"73":0.04089,"78":0.01115,"105":0.00372,"108":0.00743,"111":0.00372,"115":0.10036,"119":0.00372,"120":0.07062,"121":0.00743,"122":0.02602,"123":0.0446,"124":1.02589,"125":0.40887,"126":0.00372,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 109 110 112 113 114 116 117 118 127 128 3.5","3.6":0.00372},D:{"38":0.00372,"42":0.00372,"43":0.00372,"44":0.00372,"45":0.00372,"46":0.00372,"47":0.00372,"49":0.02974,"51":0.00372,"56":0.00372,"65":0.0223,"70":0.00372,"76":0.00372,"79":0.01487,"84":0.00372,"85":0.00372,"87":0.01859,"89":0.00372,"90":0.00743,"91":0.00372,"93":0.00372,"94":0.00372,"95":0.00372,"98":0.00372,"99":0.00372,"101":0.01859,"102":0.00372,"103":0.1301,"104":0.00743,"105":0.01115,"106":0.01859,"107":0.00372,"108":0.01859,"109":1.18201,"110":0.01115,"111":0.01859,"112":0.01115,"113":0.08921,"114":0.00743,"115":0.01487,"116":0.09293,"117":0.01115,"118":0.01487,"119":0.07806,"120":0.14125,"121":0.22674,"122":1.08908,"123":10.93541,"124":4.53846,"125":0.01487,"126":0.00743,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 48 50 52 53 54 55 57 58 59 60 61 62 63 64 66 67 68 69 71 72 73 74 75 77 78 80 81 83 86 88 92 96 97 100 127"},F:{"28":0.00743,"73":0.00372,"93":0.00372,"95":0.01115,"106":0.01859,"107":0.95899,"108":0.30851,"109":0.40144,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00372,"17":0.01859,"18":0.00372,"84":0.00372,"89":0.00372,"92":0.00743,"97":0.00743,"100":0.00372,"107":0.02974,"108":0.00743,"109":0.03345,"111":0.00372,"113":0.00372,"114":0.01487,"115":0.01115,"116":0.01115,"117":0.00372,"118":0.00743,"119":0.06319,"120":0.04089,"121":0.05204,"122":0.32338,"123":4.9845,"124":2.1856,_:"13 14 15 16 79 80 81 83 85 86 87 88 90 91 93 94 95 96 98 99 101 102 103 104 105 106 110 112"},E:{"9":0.00743,"13":0.05576,"14":0.03345,"15":0.00372,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00743,"13.1":0.04832,"14.1":0.2193,"15.1":0.02602,"15.2-15.3":0.02974,"15.4":0.02602,"15.5":0.06691,"15.6":0.31966,"16.0":0.03717,"16.1":0.08549,"16.2":0.10779,"16.3":0.18957,"16.4":0.04832,"16.5":0.13753,"16.6":0.48321,"17.0":0.07434,"17.1":0.1524,"17.2":0.29364,"17.3":0.72482,"17.4":1.94399,"17.5":0.03345},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00554,"5.0-5.1":0.00554,"6.0-6.1":0.01385,"7.0-7.1":0.02217,"8.1-8.4":0.00554,"9.0-9.2":0.01385,"9.3":0.06927,"10.0-10.2":0.01385,"10.3":0.11083,"11.0-11.2":0.09421,"11.3-11.4":0.02771,"12.0-12.1":0.0194,"12.2-12.5":0.45164,"13.0-13.1":0.00831,"13.2":0.09144,"13.3":0.02217,"13.4-13.7":0.08589,"14.0-14.4":0.16902,"14.5-14.8":0.25768,"15.0-15.1":0.11914,"15.2-15.3":0.13577,"15.4":0.15516,"15.5":0.19673,"15.6-15.8":1.7179,"16.0":0.40177,"16.1":0.83678,"16.2":0.40177,"16.3":0.70933,"16.4":0.14685,"16.5":0.30756,"16.6-16.7":2.42999,"17.0":0.29093,"17.1":0.53754,"17.2":0.71487,"17.3":5.21465,"17.4":11.77037,"17.5":0.10806},P:{"4":0.22088,"20":0.02104,"21":0.06311,"22":0.04207,"23":0.22088,"24":2.45071,"5.0-5.4":0.01052,"6.2-6.4":0.01052,"7.2-7.4":0.01052,_:"8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01052,"13.0":0.02104,"16.0":0.02104,"17.0":0.01052,"18.0":0.03155,"19.0":0.01052},I:{"0":0.06883,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},A:{"7":0.00372,"8":0.02974,"9":0.00743,"10":0.00372,"11":0.06691,_:"6 5.5"},K:{"0":0.21362,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01257},H:{"0":0},L:{"0":32.31456},R:{_:"0"},M:{"0":0.36441}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js index 686a9fbe30ae58..166d31376dd972 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PS.js @@ -1 +1 @@ -module.exports={C:{"87":0.00249,"102":0.00249,"104":0.00499,"107":0.00748,"115":0.04988,"118":0.00249,"120":0.00249,"121":0.00249,"122":0.01247,"123":0.27185,"124":0.12221,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 105 106 108 109 110 111 112 113 114 116 117 119 125 126 127 3.5 3.6"},D:{"11":0.00249,"22":0.00499,"34":0.00249,"38":0.01247,"49":0.00499,"53":0.00499,"56":0.00249,"58":0.00249,"63":0.00499,"68":0.00249,"69":0.01247,"70":0.00249,"71":0.00249,"72":0.00249,"73":0.00249,"75":0.00249,"76":0.00249,"77":0.03242,"78":0.00499,"79":0.02494,"80":0.00249,"81":0.00499,"83":0.01247,"84":0.00499,"85":0.00249,"86":0.00499,"87":0.0399,"88":0.00249,"89":0.00499,"90":0.01247,"91":0.00249,"92":0.00499,"93":0.00249,"94":0.00249,"96":0.00249,"97":0.00249,"98":0.01995,"99":0.00998,"100":0.02245,"101":0.00249,"102":0.00748,"103":0.0399,"104":0.00998,"105":0.00499,"106":0.01247,"107":0.02494,"108":0.02494,"109":1.31933,"110":0.00499,"111":0.00748,"112":0.03242,"113":0.00748,"114":0.01496,"115":0.00748,"116":0.03492,"117":0.04739,"118":0.02494,"119":0.06484,"120":0.13218,"121":0.5836,"122":11.45993,"123":5.29227,"124":0.00499,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 64 65 66 67 74 95 125 126"},F:{"28":0.00249,"46":0.00748,"79":0.01247,"95":0.00499,"104":0.00748,"106":0.00748,"107":0.5412,"108":0.11223,"109":0.00249,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00499,"18":0.00499,"84":0.00249,"89":0.00499,"92":0.01247,"107":0.00748,"109":0.01995,"113":0.00499,"114":0.00249,"117":0.00499,"118":0.00249,"119":0.00748,"120":0.02245,"121":0.10475,"122":1.68345,"123":0.16211,_:"12 13 14 15 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112 115 116"},E:{"14":0.00249,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00499,"13.1":0.00748,"14.1":0.01746,"15.1":0.00249,"15.2-15.3":0.00249,"15.4":0.00249,"15.5":0.00499,"15.6":0.0399,"16.0":0.00499,"16.1":0.01247,"16.2":0.02245,"16.3":0.0399,"16.4":0.00499,"16.5":0.02993,"16.6":0.11472,"17.0":0.01746,"17.1":0.02494,"17.2":0.09228,"17.3":0.35415,"17.4":0.07482},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00339,"5.0-5.1":0.0017,"6.0-6.1":0.01018,"7.0-7.1":0.01187,"8.1-8.4":0.00339,"9.0-9.2":0.00679,"9.3":0.04241,"10.0-10.2":0.00679,"10.3":0.07125,"11.0-11.2":0.05089,"11.3-11.4":0.01696,"12.0-12.1":0.01527,"12.2-12.5":0.29347,"13.0-13.1":0.00509,"13.2":0.05089,"13.3":0.01527,"13.4-13.7":0.05768,"14.0-14.4":0.11026,"14.5-14.8":0.17303,"15.0-15.1":0.07464,"15.2-15.3":0.08821,"15.4":0.10348,"15.5":0.13232,"15.6-15.8":1.10772,"16.0":0.26972,"16.1":0.5581,"16.2":0.26972,"16.3":0.48007,"16.4":0.10178,"16.5":0.21544,"16.6-16.7":1.63189,"17.0":0.21204,"17.1":0.42409,"17.2":0.68363,"17.3":8.41393,"17.4":1.23495,"17.5":0},P:{"4":0.05276,"20":0.04221,"21":0.10552,"22":0.306,"23":1.55108,"24":0.82302,_:"5.0-5.4 6.2-6.4 8.2 9.2","7.2-7.4":0.03165,"10.1":0.01055,"11.1-11.2":0.04221,"12.0":0.01055,"13.0":0.0211,"14.0":0.03165,"15.0":0.08441,"16.0":0.04221,"17.0":0.03165,"18.0":0.03165,"19.0":0.07386},I:{"0":0.10465,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},K:{"0":0.46537,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0399,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00751,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":55.19512},R:{_:"0"},M:{"0":0.10508},Q:{_:"14.9"},O:{"0":0.07506},H:{"0":0}}; +module.exports={C:{"52":0.00203,"88":0.00203,"102":0.00203,"103":0.00811,"104":0.00406,"105":0.00203,"108":0.00203,"109":0.00203,"115":0.04867,"116":0.00203,"118":0.00406,"121":0.00406,"122":0.00406,"123":0.0142,"124":0.19469,"125":0.13993,"126":0.00203,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 106 107 110 111 112 113 114 117 119 120 127 128 3.5 3.6"},D:{"34":0.00203,"38":0.01014,"39":0.00203,"41":0.00203,"49":0.00203,"50":0.00203,"56":0.00406,"57":0.00203,"58":0.00203,"61":0.00203,"63":0.00203,"66":0.00203,"68":0.00203,"69":0.01014,"70":0.00203,"71":0.00203,"72":0.00406,"73":0.01622,"75":0.00406,"76":0.00203,"77":0.01622,"78":0.01014,"79":0.02839,"80":0.00203,"81":0.00203,"83":0.02028,"84":0.00203,"85":0.00203,"86":0.00203,"87":0.03245,"88":0.00406,"89":0.00811,"90":0.00811,"91":0.00203,"92":0.00203,"94":0.00608,"95":0.00203,"96":0.00203,"97":0.00203,"98":0.02434,"99":0.00406,"100":0.02028,"101":0.00203,"102":0.01217,"103":0.01622,"104":0.01014,"105":0.00203,"106":0.00406,"107":0.01014,"108":0.02231,"109":0.99778,"110":0.00811,"111":0.01825,"112":0.0649,"113":0.00203,"114":0.00811,"115":0.00811,"116":0.02839,"117":0.06287,"118":0.0142,"119":0.07301,"120":0.06895,"121":0.09532,"122":0.30217,"123":8.98404,"124":4.62587,"125":0.01825,"126":0.00203,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 42 43 44 45 46 47 48 51 52 53 54 55 59 60 62 64 65 67 74 93 127"},F:{"36":0.00203,"46":0.01217,"79":0.00203,"95":0.00608,"102":0.00203,"107":0.26567,"108":0.14804,"109":0.10951,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00608,"84":0.00203,"92":0.01014,"100":0.00203,"109":0.02434,"113":0.00203,"114":0.00203,"115":0.00203,"117":0.01217,"118":0.00203,"119":0.00406,"120":0.00608,"121":0.01622,"122":0.07909,"123":0.95113,"124":0.50903,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 116"},E:{"14":0.00406,"15":0.00203,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1","5.1":0.00203,"13.1":0.00406,"14.1":0.01217,"15.2-15.3":0.00203,"15.4":0.00406,"15.5":0.00203,"15.6":0.03042,"16.0":0.00203,"16.1":0.02231,"16.2":0.01825,"16.3":0.02231,"16.4":0.00406,"16.5":0.01217,"16.6":0.12574,"17.0":0.01014,"17.1":0.02028,"17.2":0.02636,"17.3":0.09532,"17.4":0.27986,"17.5":0.00203},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00285,"5.0-5.1":0.00285,"6.0-6.1":0.00714,"7.0-7.1":0.01142,"8.1-8.4":0.00285,"9.0-9.2":0.00714,"9.3":0.03568,"10.0-10.2":0.00714,"10.3":0.05709,"11.0-11.2":0.04852,"11.3-11.4":0.01427,"12.0-12.1":0.00999,"12.2-12.5":0.23263,"13.0-13.1":0.00428,"13.2":0.0471,"13.3":0.01142,"13.4-13.7":0.04424,"14.0-14.4":0.08706,"14.5-14.8":0.13273,"15.0-15.1":0.06137,"15.2-15.3":0.06993,"15.4":0.07992,"15.5":0.10133,"15.6-15.8":0.88484,"16.0":0.20694,"16.1":0.431,"16.2":0.20694,"16.3":0.36535,"16.4":0.07564,"16.5":0.15842,"16.6-16.7":1.25163,"17.0":0.14985,"17.1":0.27687,"17.2":0.36821,"17.3":2.68593,"17.4":6.06261,"17.5":0.05566},P:{"4":0.06133,"20":0.07156,"21":0.13289,"22":0.38845,"23":0.59289,"24":2.47379,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.06133,"9.2":0.02044,"11.1-11.2":0.05111,"12.0":0.01022,"13.0":0.05111,"14.0":0.05111,"15.0":0.05111,"16.0":0.06133,"17.0":0.06133,"18.0":0.04089,"19.0":0.10222},I:{"0":0.04764,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"11":0.01622,_:"6 7 8 9 10 5.5"},K:{"0":0.885,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.09568},H:{"0":0},L:{"0":60.87723},R:{_:"0"},M:{"0":0.12757}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js index 34be146c4dd4a6..0a9ff9795d68d8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PT.js @@ -1 +1 @@ -module.exports={C:{"4":0.00552,"52":0.05517,"55":0.00552,"73":0.01103,"78":0.01655,"82":0.00552,"83":0.02207,"88":0.00552,"91":0.00552,"102":0.00552,"103":0.01103,"104":0.00552,"106":0.00552,"112":0.00552,"113":0.00552,"115":0.25378,"117":0.11586,"118":0.00552,"119":0.00552,"120":0.01103,"121":0.01655,"122":0.07724,"123":1.622,"124":0.76686,"125":0.00552,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 79 80 81 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 105 107 108 109 110 111 114 116 126 127 3.5 3.6"},D:{"38":0.00552,"43":0.00552,"45":0.01655,"49":0.01655,"62":0.00552,"63":0.01103,"78":0.01655,"79":0.03862,"80":0.01103,"81":0.00552,"83":0.00552,"85":0.00552,"86":0.00552,"87":0.06069,"88":0.02759,"89":0.02207,"90":0.00552,"91":0.07172,"92":0.00552,"93":0.01103,"94":0.01103,"95":0.00552,"96":0.00552,"97":0.00552,"98":0.00552,"99":0.01103,"100":0.01103,"101":0.01103,"102":0.01655,"103":0.0662,"104":0.02207,"105":0.01103,"106":0.02759,"107":0.0331,"108":0.0331,"109":1.43442,"110":0.01655,"111":0.02207,"112":0.02207,"113":0.01655,"114":0.03862,"115":0.05517,"116":0.14344,"117":0.03862,"118":0.03862,"119":0.10482,"120":0.3255,"121":1.60545,"122":23.26519,"123":7.26589,"124":0.00552,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 64 65 66 67 68 69 70 71 72 73 74 75 76 77 84 125 126"},F:{"28":0.00552,"46":0.00552,"95":0.02759,"102":0.00552,"106":0.04414,"107":4.27568,"108":0.57377,"109":0.00552,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00552,"89":0.00552,"92":0.01103,"103":0.00552,"106":0.00552,"107":0.01103,"108":0.00552,"109":0.09379,"110":0.01103,"111":0.00552,"112":0.00552,"113":0.00552,"114":0.01103,"115":0.01103,"116":0.00552,"117":0.01103,"118":0.00552,"119":0.02759,"120":0.0662,"121":0.34757,"122":6.48248,"123":0.47998,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 100 101 102 104 105"},E:{"12":0.00552,"13":0.00552,"14":0.02759,"15":0.00552,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00552,"12.1":0.01103,"13.1":0.08827,"14.1":0.13241,"15.1":0.01655,"15.2-15.3":0.01103,"15.4":0.0331,"15.5":0.0331,"15.6":0.20965,"16.0":0.01655,"16.1":0.05517,"16.2":0.03862,"16.3":0.10482,"16.4":0.04414,"16.5":0.08827,"16.6":0.2924,"17.0":0.08276,"17.1":0.14896,"17.2":0.39171,"17.3":0.88272,"17.4":0.23723},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00222,"5.0-5.1":0.00111,"6.0-6.1":0.00666,"7.0-7.1":0.00777,"8.1-8.4":0.00222,"9.0-9.2":0.00444,"9.3":0.02776,"10.0-10.2":0.00444,"10.3":0.04663,"11.0-11.2":0.03331,"11.3-11.4":0.0111,"12.0-12.1":0.00999,"12.2-12.5":0.19207,"13.0-13.1":0.00333,"13.2":0.03331,"13.3":0.00999,"13.4-13.7":0.03775,"14.0-14.4":0.07217,"14.5-14.8":0.11324,"15.0-15.1":0.04885,"15.2-15.3":0.05773,"15.4":0.06772,"15.5":0.0866,"15.6-15.8":0.72499,"16.0":0.17653,"16.1":0.36527,"16.2":0.17653,"16.3":0.3142,"16.4":0.06661,"16.5":0.141,"16.6-16.7":1.06805,"17.0":0.13878,"17.1":0.27756,"17.2":0.44743,"17.3":5.50678,"17.4":0.80825,"17.5":0},P:{"4":0.07296,"20":0.01042,"21":0.03127,"22":0.02085,"23":0.83388,"24":0.91727,"5.0-5.4":0.01042,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","7.2-7.4":0.01042,"13.0":0.03127,"16.0":0.01042,"17.0":0.01042,"18.0":0.01042,"19.0":0.02085},I:{"0":0.08485,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},K:{"0":0.31836,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00631,"11":0.08197,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":31.7491},R:{_:"0"},M:{"0":0.21523},Q:{_:"14.9"},O:{"0":0.08071},H:{"0":0}}; +module.exports={C:{"4":0.00555,"48":0.00555,"52":0.04991,"78":0.01664,"83":0.01664,"88":0.00555,"91":0.01109,"102":0.00555,"103":0.01109,"104":0.00555,"112":0.00555,"113":0.00555,"115":0.22739,"117":0.07764,"118":0.00555,"120":0.01109,"121":0.01109,"122":0.01109,"123":0.10537,"124":1.869,"125":0.82635,"126":0.00555,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 105 106 107 108 109 110 111 114 116 119 127 128 3.5 3.6"},D:{"38":0.00555,"43":0.00555,"49":0.01664,"53":0.00555,"62":0.00555,"63":0.01109,"76":0.00555,"79":0.03328,"80":0.00555,"81":0.00555,"87":0.09983,"88":0.01664,"89":0.00555,"90":0.00555,"91":0.02218,"92":0.00555,"93":0.01664,"94":0.02218,"95":0.00555,"96":0.00555,"97":0.00555,"98":0.00555,"99":0.01109,"100":0.01109,"101":0.01109,"102":0.01109,"103":0.06101,"104":0.02218,"105":0.01109,"106":0.02218,"107":0.01109,"108":0.02773,"109":1.31995,"110":0.01109,"111":0.01109,"112":0.01664,"113":0.01109,"114":0.03328,"115":0.03328,"116":0.18856,"117":0.03882,"118":0.02773,"119":0.06101,"120":0.17193,"121":0.24957,"122":1.37541,"123":21.64049,"124":9.66668,"125":0.02218,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 64 65 66 67 68 69 70 71 72 73 74 75 77 78 83 84 85 86 126 127"},F:{"28":0.00555,"46":0.00555,"85":0.00555,"95":0.02773,"102":0.00555,"106":0.00555,"107":3.99867,"108":0.74316,"109":0.34385,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00555,"91":0.00555,"92":0.00555,"103":0.00555,"107":0.00555,"108":0.00555,"109":0.08319,"110":0.00555,"111":0.00555,"112":0.00555,"113":0.00555,"114":0.00555,"115":0.00555,"116":0.00555,"117":0.00555,"118":0.00555,"119":0.01109,"120":0.03328,"121":0.03882,"122":0.35494,"123":4.65864,"124":2.17958,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 93 94 95 96 97 98 99 100 101 102 104 105 106"},E:{"14":0.01664,"15":0.00555,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00555,"12.1":0.00555,"13.1":0.09983,"14.1":0.12201,"15.1":0.00555,"15.2-15.3":0.01109,"15.4":0.02773,"15.5":0.03328,"15.6":0.19966,"16.0":0.02773,"16.1":0.04991,"16.2":0.04991,"16.3":0.10537,"16.4":0.04437,"16.5":0.06655,"16.6":0.2773,"17.0":0.06101,"17.1":0.11647,"17.2":0.2052,"17.3":0.33831,"17.4":1.07038,"17.5":0.01109},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00225,"5.0-5.1":0.00225,"6.0-6.1":0.00561,"7.0-7.1":0.00898,"8.1-8.4":0.00225,"9.0-9.2":0.00561,"9.3":0.02807,"10.0-10.2":0.00561,"10.3":0.0449,"11.0-11.2":0.03817,"11.3-11.4":0.01123,"12.0-12.1":0.00786,"12.2-12.5":0.18298,"13.0-13.1":0.00337,"13.2":0.03705,"13.3":0.00898,"13.4-13.7":0.0348,"14.0-14.4":0.06848,"14.5-14.8":0.1044,"15.0-15.1":0.04827,"15.2-15.3":0.05501,"15.4":0.06287,"15.5":0.0797,"15.6-15.8":0.69601,"16.0":0.16278,"16.1":0.33903,"16.2":0.16278,"16.3":0.28739,"16.4":0.0595,"16.5":0.12461,"16.6-16.7":0.98452,"17.0":0.11787,"17.1":0.21778,"17.2":0.28963,"17.3":2.11274,"17.4":4.76881,"17.5":0.04378},P:{"4":0.04137,"20":0.01034,"21":0.03103,"22":0.04137,"23":0.11378,"24":1.52045,"5.0-5.4":0.01034,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.01034,"13.0":0.01034,"16.0":0.01034,"17.0":0.01034,"18.0":0.01034,"19.0":0.01034},I:{"0":0.07539,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},A:{"8":0.00594,"11":0.07725,_:"6 7 9 10 5.5"},K:{"0":0.37851,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.11133},H:{"0":0},L:{"0":30.77606},R:{_:"0"},M:{"0":0.22265}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js index 3367f97992d665..418eac935e44a5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PW.js @@ -1 +1 @@ -module.exports={C:{"113":0.05065,"115":0.0398,"122":0.01085,"123":2.51089,"124":0.77063,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"56":0.01085,"76":0.01085,"79":0.11216,"83":0.01085,"86":0.07236,"87":0.06151,"95":0.2822,"96":0.02171,"103":0.02894,"109":1.35675,"112":0.02171,"114":0.01085,"115":0.01085,"116":0.20261,"119":0.16281,"120":0.25326,"121":2.50004,"122":12.26502,"123":4.42481,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 77 78 80 81 84 85 88 89 90 91 92 93 94 97 98 99 100 101 102 104 105 106 107 108 110 111 113 117 118 124 125 126"},F:{"107":1.02389,"108":1.3459,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"100":0.01085,"109":0.0796,"112":0.1013,"121":0.02894,"122":3.10786,"123":0.13025,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 114 115 116 117 118 119 120"},E:{"11":0.01085,"14":0.07236,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.5 17.1 17.5","14.1":1.46891,"15.5":0.01085,"15.6":0.20261,"16.1":0.02171,"16.2":0.07236,"16.3":0.1013,"16.4":0.02171,"16.6":0.31477,"17.0":0.02171,"17.2":0.17366,"17.3":1.24459,"17.4":0.24241},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0045,"5.0-5.1":0.00225,"6.0-6.1":0.0135,"7.0-7.1":0.01575,"8.1-8.4":0.0045,"9.0-9.2":0.009,"9.3":0.05624,"10.0-10.2":0.009,"10.3":0.09449,"11.0-11.2":0.06749,"11.3-11.4":0.0225,"12.0-12.1":0.02025,"12.2-12.5":0.38919,"13.0-13.1":0.00675,"13.2":0.06749,"13.3":0.02025,"13.4-13.7":0.07649,"14.0-14.4":0.14623,"14.5-14.8":0.22946,"15.0-15.1":0.09898,"15.2-15.3":0.11698,"15.4":0.13723,"15.5":0.17547,"15.6-15.8":1.46902,"16.0":0.3577,"16.1":0.74014,"16.2":0.3577,"16.3":0.63665,"16.4":0.13498,"16.5":0.28571,"16.6-16.7":2.16417,"17.0":0.28121,"17.1":0.56241,"17.2":0.90661,"17.3":11.15829,"17.4":1.63775,"17.5":0},P:{"4":0.1062,"20":0.01062,"21":0.06372,"22":0.01062,"23":1.21071,"24":0.87086,_:"5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 13.0 14.0 15.0 16.0 17.0","7.2-7.4":0.42481,"9.2":0.01062,"12.0":0.01062,"18.0":0.01062,"19.0":0.02124},I:{"0":0.03178,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.1404,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":38.60603},R:{_:"0"},M:{"0":0.07658},Q:{_:"14.9"},O:{"0":0.71478},H:{"0":0}}; +module.exports={C:{"115":0.02378,"121":0.01586,"124":1.65695,"125":0.15856,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 122 123 126 127 128 3.5 3.6"},D:{"52":0.02378,"74":0.06739,"79":0.03171,"86":0.12685,"95":0.00793,"98":0.06739,"102":0.0436,"103":0.02378,"106":0.47964,"109":0.82451,"111":0.00793,"116":0.06739,"118":0.0436,"120":0.11892,"121":0.15856,"122":0.54703,"123":21.71876,"124":5.13734,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 75 76 77 78 80 81 83 84 85 87 88 89 90 91 92 93 94 96 97 99 100 101 104 105 107 108 110 112 113 114 115 117 119 125 126 127"},F:{"107":0.0436,"108":0.89983,"109":0.32108,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.03171,"112":0.07532,"122":0.11099,"123":1.3874,"124":0.78091,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 115 116 117 118 119 120 121"},E:{"11":0.00793,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.4","14.1":0.4955,"15.5":0.07532,"15.6":0.08324,"16.0":0.16649,"16.1":0.00793,"16.2":0.02378,"16.3":0.05946,"16.5":0.07532,"16.6":0.15856,"17.0":0.03171,"17.1":0.02378,"17.2":0.16649,"17.3":0.26162,"17.4":0.83244,"17.5":0.92361},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00361,"5.0-5.1":0.00361,"6.0-6.1":0.00902,"7.0-7.1":0.01443,"8.1-8.4":0.00361,"9.0-9.2":0.00902,"9.3":0.04509,"10.0-10.2":0.00902,"10.3":0.07214,"11.0-11.2":0.06132,"11.3-11.4":0.01804,"12.0-12.1":0.01262,"12.2-12.5":0.29398,"13.0-13.1":0.00541,"13.2":0.05952,"13.3":0.01443,"13.4-13.7":0.05591,"14.0-14.4":0.11002,"14.5-14.8":0.16773,"15.0-15.1":0.07755,"15.2-15.3":0.08837,"15.4":0.101,"15.5":0.12805,"15.6-15.8":1.11821,"16.0":0.26152,"16.1":0.54467,"16.2":0.26152,"16.3":0.46171,"16.4":0.09559,"16.5":0.20019,"16.6-16.7":1.58172,"17.0":0.18937,"17.1":0.34989,"17.2":0.46532,"17.3":3.39429,"17.4":7.66151,"17.5":0.07034},P:{"4":0.03139,"21":0.01046,"22":0.02093,"23":0.08371,"24":1.97763,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 17.0","7.2-7.4":0.14649,"13.0":0.2302,"14.0":0.35576,"16.0":0.01046,"18.0":0.03139,"19.0":0.19881},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{"11":0.03171,_:"6 7 8 9 10 5.5"},K:{"0":0.26558,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.2354},H:{"0":0},L:{"0":39.29933},R:{_:"0"},M:{"0":0.21126}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js index 0c1ef09e18e322..6982d9ae8c62c7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/PY.js @@ -1 +1 @@ -module.exports={C:{"4":0.01955,"17":0.00279,"30":0.00279,"35":0.01397,"38":0.00279,"39":0.00279,"40":0.00279,"43":0.00279,"45":0.00279,"48":0.00279,"50":0.00279,"52":0.07262,"64":0.00279,"65":0.00279,"69":0.00279,"73":0.06424,"78":0.00279,"88":0.01117,"99":0.00279,"102":0.00279,"103":0.01117,"111":0.00279,"113":0.00279,"114":0.00279,"115":0.30164,"116":0.00279,"117":0.00279,"118":0.00279,"120":0.00279,"121":0.01397,"122":0.01955,"123":0.75132,"124":0.24858,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 36 37 41 42 44 46 47 49 51 53 54 55 56 57 58 59 60 61 62 63 66 67 68 70 71 72 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 101 104 105 106 107 108 109 110 112 119 125 126 127 3.5","3.6":0.00279},D:{"11":0.00559,"31":0.00279,"38":0.00279,"39":0.00279,"40":0.00279,"41":0.00279,"42":0.00279,"43":0.00559,"44":0.00559,"45":0.00559,"46":0.00279,"47":0.01397,"49":0.01397,"51":0.00279,"55":0.00559,"63":0.00279,"64":0.00838,"65":0.01676,"66":0.00279,"69":0.00838,"70":0.00279,"73":0.01397,"75":0.00559,"76":0.00559,"77":0.00559,"79":0.05307,"80":0.00279,"81":0.00279,"83":0.03352,"84":0.00279,"85":0.00279,"86":0.00559,"87":0.62005,"88":0.01117,"89":0.02514,"90":0.00279,"91":0.37426,"92":0.00279,"93":0.00279,"94":0.00559,"95":0.00279,"96":0.00279,"97":0.00279,"98":0.00279,"99":0.00838,"100":0.00838,"101":0.00559,"102":0.01955,"103":0.01955,"104":0.00838,"105":0.00559,"106":0.00559,"107":0.00838,"108":0.02514,"109":2.13665,"110":0.03631,"111":0.02234,"112":0.01676,"113":0.00559,"114":0.01676,"115":0.01676,"116":0.07541,"117":0.03352,"118":0.01397,"119":0.06983,"120":0.52788,"121":0.72339,"122":11.7697,"123":2.93824,"124":0.00279,"125":0.00279,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 48 50 52 53 54 56 57 58 59 60 61 62 67 68 71 72 74 78 126"},F:{"28":0.00279,"95":0.0391,"102":0.00838,"106":0.00559,"107":1.14234,"108":0.12569,"109":0.00279,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00279},B:{"12":0.00279,"18":0.00838,"89":0.00279,"92":0.01676,"100":0.00838,"101":0.03352,"102":0.00279,"107":0.00279,"109":0.02514,"111":0.00559,"112":0.00279,"113":0.00838,"114":0.00279,"116":0.00559,"117":0.00279,"118":0.00559,"119":0.00838,"120":0.02514,"121":0.08379,"122":2.65056,"123":0.15082,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 103 104 105 106 108 110 115"},E:{"9":0.00838,"13":0.00559,"15":0.00279,_:"0 4 5 6 7 8 10 11 12 14 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.00838,"9.1":0.00279,"11.1":0.00279,"12.1":0.00279,"13.1":0.00838,"14.1":0.00838,"15.1":0.00279,"15.2-15.3":0.00279,"15.4":0.00838,"15.5":0.00279,"15.6":0.01955,"16.0":0.00279,"16.1":0.00838,"16.2":0.00559,"16.3":0.01117,"16.4":0.00559,"16.5":0.00559,"16.6":0.17037,"17.0":0.01397,"17.1":0.02793,"17.2":0.06145,"17.3":0.17317,"17.4":0.05027},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00132,"5.0-5.1":0.00066,"6.0-6.1":0.00396,"7.0-7.1":0.00462,"8.1-8.4":0.00132,"9.0-9.2":0.00264,"9.3":0.01648,"10.0-10.2":0.00264,"10.3":0.02769,"11.0-11.2":0.01978,"11.3-11.4":0.00659,"12.0-12.1":0.00593,"12.2-12.5":0.11407,"13.0-13.1":0.00198,"13.2":0.01978,"13.3":0.00593,"13.4-13.7":0.02242,"14.0-14.4":0.04286,"14.5-14.8":0.06725,"15.0-15.1":0.02901,"15.2-15.3":0.03429,"15.4":0.04022,"15.5":0.05143,"15.6-15.8":0.43055,"16.0":0.10484,"16.1":0.21693,"16.2":0.10484,"16.3":0.1866,"16.4":0.03956,"16.5":0.08374,"16.6-16.7":0.63429,"17.0":0.08242,"17.1":0.16484,"17.2":0.26572,"17.3":3.27037,"17.4":0.48001,"17.5":0},P:{"4":0.28103,"20":0.09728,"21":0.12971,"22":0.17294,"23":2.0429,"24":1.38355,_:"5.0-5.4 6.2-6.4 8.2 10.1","7.2-7.4":0.4756,"9.2":0.01081,"11.1-11.2":0.05405,"12.0":0.02162,"13.0":0.03243,"14.0":0.04324,"15.0":0.01081,"16.0":0.06485,"17.0":0.10809,"18.0":0.04324,"19.0":0.06485},I:{"0":0.09329,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.4756,_:"10 11 12 11.1 11.5 12.1"},A:{"6":0.00279,"7":0.00279,"8":0.02234,"9":0.00559,"10":0.00559,"11":0.02793,_:"5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":60.6987},R:{_:"0"},M:{"0":0.17294},Q:{_:"14.9"},O:{"0":0.05044},H:{"0":0}}; +module.exports={C:{"4":0.25333,"35":0.00362,"40":0.00362,"52":0.0181,"60":0.00362,"73":0.04705,"84":0.00362,"88":0.01086,"93":0.00362,"103":0.01086,"106":0.00362,"107":0.00362,"113":0.00362,"115":0.38,"116":0.00362,"118":0.00362,"119":0.00724,"120":0.00362,"121":0.00362,"122":0.0181,"123":0.076,"124":0.81428,"125":0.35466,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 81 82 83 85 86 87 89 90 91 92 94 95 96 97 98 99 100 101 102 104 105 108 109 110 111 112 114 117 126 127 128 3.5","3.6":0.00362},D:{"11":0.00724,"21":0.00362,"31":0.00362,"38":0.00362,"39":0.00362,"40":0.00362,"41":0.00724,"43":0.00362,"44":0.00724,"45":0.00724,"46":0.00724,"47":0.08686,"49":0.01086,"51":0.01086,"55":0.00362,"65":0.01448,"66":0.00362,"67":0.00362,"69":0.00724,"70":0.01448,"73":0.01086,"74":0.01086,"75":0.00362,"76":0.00362,"77":0.00362,"79":0.09048,"80":0.00724,"81":0.00724,"83":0.02895,"85":0.00362,"86":0.01086,"87":0.75637,"88":0.00724,"89":0.03619,"90":0.01086,"91":0.2099,"92":0.00362,"93":0.00362,"94":0.00362,"96":0.00362,"97":0.00362,"98":0.00362,"99":0.00724,"100":0.00724,"101":0.00724,"102":0.01448,"103":0.0181,"104":0.00362,"105":0.00724,"106":0.00724,"107":0.00724,"108":0.04343,"109":2.86625,"110":0.04343,"111":0.0579,"112":0.0181,"113":0.01086,"114":0.01448,"115":0.0181,"116":0.06514,"117":0.04705,"118":0.01086,"119":0.12305,"120":0.10857,"121":0.14838,"122":1.27389,"123":13.80649,"124":6.55401,"125":0.03257,"126":0.00724,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 42 48 50 52 53 54 56 57 58 59 60 61 62 63 64 68 71 72 78 84 95 127"},F:{"31":0.00362,"95":0.02171,"102":0.00724,"106":0.00362,"107":1.18341,"108":0.2859,"109":0.14476,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00362},B:{"12":0.00362,"18":0.01086,"84":0.00362,"89":0.00362,"92":0.01448,"100":0.00362,"101":0.00724,"109":0.03981,"110":0.00362,"113":0.00362,"114":0.00362,"115":0.00362,"116":0.01448,"117":0.00362,"118":0.00362,"119":0.01086,"120":0.02171,"121":0.03981,"122":0.17733,"123":2.18588,"124":1.01694,_:"13 14 15 16 17 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 102 103 104 105 106 107 108 111 112"},E:{"9":0.01448,"13":0.00362,"14":0.00362,"15":0.00362,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.5","5.1":0.00362,"12.1":0.00362,"13.1":0.00724,"14.1":0.01448,"15.4":0.00362,"15.6":0.04343,"16.0":0.00362,"16.1":0.01086,"16.2":0.02895,"16.3":0.02895,"16.4":0.00362,"16.5":0.00362,"16.6":0.09409,"17.0":0.00724,"17.1":0.02533,"17.2":0.05429,"17.3":0.11943,"17.4":0.23885,"17.5":0.01086},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00136,"6.0-6.1":0.0034,"7.0-7.1":0.00544,"8.1-8.4":0.00136,"9.0-9.2":0.0034,"9.3":0.01699,"10.0-10.2":0.0034,"10.3":0.02718,"11.0-11.2":0.02311,"11.3-11.4":0.0068,"12.0-12.1":0.00476,"12.2-12.5":0.11077,"13.0-13.1":0.00204,"13.2":0.02243,"13.3":0.00544,"13.4-13.7":0.02107,"14.0-14.4":0.04145,"14.5-14.8":0.0632,"15.0-15.1":0.02922,"15.2-15.3":0.0333,"15.4":0.03806,"15.5":0.04825,"15.6-15.8":0.42134,"16.0":0.09854,"16.1":0.20523,"16.2":0.09854,"16.3":0.17397,"16.4":0.03602,"16.5":0.07543,"16.6-16.7":0.59599,"17.0":0.07136,"17.1":0.13184,"17.2":0.17533,"17.3":1.27896,"17.4":2.88684,"17.5":0.0265},P:{"4":0.31552,"20":0.04071,"21":0.11196,"22":0.11196,"23":0.55979,"24":2.94146,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.02036,"7.2-7.4":0.52926,"9.2":0.03053,"11.1-11.2":0.06107,"12.0":0.01018,"13.0":0.03053,"14.0":0.04071,"15.0":0.01018,"16.0":0.10178,"17.0":0.0916,"18.0":0.06107,"19.0":0.05089},I:{"0":0.12074,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.0003},A:{"6":0.00362,"7":0.00362,"8":0.03981,"9":0.00724,"10":0.00724,"11":0.03619,_:"5.5"},K:{"0":0.34457,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00638,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.07657},H:{"0":0},L:{"0":51.84275},R:{_:"0"},M:{"0":0.18505}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js index e4b568d5ee5c00..2477d055c3c2ae 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/QA.js @@ -1 +1 @@ -module.exports={C:{"5":0.33222,"34":0.00294,"50":0.00294,"52":0.00294,"68":0.00294,"75":0.00588,"88":0.00294,"96":0.02058,"103":0.00882,"105":0.00294,"107":0.00588,"111":0.00294,"115":0.06174,"119":0.00294,"121":0.00294,"122":0.02646,"123":0.40278,"124":0.22932,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 97 98 99 100 101 102 104 106 108 109 110 112 113 114 116 117 118 120 125 126 127 3.5 3.6"},D:{"38":0.00588,"41":0.00588,"49":0.00882,"58":0.03822,"66":0.00294,"68":0.00294,"69":0.00588,"73":0.00294,"74":0.00294,"75":0.00294,"76":0.01176,"78":0.00294,"79":0.03822,"80":0.00588,"83":0.00588,"84":0.00294,"85":0.00294,"86":0.0147,"87":0.02646,"88":0.00882,"89":0.00294,"90":0.00294,"91":0.00588,"93":0.00882,"94":0.02058,"95":0.00294,"96":0.0147,"97":0.00294,"98":0.00588,"99":0.0147,"100":0.00882,"101":0.01764,"102":0.01764,"103":0.1911,"104":0.01764,"105":0.00294,"106":0.0147,"107":0.01764,"108":0.02058,"109":0.85848,"110":0.02352,"111":0.00882,"112":0.00882,"113":0.00588,"114":0.02646,"115":0.02646,"116":0.1617,"117":0.0441,"118":0.0294,"119":0.1029,"120":0.24108,"121":1.1613,"122":12.35094,"123":3.5427,"124":0.00294,"125":0.00294,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 67 70 71 72 77 81 92 126"},F:{"28":0.01176,"46":0.02352,"81":0.00294,"85":0.00588,"95":0.00588,"102":0.00882,"105":0.00588,"106":0.01176,"107":0.7497,"108":0.14406,"109":0.00294,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00588,"17":0.00294,"18":0.00294,"84":0.00294,"92":0.01176,"95":0.00294,"100":0.00294,"103":0.00294,"105":0.00294,"108":0.00294,"109":0.0147,"112":0.00588,"113":0.00588,"114":0.00588,"115":0.00294,"116":0.00294,"117":0.00588,"118":0.00588,"119":0.02058,"120":0.03822,"121":0.14994,"122":2.97234,"123":0.27636,_:"12 14 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 96 97 98 99 101 102 104 106 107 110 111"},E:{"13":0.00294,"14":0.01764,"15":0.01764,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 11.1 17.5","5.1":0.00294,"10.1":0.00588,"12.1":0.00294,"13.1":0.02646,"14.1":0.05292,"15.1":0.00588,"15.2-15.3":0.01176,"15.4":0.02058,"15.5":0.03822,"15.6":0.24402,"16.0":0.01764,"16.1":0.04116,"16.2":0.03822,"16.3":0.10584,"16.4":0.02352,"16.5":0.11466,"16.6":0.31752,"17.0":0.05292,"17.1":0.11172,"17.2":0.1911,"17.3":0.8673,"17.4":0.1911},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0034,"5.0-5.1":0.0017,"6.0-6.1":0.01021,"7.0-7.1":0.01191,"8.1-8.4":0.0034,"9.0-9.2":0.0068,"9.3":0.04252,"10.0-10.2":0.0068,"10.3":0.07144,"11.0-11.2":0.05103,"11.3-11.4":0.01701,"12.0-12.1":0.01531,"12.2-12.5":0.29427,"13.0-13.1":0.0051,"13.2":0.05103,"13.3":0.01531,"13.4-13.7":0.05783,"14.0-14.4":0.11056,"14.5-14.8":0.1735,"15.0-15.1":0.07484,"15.2-15.3":0.08845,"15.4":0.10376,"15.5":0.13268,"15.6-15.8":1.11075,"16.0":0.27046,"16.1":0.55963,"16.2":0.27046,"16.3":0.48138,"16.4":0.10206,"16.5":0.21603,"16.6-16.7":1.63636,"17.0":0.21262,"17.1":0.42525,"17.2":0.6855,"17.3":8.43693,"17.4":1.23832,"17.5":0},P:{"4":0.04153,"20":0.03115,"21":0.08306,"22":0.08306,"23":0.90323,"24":0.95514,"5.0-5.4":0.01038,_:"6.2-6.4 8.2 10.1 12.0 14.0 18.0","7.2-7.4":0.05191,"9.2":0.01038,"11.1-11.2":0.01038,"13.0":0.03115,"15.0":0.01038,"16.0":0.01038,"17.0":0.01038,"19.0":0.02076},I:{"0":0.14064,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00034},K:{"0":2.13948,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0147,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":46.34655},R:{_:"0"},M:{"0":0.26126},Q:{_:"14.9"},O:{"0":3.6576},H:{"0":0}}; +module.exports={C:{"5":0.29039,"31":0.00248,"34":0.00248,"49":0.00248,"52":0.00496,"60":0.00248,"68":0.00496,"88":0.00248,"102":0.00248,"103":0.00496,"105":0.00496,"106":0.00496,"108":0.00248,"115":0.04964,"122":0.00745,"123":0.00745,"124":0.29536,"125":0.14892,_:"2 3 4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 107 109 110 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"33":0.00248,"38":0.00248,"41":0.01986,"49":0.01241,"58":0.02978,"60":0.00248,"67":0.00248,"68":0.00248,"69":0.00745,"72":0.00496,"75":0.00248,"76":0.00496,"78":0.00496,"79":0.03971,"80":0.00745,"81":0.00248,"83":0.00248,"84":0.00248,"86":0.01737,"87":0.01737,"88":0.01241,"90":0.00248,"91":0.00496,"93":0.00496,"94":0.00745,"95":0.00248,"96":0.01986,"97":0.00248,"98":0.00248,"99":0.00993,"100":0.01241,"101":0.0273,"102":0.01986,"103":0.16629,"104":0.04716,"105":0.00745,"106":0.02234,"107":0.00496,"108":0.00496,"109":0.73715,"110":0.00993,"111":0.01737,"112":0.00496,"113":0.01241,"114":0.02234,"115":0.02234,"116":0.17374,"117":0.02234,"118":0.02978,"119":0.04219,"120":0.08687,"121":0.09432,"122":0.5932,"123":9.02952,"124":4.52717,"125":0.01241,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 59 61 62 63 64 65 66 70 71 73 74 77 85 89 92 126 127"},F:{"28":0.00745,"46":0.05212,"81":0.00496,"85":0.00248,"95":0.00993,"102":0.01241,"106":0.00248,"107":0.56093,"108":0.17374,"109":0.08687,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00248,"13":0.00745,"18":0.00248,"92":0.01241,"95":0.00248,"100":0.00496,"102":0.00248,"105":0.00248,"109":0.01241,"112":0.00496,"113":0.00248,"114":0.00248,"115":0.00248,"116":0.00248,"117":0.00745,"118":0.00496,"119":0.00993,"120":0.05212,"121":0.02482,"122":0.1241,"123":1.71754,"124":1.11938,_:"14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 101 103 104 106 107 108 110 111"},E:{"13":0.00248,"14":0.02482,"15":0.00993,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00248,"12.1":0.02482,"13.1":0.02482,"14.1":0.06701,"15.1":0.00745,"15.2-15.3":0.01489,"15.4":0.01986,"15.5":0.06701,"15.6":0.14147,"16.0":0.01241,"16.1":0.03475,"16.2":0.02482,"16.3":0.08935,"16.4":0.03227,"16.5":0.09928,"16.6":0.22834,"17.0":0.04964,"17.1":0.07446,"17.2":0.07446,"17.3":0.37975,"17.4":0.80417,"17.5":0.00993},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00361,"5.0-5.1":0.00361,"6.0-6.1":0.00903,"7.0-7.1":0.01445,"8.1-8.4":0.00361,"9.0-9.2":0.00903,"9.3":0.04517,"10.0-10.2":0.00903,"10.3":0.07227,"11.0-11.2":0.06143,"11.3-11.4":0.01807,"12.0-12.1":0.01265,"12.2-12.5":0.29451,"13.0-13.1":0.00542,"13.2":0.05962,"13.3":0.01445,"13.4-13.7":0.05601,"14.0-14.4":0.11022,"14.5-14.8":0.16803,"15.0-15.1":0.07769,"15.2-15.3":0.08853,"15.4":0.10118,"15.5":0.12828,"15.6-15.8":1.12023,"16.0":0.26199,"16.1":0.54566,"16.2":0.26199,"16.3":0.46254,"16.4":0.09576,"16.5":0.20056,"16.6-16.7":1.58458,"17.0":0.18972,"17.1":0.35052,"17.2":0.46616,"17.3":3.40043,"17.4":7.67535,"17.5":0.07047},P:{"4":0.05221,"20":0.03132,"21":0.05221,"22":0.10441,"23":0.28191,"24":1.53486,"5.0-5.4":0.01044,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0","7.2-7.4":0.05221,"11.1-11.2":0.02088,"13.0":0.03132,"17.0":0.01044,"18.0":0.02088,"19.0":0.03132},I:{"0":0.04493,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"11":0.01241,_:"6 7 8 9 10 5.5"},K:{"0":2.60157,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00752},O:{"0":3.94748},H:{"0":0},L:{"0":47.58169},R:{_:"0"},M:{"0":0.19549}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js index c43472a836ec4b..e3d88b504c8cff 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RE.js @@ -1 +1 @@ -module.exports={C:{"30":0.02288,"49":0.02288,"52":0.00763,"56":0.00381,"78":0.12205,"82":0.00763,"88":0.00381,"89":0.00381,"91":0.03433,"96":0.00763,"100":0.01526,"102":0.04195,"106":0.00381,"107":0.00381,"109":0.00381,"113":0.00763,"114":0.00381,"115":0.64457,"117":0.00381,"118":0.00381,"119":0.00381,"120":0.08391,"121":0.01907,"122":0.30893,"123":2.50961,"124":1.05648,"125":0.00381,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 90 92 93 94 95 97 98 99 101 103 104 105 108 110 111 112 116 126 127 3.5 3.6"},D:{"34":0.00381,"47":0.00381,"49":0.00381,"61":0.00763,"65":0.00381,"67":0.00763,"69":0.00381,"70":0.00381,"71":0.00381,"74":0.00381,"77":0.00381,"78":0.00381,"79":0.04577,"80":0.00381,"81":0.01907,"83":0.00763,"84":0.00381,"85":0.01526,"86":0.00763,"87":0.11061,"88":0.04958,"89":0.00381,"90":0.00763,"94":0.00763,"95":0.00381,"96":0.00381,"97":0.00381,"98":0.00381,"99":0.00763,"100":0.00381,"102":0.00381,"103":0.0534,"104":0.00381,"105":0.00763,"106":0.00381,"107":0.01144,"108":0.00763,"109":0.90392,"110":0.00381,"111":0.00763,"112":0.01144,"113":0.02288,"114":0.01526,"115":0.20596,"116":0.15256,"117":0.0267,"118":0.03433,"119":0.09535,"120":0.22503,"121":0.97638,"122":12.93327,"123":3.58897,"124":0.00381,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 66 68 72 73 75 76 91 92 93 101 125 126"},F:{"46":0.01144,"69":0.00381,"89":0.00381,"95":0.00381,"100":0.00763,"106":0.01144,"107":1.39592,"108":0.18307,"109":0.00381,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00381,"92":0.00763,"96":0.08772,"100":0.00381,"107":0.00381,"108":0.00763,"109":0.06102,"110":0.02288,"115":0.02288,"116":0.00763,"117":0.00381,"118":0.03433,"119":0.01526,"120":0.0267,"121":0.22121,"122":5.12983,"123":0.36996,_:"12 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 97 98 99 101 102 103 104 105 106 111 112 113 114"},E:{"13":0.00381,"14":0.02288,"15":0.00763,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.01144,"13.1":0.2174,"14.1":0.14112,"15.1":0.03814,"15.2-15.3":0.00763,"15.4":0.0267,"15.5":0.06102,"15.6":0.29749,"16.0":0.1373,"16.1":0.06102,"16.2":0.25935,"16.3":0.13349,"16.4":0.0534,"16.5":0.14493,"16.6":0.328,"17.0":0.05721,"17.1":0.16019,"17.2":0.4081,"17.3":0.93443,"17.4":0.20596},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00371,"5.0-5.1":0.00186,"6.0-6.1":0.01114,"7.0-7.1":0.01299,"8.1-8.4":0.00371,"9.0-9.2":0.00743,"9.3":0.04641,"10.0-10.2":0.00743,"10.3":0.07797,"11.0-11.2":0.05569,"11.3-11.4":0.01856,"12.0-12.1":0.01671,"12.2-12.5":0.32116,"13.0-13.1":0.00557,"13.2":0.05569,"13.3":0.01671,"13.4-13.7":0.06312,"14.0-14.4":0.12067,"14.5-14.8":0.18935,"15.0-15.1":0.08168,"15.2-15.3":0.09653,"15.4":0.11324,"15.5":0.1448,"15.6-15.8":1.21224,"16.0":0.29517,"16.1":0.61076,"16.2":0.29517,"16.3":0.52537,"16.4":0.11139,"16.5":0.23577,"16.6-16.7":1.78587,"17.0":0.23205,"17.1":0.4641,"17.2":0.74814,"17.3":9.20784,"17.4":1.35147,"17.5":0},P:{"4":0.04214,"20":0.06321,"21":0.08428,"22":0.08428,"23":1.80153,"24":1.4328,_:"5.0-5.4 8.2 9.2 10.1 12.0 13.0","6.2-6.4":0.01054,"7.2-7.4":0.02107,"11.1-11.2":0.06321,"14.0":0.01054,"15.0":0.01054,"16.0":0.03161,"17.0":0.01054,"18.0":0.04214,"19.0":0.05268},I:{"0":0.07393,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},K:{"0":0.34023,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0267,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":40.16643},R:{_:"0"},M:{"0":0.33404},Q:{_:"14.9"},O:{"0":0.01237},H:{"0":0}}; +module.exports={C:{"30":0.00819,"34":0.00409,"49":0.01638,"52":0.00409,"78":0.1392,"79":0.00409,"82":0.01228,"88":0.00819,"89":0.00409,"91":0.02047,"92":0.13101,"99":0.00409,"100":0.06141,"102":0.07779,"103":0.05322,"105":0.00409,"107":0.00819,"109":0.00409,"112":0.00409,"113":0.00409,"115":0.76558,"117":0.00409,"118":0.00409,"119":0.00409,"120":0.09826,"121":0.01638,"122":0.16376,"123":0.18423,"124":2.65291,"125":1.26505,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 83 84 85 86 87 90 93 94 95 96 97 98 101 104 106 108 110 111 114 116 126 127 128 3.5 3.6"},D:{"34":0.00409,"38":0.00409,"39":0.00819,"61":0.00819,"62":0.00409,"65":0.00819,"70":0.00819,"71":0.00409,"72":0.00409,"74":0.00409,"76":0.00409,"78":0.01228,"79":0.04094,"80":0.00819,"81":0.01638,"83":0.00819,"84":0.00819,"85":0.03275,"86":0.01228,"87":0.15967,"88":0.03685,"89":0.00409,"90":0.00409,"91":0.00409,"94":0.01228,"97":0.00409,"99":0.00819,"100":0.00409,"102":0.00409,"103":0.12282,"104":0.00409,"105":0.08597,"106":0.00819,"107":0.00409,"108":0.00409,"109":0.93343,"110":0.00409,"111":0.00819,"112":0.00409,"113":0.02456,"114":0.01228,"115":0.12282,"116":0.18014,"117":0.02866,"118":0.02047,"119":0.04503,"120":0.17195,"121":0.23336,"122":0.98256,"123":12.20421,"124":4.98649,"125":0.01228,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 63 64 66 67 68 69 73 75 77 92 93 95 96 98 101 126 127"},F:{"46":0.01228,"69":0.01228,"95":0.01228,"102":0.00409,"106":0.00409,"107":1.03578,"108":0.52813,"109":0.15967,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00409,"18":0.00409,"86":0.00409,"90":0.00819,"92":0.01228,"93":0.01638,"96":0.15557,"100":0.00819,"103":0.00409,"108":0.00409,"109":0.04503,"110":0.05322,"112":0.00409,"114":0.00409,"115":0.00819,"116":0.00819,"117":0.00409,"118":0.02866,"119":0.01228,"120":0.01638,"121":0.02866,"122":0.28249,"123":4.21682,"124":1.92418,_:"12 13 14 15 16 79 80 81 83 84 85 87 88 89 91 94 95 97 98 99 101 102 104 105 106 107 111 113"},E:{"14":0.02456,"15":0.01638,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.01228,"13.1":0.20879,"14.1":0.18014,"15.1":0.04094,"15.2-15.3":0.01228,"15.4":0.02456,"15.5":0.08188,"15.6":0.29067,"16.0":0.05732,"16.1":0.09007,"16.2":0.05732,"16.3":0.16376,"16.4":0.04094,"16.5":0.17195,"16.6":0.38484,"17.0":0.04094,"17.1":0.17195,"17.2":0.32343,"17.3":0.45853,"17.4":1.31417,"17.5":0.00409},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00342,"5.0-5.1":0.00342,"6.0-6.1":0.00855,"7.0-7.1":0.01368,"8.1-8.4":0.00342,"9.0-9.2":0.00855,"9.3":0.04275,"10.0-10.2":0.00855,"10.3":0.0684,"11.0-11.2":0.05814,"11.3-11.4":0.0171,"12.0-12.1":0.01197,"12.2-12.5":0.27874,"13.0-13.1":0.00513,"13.2":0.05643,"13.3":0.01368,"13.4-13.7":0.05301,"14.0-14.4":0.10431,"14.5-14.8":0.15904,"15.0-15.1":0.07353,"15.2-15.3":0.08379,"15.4":0.09576,"15.5":0.12142,"15.6-15.8":1.06025,"16.0":0.24796,"16.1":0.51644,"16.2":0.24796,"16.3":0.43778,"16.4":0.09063,"16.5":0.18982,"16.6-16.7":1.49974,"17.0":0.17956,"17.1":0.33175,"17.2":0.4412,"17.3":3.21836,"17.4":7.2644,"17.5":0.06669},P:{"4":0.05252,"20":0.03151,"21":0.07352,"22":0.11553,"23":0.35711,"24":2.73083,"5.0-5.4":0.0105,"6.2-6.4":0.0105,"7.2-7.4":0.04201,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.0105,"13.0":0.02101,"14.0":0.02101,"15.0":0.0105,"16.0":0.0105,"17.0":0.0105,"18.0":0.04201,"19.0":0.03151},I:{"0":0.02941,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},A:{"11":0.02047,_:"6 7 8 9 10 5.5"},K:{"0":0.17721,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02954},H:{"0":0},L:{"0":38.69776},R:{_:"0"},M:{"0":0.36623}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js index 2ae0b6c366f717..ed047ce3886782 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RO.js @@ -1 +1 @@ -module.exports={C:{"52":0.04391,"68":0.00439,"78":0.01317,"83":0.00878,"86":0.00439,"88":0.00439,"92":0.00439,"100":0.00439,"102":0.00439,"103":0.00439,"104":0.00439,"105":0.00439,"106":0.00439,"107":0.00439,"108":0.10978,"109":0.00439,"110":0.00439,"111":0.00439,"113":0.00439,"114":0.00439,"115":0.40397,"116":0.00439,"117":0.00439,"118":0.00439,"119":0.01317,"120":0.00439,"121":0.02196,"122":0.06147,"123":1.35682,"124":0.50497,"125":0.00439,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 87 89 90 91 93 94 95 96 97 98 99 101 112 126 127 3.5 3.6"},D:{"38":0.00439,"41":0.00439,"47":0.00439,"49":0.03513,"61":0.00878,"70":0.01317,"71":0.00439,"72":0.00439,"73":0.00439,"75":0.00439,"76":0.00439,"78":0.00439,"79":0.03952,"80":0.00439,"81":0.00878,"84":0.00439,"85":0.00878,"86":0.00878,"87":0.03074,"88":0.02635,"89":0.00439,"90":0.00878,"91":0.00878,"92":0.00439,"93":0.00439,"94":0.00439,"95":0.00439,"96":0.00439,"97":0.01317,"98":0.00878,"99":0.01317,"100":0.08343,"101":0.00439,"102":0.01317,"103":0.02196,"104":0.01317,"105":0.00878,"106":0.01317,"107":0.01756,"108":0.02196,"109":1.5632,"110":0.01317,"111":0.01317,"112":0.02635,"113":0.01317,"114":0.03074,"115":0.01756,"116":0.05269,"117":0.02635,"118":0.0483,"119":0.07904,"120":0.54009,"121":1.04067,"122":22.08234,"123":8.5405,"124":0.00878,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 62 63 64 65 66 67 68 69 74 77 83 125 126"},F:{"36":0.00439,"40":0.00439,"46":0.00878,"79":0.00439,"85":0.00878,"95":0.05708,"97":0.00439,"98":0.00439,"102":0.00439,"106":0.01317,"107":1.47538,"108":0.28981,"109":0.00439,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00439,"84":0.00439,"92":0.00439,"105":0.00439,"107":0.00439,"108":0.00439,"109":0.02635,"111":0.00439,"114":0.00439,"115":0.00439,"116":0.00439,"117":0.00439,"118":0.01756,"119":0.10099,"120":0.02635,"121":0.07026,"122":1.88374,"123":0.13612,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 110 112 113"},E:{"14":0.01317,"15":0.00439,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00439,"13.1":0.01317,"14.1":0.01756,"15.1":0.00439,"15.2-15.3":0.00439,"15.4":0.00439,"15.5":0.00878,"15.6":0.05269,"16.0":0.00878,"16.1":0.01317,"16.2":0.01317,"16.3":0.03074,"16.4":0.01317,"16.5":0.01756,"16.6":0.07904,"17.0":0.02196,"17.1":0.03952,"17.2":0.10099,"17.3":0.26346,"17.4":0.08782},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00234,"5.0-5.1":0.00117,"6.0-6.1":0.00701,"7.0-7.1":0.00818,"8.1-8.4":0.00234,"9.0-9.2":0.00468,"9.3":0.02922,"10.0-10.2":0.00468,"10.3":0.04909,"11.0-11.2":0.03507,"11.3-11.4":0.01169,"12.0-12.1":0.01052,"12.2-12.5":0.20222,"13.0-13.1":0.00351,"13.2":0.03507,"13.3":0.01052,"13.4-13.7":0.03974,"14.0-14.4":0.07598,"14.5-14.8":0.11923,"15.0-15.1":0.05143,"15.2-15.3":0.06078,"15.4":0.0713,"15.5":0.09118,"15.6-15.8":0.7633,"16.0":0.18586,"16.1":0.38457,"16.2":0.18586,"16.3":0.3308,"16.4":0.07013,"16.5":0.14845,"16.6-16.7":1.1245,"17.0":0.14611,"17.1":0.29223,"17.2":0.47107,"17.3":5.79782,"17.4":0.85097,"17.5":0},P:{"4":0.13274,"20":0.03063,"21":0.05105,"22":0.08169,"23":1.85838,"24":1.34783,"5.0-5.4":0.01021,"6.2-6.4":0.01021,_:"7.2-7.4 8.2 9.2 10.1","11.1-11.2":0.01021,"12.0":0.02042,"13.0":0.02042,"14.0":0.02042,"15.0":0.01021,"16.0":0.02042,"17.0":0.01021,"18.0":0.01021,"19.0":0.04084},I:{"0":0.05027,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":0.29728,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00439,"11":0.03074,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":40.80457},R:{_:"0"},M:{"0":0.2468},Q:{_:"14.9"},O:{"0":0.03365},H:{"0":0}}; +module.exports={C:{"52":0.03943,"78":0.00986,"83":0.00493,"86":0.00493,"88":0.00493,"100":0.00493,"102":0.00493,"103":0.00493,"104":0.00493,"105":0.00493,"106":0.00493,"110":0.00493,"113":0.00493,"115":0.38939,"117":0.00493,"118":0.00493,"119":0.00493,"120":0.01479,"121":0.00986,"122":0.00986,"123":0.04929,"124":1.20268,"125":0.58655,"126":0.00493,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 87 89 90 91 92 93 94 95 96 97 98 99 101 107 108 109 111 112 114 116 127 128 3.5 3.6"},D:{"41":0.00493,"47":0.00493,"49":0.02465,"50":0.00493,"58":0.00493,"61":0.00493,"69":0.01479,"70":0.00986,"71":0.00493,"73":0.00493,"76":0.00986,"77":0.00986,"79":0.02957,"80":0.00493,"81":0.00986,"85":0.00986,"86":0.00493,"87":0.02957,"88":0.02957,"89":0.00493,"90":0.00493,"91":0.00493,"92":0.00493,"93":0.00986,"94":0.00986,"95":0.00493,"96":0.00493,"97":0.00493,"98":0.00986,"99":0.00986,"100":0.04929,"102":0.00986,"103":0.01972,"104":0.00986,"105":0.01479,"106":0.00986,"107":0.00986,"108":0.01479,"109":1.3604,"110":0.00986,"111":0.01479,"112":0.01972,"113":0.00493,"114":0.02465,"115":0.00986,"116":0.03943,"117":0.01972,"118":0.03943,"119":0.06901,"120":0.44361,"121":0.14294,"122":0.53233,"123":25.85753,"124":11.80496,"125":0.00986,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 48 51 52 53 54 55 56 57 59 60 62 63 64 65 66 67 68 72 74 75 78 83 84 101 126 127"},F:{"46":0.00493,"85":0.01972,"95":0.05422,"102":0.00493,"106":0.00493,"107":0.9513,"108":0.23166,"109":0.54712,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00493,"18":0.00493,"92":0.00493,"105":0.00493,"107":0.00493,"108":0.00986,"109":0.02465,"114":0.00493,"117":0.00493,"118":0.00986,"119":0.06901,"120":0.00986,"121":0.01479,"122":0.09858,"123":1.2914,"124":0.60134,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 110 111 112 113 115 116"},E:{"14":0.01479,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.01479,"14.1":0.01479,"15.1":0.00493,"15.2-15.3":0.00493,"15.4":0.00493,"15.5":0.00493,"15.6":0.05915,"16.0":0.00986,"16.1":0.01479,"16.2":0.00986,"16.3":0.02465,"16.4":0.00986,"16.5":0.01972,"16.6":0.05422,"17.0":0.01972,"17.1":0.0345,"17.2":0.05422,"17.3":0.09365,"17.4":0.31053,"17.5":0.00493},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00218,"5.0-5.1":0.00218,"6.0-6.1":0.00545,"7.0-7.1":0.00872,"8.1-8.4":0.00218,"9.0-9.2":0.00545,"9.3":0.02726,"10.0-10.2":0.00545,"10.3":0.04361,"11.0-11.2":0.03707,"11.3-11.4":0.0109,"12.0-12.1":0.00763,"12.2-12.5":0.17771,"13.0-13.1":0.00327,"13.2":0.03598,"13.3":0.00872,"13.4-13.7":0.0338,"14.0-14.4":0.06651,"14.5-14.8":0.10139,"15.0-15.1":0.04688,"15.2-15.3":0.05342,"15.4":0.06105,"15.5":0.07741,"15.6-15.8":0.67596,"16.0":0.15809,"16.1":0.32926,"16.2":0.15809,"16.3":0.27911,"16.4":0.05778,"16.5":0.12102,"16.6-16.7":0.95616,"17.0":0.11448,"17.1":0.21151,"17.2":0.28129,"17.3":2.05188,"17.4":4.63145,"17.5":0.04252},P:{"4":0.11207,"20":0.03056,"21":0.04075,"22":0.07132,"23":0.29545,"24":2.47571,_:"5.0-5.4 7.2-7.4 8.2 9.2 10.1","6.2-6.4":0.01019,"11.1-11.2":0.01019,"12.0":0.02038,"13.0":0.02038,"14.0":0.02038,"15.0":0.01019,"16.0":0.02038,"17.0":0.01019,"18.0":0.01019,"19.0":0.03056},I:{"0":0.04545,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00493,"11":0.02465,_:"6 7 9 10 5.5"},K:{"0":0.28905,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02536},H:{"0":0},L:{"0":36.32227},R:{_:"0"},M:{"0":0.24341}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js index 8b39a43e0117e2..e761bdc0673953 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RS.js @@ -1 +1 @@ -module.exports={C:{"40":0.00378,"52":0.06051,"56":0.00756,"65":0.00756,"68":0.00378,"72":0.00756,"75":0.00756,"78":0.01135,"81":0.00378,"82":0.00378,"85":0.00378,"88":0.01513,"90":0.00378,"91":0.00378,"92":0.00378,"93":0.00378,"94":0.00756,"97":0.00378,"99":0.00378,"100":0.00378,"101":0.00378,"102":0.00756,"103":0.00378,"104":0.01513,"105":0.00378,"106":0.00756,"107":0.01135,"108":0.00378,"110":0.00756,"111":0.01135,"112":0.01891,"113":0.05673,"114":0.00756,"115":1.03627,"116":0.00378,"117":0.00378,"118":0.00756,"119":0.01135,"120":0.01135,"121":0.03026,"122":0.09833,"123":1.80023,"124":0.75262,"125":0.00756,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 57 58 59 60 61 62 63 64 66 67 69 70 71 73 74 76 77 79 80 83 84 86 87 89 95 96 98 109 126 127 3.5 3.6"},D:{"29":0.00378,"34":0.00378,"38":0.00756,"47":0.00378,"48":0.00756,"49":0.0416,"53":0.00378,"64":0.00378,"65":0.00756,"67":0.00378,"68":0.01135,"69":0.00756,"70":0.00378,"71":0.00756,"72":0.00378,"73":0.00378,"74":0.00756,"75":0.00756,"76":0.00756,"78":0.01891,"79":0.30634,"80":0.00756,"81":0.01891,"83":0.01891,"84":0.01891,"85":0.03026,"86":0.01513,"87":0.19666,"88":0.02269,"89":0.01513,"90":0.01891,"91":0.01135,"92":0.01135,"93":0.01135,"94":0.01891,"95":0.01513,"96":0.01513,"97":0.01135,"98":0.00378,"99":0.04538,"100":0.00756,"101":0.00756,"102":0.06051,"103":0.04917,"104":0.01513,"105":0.01513,"106":0.02269,"107":0.04538,"108":0.05673,"109":4.28122,"110":0.02647,"111":0.01891,"112":0.03026,"113":0.03404,"114":0.05673,"115":0.01135,"116":0.06051,"117":0.02269,"118":0.02647,"119":0.09077,"120":0.23827,"121":1.23671,"122":14.79897,"123":4.2018,"124":0.00756,"125":0.00378,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 50 51 52 54 55 56 57 58 59 60 61 62 63 66 77 126"},F:{"28":0.00378,"36":0.00378,"46":0.01513,"79":0.00756,"82":0.00378,"84":0.00378,"85":0.02269,"86":0.00378,"89":0.01513,"95":0.18154,"106":0.02647,"107":1.40312,"108":0.39711,"109":0.00378,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00756,"85":0.00378,"92":0.00378,"107":0.00378,"109":0.03404,"110":0.00378,"113":0.00378,"114":0.00378,"115":0.00378,"118":0.00378,"119":0.00756,"120":0.02647,"121":0.07186,"122":1.80023,"123":0.13993,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 111 112 116 117"},E:{"4":0.00378,"9":0.00378,"14":0.00378,"15":0.00378,_:"0 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.00756,"11.1":0.00756,"12.1":0.00378,"13.1":0.03782,"14.1":0.03782,"15.1":0.00378,"15.2-15.3":0.00378,"15.4":0.00378,"15.5":0.00378,"15.6":0.07186,"16.0":0.00756,"16.1":0.01135,"16.2":0.00756,"16.3":0.01513,"16.4":0.01135,"16.5":0.01135,"16.6":0.08699,"17.0":0.01513,"17.1":0.04917,"17.2":0.06808,"17.3":0.21179,"17.4":0.09455},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00189,"5.0-5.1":0.00094,"6.0-6.1":0.00566,"7.0-7.1":0.0066,"8.1-8.4":0.00189,"9.0-9.2":0.00377,"9.3":0.02357,"10.0-10.2":0.00377,"10.3":0.0396,"11.0-11.2":0.02828,"11.3-11.4":0.00943,"12.0-12.1":0.00849,"12.2-12.5":0.1631,"13.0-13.1":0.00283,"13.2":0.02828,"13.3":0.00849,"13.4-13.7":0.03206,"14.0-14.4":0.06128,"14.5-14.8":0.09617,"15.0-15.1":0.04148,"15.2-15.3":0.04903,"15.4":0.05751,"15.5":0.07354,"15.6-15.8":0.61565,"16.0":0.14991,"16.1":0.31018,"16.2":0.14991,"16.3":0.26681,"16.4":0.05657,"16.5":0.11974,"16.6-16.7":0.90697,"17.0":0.11785,"17.1":0.2357,"17.2":0.37995,"17.3":4.67629,"17.4":0.68636,"17.5":0},P:{"4":0.16475,"20":0.03089,"21":0.04119,"22":0.05149,"23":1.69901,"24":0.98852,"5.0-5.4":0.02059,"6.2-6.4":0.0103,"7.2-7.4":0.0103,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.02059,"13.0":0.0103,"14.0":0.02059,"15.0":0.0103,"16.0":0.0103,"17.0":0.0103,"18.0":0.0103,"19.0":0.03089},I:{"0":0.04335,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.37045,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.03157,"9":0.00789,"10":0.01184,"11":0.4933,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.29279},R:{_:"0"},M:{"0":0.18657},Q:{_:"14.9"},O:{"0":0.02488},H:{"0":0.04}}; +module.exports={C:{"32":0.00378,"34":0.00378,"40":0.00755,"50":0.11328,"52":0.16237,"53":0.11328,"56":0.1095,"61":0.00378,"65":0.00755,"67":0.00378,"68":0.00378,"72":0.00378,"73":0.00378,"75":0.00755,"77":0.00378,"78":0.00755,"80":0.00378,"81":0.00378,"82":0.00378,"88":0.01133,"91":0.00378,"92":0.00378,"93":0.00378,"94":0.00378,"99":0.00755,"100":0.00378,"101":0.00378,"102":0.00378,"103":0.00755,"104":0.00378,"105":0.00378,"106":0.00378,"107":0.01133,"108":0.00755,"109":0.00378,"110":0.00378,"111":0.00378,"112":0.01888,"113":0.05286,"114":0.00378,"115":1.0384,"116":0.00378,"117":0.00378,"118":0.00755,"119":0.01133,"120":0.00755,"121":0.03776,"122":0.03398,"123":0.08307,"124":1.71808,"125":0.87981,"126":0.02266,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 35 36 37 38 39 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 60 62 63 64 66 69 70 71 74 76 79 83 84 85 86 87 89 90 95 96 97 98 127 128 3.5 3.6"},D:{"34":0.00378,"38":0.00755,"43":0.00378,"47":0.00378,"48":0.00378,"49":0.03776,"53":0.00378,"56":0.00378,"62":0.00378,"63":0.00378,"64":0.00378,"65":0.01133,"68":0.01133,"69":0.00378,"70":0.00378,"71":0.00378,"72":0.00378,"75":0.00378,"76":0.00378,"77":0.00378,"78":0.01133,"79":0.28698,"80":0.01133,"81":0.01888,"83":0.01888,"84":0.01133,"85":0.03398,"86":0.01133,"87":0.2039,"88":0.02266,"89":0.0151,"90":0.0151,"91":0.00755,"92":0.00755,"93":0.01133,"94":0.02643,"95":0.01133,"96":0.01133,"97":0.00755,"98":0.00755,"99":0.02266,"100":0.00378,"101":0.00378,"102":0.04909,"103":0.04154,"104":0.0151,"105":0.01888,"106":0.02643,"107":0.03776,"108":0.03398,"109":4.10829,"110":0.0151,"111":0.0151,"112":0.02266,"113":0.05286,"114":0.06797,"115":0.0151,"116":0.06797,"117":0.02643,"118":0.0151,"119":0.08307,"120":0.12838,"121":0.23411,"122":0.65702,"123":14.44698,"124":5.27885,"125":0.01888,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 45 46 50 51 52 54 55 57 58 59 60 61 66 67 73 74 126 127"},F:{"28":0.00378,"36":0.00378,"46":0.01133,"79":0.00378,"84":0.00378,"85":0.01133,"86":0.00378,"95":0.18502,"101":0.00378,"102":0.00378,"106":0.00378,"107":0.78163,"108":0.78541,"109":0.27187,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 87 88 89 90 91 92 93 94 96 97 98 99 100 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01133,"85":0.00378,"92":0.00378,"108":0.00378,"109":0.03021,"110":0.00378,"112":0.00378,"113":0.00378,"118":0.00378,"119":0.00755,"120":0.01888,"121":0.01888,"122":0.08685,"123":1.29517,"124":0.61926,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 111 114 115 116 117"},E:{"9":0.00378,"14":0.00755,"15":0.00378,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 15.2-15.3 17.5","9.1":0.00378,"12.1":0.00755,"13.1":0.03398,"14.1":0.03398,"15.1":0.00755,"15.4":0.00755,"15.5":0.00755,"15.6":0.0793,"16.0":0.00378,"16.1":0.01133,"16.2":0.00378,"16.3":0.01888,"16.4":0.01133,"16.5":0.0151,"16.6":0.07552,"17.0":0.0151,"17.1":0.02266,"17.2":0.03776,"17.3":0.07552,"17.4":0.24922},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00207,"5.0-5.1":0.00207,"6.0-6.1":0.00517,"7.0-7.1":0.00826,"8.1-8.4":0.00207,"9.0-9.2":0.00517,"9.3":0.02583,"10.0-10.2":0.00517,"10.3":0.04132,"11.0-11.2":0.03512,"11.3-11.4":0.01033,"12.0-12.1":0.00723,"12.2-12.5":0.16838,"13.0-13.1":0.0031,"13.2":0.03409,"13.3":0.00826,"13.4-13.7":0.03202,"14.0-14.4":0.06301,"14.5-14.8":0.09607,"15.0-15.1":0.04442,"15.2-15.3":0.05062,"15.4":0.05785,"15.5":0.07334,"15.6-15.8":0.64047,"16.0":0.14979,"16.1":0.31197,"16.2":0.14979,"16.3":0.26445,"16.4":0.05475,"16.5":0.11466,"16.6-16.7":0.90596,"17.0":0.10847,"17.1":0.20041,"17.2":0.26652,"17.3":1.94414,"17.4":4.38826,"17.5":0.04029},P:{"4":0.16319,"20":0.0306,"21":0.0408,"22":0.0612,"23":0.24478,"24":2.24386,"5.0-5.4":0.0204,"6.2-6.4":0.0204,"7.2-7.4":0.0204,_:"8.2 9.2 10.1 12.0","11.1-11.2":0.0306,"13.0":0.0102,"14.0":0.051,"15.0":0.0102,"16.0":0.0102,"17.0":0.0102,"18.0":0.0102,"19.0":0.0408},I:{"0":0.03718,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{"8":0.0278,"9":0.00397,"10":0.00397,"11":0.19459,_:"6 7 5.5"},K:{"0":0.44273,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.03112},H:{"0":0.08},L:{"0":48.96181},R:{_:"0"},M:{"0":0.24892}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js index 2b15d425eee3ee..8c97b962ffe5f6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RU.js @@ -1 +1 @@ -module.exports={C:{"31":0.00572,"38":0.00572,"50":0.00572,"52":0.12584,"53":0.00572,"56":0.00572,"66":0.00572,"68":0.01716,"69":0.01144,"70":0.01144,"71":0.00572,"72":0.01716,"73":0.00572,"74":0.01144,"75":0.01144,"76":0.00572,"77":0.01144,"78":0.02288,"79":0.00572,"80":0.00572,"81":0.01716,"82":0.01144,"83":0.01144,"88":0.01144,"91":0.01144,"95":0.01716,"96":0.00572,"98":0.00572,"99":0.00572,"101":0.00572,"102":0.01716,"103":0.01716,"104":0.01144,"105":0.00572,"106":0.00572,"107":0.01144,"108":0.01716,"109":0.01144,"110":0.01144,"111":0.01716,"112":0.00572,"113":0.01144,"114":0.01144,"115":0.7722,"116":0.00572,"117":0.00572,"118":0.01144,"119":0.01144,"120":0.02288,"121":0.02288,"122":0.05148,"123":1.10968,"124":0.48048,"125":0.00572,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 60 61 62 63 64 65 67 84 85 86 87 89 90 92 93 94 97 100 126 127 3.5 3.6"},D:{"18":0.01144,"25":0.00572,"26":0.00572,"34":0.00572,"38":0.00572,"41":0.00572,"49":0.0572,"51":0.03432,"53":0.00572,"56":0.01144,"61":0.00572,"64":0.00572,"65":0.00572,"67":0.00572,"68":0.0858,"69":0.0572,"70":0.0572,"71":0.0572,"72":0.09152,"73":0.03432,"74":0.09152,"75":0.06292,"76":0.07436,"77":0.0572,"78":0.0858,"79":0.13728,"80":0.13728,"81":0.12012,"83":0.09724,"84":0.06292,"85":0.10296,"86":0.20592,"87":0.13728,"88":0.13728,"89":0.1144,"90":0.12012,"91":0.04576,"92":0.00572,"93":0.01716,"94":0.01716,"95":0.00572,"96":0.01716,"97":0.03432,"98":0.03432,"99":0.0572,"100":0.01716,"101":0.01716,"102":0.13728,"103":0.03432,"104":0.04004,"105":0.06292,"106":0.2288,"107":0.07436,"108":0.10868,"109":2.8028,"110":0.06864,"111":0.12012,"112":0.06292,"113":0.18876,"114":0.16016,"115":0.02288,"116":0.21736,"117":0.15444,"118":0.0572,"119":0.14872,"120":0.3718,"121":1.1154,"122":10.96524,"123":3.42056,"124":0.01716,"125":0.00572,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 48 50 52 54 55 57 58 59 60 62 63 66 126"},F:{"36":0.01716,"46":0.00572,"53":0.01144,"54":0.01144,"55":0.01716,"56":0.00572,"60":0.00572,"62":0.00572,"64":0.00572,"65":0.00572,"67":0.00572,"68":0.00572,"70":0.00572,"71":0.01144,"72":0.00572,"73":0.00572,"74":0.00572,"75":0.00572,"76":0.01144,"77":0.01144,"79":0.04004,"80":0.00572,"81":0.00572,"82":0.00572,"83":0.00572,"84":0.01144,"85":0.06292,"86":0.0286,"87":0.01144,"89":0.00572,"90":0.00572,"91":0.00572,"92":0.00572,"94":0.00572,"95":0.93808,"96":0.00572,"97":0.00572,"99":0.00572,"102":0.01144,"103":0.00572,"105":0.01144,"106":0.18876,"107":3.69512,"108":1.144,"109":0.01144,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 57 58 63 66 69 78 88 93 98 100 101 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00572},B:{"14":0.00572,"18":0.01716,"79":0.00572,"80":0.02288,"81":0.01716,"83":0.01716,"84":0.02288,"85":0.01144,"86":0.01716,"87":0.01144,"88":0.01144,"89":0.01716,"90":0.01716,"92":0.02288,"100":0.00572,"106":0.00572,"107":0.01716,"108":0.01144,"109":0.06864,"110":0.01144,"111":0.01144,"113":0.01144,"114":0.01716,"115":0.00572,"116":0.00572,"117":0.00572,"118":0.00572,"119":0.01716,"120":0.04004,"121":0.10868,"122":2.95152,"123":0.26884,_:"12 13 15 16 17 91 93 94 95 96 97 98 99 101 102 103 104 105 112"},E:{"13":0.00572,"14":0.03432,"15":0.00572,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.48048,"11.1":0.00572,"12.1":0.01144,"13.1":0.03432,"14.1":0.0572,"15.1":0.01144,"15.2-15.3":0.01144,"15.4":0.01144,"15.5":0.01716,"15.6":0.12584,"16.0":0.01144,"16.1":0.0286,"16.2":0.0286,"16.3":0.05148,"16.4":0.01716,"16.5":0.04004,"16.6":0.14872,"17.0":0.04576,"17.1":0.08008,"17.2":0.10868,"17.3":0.36036,"17.4":0.1144},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00191,"5.0-5.1":0.00095,"6.0-6.1":0.00572,"7.0-7.1":0.00668,"8.1-8.4":0.00191,"9.0-9.2":0.00382,"9.3":0.02384,"10.0-10.2":0.00382,"10.3":0.04006,"11.0-11.2":0.02861,"11.3-11.4":0.00954,"12.0-12.1":0.00858,"12.2-12.5":0.16501,"13.0-13.1":0.00286,"13.2":0.02861,"13.3":0.00858,"13.4-13.7":0.03243,"14.0-14.4":0.062,"14.5-14.8":0.09729,"15.0-15.1":0.04197,"15.2-15.3":0.0496,"15.4":0.05818,"15.5":0.0744,"15.6-15.8":0.62282,"16.0":0.15165,"16.1":0.3138,"16.2":0.15165,"16.3":0.26992,"16.4":0.05723,"16.5":0.12113,"16.6-16.7":0.91755,"17.0":0.11922,"17.1":0.23845,"17.2":0.38438,"17.3":4.73079,"17.4":0.69436,"17.5":0},P:{"4":0.08558,"20":0.0107,"21":0.03209,"22":0.0214,"23":0.4279,"24":0.39581,_:"5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0","6.2-6.4":0.0107,"7.2-7.4":0.0107,"11.1-11.2":0.0107,"13.0":0.0107,"17.0":0.0107,"18.0":0.0107,"19.0":0.0107},I:{"0":0.03835,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":0.91143,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01209,"11":0.19955,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":26.61817},R:{_:"0"},M:{"0":0.1626},Q:{"14.9":0.00856},O:{"0":0.1626},H:{"0":0}}; +module.exports={C:{"31":0.00568,"38":0.00568,"45":0.00568,"48":0.00568,"50":0.00568,"51":0.00568,"52":0.13059,"53":0.00568,"56":0.01136,"68":0.01136,"69":0.00568,"70":0.00568,"72":0.02271,"74":0.00568,"75":0.00568,"77":0.00568,"78":0.02271,"79":0.00568,"80":0.00568,"81":0.01136,"82":0.00568,"83":0.00568,"88":0.00568,"91":0.01136,"92":0.00568,"95":0.01703,"96":0.00568,"98":0.00568,"99":0.00568,"101":0.00568,"102":0.01703,"103":0.02271,"104":0.01136,"105":0.00568,"106":0.01136,"107":0.01136,"108":0.02271,"109":0.00568,"110":0.01136,"111":0.01703,"112":0.00568,"113":0.01136,"114":0.01136,"115":0.75517,"116":0.00568,"117":0.00568,"118":0.01136,"119":0.01136,"120":0.01703,"121":0.02839,"122":0.02271,"123":0.07381,"124":1.06179,"125":0.57916,"126":0.00568,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 39 40 41 42 43 44 46 47 49 54 55 57 58 59 60 61 62 63 64 65 66 67 71 73 76 84 85 86 87 89 90 93 94 97 100 127 128 3.5 3.6"},D:{"22":0.00568,"25":0.00568,"26":0.00568,"34":0.00568,"38":0.00568,"41":0.00568,"49":0.05678,"51":0.03407,"53":0.00568,"56":0.01703,"58":0.00568,"61":0.00568,"64":0.00568,"65":0.00568,"67":0.00568,"68":0.02839,"69":0.01703,"70":0.01703,"71":0.01703,"72":0.03407,"73":0.01136,"74":0.02839,"75":0.02271,"76":0.03407,"77":0.01703,"78":0.02839,"79":0.07381,"80":0.0511,"81":0.0511,"83":0.03407,"84":0.02271,"85":0.04542,"86":0.09085,"87":0.07381,"88":0.06814,"89":0.05678,"90":0.0511,"91":0.02839,"92":0.00568,"93":0.00568,"94":0.01703,"95":0.00568,"96":0.01136,"97":0.02839,"98":0.03407,"99":0.04542,"100":0.01703,"101":0.02271,"102":0.1022,"103":0.03407,"104":0.0511,"105":0.03975,"106":0.17034,"107":0.0511,"108":0.08517,"109":2.91281,"110":0.04542,"111":0.0511,"112":0.0511,"113":0.13059,"114":0.18737,"115":0.02271,"116":0.1022,"117":0.13059,"118":0.03975,"119":0.11924,"120":0.25551,"121":0.34068,"122":0.51102,"123":11.16863,"124":4.2585,"125":0.02271,"126":0.00568,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 47 48 50 52 54 55 57 59 60 62 63 66 127"},F:{"36":0.02271,"46":0.00568,"53":0.00568,"54":0.00568,"55":0.00568,"57":0.00568,"60":0.00568,"64":0.00568,"67":0.00568,"72":0.00568,"73":0.00568,"74":0.00568,"75":0.00568,"76":0.00568,"77":0.01136,"79":0.04542,"80":0.00568,"82":0.01136,"83":0.00568,"84":0.01136,"85":0.06246,"86":0.03407,"87":0.01136,"89":0.00568,"92":0.00568,"93":0.00568,"94":0.00568,"95":0.96526,"99":0.00568,"102":0.01703,"103":0.00568,"105":0.00568,"106":0.15898,"107":1.99298,"108":2.2201,"109":0.75517,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 56 58 62 63 65 66 68 69 70 71 78 81 88 90 91 96 97 98 100 101 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00568},B:{"14":0.00568,"16":0.00568,"17":0.00568,"18":0.01703,"79":0.00568,"80":0.01136,"81":0.01136,"83":0.00568,"84":0.01136,"85":0.00568,"86":0.01136,"87":0.00568,"88":0.00568,"89":0.01136,"90":0.00568,"92":0.02271,"98":0.00568,"99":0.00568,"100":0.00568,"101":0.00568,"106":0.00568,"107":0.01136,"108":0.00568,"109":0.06814,"110":0.00568,"111":0.00568,"112":0.00568,"113":0.01136,"114":0.01703,"115":0.00568,"116":0.00568,"117":0.00568,"118":0.00568,"119":0.01703,"120":0.02839,"121":0.03407,"122":0.14763,"123":2.73112,"124":1.0845,_:"12 13 15 91 93 94 95 96 97 102 103 104 105"},E:{"10":0.00568,"13":0.00568,"14":0.02839,"15":0.00568,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.13627,"11.1":0.00568,"12.1":0.01136,"13.1":0.03407,"14.1":0.0511,"15.1":0.01136,"15.2-15.3":0.01136,"15.4":0.01703,"15.5":0.01703,"15.6":0.13627,"16.0":0.01136,"16.1":0.02839,"16.2":0.02839,"16.3":0.06246,"16.4":0.01703,"16.5":0.03975,"16.6":0.14195,"17.0":0.03975,"17.1":0.06246,"17.2":0.06246,"17.3":0.15331,"17.4":0.44288,"17.5":0.00568},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00185,"5.0-5.1":0.00185,"6.0-6.1":0.00463,"7.0-7.1":0.00741,"8.1-8.4":0.00185,"9.0-9.2":0.00463,"9.3":0.02315,"10.0-10.2":0.00463,"10.3":0.03704,"11.0-11.2":0.03148,"11.3-11.4":0.00926,"12.0-12.1":0.00648,"12.2-12.5":0.15094,"13.0-13.1":0.00278,"13.2":0.03056,"13.3":0.00741,"13.4-13.7":0.02871,"14.0-14.4":0.05649,"14.5-14.8":0.08612,"15.0-15.1":0.03982,"15.2-15.3":0.04537,"15.4":0.05186,"15.5":0.06575,"15.6-15.8":0.57411,"16.0":0.13427,"16.1":0.27965,"16.2":0.13427,"16.3":0.23705,"16.4":0.04908,"16.5":0.10278,"16.6-16.7":0.81209,"17.0":0.09723,"17.1":0.17964,"17.2":0.23891,"17.3":1.74271,"17.4":3.93361,"17.5":0.03611},P:{"4":0.06716,"20":0.01119,"21":0.02239,"22":0.02239,"23":0.08954,"24":0.638,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.01119,"11.1-11.2":0.01119,"17.0":0.01119,"19.0":0.01119},I:{"0":0.03873,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.01748,"9":0.00583,"11":0.19813,_:"6 7 10 5.5"},K:{"0":0.85556,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01728},O:{"0":0.12099},H:{"0":0},L:{"0":27.39757},R:{_:"0"},M:{"0":0.72161}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js index 8efc488d9fcba0..b79905b2097787 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/RW.js @@ -1 +1 @@ -module.exports={C:{"52":0.00436,"67":0.00436,"72":0.00436,"75":0.00436,"81":0.00436,"82":0.00871,"102":0.01307,"111":0.00871,"112":0.00436,"115":0.22211,"117":0.00436,"118":0.00436,"119":0.00436,"120":0.00436,"121":0.03049,"122":0.01307,"123":0.88407,"124":0.36147,"125":0.00871,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 73 74 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 113 114 116 126 127 3.5 3.6"},D:{"35":0.00436,"38":0.00871,"43":0.00436,"55":0.00436,"56":0.00436,"58":0.00436,"61":0.00436,"65":0.00436,"67":0.00436,"68":0.01307,"69":0.01307,"70":0.01307,"71":0.00436,"72":0.00436,"74":0.00436,"76":0.00436,"77":0.00436,"79":0.02613,"80":0.01307,"81":0.00871,"83":0.00436,"84":0.01307,"85":0.00871,"86":0.00871,"87":0.03049,"88":0.07839,"89":0.00871,"90":0.00871,"91":0.00436,"92":0.00436,"93":0.00871,"94":0.00436,"95":0.01742,"96":0.00871,"97":0.00871,"98":0.0392,"100":0.00436,"101":0.00871,"102":0.00871,"103":0.12194,"104":0.00871,"105":0.00871,"106":0.02178,"107":0.00436,"108":0.02178,"109":0.79261,"110":0.02178,"111":0.01307,"112":0.03484,"113":0.03049,"114":0.02613,"115":0.01742,"116":0.12194,"117":0.01307,"118":0.05226,"119":0.16985,"120":0.37453,"121":1.23247,"122":15.31654,"123":4.22,"124":0.01742,"125":0.00436,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 57 59 60 62 63 64 66 73 75 78 99 126"},F:{"34":0.00871,"42":0.00436,"46":0.00436,"79":0.00871,"81":0.00871,"95":0.02613,"106":0.01307,"107":0.41373,"108":0.29179,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.04791,"13":0.0392,"14":0.02613,"15":0.01307,"16":0.05662,"17":0.01742,"18":0.14807,"84":0.02178,"86":0.00436,"89":0.01307,"90":0.03049,"92":0.23953,"100":0.3484,"103":0.00436,"104":0.00871,"106":0.04791,"107":0.01307,"108":0.00436,"109":0.0392,"110":0.00871,"111":0.01307,"112":0.02613,"113":0.00436,"114":0.01307,"115":0.0392,"116":0.03049,"117":0.0392,"118":0.03049,"119":0.05662,"120":0.18727,"121":0.5226,"122":5.46988,"123":0.36147,_:"79 80 81 83 85 87 88 91 93 94 95 96 97 98 99 101 102 105"},E:{"11":0.00871,"14":0.00436,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.5 16.2 17.5","5.1":0.00436,"13.1":0.02613,"14.1":0.03049,"15.1":0.03049,"15.2-15.3":0.00436,"15.4":0.00436,"15.6":0.05662,"16.0":0.00436,"16.1":0.00871,"16.3":0.01307,"16.4":0.16549,"16.5":0.01307,"16.6":0.04355,"17.0":0.04355,"17.1":0.02178,"17.2":0.06968,"17.3":0.16549,"17.4":0.06097},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00087,"5.0-5.1":0.00043,"6.0-6.1":0.0026,"7.0-7.1":0.00303,"8.1-8.4":0.00087,"9.0-9.2":0.00173,"9.3":0.01082,"10.0-10.2":0.00173,"10.3":0.01818,"11.0-11.2":0.01299,"11.3-11.4":0.00433,"12.0-12.1":0.0039,"12.2-12.5":0.0749,"13.0-13.1":0.0013,"13.2":0.01299,"13.3":0.0039,"13.4-13.7":0.01472,"14.0-14.4":0.02814,"14.5-14.8":0.04416,"15.0-15.1":0.01905,"15.2-15.3":0.02251,"15.4":0.02641,"15.5":0.03377,"15.6-15.8":0.28273,"16.0":0.06884,"16.1":0.14245,"16.2":0.06884,"16.3":0.12253,"16.4":0.02598,"16.5":0.05499,"16.6-16.7":0.41652,"17.0":0.05412,"17.1":0.10824,"17.2":0.17449,"17.3":2.14754,"17.4":0.3152,"17.5":0},P:{"4":0.06189,"20":0.02063,"21":0.03094,"22":0.02063,"23":0.24754,"24":0.24754,_:"5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0","7.2-7.4":0.06189,"9.2":0.01031,"16.0":0.01031,"17.0":0.01031,"18.0":0.01031,"19.0":0.10314},I:{"0":0.02811,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":4.47444,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01188,"10":0.00594,"11":0.04751,_:"6 7 9 5.5"},S:{"2.5":0.06774,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.90543},R:{_:"0"},M:{"0":0.08468},Q:{"14.9":0.01129},O:{"0":0.37257},H:{"0":4.01}}; +module.exports={C:{"45":0.00434,"47":0.00434,"52":0.00434,"58":0.00434,"59":0.00434,"65":0.00434,"81":0.01735,"91":0.00434,"94":0.00434,"102":0.00434,"111":0.00434,"112":0.00434,"115":0.2169,"116":0.00434,"117":0.00434,"122":0.02603,"123":0.06507,"124":1.02377,"125":0.46417,"126":0.00868,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 48 49 50 51 53 54 55 56 57 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 92 93 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 113 114 118 119 120 121 127 128 3.5 3.6"},D:{"11":0.00434,"34":0.00434,"38":0.00434,"49":0.00434,"50":0.00434,"55":0.00868,"56":0.00434,"58":0.00434,"59":0.00434,"61":0.00434,"65":0.00434,"66":0.00434,"68":0.00868,"69":0.00434,"70":0.02169,"73":0.00434,"74":0.01301,"75":0.00434,"76":0.00868,"77":0.00868,"78":0.00434,"79":0.02169,"80":0.01301,"81":0.01735,"83":0.00868,"84":0.00434,"85":0.00434,"86":0.00434,"87":0.0347,"88":0.04772,"89":0.00434,"90":0.00434,"91":0.02169,"92":0.00434,"94":0.00868,"95":0.05206,"96":0.01301,"98":0.06507,"99":0.00434,"101":0.01301,"102":0.00868,"103":0.10411,"104":0.00434,"105":0.00434,"106":0.01301,"107":0.00868,"108":0.02603,"109":0.81554,"110":0.02169,"111":0.00868,"112":0.00868,"113":0.01735,"114":0.02603,"115":0.02169,"116":0.16918,"117":0.02169,"118":0.02603,"119":0.1258,"120":0.1822,"121":0.29498,"122":0.75915,"123":14.98345,"124":5.42684,"125":0.06507,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 52 53 54 57 60 62 63 64 67 71 72 93 97 100 126 127"},F:{"27":0.00434,"46":0.00434,"79":0.00868,"95":0.02169,"102":0.00434,"106":0.00434,"107":0.10411,"108":0.5249,"109":0.1822,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0347,"13":0.03904,"14":0.01735,"15":0.00434,"16":0.01301,"17":0.01301,"18":0.13014,"84":0.01301,"85":0.00434,"89":0.03037,"90":0.02169,"92":0.15617,"95":0.00434,"100":0.07808,"102":0.00434,"103":0.00434,"106":0.00434,"107":0.00868,"109":0.02603,"110":0.00868,"111":0.01301,"112":0.01301,"113":0.00434,"114":0.00868,"115":0.00868,"116":0.01735,"117":0.02603,"118":0.01301,"119":0.01735,"120":0.10845,"121":0.06507,"122":0.47718,"123":3.11035,"124":1.34912,_:"79 80 81 83 86 87 88 91 93 94 96 97 98 99 101 104 105 108"},E:{"11":0.00434,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 16.0 16.2 17.5","12.1":0.00434,"13.1":0.01735,"14.1":0.04772,"15.1":0.00434,"15.4":0.00434,"15.5":0.02169,"15.6":0.04772,"16.1":0.00434,"16.3":0.00434,"16.4":0.01301,"16.5":0.01735,"16.6":0.09544,"17.0":0.04338,"17.1":0.08676,"17.2":0.05639,"17.3":0.07808,"17.4":0.15183},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00088,"5.0-5.1":0.00088,"6.0-6.1":0.00219,"7.0-7.1":0.00351,"8.1-8.4":0.00088,"9.0-9.2":0.00219,"9.3":0.01097,"10.0-10.2":0.00219,"10.3":0.01756,"11.0-11.2":0.01492,"11.3-11.4":0.00439,"12.0-12.1":0.00307,"12.2-12.5":0.07154,"13.0-13.1":0.00132,"13.2":0.01448,"13.3":0.00351,"13.4-13.7":0.01361,"14.0-14.4":0.02677,"14.5-14.8":0.04082,"15.0-15.1":0.01887,"15.2-15.3":0.02151,"15.4":0.02458,"15.5":0.03116,"15.6-15.8":0.27211,"16.0":0.06364,"16.1":0.13254,"16.2":0.06364,"16.3":0.11235,"16.4":0.02326,"16.5":0.04872,"16.6-16.7":0.3849,"17.0":0.04608,"17.1":0.08514,"17.2":0.11323,"17.3":0.82598,"17.4":1.86437,"17.5":0.01712},P:{"4":0.06298,"21":0.03149,"22":0.03149,"23":0.11547,"24":0.40939,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0","7.2-7.4":0.05249,"11.1-11.2":0.0105,"16.0":0.0105,"17.0":0.0105,"18.0":0.0105,"19.0":0.09448},I:{"0":0.02256,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"11":0.08242,_:"6 7 8 9 10 5.5"},K:{"0":4.91436,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08495,_:"3.0-3.1"},Q:{"14.9":0.03964},O:{"0":0.17555},H:{"0":3.28},L:{"0":52.38158},R:{_:"0"},M:{"0":0.07928}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js index 530e605a48e4ca..6eefd0be529840 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SA.js @@ -1 +1 @@ -module.exports={C:{"52":0.00203,"75":0.00407,"78":0.00203,"94":0.00203,"103":0.00203,"110":0.00203,"111":0.00203,"115":0.06305,"119":0.00203,"120":0.00407,"121":0.00407,"122":0.01424,"123":0.35798,"124":0.13831,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 104 105 106 107 108 109 112 113 114 116 117 118 125 126 127 3.5 3.6"},D:{"11":0.00203,"38":0.0061,"41":0.00203,"43":0.00203,"47":0.00203,"48":0.00203,"49":0.00203,"53":0.00203,"56":0.00407,"58":0.0061,"65":0.00407,"66":0.00203,"67":0.00203,"68":0.00203,"69":0.00203,"70":0.00203,"72":0.01017,"73":0.00203,"74":0.00203,"75":0.00407,"76":0.00203,"78":0.00203,"79":0.01831,"80":0.0061,"81":0.00203,"83":0.00814,"84":0.00203,"85":0.00407,"86":0.00814,"87":0.02441,"88":0.00814,"89":0.00203,"90":0.00407,"91":0.00407,"92":0.00203,"93":0.0122,"94":0.00407,"95":0.00407,"96":0.00203,"97":0.00407,"98":0.00814,"99":0.02441,"100":0.00203,"101":0.00407,"102":0.00814,"103":0.03458,"104":0.0061,"105":0.0061,"106":0.0122,"107":0.01017,"108":0.01424,"109":0.73224,"110":0.01627,"111":0.01627,"112":0.01424,"113":0.00407,"114":0.01627,"115":0.03051,"116":0.05085,"117":0.02034,"118":0.02034,"119":0.05288,"120":0.15865,"121":0.56749,"122":8.36177,"123":2.55674,"124":0.00407,"125":0.00203,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 50 51 52 54 55 57 59 60 61 62 63 64 71 77 126"},F:{"28":0.00203,"36":0.00203,"46":0.00203,"79":0.00203,"81":0.00203,"82":0.0061,"83":0.00407,"89":0.00203,"95":0.00203,"105":0.00203,"106":0.01627,"107":0.25628,"108":0.03458,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00203,"16":0.00203,"18":0.00407,"92":0.00814,"94":0.00203,"100":0.00203,"105":0.00203,"107":0.00407,"108":0.00407,"109":0.0122,"110":0.00203,"113":0.00203,"114":0.0061,"115":0.00203,"116":0.00407,"117":0.01017,"118":0.00814,"119":0.01017,"120":0.03661,"121":0.42511,"122":2.08282,"123":0.14848,_:"13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 95 96 97 98 99 101 102 103 104 106 111 112"},E:{"13":0.00203,"14":0.02034,"15":0.0061,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.00814,"11.1":0.00203,"12.1":0.00203,"13.1":0.01424,"14.1":0.04475,"15.1":0.0122,"15.2-15.3":0.0061,"15.4":0.02441,"15.5":0.02441,"15.6":0.13831,"16.0":0.01627,"16.1":0.05085,"16.2":0.03458,"16.3":0.08543,"16.4":0.02644,"16.5":0.05492,"16.6":0.25222,"17.0":0.03254,"17.1":0.07322,"17.2":0.1912,"17.3":0.74444,"17.4":0.13831},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00593,"5.0-5.1":0.00296,"6.0-6.1":0.01778,"7.0-7.1":0.02075,"8.1-8.4":0.00593,"9.0-9.2":0.01186,"9.3":0.0741,"10.0-10.2":0.01186,"10.3":0.12449,"11.0-11.2":0.08892,"11.3-11.4":0.02964,"12.0-12.1":0.02668,"12.2-12.5":0.5128,"13.0-13.1":0.00889,"13.2":0.08892,"13.3":0.02668,"13.4-13.7":0.10078,"14.0-14.4":0.19267,"14.5-14.8":0.30234,"15.0-15.1":0.13042,"15.2-15.3":0.15414,"15.4":0.18081,"15.5":0.2312,"15.6-15.8":1.93559,"16.0":0.4713,"16.1":0.9752,"16.2":0.4713,"16.3":0.83885,"16.4":0.17785,"16.5":0.37645,"16.6-16.7":2.85151,"17.0":0.37052,"17.1":0.74104,"17.2":1.19455,"17.3":14.70218,"17.4":2.1579,"17.5":0},P:{"4":0.01033,"20":0.02067,"21":0.062,"22":0.08267,"23":0.89899,"24":0.95066,"5.0-5.4":0.01033,_:"6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.04133,"11.1-11.2":0.01033,"13.0":0.01033,"14.0":0.01033,"16.0":0.02067,"17.0":0.01033,"18.0":0.01033,"19.0":0.04133},I:{"0":0.06347,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.53372,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00215,"11":0.03446,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":47.25898},R:{_:"0"},M:{"0":0.07966},Q:{_:"14.9"},O:{"0":1.20287},H:{"0":0}}; +module.exports={C:{"34":0.002,"52":0.002,"66":0.002,"68":0.002,"78":0.002,"82":0.002,"108":0.002,"110":0.002,"115":0.05991,"120":0.00999,"121":0.002,"122":0.00399,"123":0.00999,"124":0.25162,"125":0.15177,"126":0.002,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 70 71 72 73 74 75 76 77 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 111 112 113 114 116 117 118 119 127 128 3.5 3.6"},D:{"11":0.00399,"34":0.002,"38":0.00399,"41":0.00399,"43":0.002,"47":0.002,"48":0.002,"49":0.002,"51":0.002,"56":0.00399,"58":0.00999,"63":0.002,"64":0.002,"65":0.002,"66":0.002,"67":0.002,"68":0.002,"69":0.002,"70":0.002,"72":0.00799,"73":0.002,"74":0.002,"75":0.00399,"76":0.002,"78":0.00399,"79":0.02396,"80":0.00799,"81":0.002,"83":0.00799,"85":0.00399,"86":0.00799,"87":0.02396,"88":0.00599,"89":0.002,"90":0.00399,"91":0.00399,"92":0.002,"93":0.01198,"94":0.00599,"95":0.00599,"96":0.002,"97":0.00399,"98":0.00999,"99":0.02396,"100":0.002,"101":0.00399,"102":0.00799,"103":0.03794,"104":0.00399,"105":0.00799,"106":0.00799,"107":0.01398,"108":0.01797,"109":0.665,"110":0.01997,"111":0.01797,"112":0.01598,"113":0.00599,"114":0.01398,"115":0.01997,"116":0.04593,"117":0.01797,"118":0.02197,"119":0.03994,"120":0.09186,"121":0.13779,"122":0.43335,"123":7.17522,"124":4.25161,"125":0.02197,"126":0.002,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 44 45 46 50 52 53 54 55 57 59 60 61 62 71 77 84 127"},F:{"28":0.002,"36":0.002,"46":0.002,"79":0.002,"82":0.00399,"83":0.002,"95":0.002,"106":0.002,"107":0.21767,"108":0.07189,"109":0.01198,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.002,"15":0.002,"16":0.002,"18":0.00399,"92":0.00799,"100":0.002,"105":0.002,"107":0.002,"108":0.002,"109":0.01198,"111":0.002,"113":0.002,"114":0.00399,"115":0.002,"116":0.002,"117":0.00799,"118":0.00999,"119":0.00999,"120":0.02197,"121":0.03195,"122":0.16375,"123":1.37394,"124":0.82876,_:"13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106 110 112"},E:{"13":0.002,"14":0.01797,"15":0.00399,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.002,"11.1":0.002,"12.1":0.002,"13.1":0.00999,"14.1":0.04194,"15.1":0.01198,"15.2-15.3":0.00599,"15.4":0.01797,"15.5":0.02396,"15.6":0.14578,"16.0":0.01598,"16.1":0.05592,"16.2":0.03395,"16.3":0.08387,"16.4":0.02796,"16.5":0.04393,"16.6":0.22766,"17.0":0.02996,"17.1":0.05791,"17.2":0.10784,"17.3":0.33749,"17.4":0.71293,"17.5":0.00599},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00508,"5.0-5.1":0.00508,"6.0-6.1":0.0127,"7.0-7.1":0.02032,"8.1-8.4":0.00508,"9.0-9.2":0.0127,"9.3":0.0635,"10.0-10.2":0.0127,"10.3":0.10161,"11.0-11.2":0.08637,"11.3-11.4":0.0254,"12.0-12.1":0.01778,"12.2-12.5":0.41404,"13.0-13.1":0.00762,"13.2":0.08383,"13.3":0.02032,"13.4-13.7":0.07874,"14.0-14.4":0.15495,"14.5-14.8":0.23623,"15.0-15.1":0.10923,"15.2-15.3":0.12447,"15.4":0.14225,"15.5":0.18035,"15.6-15.8":1.57489,"16.0":0.36832,"16.1":0.76713,"16.2":0.36832,"16.3":0.65028,"16.4":0.13463,"16.5":0.28196,"16.6-16.7":2.22771,"17.0":0.26672,"17.1":0.49279,"17.2":0.65536,"17.3":4.78057,"17.4":10.79057,"17.5":0.09907},P:{"4":0.02036,"20":0.01018,"21":0.05091,"22":0.07127,"23":0.21382,"24":1.344,"5.0-5.4":0.01018,_:"6.2-6.4 8.2 9.2 10.1 12.0 15.0","7.2-7.4":0.03055,"11.1-11.2":0.01018,"13.0":0.01018,"14.0":0.01018,"16.0":0.02036,"17.0":0.01018,"18.0":0.01018,"19.0":0.03055},I:{"0":0.06376,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"8":0.00571,"10":0.00285,"11":0.03138,_:"6 7 9 5.5"},K:{"0":0.50419,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.008},O:{"0":1.40853},H:{"0":0},L:{"0":51.53931},R:{_:"0"},M:{"0":0.08003}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js index c926a2d2a361a9..de6cd435ca4d5a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SB.js @@ -1 +1 @@ -module.exports={C:{"45":0.00374,"88":0.00374,"98":0.00374,"101":0.00748,"111":0.01122,"115":0.01496,"119":0.00748,"120":0.00374,"122":0.0374,"123":0.24684,"124":0.17578,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 99 100 102 103 104 105 106 107 108 109 110 112 113 114 116 117 118 121 125 126 127 3.5 3.6"},D:{"34":0.00374,"49":0.00374,"53":0.25432,"63":0.00748,"69":0.00374,"70":0.00748,"71":0.0187,"79":0.00374,"81":0.00374,"84":0.00748,"86":0.00374,"87":0.01496,"88":0.00374,"89":0.00748,"90":0.00374,"94":0.0187,"95":0.00374,"97":0.00374,"102":0.02992,"103":0.01122,"104":0.02618,"105":0.00748,"106":0.00374,"108":0.63206,"109":0.38522,"110":0.00374,"111":0.00374,"112":0.02244,"113":2.16546,"114":0.00748,"115":0.00374,"116":0.04114,"117":0.01122,"118":0.01122,"119":0.02992,"120":0.0935,"121":0.3366,"122":18.9992,"123":1.98968,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 64 65 66 67 68 72 73 74 75 76 77 78 80 83 85 91 92 93 96 98 99 100 101 107 124 125 126"},F:{"102":0.0187,"107":0.07106,"108":0.16082,"109":0.00374,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00374,"14":0.00374,"15":0.01496,"16":0.02244,"17":0.04114,"18":0.11968,"84":0.00374,"85":0.01122,"92":0.04114,"100":0.00374,"104":0.00374,"107":0.00374,"109":0.06358,"110":0.00748,"112":0.00748,"113":0.02992,"114":0.02244,"115":0.01496,"116":0.01496,"117":0.04862,"118":0.06732,"119":0.0187,"120":0.0748,"121":0.2618,"122":3.48568,"123":0.20196,_:"12 79 80 81 83 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 106 108 111"},E:{"11":0.00374,_:"0 4 5 6 7 8 9 10 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.0 16.3 16.5 17.5","12.1":0.01122,"13.1":0.0187,"14.1":0.02244,"15.6":0.12342,"16.1":0.01496,"16.2":0.00374,"16.4":0.00374,"16.6":0.00374,"17.0":0.0374,"17.1":0.00374,"17.2":0.07854,"17.3":0.04862,"17.4":0.02618},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00067,"5.0-5.1":0.00034,"6.0-6.1":0.00201,"7.0-7.1":0.00235,"8.1-8.4":0.00067,"9.0-9.2":0.00134,"9.3":0.00839,"10.0-10.2":0.00134,"10.3":0.01409,"11.0-11.2":0.01007,"11.3-11.4":0.00336,"12.0-12.1":0.00302,"12.2-12.5":0.05805,"13.0-13.1":0.00101,"13.2":0.01007,"13.3":0.00302,"13.4-13.7":0.01141,"14.0-14.4":0.02181,"14.5-14.8":0.03422,"15.0-15.1":0.01476,"15.2-15.3":0.01745,"15.4":0.02047,"15.5":0.02617,"15.6-15.8":0.21911,"16.0":0.05335,"16.1":0.11039,"16.2":0.05335,"16.3":0.09496,"16.4":0.02013,"16.5":0.04261,"16.6-16.7":0.32279,"17.0":0.04194,"17.1":0.08388,"17.2":0.13522,"17.3":1.66426,"17.4":0.24427,"17.5":0},P:{"4":0.03062,"20":0.09187,"21":0.17354,"22":0.26542,"23":1.18416,"24":0.54104,"5.0-5.4":0.05104,"6.2-6.4":0.04083,"7.2-7.4":0.11229,_:"8.2 10.1 12.0","9.2":0.04083,"11.1-11.2":0.04083,"13.0":0.02042,"14.0":0.18375,"15.0":0.04083,"16.0":0.1225,"17.0":0.01021,"18.0":0.05104,"19.0":0.1225},I:{"0":0.08728,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},K:{"0":1.9332,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0935,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":58.73622},R:{_:"0"},M:{"0":0.06886},Q:{"14.9":0.01878},O:{"0":1.33338},H:{"0":0.07}}; +module.exports={C:{"94":0.01586,"104":0.00317,"105":0.00317,"112":0.00951,"113":0.00317,"115":0.02537,"117":0.00317,"121":0.00951,"123":0.00634,"124":0.32978,"125":0.09196,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 106 107 108 109 110 111 114 116 118 119 120 122 126 127 128 3.5 3.6"},D:{"18":0.01586,"53":0.01268,"71":0.00634,"72":0.00634,"76":0.00317,"81":0.00951,"84":0.00634,"87":0.00317,"90":0.00634,"91":0.00634,"92":0.01586,"94":0.01903,"95":0.00634,"97":0.00634,"99":0.01268,"102":0.00951,"103":0.15221,"105":0.01268,"107":0.00317,"108":1.04326,"109":0.27271,"111":0.02854,"112":0.03805,"113":0.01268,"114":0.00634,"115":0.00317,"116":0.00634,"117":0.00317,"118":0.00951,"120":0.01903,"121":0.06342,"122":0.5581,"123":10.41356,"124":7.35989,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 75 77 78 79 80 83 85 86 88 89 93 96 98 100 101 104 106 110 119 125 126 127"},F:{"63":0.00317,"80":0.00317,"95":0.00317,"102":0.03171,"107":0.00317,"108":0.13318,"109":0.04439,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00317,"13":0.01268,"15":0.00634,"16":0.00951,"17":0.03171,"18":0.1205,"81":0.02537,"84":0.00317,"85":0.00634,"89":0.01268,"92":0.02537,"96":0.00634,"98":0.00317,"103":0.00317,"107":0.05074,"108":0.00634,"109":0.03488,"110":0.00634,"111":0.00317,"112":0.00634,"114":0.00634,"115":0.01586,"116":0.00634,"117":0.00634,"118":0.00951,"119":0.02854,"120":0.02537,"121":0.06342,"122":0.56444,"123":2.55583,"124":0.82446,_:"14 79 80 83 86 87 88 90 91 93 94 95 97 99 100 101 102 104 105 106 113"},E:{"14":0.00317,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 16.2 16.5 17.0 17.5","12.1":0.00634,"13.1":0.01903,"14.1":0.00317,"15.4":0.00951,"15.5":0.00317,"15.6":0.14587,"16.0":0.00317,"16.1":0.01268,"16.3":0.08245,"16.4":0.00317,"16.6":0.01903,"17.1":0.02854,"17.2":0.10147,"17.3":0.01903,"17.4":0.04439},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00072,"5.0-5.1":0.00072,"6.0-6.1":0.00181,"7.0-7.1":0.00289,"8.1-8.4":0.00072,"9.0-9.2":0.00181,"9.3":0.00903,"10.0-10.2":0.00181,"10.3":0.01445,"11.0-11.2":0.01228,"11.3-11.4":0.00361,"12.0-12.1":0.00253,"12.2-12.5":0.05888,"13.0-13.1":0.00108,"13.2":0.01192,"13.3":0.00289,"13.4-13.7":0.0112,"14.0-14.4":0.02204,"14.5-14.8":0.0336,"15.0-15.1":0.01553,"15.2-15.3":0.0177,"15.4":0.02023,"15.5":0.02565,"15.6-15.8":0.22398,"16.0":0.05238,"16.1":0.1091,"16.2":0.05238,"16.3":0.09248,"16.4":0.01915,"16.5":0.0401,"16.6-16.7":0.31682,"17.0":0.03793,"17.1":0.07008,"17.2":0.0932,"17.3":0.67988,"17.4":1.53461,"17.5":0.01409},P:{"4":0.0516,"20":0.0516,"21":0.14448,"22":0.18576,"23":0.6192,"24":1.01135,_:"5.0-5.4 8.2 9.2 10.1 12.0","6.2-6.4":0.01032,"7.2-7.4":0.13416,"11.1-11.2":0.02064,"13.0":0.02064,"14.0":0.1548,"15.0":0.03096,"16.0":0.09288,"17.0":0.03096,"18.0":0.0516,"19.0":0.12384},I:{"0":0.21763,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00055},A:{"11":0.08205,_:"6 7 8 9 10 5.5"},K:{"0":1.47555,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.02049},O:{"0":1.09947},H:{"0":0.02},L:{"0":64.30841},R:{_:"0"},M:{"0":0.19121}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js index a9f775c3bbd2cd..d6c29531c69fb2 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SC.js @@ -1 +1 @@ -module.exports={C:{"39":0.00618,"50":0.04323,"52":1.99453,"53":0.04323,"56":0.03705,"60":0.00618,"68":0.0741,"69":0.08645,"70":0.08028,"71":0.08645,"72":0.08645,"73":0.08645,"74":0.08645,"75":0.08645,"76":0.08028,"77":0.09263,"78":0.09263,"79":0.08028,"80":0.08645,"81":0.08028,"82":0.09263,"83":0.08645,"91":0.0247,"95":0.42608,"101":0.01235,"102":0.03088,"104":0.11733,"105":0.00618,"110":0.00618,"113":0.01235,"115":1.37703,"117":0.00618,"118":0.00618,"119":0.01853,"120":0.03705,"121":0.94478,"122":0.13585,"123":0.58045,"124":0.16055,"125":0.00618,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 61 62 63 64 65 66 67 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 103 106 107 108 109 111 112 114 116 126 127 3.5 3.6"},D:{"38":0.0247,"43":0.00618,"45":0.13585,"56":0.00618,"65":0.00618,"66":0.00618,"67":0.01235,"68":0.95713,"69":0.62368,"70":0.61133,"71":0.61133,"72":0.95095,"73":0.30258,"74":0.95095,"75":0.6175,"76":0.61133,"77":0.6422,"78":0.9386,"79":0.94478,"80":1.29675,"81":0.96948,"83":0.9139,"84":0.6175,"85":0.9633,"86":1.54993,"87":0.99418,"88":1.27205,"89":0.98183,"90":1.26588,"91":0.29023,"92":0.01853,"95":0.00618,"98":0.03705,"99":0.00618,"100":0.00618,"101":0.01853,"102":0.11733,"103":0.01853,"105":0.20995,"106":0.01235,"107":0.01235,"108":0.01235,"109":0.36433,"110":0.0247,"111":0.0494,"112":0.0247,"113":0.1482,"114":0.1976,"115":0.01853,"116":1.3832,"117":0.0247,"118":0.23465,"119":0.19143,"120":5.2858,"121":1.50053,"122":5.57603,"123":1.40173,"124":0.01235,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 63 64 93 94 96 97 104 125 126"},F:{"45":0.01235,"46":0.01853,"47":0.0247,"48":0.01235,"49":0.03088,"50":0.00618,"51":0.01853,"52":0.0247,"53":0.14203,"54":0.16055,"55":0.18525,"56":0.03088,"57":0.00618,"58":0.00618,"60":0.0247,"62":0.0247,"63":0.01853,"64":0.00618,"65":0.0247,"66":0.0247,"67":0.04323,"68":0.03705,"69":0.01235,"70":0.01853,"71":0.01235,"72":0.01853,"73":0.03088,"74":0.0247,"75":0.03705,"76":0.03088,"77":0.00618,"88":0.00618,"95":0.01235,"102":0.01235,"103":0.01235,"104":0.00618,"105":0.0247,"106":0.03088,"107":0.1482,"108":0.04323,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00618,"14":0.00618,"18":0.01853,"79":0.08645,"80":0.22848,"81":0.22848,"83":0.21613,"84":0.23465,"85":0.1235,"86":0.1976,"87":0.1482,"88":0.16055,"89":0.1976,"90":0.1729,"91":0.01853,"92":0.01853,"102":0.00618,"103":0.00618,"107":0.00618,"109":0.01235,"112":0.01235,"113":0.01853,"114":0.0247,"116":0.0247,"117":0.03088,"118":0.01235,"119":0.01235,"120":0.45078,"121":0.04323,"122":1.03123,"123":0.05558,_:"13 15 16 17 93 94 95 96 97 98 99 100 101 104 105 106 108 110 111 115"},E:{"13":0.01235,"14":0.03088,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 11.1 12.1 17.5","9.1":5.61308,"10.1":0.00618,"13.1":0.01235,"14.1":0.00618,"15.1":0.06793,"15.2-15.3":0.01235,"15.4":0.01235,"15.5":0.03088,"15.6":0.06175,"16.0":0.00618,"16.1":0.01235,"16.2":0.03088,"16.3":0.03705,"16.4":0.01235,"16.5":0.41373,"16.6":0.1729,"17.0":0.01235,"17.1":0.03705,"17.2":0.1729,"17.3":0.18525,"17.4":0.05558},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00065,"6.0-6.1":0.00392,"7.0-7.1":0.00457,"8.1-8.4":0.00131,"9.0-9.2":0.00261,"9.3":0.01631,"10.0-10.2":0.00261,"10.3":0.02741,"11.0-11.2":0.01958,"11.3-11.4":0.00653,"12.0-12.1":0.00587,"12.2-12.5":0.11289,"13.0-13.1":0.00196,"13.2":0.01958,"13.3":0.00587,"13.4-13.7":0.02219,"14.0-14.4":0.04242,"14.5-14.8":0.06656,"15.0-15.1":0.02871,"15.2-15.3":0.03393,"15.4":0.03981,"15.5":0.0509,"15.6-15.8":0.42611,"16.0":0.10375,"16.1":0.21469,"16.2":0.10375,"16.3":0.18467,"16.4":0.03915,"16.5":0.08287,"16.6-16.7":0.62775,"17.0":0.08157,"17.1":0.16314,"17.2":0.26298,"17.3":3.23662,"17.4":0.47505,"17.5":0},P:{"4":0.0105,"20":0.0105,"21":0.04202,"22":0.03151,"23":0.63027,"24":0.55674,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","7.2-7.4":0.02101,"13.0":0.02101,"17.0":0.0105,"19.0":0.05252},I:{"0":0.01524,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":1.06335,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.16673,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":31.47675},R:{_:"0"},M:{"0":0.63495},Q:{_:"14.9"},O:{"0":0.59288},H:{"0":0}}; +module.exports={C:{"50":0.04801,"52":4.25471,"53":0.04201,"56":0.05401,"60":0.012,"64":0.006,"68":0.024,"69":0.024,"70":0.03001,"71":0.03001,"72":0.03001,"73":0.03601,"74":0.03601,"75":0.03001,"76":0.03601,"77":0.024,"78":0.07801,"79":0.03601,"80":0.03601,"81":0.03601,"82":0.03001,"83":0.024,"91":0.012,"95":0.05401,"100":0.006,"102":0.03601,"104":0.05401,"105":0.04201,"107":0.006,"110":0.018,"113":0.012,"115":2.15436,"117":0.006,"118":0.006,"119":0.03001,"120":0.03001,"121":0.96016,"122":0.13202,"123":0.06001,"124":0.97816,"125":0.25204,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 54 55 57 58 59 61 62 63 65 66 67 84 85 86 87 88 89 90 92 93 94 96 97 98 99 101 103 106 108 109 111 112 114 116 126 127 128 3.5 3.6"},D:{"41":0.012,"45":6.53509,"60":0.006,"66":0.006,"68":0.35406,"69":0.25804,"70":0.27005,"71":0.23404,"72":0.34206,"73":0.14402,"74":0.33606,"75":0.24004,"76":0.20403,"77":0.26404,"78":0.36006,"79":0.34206,"80":0.66611,"81":0.32405,"83":0.38406,"84":0.22204,"85":0.36006,"86":0.5881,"87":0.63611,"88":0.50408,"89":0.35406,"90":0.47408,"91":0.12002,"92":0.04201,"94":0.006,"95":0.012,"96":0.006,"98":0.03601,"99":0.006,"100":0.006,"101":0.10202,"102":0.09602,"103":0.018,"105":0.16803,"106":0.04801,"107":0.012,"108":0.006,"109":0.73212,"110":0.006,"111":0.006,"112":0.018,"113":0.07801,"114":0.15003,"115":0.11402,"116":0.34206,"117":0.03001,"118":0.30605,"119":0.10202,"120":2.86848,"121":0.72612,"122":1.23621,"123":9.78763,"124":3.21654,"125":0.012,"126":0.006,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 59 61 62 63 64 65 67 93 97 104 127"},F:{"45":0.006,"46":0.012,"47":0.012,"48":0.006,"49":0.018,"50":0.006,"51":0.006,"52":0.006,"53":0.06601,"54":0.10202,"55":0.08401,"56":0.024,"57":0.006,"60":0.012,"62":0.006,"63":0.012,"65":0.006,"66":0.006,"67":0.018,"68":0.024,"69":0.006,"70":0.006,"71":0.006,"72":0.006,"73":0.006,"74":0.018,"75":0.024,"76":0.012,"105":0.04201,"106":0.018,"107":0.19203,"108":0.21604,"109":0.06001,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 58 64 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.006,"16":0.018,"17":0.012,"18":0.06601,"79":0.04201,"80":0.10802,"81":0.09602,"83":0.08401,"84":0.10802,"85":0.06001,"86":0.10802,"87":0.06601,"88":0.08401,"89":0.07801,"90":0.10202,"91":0.006,"92":0.018,"98":0.018,"100":0.024,"101":0.006,"108":0.006,"109":0.018,"113":0.006,"114":0.006,"117":0.006,"118":0.012,"119":0.006,"120":0.40207,"121":0.04801,"122":0.13802,"123":1.69228,"124":0.77413,_:"12 13 15 93 94 95 96 97 99 102 103 104 105 106 107 110 111 112 115 116"},E:{"9":0.006,"14":0.03601,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 16.4 17.5","9.1":2.01634,"12.1":0.006,"13.1":0.024,"14.1":0.012,"15.1":0.06001,"15.2-15.3":0.03001,"15.4":0.006,"15.5":0.018,"15.6":0.05401,"16.0":0.006,"16.1":0.03601,"16.2":0.024,"16.3":0.024,"16.5":0.30005,"16.6":0.14402,"17.0":0.006,"17.1":0.012,"17.2":0.13202,"17.3":0.25204,"17.4":1.02617},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00115,"5.0-5.1":0.00115,"6.0-6.1":0.00287,"7.0-7.1":0.0046,"8.1-8.4":0.00115,"9.0-9.2":0.00287,"9.3":0.01437,"10.0-10.2":0.00287,"10.3":0.02299,"11.0-11.2":0.01954,"11.3-11.4":0.00575,"12.0-12.1":0.00402,"12.2-12.5":0.09367,"13.0-13.1":0.00172,"13.2":0.01896,"13.3":0.0046,"13.4-13.7":0.01781,"14.0-14.4":0.03505,"14.5-14.8":0.05344,"15.0-15.1":0.02471,"15.2-15.3":0.02816,"15.4":0.03218,"15.5":0.0408,"15.6-15.8":0.35629,"16.0":0.08333,"16.1":0.17355,"16.2":0.08333,"16.3":0.14711,"16.4":0.03046,"16.5":0.06379,"16.6-16.7":0.50397,"17.0":0.06034,"17.1":0.11148,"17.2":0.14826,"17.3":1.0815,"17.4":2.44114,"17.5":0.02241},P:{"21":0.04867,"22":0.01217,"23":0.08517,"24":0.36502,_:"4 20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.01217,"17.0":0.01217,"19.0":0.01217},I:{"0":0.00398,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":0.21004,_:"6 7 8 9 10 5.5"},K:{"0":1.11572,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.17996},H:{"0":0},L:{"0":32.60206},R:{_:"0"},M:{"0":3.28318}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js index 8da2f47c751209..0f44756393f5d6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SD.js @@ -1 +1 @@ -module.exports={C:{"28":0.00054,"30":0.00054,"44":0.00701,"45":0.00162,"47":0.00054,"48":0.00054,"49":0.00216,"52":0.00862,"53":0.00054,"54":0.00054,"56":0.0027,"57":0.0027,"58":0.00054,"59":0.00162,"60":0.00054,"61":0.00108,"63":0.0027,"66":0.00054,"70":0.00054,"72":0.0097,"74":0.00054,"78":0.00054,"80":0.00162,"83":0.00377,"84":0.00162,"85":0.00162,"86":0.00054,"87":0.00162,"89":0.00108,"93":0.00162,"96":0.00108,"97":0.00054,"102":0.0027,"104":0.00054,"106":0.00108,"107":0.00108,"108":0.00162,"109":0.08894,"111":0.00162,"112":0.00108,"113":0.00054,"114":0.00431,"115":0.08247,"116":0.0027,"117":0.00108,"118":0.00108,"119":0.00431,"120":0.00108,"121":0.00485,"122":0.00539,"123":0.34227,"124":0.09433,"125":0.00054,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 31 32 33 34 35 36 37 38 39 40 41 42 43 46 50 51 55 62 64 65 67 68 69 71 73 75 76 77 79 81 82 88 90 91 92 94 95 98 99 100 101 103 105 110 126 127 3.5 3.6"},D:{"5":0.00108,"23":0.00108,"27":0.00216,"30":0.00108,"33":0.00485,"36":0.00054,"38":0.0027,"40":0.0027,"43":0.01617,"44":0.00108,"45":0.00054,"46":0.00216,"47":0.00216,"48":0.00701,"49":0.00485,"50":0.00701,"52":0.00162,"55":0.00431,"56":0.0027,"57":0.00323,"58":0.0954,"61":0.01132,"62":0.0027,"63":0.00755,"64":0.0027,"65":0.00108,"66":0.00108,"68":0.0124,"69":0.00216,"70":0.03126,"71":0.00593,"72":0.00216,"74":0.00323,"75":0.00431,"77":0.00054,"78":0.03773,"79":0.03719,"80":0.00377,"81":0.00162,"83":0.00485,"84":0.00054,"85":0.00162,"86":0.00054,"87":0.01294,"88":0.00701,"89":0.00431,"91":0.00809,"92":0.00539,"93":0.00539,"94":0.00162,"95":0.00162,"96":0.00216,"97":0.00216,"98":0.00431,"99":0.01617,"100":0.00539,"101":0.00162,"102":0.01132,"103":0.00593,"104":0.0194,"105":0.00593,"106":0.02318,"107":0.01563,"108":0.01348,"109":0.19027,"110":0.00377,"111":0.01078,"112":0.00323,"114":0.00755,"115":0.00647,"116":0.00701,"117":0.00701,"118":0.00377,"119":0.01455,"120":0.09163,"121":0.1175,"122":0.64626,"123":0.19943,"124":0.0027,"125":0.00162,_:"4 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 24 25 26 28 29 31 32 34 35 37 39 41 42 51 53 54 59 60 67 73 76 90 113 126"},F:{"22":0.00323,"34":0.00162,"38":0.0027,"42":0.00162,"54":0.00431,"68":0.00108,"70":0.00377,"75":0.00108,"79":0.00862,"81":0.00054,"82":0.00162,"84":0.0027,"86":0.00054,"92":0.00108,"95":0.01348,"96":0.00054,"102":0.00108,"105":0.00108,"106":0.00916,"107":0.05498,"108":0.03072,"109":0.00054,_:"9 11 12 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 43 44 45 46 47 48 49 50 51 52 53 55 56 57 58 60 62 63 64 65 66 67 69 71 72 73 74 76 77 78 80 83 85 87 88 89 90 91 93 94 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00755,"13":0.00054,"14":0.00216,"15":0.00054,"16":0.00162,"17":0.00162,"18":0.03989,"83":0.00054,"84":0.01509,"89":0.00539,"90":0.00701,"92":0.05282,"100":0.00431,"107":0.00054,"108":0.00216,"109":0.00216,"110":0.00216,"112":0.00377,"113":0.00162,"114":0.00539,"116":0.00054,"118":0.00216,"119":0.00323,"120":0.03126,"121":0.02587,"122":0.33364,"123":0.02102,_:"79 80 81 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 111 115 117"},E:{"7":0.00054,"14":0.00162,_:"0 4 5 6 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.5 16.0 16.2 16.5 17.0 17.5","5.1":0.66459,"13.1":0.00108,"15.4":0.01132,"15.6":0.00108,"16.1":0.00054,"16.3":0.00162,"16.4":0.00108,"16.6":0.00431,"17.1":0.00108,"17.2":0.00216,"17.3":0.00162,"17.4":0.00054},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00044,"5.0-5.1":0.00022,"6.0-6.1":0.00131,"7.0-7.1":0.00153,"8.1-8.4":0.00044,"9.0-9.2":0.00087,"9.3":0.00546,"10.0-10.2":0.00087,"10.3":0.00918,"11.0-11.2":0.00656,"11.3-11.4":0.00219,"12.0-12.1":0.00197,"12.2-12.5":0.0378,"13.0-13.1":0.00066,"13.2":0.00656,"13.3":0.00197,"13.4-13.7":0.00743,"14.0-14.4":0.0142,"14.5-14.8":0.02229,"15.0-15.1":0.00962,"15.2-15.3":0.01136,"15.4":0.01333,"15.5":0.01705,"15.6-15.8":0.1427,"16.0":0.03475,"16.1":0.0719,"16.2":0.03475,"16.3":0.06184,"16.4":0.01311,"16.5":0.02775,"16.6-16.7":0.21022,"17.0":0.02732,"17.1":0.05463,"17.2":0.08807,"17.3":1.08389,"17.4":0.15909,"17.5":0},P:{"4":0.38195,"20":0.11056,"21":0.4322,"22":0.29149,"23":0.57292,"24":0.33169,"5.0-5.4":0.05026,"6.2-6.4":0.06031,"7.2-7.4":0.46236,_:"8.2","9.2":0.03015,"10.1":0.01005,"11.1-11.2":0.04021,"12.0":0.01005,"13.0":0.04021,"14.0":0.11056,"15.0":0.0201,"16.0":0.29149,"17.0":0.09046,"18.0":0.17087,"19.0":0.35179},I:{"0":0.14132,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00034},K:{"0":12.68792,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01401,_:"6 7 8 9 10 5.5"},S:{"2.5":0.03784,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":72.5035},R:{_:"0"},M:{"0":0.06622},Q:{_:"14.9"},O:{"0":1.10682},H:{"0":2.94}}; +module.exports={C:{"26":0.00038,"28":0.00038,"30":0.00114,"38":0.0019,"39":0.00038,"41":0.00076,"42":0.00038,"44":0.00606,"46":0.00417,"47":0.0072,"48":0.0019,"49":0.0019,"50":0.00038,"51":0.00114,"52":0.00606,"54":0.00076,"55":0.00038,"56":0.00038,"57":0.00114,"58":0.00114,"60":0.00227,"62":0.00114,"63":0.00114,"64":0.0144,"66":0.00076,"68":0.00038,"69":0.00114,"70":0.00038,"72":0.00114,"74":0.00038,"76":0.00531,"78":0.00038,"80":0.00227,"81":0.0019,"83":0.00038,"84":0.00038,"85":0.00114,"87":0.00076,"88":0.00038,"89":0.00152,"91":0.00038,"95":0.0019,"96":0.00076,"98":0.00038,"101":0.00038,"102":0.00076,"104":0.00038,"108":0.00038,"109":0.00076,"110":0.00038,"111":0.0019,"113":0.00303,"114":0.00038,"115":0.08073,"117":0.00038,"118":0.00152,"119":0.00114,"120":0.0019,"121":0.00303,"122":0.00152,"123":0.00644,"124":0.13947,"125":0.07618,"126":0.00076,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 29 31 32 33 34 35 36 37 40 43 45 53 59 61 65 67 71 73 75 77 79 82 86 90 92 93 94 97 99 100 103 105 106 107 112 116 127 128 3.5 3.6"},D:{"11":0.00076,"26":0.00038,"28":0.00076,"29":0.00038,"33":0.00038,"35":0.00114,"37":0.00038,"38":0.00303,"40":0.00227,"43":0.00152,"44":0.00038,"47":0.00227,"48":0.00038,"49":0.0019,"50":0.01061,"51":0.00038,"52":0.00152,"54":0.00038,"55":0.00493,"56":0.0019,"57":0.00379,"58":0.07428,"59":0.00114,"60":0.00341,"61":0.0019,"63":0.01099,"64":0.00227,"65":0.00152,"66":0.00038,"68":0.01364,"69":0.00493,"70":0.01516,"71":0.00379,"72":0.00038,"73":0.00038,"74":0.00341,"75":0.00152,"76":0.00152,"78":0.03828,"79":0.01327,"80":0.00796,"81":0.00076,"83":0.00531,"84":0.00114,"85":0.00644,"86":0.00265,"87":0.00303,"88":0.0144,"89":0.00227,"90":0.00076,"91":0.00531,"92":0.01023,"93":0.00569,"94":0.00227,"95":0.00114,"96":0.00227,"97":0.00076,"98":0.00265,"99":0.02615,"100":0.00152,"101":0.00076,"102":0.00227,"103":0.00493,"104":0.02691,"105":0.00417,"106":0.02577,"107":0.0019,"108":0.01175,"109":0.24256,"110":0.00152,"111":0.01819,"112":0.00303,"113":0.00227,"114":0.00531,"115":0.00493,"116":0.00644,"117":0.00872,"118":0.00417,"119":0.02691,"120":0.06519,"121":0.15615,"122":0.06519,"123":0.57343,"124":0.18154,"125":0.00076,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 30 31 32 34 36 39 41 42 45 46 53 62 67 77 126 127"},F:{"29":0.00152,"35":0.00076,"36":0.00076,"39":0.00038,"42":0.00038,"45":0.00076,"49":0.00076,"52":0.00038,"58":0.00076,"60":0.00076,"69":0.00076,"71":0.00038,"79":0.00531,"81":0.00038,"82":0.0019,"83":0.00038,"84":0.00038,"85":0.00114,"86":0.00076,"94":0.00152,"95":0.00455,"96":0.00152,"101":0.00076,"104":0.00227,"106":0.00379,"107":0.01327,"108":0.03676,"109":0.0307,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 37 38 40 41 43 44 46 47 48 50 51 53 54 55 56 57 62 63 64 65 66 67 68 70 72 73 74 75 76 77 78 80 87 88 89 90 91 92 93 97 98 99 100 102 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00303,"13":0.00303,"14":0.00152,"15":0.00076,"16":0.00303,"17":0.00265,"18":0.01402,"84":0.00341,"89":0.00152,"90":0.0019,"92":0.04927,"100":0.00227,"102":0.00038,"103":0.00038,"104":0.00038,"105":0.00038,"106":0.00038,"107":0.00265,"109":0.00985,"110":0.00417,"111":0.00038,"112":0.00076,"114":0.00038,"116":0.00038,"117":0.00038,"118":0.00076,"119":0.00417,"120":0.00569,"121":0.00606,"122":0.0216,"123":0.10498,"124":0.05117,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 108 113 115"},E:{"14":0.00152,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 13.1 14.1 15.1 15.2-15.3 16.1 16.2 16.3 16.4 16.5 17.0 17.5","5.1":0.06974,"12.1":0.00076,"15.4":0.00379,"15.5":0.00038,"15.6":0.0019,"16.0":0.00038,"16.6":0.00038,"17.1":0.00038,"17.2":0.00038,"17.3":0.00417,"17.4":0.00227},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00042,"5.0-5.1":0.00042,"6.0-6.1":0.00106,"7.0-7.1":0.00169,"8.1-8.4":0.00042,"9.0-9.2":0.00106,"9.3":0.00529,"10.0-10.2":0.00106,"10.3":0.00847,"11.0-11.2":0.0072,"11.3-11.4":0.00212,"12.0-12.1":0.00148,"12.2-12.5":0.0345,"13.0-13.1":0.00063,"13.2":0.00698,"13.3":0.00169,"13.4-13.7":0.00656,"14.0-14.4":0.01291,"14.5-14.8":0.01968,"15.0-15.1":0.0091,"15.2-15.3":0.01037,"15.4":0.01185,"15.5":0.01503,"15.6-15.8":0.13123,"16.0":0.03069,"16.1":0.06392,"16.2":0.03069,"16.3":0.05419,"16.4":0.01122,"16.5":0.02349,"16.6-16.7":0.18563,"17.0":0.02222,"17.1":0.04106,"17.2":0.05461,"17.3":0.39835,"17.4":0.89914,"17.5":0.00825},P:{"4":0.37452,"20":0.16195,"21":0.31378,"22":0.38464,"23":0.51623,"24":0.55672,"5.0-5.4":0.03037,"6.2-6.4":0.06073,"7.2-7.4":0.45549,_:"8.2 10.1 12.0","9.2":0.02024,"11.1-11.2":0.03037,"13.0":0.03037,"14.0":0.15183,"15.0":0.02024,"16.0":0.23281,"17.0":0.06073,"18.0":0.17208,"19.0":0.30366},I:{"0":0.21079,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00053},A:{"8":0.00114,"11":0.01706,_:"6 7 9 10 5.5"},K:{"0":17.13859,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02886,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":1.09679},H:{"0":2.19},L:{"0":70.11237},R:{_:"0"},M:{"0":0.13469}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js index 3054424b58049e..f689c557ef6354 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SE.js @@ -1 +1 @@ -module.exports={C:{"16":0.00561,"48":0.00561,"52":0.01684,"56":0.00561,"59":0.01123,"78":0.01684,"88":0.01123,"91":0.00561,"102":0.00561,"108":0.00561,"109":0.00561,"113":0.01123,"115":0.29193,"117":0.00561,"118":0.00561,"120":0.00561,"121":0.01684,"122":0.05614,"123":1.16771,"124":0.4828,"125":0.00561,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 110 111 112 114 116 119 126 127 3.5 3.6"},D:{"38":0.00561,"49":0.01123,"52":0.00561,"58":0.00561,"63":0.00561,"66":0.05053,"68":0.00561,"74":0.00561,"75":0.00561,"76":0.00561,"77":0.01123,"79":0.02807,"80":0.00561,"83":0.00561,"84":0.00561,"85":0.01123,"86":0.03368,"87":0.0393,"88":0.06175,"89":0.00561,"90":0.00561,"91":0.01123,"92":0.01684,"93":0.08421,"94":0.00561,"95":0.00561,"98":0.01684,"99":0.00561,"100":0.0393,"101":0.05614,"102":0.0393,"103":0.49403,"104":0.0393,"105":0.01123,"106":0.01684,"107":0.01684,"108":0.0393,"109":1.13403,"110":0.01123,"111":0.01684,"112":0.04491,"113":0.0393,"114":0.08982,"115":0.04491,"116":0.53333,"117":0.06737,"118":0.25824,"119":0.44351,"120":1.07227,"121":6.87154,"122":22.07986,"123":4.38453,"124":0.00561,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 53 54 55 56 57 59 60 61 62 64 65 67 69 70 71 72 73 78 81 96 97 125 126"},F:{"83":0.00561,"89":0.00561,"94":0.00561,"95":0.02246,"102":0.00561,"106":0.01684,"107":0.94877,"108":0.11789,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 90 91 92 93 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00561,"92":0.02246,"95":0.00561,"103":0.00561,"104":0.00561,"107":0.00561,"108":0.00561,"109":0.08982,"110":0.00561,"111":0.00561,"112":0.06175,"113":0.01123,"114":0.00561,"115":0.00561,"116":0.00561,"117":0.01123,"118":0.01123,"119":0.02246,"120":0.09544,"121":0.57824,"122":7.59574,"123":0.49965,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 102 105 106"},E:{"13":0.00561,"14":0.04491,"15":0.00561,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 17.5","5.1":0.00561,"11.1":0.01684,"12.1":0.01684,"13.1":0.06175,"14.1":0.14035,"15.1":0.01123,"15.2-15.3":0.01684,"15.4":0.04491,"15.5":0.05614,"15.6":0.43228,"16.0":0.03368,"16.1":0.08421,"16.2":0.07298,"16.3":0.17403,"16.4":0.06175,"16.5":0.09544,"16.6":0.6007,"17.0":0.0786,"17.1":0.15719,"17.2":0.42666,"17.3":1.4821,"17.4":0.43228},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0045,"5.0-5.1":0.00225,"6.0-6.1":0.01351,"7.0-7.1":0.01576,"8.1-8.4":0.0045,"9.0-9.2":0.00901,"9.3":0.0563,"10.0-10.2":0.00901,"10.3":0.09458,"11.0-11.2":0.06756,"11.3-11.4":0.02252,"12.0-12.1":0.02027,"12.2-12.5":0.38957,"13.0-13.1":0.00676,"13.2":0.06756,"13.3":0.02027,"13.4-13.7":0.07656,"14.0-14.4":0.14637,"14.5-14.8":0.22969,"15.0-15.1":0.09908,"15.2-15.3":0.1171,"15.4":0.13736,"15.5":0.17564,"15.6-15.8":1.47046,"16.0":0.35804,"16.1":0.74086,"16.2":0.35804,"16.3":0.63727,"16.4":0.13511,"16.5":0.28598,"16.6-16.7":2.16628,"17.0":0.28148,"17.1":0.56296,"17.2":0.90749,"17.3":11.16916,"17.4":1.63934,"17.5":0},P:{"4":0.0742,"20":0.0212,"21":0.0424,"22":0.0636,"23":1.65356,"24":1.61116,"5.0-5.4":0.0106,"6.2-6.4":0.0106,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0","16.0":0.0106,"17.0":0.0106,"18.0":0.0106,"19.0":0.0212},I:{"0":0.08301,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},K:{"0":0.16232,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0393,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":17.56679},R:{_:"0"},M:{"0":0.3378},Q:{_:"14.9"},O:{"0":0.01755},H:{"0":0}}; +module.exports={C:{"48":0.00569,"52":0.01706,"56":0.00569,"59":0.01137,"78":0.01706,"88":0.01137,"91":0.00569,"102":0.00569,"113":0.00569,"115":0.2843,"116":0.00569,"120":0.00569,"121":0.01137,"122":0.01706,"123":0.04549,"124":1.11446,"125":0.57997,"126":0.00569,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 114 117 118 119 127 128 3.5 3.6"},D:{"38":0.00569,"49":0.01137,"63":0.00569,"65":0.00569,"66":0.05117,"68":0.00569,"74":0.01137,"75":0.00569,"76":0.00569,"77":0.01137,"79":0.02843,"80":0.00569,"85":0.01137,"86":0.05117,"87":0.02843,"88":0.02274,"90":0.00569,"91":0.00569,"92":0.00569,"93":0.07392,"94":0.00569,"95":0.00569,"96":0.00569,"98":0.00569,"99":0.00569,"100":0.06255,"101":0.10803,"102":0.06823,"103":0.65389,"104":0.06255,"105":0.01137,"106":0.01137,"107":0.02274,"108":0.02274,"109":1.19975,"110":0.01137,"111":0.02843,"112":0.01706,"113":0.02274,"114":0.09098,"115":0.02843,"116":0.5686,"117":0.05686,"118":0.2047,"119":0.26724,"120":0.43782,"121":0.98368,"122":4.86153,"123":22.61891,"124":7.18142,"125":0.01706,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 67 69 70 71 72 73 78 81 83 84 89 97 126 127"},F:{"46":0.00569,"89":0.00569,"95":0.01706,"102":0.00569,"107":0.81878,"108":0.2445,"109":0.10235,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00569,"85":0.00569,"92":0.01137,"109":0.07392,"110":0.00569,"112":0.05686,"113":0.01137,"114":0.00569,"117":0.00569,"118":0.0398,"119":0.01706,"120":0.03412,"121":0.07392,"122":0.65958,"123":5.30504,"124":2.08108,_:"12 13 14 15 16 18 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 115 116"},E:{"13":0.00569,"14":0.03412,"15":0.00569,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1","5.1":0.00569,"11.1":0.01137,"12.1":0.01706,"13.1":0.05686,"14.1":0.11941,"15.1":0.01137,"15.2-15.3":0.01706,"15.4":0.03412,"15.5":0.05117,"15.6":0.42645,"16.0":0.03412,"16.1":0.07392,"16.2":0.06255,"16.3":0.16489,"16.4":0.04549,"16.5":0.0796,"16.6":0.5686,"17.0":0.07392,"17.1":0.10803,"17.2":0.18195,"17.3":0.50605,"17.4":1.59777,"17.5":0.00569},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00431,"5.0-5.1":0.00431,"6.0-6.1":0.01079,"7.0-7.1":0.01726,"8.1-8.4":0.00431,"9.0-9.2":0.01079,"9.3":0.05393,"10.0-10.2":0.01079,"10.3":0.08628,"11.0-11.2":0.07334,"11.3-11.4":0.02157,"12.0-12.1":0.0151,"12.2-12.5":0.35159,"13.0-13.1":0.00647,"13.2":0.07118,"13.3":0.01726,"13.4-13.7":0.06687,"14.0-14.4":0.13158,"14.5-14.8":0.2006,"15.0-15.1":0.09275,"15.2-15.3":0.10569,"15.4":0.12079,"15.5":0.15315,"15.6-15.8":1.33734,"16.0":0.31277,"16.1":0.65141,"16.2":0.31277,"16.3":0.55219,"16.4":0.11432,"16.5":0.23943,"16.6-16.7":1.89169,"17.0":0.22649,"17.1":0.41846,"17.2":0.55651,"17.3":4.05947,"17.4":9.16294,"17.5":0.08412},P:{"4":0.07421,"20":0.0212,"21":0.04241,"22":0.04241,"23":0.20142,"24":2.72453,"5.0-5.4":0.0106,"6.2-6.4":0.0106,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","13.0":0.0106,"16.0":0.0106,"17.0":0.0106,"19.0":0.0106},I:{"0":0.09022,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00023},A:{"11":0.06255,_:"6 7 8 9 10 5.5"},K:{"0":0.16393,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01294},H:{"0":0},L:{"0":17.63009},R:{_:"0"},M:{"0":0.40552}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js index aa32c5ca0f461b..8014b4dab94e55 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SG.js @@ -1 +1 @@ -module.exports={C:{"3":0.0032,"4":0.0064,"5":0.0032,"7":0.0032,"10":0.0032,"16":0.0032,"20":0.0032,"25":0.0032,"35":0.0032,"38":0.0032,"40":0.0032,"48":0.0096,"49":0.0032,"52":0.0032,"55":0.0032,"72":0.12484,"78":0.01921,"83":0.0032,"88":0.0096,"102":0.0032,"103":0.01921,"104":0.0032,"105":0.0032,"106":0.0064,"107":0.0064,"108":0.0096,"109":0.0032,"110":0.0064,"111":0.0064,"112":0.0032,"113":0.0032,"115":0.10243,"117":0.0032,"118":0.0096,"119":0.0032,"120":0.0032,"121":0.0128,"122":0.03201,"123":0.74903,"124":0.3201,"125":0.0032,_:"2 6 8 9 11 12 13 14 15 17 18 19 21 22 23 24 26 27 28 29 30 31 32 33 34 36 37 39 41 42 43 44 45 46 47 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 114 116 126 127","3.5":0.0032,"3.6":0.0032},D:{"4":0.0032,"5":0.0032,"10":0.0032,"11":0.0032,"19":0.0032,"20":0.0032,"34":0.01601,"36":0.0032,"38":0.08323,"41":0.0032,"45":0.0032,"47":0.01921,"48":0.0128,"49":0.0064,"50":0.0032,"51":0.0032,"53":0.01921,"55":0.0032,"56":0.0128,"57":0.0032,"61":0.0032,"62":0.0032,"63":0.0032,"65":0.0064,"66":0.0032,"67":0.0032,"68":0.0064,"69":0.01921,"70":0.0064,"71":0.0032,"72":0.0064,"73":0.01921,"74":0.0096,"75":0.0128,"76":0.0032,"77":0.14725,"78":0.01601,"79":0.19206,"80":0.01601,"81":0.02561,"83":0.02561,"84":0.0096,"85":0.01921,"86":0.11204,"87":0.14405,"88":0.0096,"89":0.0128,"90":0.0096,"91":0.0128,"92":0.0064,"93":0.0032,"94":0.03841,"95":0.02881,"96":0.0064,"97":0.0064,"98":0.01921,"99":0.02881,"100":0.09923,"101":0.18566,"102":0.11204,"103":0.14725,"104":0.16325,"105":0.35851,"106":0.06082,"107":0.07362,"108":0.10243,"109":0.82266,"110":0.05442,"111":0.06082,"112":0.06082,"113":0.06082,"114":0.44174,"115":0.0128,"116":0.15365,"117":0.03201,"118":0.05442,"119":0.13124,"120":0.38732,"121":1.12995,"122":11.39556,"123":3.04735,"124":0.01921,"125":0.0032,_:"6 7 8 9 12 13 14 15 16 17 18 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 39 40 42 43 44 46 52 54 58 59 60 64 126"},F:{"11":0.0032,"20":0.0032,"28":0.02561,"29":0.0032,"36":0.01601,"40":0.0032,"46":0.05122,"81":0.0032,"89":0.0032,"92":0.0032,"93":0.0032,"94":0.0096,"95":0.02241,"102":0.0032,"105":0.0032,"106":0.0128,"107":0.49295,"108":0.16325,"109":0.0032,_:"9 12 15 16 17 18 19 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 90 91 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0032},B:{"18":0.0032,"92":0.0032,"100":0.0032,"103":0.0032,"106":0.0064,"107":0.0128,"108":0.0128,"109":0.02881,"110":0.0128,"111":0.0096,"112":0.0032,"113":0.0064,"114":0.0096,"115":0.0096,"116":0.0032,"117":0.0032,"118":0.0096,"119":0.0128,"120":0.03521,"121":0.11204,"122":2.49358,"123":0.18566,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105"},E:{"5":0.0032,"7":0.0032,"8":0.0064,"9":0.0032,"11":0.0032,"13":0.0096,"14":0.03521,"15":0.0096,_:"0 4 6 10 12 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.0032,"9.1":0.0128,"11.1":0.0032,"12.1":0.0032,"13.1":0.03521,"14.1":0.08003,"15.1":0.0128,"15.2-15.3":0.0096,"15.4":0.03521,"15.5":0.04161,"15.6":0.24968,"16.0":0.05122,"16.1":0.07682,"16.2":0.04802,"16.3":0.17285,"16.4":0.03201,"16.5":0.07042,"16.6":0.43214,"17.0":0.03201,"17.1":0.11524,"17.2":0.29769,"17.3":1.32521,"17.4":0.23047},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00314,"5.0-5.1":0.00157,"6.0-6.1":0.00941,"7.0-7.1":0.01098,"8.1-8.4":0.00314,"9.0-9.2":0.00628,"9.3":0.03922,"10.0-10.2":0.00628,"10.3":0.0659,"11.0-11.2":0.04707,"11.3-11.4":0.01569,"12.0-12.1":0.01412,"12.2-12.5":0.27143,"13.0-13.1":0.00471,"13.2":0.04707,"13.3":0.01412,"13.4-13.7":0.05335,"14.0-14.4":0.10198,"14.5-14.8":0.16004,"15.0-15.1":0.06904,"15.2-15.3":0.08159,"15.4":0.09571,"15.5":0.12238,"15.6-15.8":1.02454,"16.0":0.24947,"16.1":0.51619,"16.2":0.24947,"16.3":0.44402,"16.4":0.09414,"16.5":0.19926,"16.6-16.7":1.50936,"17.0":0.19612,"17.1":0.39224,"17.2":0.6323,"17.3":7.78213,"17.4":1.14222,"17.5":0},P:{"4":0.48713,"20":0.02073,"21":0.04146,"22":0.03109,"23":1.43029,"24":2.04179,"5.0-5.4":0.04146,"6.2-6.4":0.03109,_:"7.2-7.4 8.2 9.2 10.1 14.0 15.0","11.1-11.2":0.01036,"12.0":0.01036,"13.0":0.01036,"16.0":0.02073,"17.0":0.01036,"18.0":0.01036,"19.0":0.01036},I:{"0":18.42152,"3":0,"4":0.00185,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00185,"4.2-4.3":0.0111,"4.4":0,"4.4.3-4.4.4":0.04439},K:{"0":1.29842,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01936,"9":0.01936,"10":0.00484,"11":0.35336,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":27.50666},R:{_:"0"},M:{"0":0.62542},Q:{"14.9":0.02719},O:{"0":0.59822},H:{"0":0}}; +module.exports={C:{"2":0.0034,"3":0.00681,"4":0.01021,"5":0.0034,"6":0.0034,"7":0.0034,"10":0.0034,"12":0.0034,"14":0.0034,"16":0.00681,"19":0.0034,"20":0.00681,"21":0.0034,"25":0.0034,"28":0.0034,"30":0.0034,"31":0.0034,"35":0.0034,"36":0.0034,"38":0.0034,"40":0.00681,"43":0.0034,"47":0.0034,"48":0.01021,"49":0.00681,"52":0.0034,"55":0.0034,"72":0.0034,"74":0.0034,"78":0.01021,"83":0.0034,"87":0.0034,"88":0.01021,"100":0.0034,"101":0.0034,"102":0.02042,"103":0.02723,"104":0.00681,"105":0.00681,"106":0.00681,"107":0.01362,"108":0.00681,"109":0.00681,"110":0.01362,"111":0.01362,"112":0.00681,"113":0.01362,"115":0.10212,"117":0.0034,"118":0.01362,"119":0.0034,"120":0.0034,"121":0.01021,"122":0.01702,"123":0.02383,"124":0.74888,"125":0.39146,"126":0.0034,_:"8 9 11 13 15 17 18 22 23 24 26 27 29 32 33 34 37 39 41 42 44 45 46 50 51 53 54 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 75 76 77 79 80 81 82 84 85 86 89 90 91 92 93 94 95 96 97 98 99 114 116 127 128","3.5":0.00681,"3.6":0.00681},D:{"4":0.00681,"5":0.0034,"7":0.0034,"9":0.0034,"10":0.0034,"11":0.0034,"13":0.0034,"15":0.0034,"16":0.0034,"19":0.0034,"20":0.0034,"32":0.0034,"34":0.02042,"36":0.0034,"37":0.0034,"38":0.0817,"39":0.0034,"41":0.01021,"45":0.0034,"47":0.02042,"48":0.0034,"49":0.00681,"51":0.0034,"52":0.0034,"53":0.02042,"55":0.00681,"56":0.02042,"57":0.0034,"61":0.0034,"62":0.0034,"63":0.0034,"65":0.00681,"66":0.0034,"67":0.0034,"68":0.00681,"69":0.00681,"70":0.00681,"71":0.0034,"72":0.0034,"73":0.00681,"74":0.0034,"75":0.00681,"76":0.0034,"77":0.20084,"78":0.02042,"79":0.17701,"80":0.01362,"81":0.02723,"83":0.00681,"84":0.00681,"85":0.02042,"86":0.1736,"87":0.10893,"88":0.01021,"89":0.02723,"90":0.00681,"91":0.01362,"92":0.0034,"93":0.0034,"94":0.06808,"95":0.01702,"96":0.00681,"97":0.00681,"98":0.02383,"99":0.03064,"100":0.17701,"101":0.32678,"102":0.18041,"103":0.22807,"104":0.2553,"105":0.58889,"106":0.06808,"107":0.06468,"108":0.07489,"109":0.83058,"110":0.05106,"111":0.07148,"112":0.06127,"113":0.09191,"114":0.45614,"115":0.01702,"116":0.13616,"117":0.02042,"118":0.05446,"119":0.09872,"120":0.19062,"121":0.24168,"122":0.88164,"123":11.25362,"124":4.4286,"125":0.02383,"126":0.0034,_:"6 8 12 14 17 18 21 22 23 24 25 26 27 28 29 30 31 33 35 40 42 43 44 46 50 54 58 59 60 64 127"},F:{"11":0.0034,"20":0.0034,"28":0.02723,"29":0.0034,"36":0.01021,"40":0.0034,"46":0.05787,"89":0.0034,"90":0.0034,"91":0.0034,"92":0.00681,"93":0.0034,"94":0.0034,"95":0.02723,"96":0.0034,"97":0.0034,"98":0.01021,"102":0.0034,"105":0.0034,"106":0.0034,"107":0.24849,"108":0.39827,"109":0.13276,_:"9 12 15 16 17 18 19 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 99 100 101 103 104 10.5 10.6 11.1 11.5 11.6","9.5-9.6":0.0034,"10.0-10.1":0.0034,"12.1":0.00681},B:{"12":0.0034,"16":0.0034,"18":0.0034,"84":0.0034,"92":0.00681,"100":0.0034,"101":0.0034,"103":0.0034,"104":0.0034,"106":0.00681,"107":0.01021,"108":0.01021,"109":0.04085,"110":0.01702,"111":0.02042,"112":0.05446,"113":0.01702,"114":0.00681,"115":0.01362,"116":0.0034,"117":0.0034,"118":0.0034,"119":0.01021,"120":0.02042,"121":0.03064,"122":0.1702,"123":1.83135,"124":0.87142,_:"13 14 15 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 102 105"},E:{"4":0.0034,"5":0.0034,"7":0.0034,"8":0.00681,"9":0.0034,"10":0.0034,"11":0.0034,"13":0.00681,"14":0.02723,"15":0.00681,_:"0 6 12 3.1 3.2 6.1 7.1 10.1 11.1","5.1":0.0034,"9.1":0.0034,"12.1":0.0034,"13.1":0.03744,"14.1":0.07829,"15.1":0.01021,"15.2-15.3":0.00681,"15.4":0.03064,"15.5":0.03064,"15.6":0.24509,"16.0":0.05106,"16.1":0.06808,"16.2":0.04425,"16.3":0.14978,"16.4":0.03404,"16.5":0.06468,"16.6":0.39486,"17.0":0.03064,"17.1":0.0851,"17.2":0.17701,"17.3":0.48677,"17.4":1.31394,"17.5":0.0034},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00316,"5.0-5.1":0.00316,"6.0-6.1":0.00791,"7.0-7.1":0.01265,"8.1-8.4":0.00316,"9.0-9.2":0.00791,"9.3":0.03953,"10.0-10.2":0.00791,"10.3":0.06324,"11.0-11.2":0.05376,"11.3-11.4":0.01581,"12.0-12.1":0.01107,"12.2-12.5":0.25771,"13.0-13.1":0.00474,"13.2":0.05218,"13.3":0.01265,"13.4-13.7":0.04901,"14.0-14.4":0.09644,"14.5-14.8":0.14704,"15.0-15.1":0.06799,"15.2-15.3":0.07747,"15.4":0.08854,"15.5":0.11226,"15.6-15.8":0.98026,"16.0":0.22925,"16.1":0.47748,"16.2":0.22925,"16.3":0.40475,"16.4":0.0838,"16.5":0.1755,"16.6-16.7":1.38659,"17.0":0.16601,"17.1":0.30673,"17.2":0.40791,"17.3":2.97556,"17.4":6.71635,"17.5":0.06166},P:{"4":0.49072,"20":0.02088,"21":0.04176,"22":0.02088,"23":0.1775,"24":3.00698,"5.0-5.4":0.04176,"6.2-6.4":0.03132,_:"7.2-7.4 8.2 9.2 10.1 14.0","11.1-11.2":0.01044,"12.0":0.01044,"13.0":0.01044,"15.0":0.01044,"16.0":0.02088,"17.0":0.01044,"18.0":0.01044,"19.0":0.01044},I:{"0":14.30062,"3":0,"4":0.00144,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00287,"4.2-4.3":0.00862,"4.4":0,"4.4.3-4.4.4":0.0359},A:{"7":0.00502,"8":0.02512,"9":0.02512,"10":0.00502,"11":0.35677,_:"6","5.5":0.00502},K:{"0":1.33899,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.0066,_:"3.0-3.1"},Q:{"14.9":0.04617},O:{"0":0.51449},H:{"0":0},L:{"0":28.64776},R:{_:"0"},M:{"0":0.71237}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js index 8e4e9664984ba5..20e45115518269 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SH.js @@ -1 +1 @@ -module.exports={C:{"115":8.92259,"123":0.04136,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 124 125 126 127 3.5 3.6"},D:{"46":0.00591,"81":0.00591,"87":0.01182,"98":0.04136,"99":0.02955,"101":0.05909,"103":0.02364,"105":2.98405,"108":0.00591,"109":2.72405,"114":0.23045,"115":0.05909,"116":0.00591,"119":0.01182,"120":0.02364,"121":0.07682,"122":13.64388,"123":1.25862,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 88 89 90 91 92 93 94 95 96 97 100 102 104 106 107 110 111 112 113 117 118 124 125 126"},F:{"43":0.02364,"95":0.04136,"107":0.28954,"108":0.51408,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00591,"92":0.00591,"95":0.05318,"99":0.01773,"109":0.05909,"111":0.02364,"113":2.01497,"120":0.02364,"121":6.4349,"122":6.8958,"123":0.64408,_:"12 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 96 97 98 100 101 102 103 104 105 106 107 108 110 112 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.5","14.1":0.50227,"15.6":0.05318,"17.1":0.02364,"17.2":0.00591,"17.3":0.02364,"17.4":0.00591},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0.00035,"6.0-6.1":0.00213,"7.0-7.1":0.00248,"8.1-8.4":0.00071,"9.0-9.2":0.00142,"9.3":0.00887,"10.0-10.2":0.00142,"10.3":0.01489,"11.0-11.2":0.01064,"11.3-11.4":0.00355,"12.0-12.1":0.00319,"12.2-12.5":0.06135,"13.0-13.1":0.00106,"13.2":0.01064,"13.3":0.00319,"13.4-13.7":0.01206,"14.0-14.4":0.02305,"14.5-14.8":0.03617,"15.0-15.1":0.0156,"15.2-15.3":0.01844,"15.4":0.02163,"15.5":0.02766,"15.6-15.8":0.23156,"16.0":0.05638,"16.1":0.11666,"16.2":0.05638,"16.3":0.10035,"16.4":0.02128,"16.5":0.04503,"16.6-16.7":0.34113,"17.0":0.04433,"17.1":0.08865,"17.2":0.14291,"17.3":1.75883,"17.4":0.25815,"17.5":0},P:{"4":0.07207,"22":0.0103,"23":0.06177,"24":0.11325,_:"20 21 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0","7.2-7.4":0.04118},I:{"0":0.01222,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},K:{"0":0.20859,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{"2.5":0.03272,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":47.73033},R:{_:"0"},M:{"0":0.02454},Q:{_:"14.9"},O:{"0":0.11861},H:{"0":0}}; +module.exports={C:{"115":14.88346,"123":0.05126,"124":0.02563,"125":0.09611,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"39":0.00641,"69":0.07688,"73":0.05766,"83":0.05766,"87":0.01281,"98":0.0897,"102":0.00641,"103":0.01922,"105":0.15377,"106":0.05766,"109":1.25577,"111":0.01281,"114":0.01281,"116":0.14736,"119":0.00641,"120":0.01922,"121":0.01281,"122":0.0897,"123":10.36653,"124":5.35625,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 74 75 76 77 78 79 80 81 84 85 86 88 89 90 91 92 93 94 95 96 97 99 100 101 104 107 108 110 112 113 115 117 118 125 126 127"},F:{"95":0.43568,"107":0.12814,"108":0.14095,"109":0.01922,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01281,"90":0.02563,"105":0.01281,"109":0.01281,"113":1.67223,"120":0.03204,"121":10.16791,"122":0.08329,"123":8.97621,"124":2.43466,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 114 115 116 117 118 119"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.5","14.1":0.03204,"15.5":0.00641,"15.6":0.00641,"17.3":0.00641,"17.4":0.03844},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00034,"5.0-5.1":0.00034,"6.0-6.1":0.00085,"7.0-7.1":0.00136,"8.1-8.4":0.00034,"9.0-9.2":0.00085,"9.3":0.00424,"10.0-10.2":0.00085,"10.3":0.00678,"11.0-11.2":0.00577,"11.3-11.4":0.0017,"12.0-12.1":0.00119,"12.2-12.5":0.02764,"13.0-13.1":0.00051,"13.2":0.0056,"13.3":0.00136,"13.4-13.7":0.00526,"14.0-14.4":0.01034,"14.5-14.8":0.01577,"15.0-15.1":0.00729,"15.2-15.3":0.00831,"15.4":0.0095,"15.5":0.01204,"15.6-15.8":0.10515,"16.0":0.02459,"16.1":0.05122,"16.2":0.02459,"16.3":0.04341,"16.4":0.00899,"16.5":0.01882,"16.6-16.7":0.14873,"17.0":0.01781,"17.1":0.0329,"17.2":0.04375,"17.3":0.31917,"17.4":0.72042,"17.5":0.00661},P:{"4":0.06398,"21":0.01066,"22":0.15995,"23":0.03199,"24":0.29857,_:"20 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0","5.0-5.4":0.06398,"16.0":0.02133,"19.0":0.01066},I:{"0":0.08588,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.57488,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01078,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.24432},H:{"0":0},L:{"0":39.37616},R:{_:"0"},M:{"0":0.00359}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js index 3b9468c27d38c4..90d255b47ab357 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SI.js @@ -1 +1 @@ -module.exports={C:{"50":0.07685,"52":0.16906,"60":0.00512,"68":0.01025,"77":0.01537,"78":0.01537,"83":0.01025,"88":0.03586,"89":0.00512,"91":0.01025,"96":0.00512,"99":0.01537,"102":0.02049,"103":0.05123,"104":0.00512,"108":0.00512,"110":0.00512,"111":0.00512,"113":0.03074,"114":0.00512,"115":0.85042,"116":0.00512,"117":0.01025,"118":0.01025,"119":0.02049,"120":0.02049,"121":0.05123,"122":0.18443,"123":3.81151,"124":1.49592,"125":0.00512,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 79 80 81 82 84 85 86 87 90 92 93 94 95 97 98 100 101 105 106 107 109 112 126 127 3.5 3.6"},D:{"22":0.00512,"44":0.00512,"45":0.00512,"46":0.00512,"48":0.00512,"49":0.04098,"51":0.03074,"58":0.00512,"70":0.00512,"76":0.00512,"78":0.00512,"79":0.04098,"80":0.00512,"81":0.00512,"83":0.00512,"84":0.00512,"85":0.01537,"86":0.00512,"87":0.04098,"88":0.02562,"89":0.00512,"90":0.02049,"91":0.01537,"92":0.00512,"93":0.01025,"94":0.01025,"95":0.00512,"96":0.00512,"98":0.04611,"99":0.03586,"100":0.01537,"102":0.01537,"103":0.02562,"104":0.01537,"105":0.00512,"106":0.01537,"107":0.00512,"108":0.02049,"109":2.08506,"110":0.00512,"111":0.04098,"112":0.04611,"113":0.01025,"114":0.01537,"115":0.15369,"116":0.14857,"117":0.02562,"118":0.03074,"119":0.09734,"120":0.36886,"121":2.02871,"122":19.82089,"123":6.18346,"124":0.01025,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 47 50 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 77 97 101 125 126"},F:{"46":0.01537,"49":0.00512,"89":0.00512,"95":0.02049,"99":0.02562,"106":0.05123,"107":1.69059,"108":0.31763,"109":0.00512,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 96 97 98 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00512},B:{"85":0.01025,"92":0.00512,"98":0.00512,"107":0.01025,"108":0.00512,"109":0.15369,"114":0.00512,"115":0.00512,"116":0.00512,"117":0.01025,"118":0.00512,"119":0.04098,"120":0.0666,"121":0.18955,"122":5.21009,"123":0.42521,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 104 105 106 110 111 112 113"},E:{"9":0.00512,"14":0.02562,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.00512,"11.1":0.08709,"12.1":0.00512,"13.1":0.0666,"14.1":0.10758,"15.1":0.01025,"15.2-15.3":0.00512,"15.4":0.03074,"15.5":0.02049,"15.6":0.13832,"16.0":0.01537,"16.1":0.07685,"16.2":0.08197,"16.3":0.11271,"16.4":0.07685,"16.5":0.06148,"16.6":0.35861,"17.0":0.05635,"17.1":0.17931,"17.2":0.24078,"17.3":0.77357,"17.4":0.20492},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00204,"5.0-5.1":0.00102,"6.0-6.1":0.00613,"7.0-7.1":0.00716,"8.1-8.4":0.00204,"9.0-9.2":0.00409,"9.3":0.02556,"10.0-10.2":0.00409,"10.3":0.04293,"11.0-11.2":0.03067,"11.3-11.4":0.01022,"12.0-12.1":0.0092,"12.2-12.5":0.17684,"13.0-13.1":0.00307,"13.2":0.03067,"13.3":0.0092,"13.4-13.7":0.03476,"14.0-14.4":0.06644,"14.5-14.8":0.10427,"15.0-15.1":0.04498,"15.2-15.3":0.05316,"15.4":0.06236,"15.5":0.07973,"15.6-15.8":0.66751,"16.0":0.16253,"16.1":0.33631,"16.2":0.16253,"16.3":0.28929,"16.4":0.06133,"16.5":0.12982,"16.6-16.7":0.98337,"17.0":0.12778,"17.1":0.25555,"17.2":0.41195,"17.3":5.07021,"17.4":0.74418,"17.5":0},P:{"4":0.13577,"20":0.01044,"21":0.04178,"22":0.09399,"23":2.15142,"24":1.49346,"5.0-5.4":0.02089,"6.2-6.4":0.01044,"7.2-7.4":0.01044,"8.2":0.02089,_:"9.2 10.1 11.1-11.2 12.0 16.0","13.0":0.02089,"14.0":0.11488,"15.0":0.01044,"17.0":0.01044,"18.0":0.04178,"19.0":0.02089},I:{"0":0.07771,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":0.22922,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02049,"9":0.00512,"10":0.00512,"11":0.0666,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":34.30923},R:{_:"0"},M:{"0":0.52184},Q:{_:"14.9"},O:{"0":0.0634},H:{"0":0}}; +module.exports={C:{"50":0.01044,"52":0.0992,"60":0.00522,"68":0.00522,"72":0.00522,"77":0.02088,"78":0.02088,"83":0.02088,"84":0.00522,"88":0.04699,"89":0.00522,"91":0.01566,"93":0.00522,"99":0.01044,"102":0.02088,"103":0.04177,"107":0.00522,"108":0.00522,"111":0.01566,"113":0.03133,"114":0.00522,"115":0.8197,"116":0.00522,"117":0.00522,"118":0.03133,"119":0.01566,"120":0.00522,"121":0.03133,"122":0.05221,"123":0.13053,"124":3.34144,"125":1.81691,"126":0.00522,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 54 55 56 57 58 59 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 85 86 87 90 92 94 95 96 97 98 100 101 104 105 106 109 110 112 127 128 3.5 3.6"},D:{"41":0.00522,"43":0.00522,"44":0.00522,"45":0.00522,"46":0.00522,"48":0.00522,"49":0.02088,"51":0.04699,"70":0.00522,"76":0.00522,"78":0.00522,"79":0.02088,"80":0.00522,"81":0.00522,"83":0.00522,"84":0.00522,"85":0.01566,"86":0.00522,"87":0.05221,"88":0.02088,"89":0.01044,"90":0.02611,"91":0.00522,"92":0.00522,"93":0.01044,"94":0.00522,"95":0.00522,"96":0.00522,"98":0.04699,"99":0.01044,"100":0.02088,"102":0.02088,"103":0.03133,"104":0.02611,"105":0.00522,"106":0.00522,"107":0.01044,"108":0.01044,"109":2.30246,"110":0.00522,"111":0.03655,"112":0.05743,"113":0.00522,"114":0.01044,"115":1.46188,"116":0.14097,"117":0.02088,"118":0.02611,"119":0.07309,"120":0.10442,"121":0.27671,"122":1.0442,"123":19.8398,"124":7.38772,"125":0.03133,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 47 50 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 77 97 101 126 127"},F:{"28":0.00522,"46":0.02088,"82":0.00522,"95":0.02088,"99":0.03133,"106":0.01044,"107":1.07031,"108":0.6213,"109":0.21406,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"85":0.01044,"92":0.00522,"98":0.00522,"107":0.00522,"108":0.00522,"109":0.27149,"113":0.00522,"114":0.00522,"115":0.00522,"116":0.00522,"118":0.00522,"119":0.01044,"120":0.08876,"121":0.06265,"122":0.25583,"123":3.91575,"124":1.83779,_:"12 13 14 15 16 17 18 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 104 105 106 110 111 112 117"},E:{"9":0.01044,"14":0.03133,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1","13.1":0.06787,"14.1":0.10442,"15.1":0.00522,"15.2-15.3":0.01044,"15.4":0.01566,"15.5":0.02088,"15.6":0.16185,"16.0":0.01566,"16.1":0.08876,"16.2":0.04177,"16.3":0.08354,"16.4":0.05743,"16.5":0.05743,"16.6":0.24017,"17.0":0.06265,"17.1":0.14097,"17.2":0.11486,"17.3":0.28193,"17.4":0.88757,"17.5":0.00522},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00201,"5.0-5.1":0.00201,"6.0-6.1":0.00503,"7.0-7.1":0.00805,"8.1-8.4":0.00201,"9.0-9.2":0.00503,"9.3":0.02514,"10.0-10.2":0.00503,"10.3":0.04023,"11.0-11.2":0.0342,"11.3-11.4":0.01006,"12.0-12.1":0.00704,"12.2-12.5":0.16394,"13.0-13.1":0.00302,"13.2":0.03319,"13.3":0.00805,"13.4-13.7":0.03118,"14.0-14.4":0.06135,"14.5-14.8":0.09354,"15.0-15.1":0.04325,"15.2-15.3":0.04928,"15.4":0.05632,"15.5":0.07141,"15.6-15.8":0.62358,"16.0":0.14584,"16.1":0.30374,"16.2":0.14584,"16.3":0.25748,"16.4":0.05331,"16.5":0.11164,"16.6-16.7":0.88206,"17.0":0.10561,"17.1":0.19512,"17.2":0.25949,"17.3":1.89286,"17.4":4.27251,"17.5":0.03922},P:{"4":0.16662,"20":0.03124,"21":0.02083,"22":0.0729,"23":0.36448,"24":2.99911,"5.0-5.4":0.03124,_:"6.2-6.4 7.2-7.4 9.2 10.1 11.1-11.2 12.0 16.0","8.2":0.06248,"13.0":0.01041,"14.0":0.04165,"15.0":0.02083,"17.0":0.01041,"18.0":0.01041,"19.0":0.02083},I:{"0":0.08089,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"8":0.02088,"9":0.00522,"10":0.00522,"11":0.03655,_:"6 7 5.5"},K:{"0":0.29146,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.11945},H:{"0":0},L:{"0":32.86964},R:{_:"0"},M:{"0":0.72626}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js index eaae14558663cd..d56d2e6fb96a61 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SK.js @@ -1 +1 @@ -module.exports={C:{"34":0.00439,"43":0.00878,"52":0.07906,"60":0.00439,"66":0.00439,"68":0.00439,"71":0.00439,"78":0.00878,"80":0.00439,"82":0.00439,"88":0.00439,"91":0.02196,"99":0.01318,"101":0.00439,"102":0.00878,"103":0.00439,"105":0.01318,"107":0.01318,"109":0.00439,"111":0.00439,"113":0.00878,"114":0.00439,"115":0.75103,"116":0.00439,"117":0.00439,"118":0.01318,"119":0.00878,"120":0.00878,"121":0.02635,"122":0.14933,"123":3.15785,"124":1.22537,"125":0.00439,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 69 70 72 73 74 75 76 77 79 81 83 84 85 86 87 89 90 92 93 94 95 96 97 98 100 104 106 108 110 112 126 127 3.5 3.6"},D:{"34":0.01318,"38":0.02196,"41":0.00439,"47":0.01318,"48":0.00439,"49":0.02635,"51":0.00439,"53":0.00878,"59":0.00439,"63":0.07906,"67":0.00439,"68":0.00878,"69":0.00439,"70":0.00439,"71":0.00439,"72":0.00878,"73":0.00439,"74":0.00878,"75":0.00439,"76":0.00878,"77":0.00439,"78":0.00878,"79":0.17568,"80":0.01318,"81":0.02196,"83":0.01757,"84":0.00878,"85":0.03514,"86":0.02196,"87":0.08784,"88":0.02196,"89":0.01318,"90":0.01757,"91":0.00878,"92":0.00439,"93":0.10102,"94":0.01318,"95":0.00439,"96":0.00439,"97":0.00439,"98":0.01318,"99":0.01318,"100":0.00878,"102":0.00439,"103":0.03514,"104":0.00439,"105":0.00439,"106":0.02635,"107":0.01757,"108":0.03514,"109":2.02471,"110":0.02196,"111":0.01318,"112":0.02196,"113":0.02635,"114":0.0571,"115":0.04392,"116":0.07466,"117":0.01757,"118":0.01757,"119":0.07466,"120":0.24595,"121":1.47571,"122":16.6369,"123":4.62478,"124":0.00439,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 50 52 54 55 56 57 58 60 61 62 64 65 66 101 125 126"},F:{"28":0.00878,"36":0.00439,"46":0.02635,"79":0.00439,"81":0.00439,"85":0.00439,"93":0.00439,"95":0.17129,"97":0.00439,"104":0.00439,"105":0.00439,"106":0.03953,"107":2.20918,"108":0.61049,"109":0.00878,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 86 87 88 89 90 91 92 94 96 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00439},B:{"18":0.00439,"83":0.00439,"84":0.00439,"85":0.00439,"89":0.00439,"92":0.00439,"101":0.00439,"103":0.00439,"105":0.00878,"108":0.00439,"109":0.07466,"110":0.00439,"112":0.00439,"113":0.00878,"114":0.00439,"115":0.00439,"116":0.00439,"117":0.00439,"118":0.00878,"119":0.00878,"120":0.04831,"121":0.22399,"122":4.12409,"123":0.3294,_:"12 13 14 15 16 17 79 80 81 86 87 88 90 91 93 94 95 96 97 98 99 100 102 104 106 107 111"},E:{"9":0.00439,"14":0.01757,"15":0.00878,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.03953,"12.1":0.00439,"13.1":0.02196,"14.1":0.0571,"15.1":0.00878,"15.2-15.3":0.00878,"15.4":0.01318,"15.5":0.01757,"15.6":0.13176,"16.0":0.01318,"16.1":0.04831,"16.2":0.03074,"16.3":0.06149,"16.4":0.02635,"16.5":0.03953,"16.6":0.1669,"17.0":0.0571,"17.1":0.10541,"17.2":0.26791,"17.3":0.67637,"17.4":0.21521},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00214,"5.0-5.1":0.00107,"6.0-6.1":0.00641,"7.0-7.1":0.00747,"8.1-8.4":0.00214,"9.0-9.2":0.00427,"9.3":0.02669,"10.0-10.2":0.00427,"10.3":0.04485,"11.0-11.2":0.03203,"11.3-11.4":0.01068,"12.0-12.1":0.00961,"12.2-12.5":0.18472,"13.0-13.1":0.0032,"13.2":0.03203,"13.3":0.00961,"13.4-13.7":0.0363,"14.0-14.4":0.0694,"14.5-14.8":0.10891,"15.0-15.1":0.04698,"15.2-15.3":0.05552,"15.4":0.06513,"15.5":0.08329,"15.6-15.8":0.69725,"16.0":0.16977,"16.1":0.35129,"16.2":0.16977,"16.3":0.30218,"16.4":0.06407,"16.5":0.13561,"16.6-16.7":1.02719,"17.0":0.13347,"17.1":0.26694,"17.2":0.43031,"17.3":5.29611,"17.4":0.77733,"17.5":0},P:{"4":0.25837,"20":0.01033,"21":0.031,"22":0.04134,"23":1.39519,"24":1.07481,"5.0-5.4":0.01033,"6.2-6.4":0.01033,_:"7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0 18.0","11.1-11.2":0.01033,"13.0":0.01033,"16.0":0.01033,"17.0":0.01033,"19.0":0.02067},I:{"0":0.10053,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00024},K:{"0":0.58884,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00878,"11":0.04392,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":42.58458},R:{_:"0"},M:{"0":0.33648},Q:{_:"14.9"},O:{"0":0.03365},H:{"0":0}}; +module.exports={C:{"43":0.00524,"50":0.01572,"52":0.05765,"53":0.01572,"56":0.01048,"60":0.00524,"71":0.00524,"78":0.01572,"88":0.00524,"95":0.00524,"99":0.01048,"102":0.00524,"103":0.00524,"105":0.01048,"106":0.00524,"107":0.01048,"108":0.00524,"109":0.00524,"111":0.00524,"113":0.02621,"115":0.67609,"116":0.00524,"118":0.00524,"119":0.02096,"120":0.00524,"121":0.01572,"122":0.08386,"123":0.11006,"124":2.55237,"125":1.29977,"126":0.00524,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 54 55 57 58 59 61 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 100 101 104 110 112 114 117 127 128 3.5 3.6"},D:{"34":0.00524,"38":0.00524,"41":0.00524,"47":0.01048,"49":0.02621,"63":0.06813,"71":0.00524,"79":0.11006,"80":0.00524,"81":0.01048,"83":0.00524,"84":0.00524,"85":0.02621,"86":0.02621,"87":0.06289,"88":0.00524,"89":0.00524,"90":0.00524,"91":0.01572,"92":0.00524,"93":0.06813,"94":0.00524,"95":0.00524,"96":0.00524,"97":0.00524,"98":0.02096,"99":0.01572,"100":0.00524,"101":0.00524,"102":0.00524,"103":0.03669,"104":0.00524,"105":0.00524,"106":0.02096,"107":0.03145,"108":0.04193,"109":3.07123,"110":0.01048,"111":0.02621,"112":0.03669,"113":0.04717,"114":0.07862,"115":0.03669,"116":0.06289,"117":0.01048,"118":0.02621,"119":0.07337,"120":0.1153,"121":0.27253,"122":0.94862,"123":16.56156,"124":14.21359,"125":0.10482,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 72 73 74 75 76 77 78 126 127"},F:{"28":0.00524,"36":0.01572,"46":0.01572,"77":0.02096,"79":0.00524,"85":0.00524,"86":0.00524,"90":0.00524,"95":0.15723,"106":0.02621,"107":1.08489,"108":1.08489,"109":0.39308,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 83 84 87 88 89 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00524,"97":0.00524,"105":0.01048,"106":0.00524,"107":0.00524,"108":0.00524,"109":0.07337,"110":0.00524,"113":0.00524,"114":0.01048,"116":0.00524,"118":0.00524,"119":0.00524,"120":0.03145,"121":0.02096,"122":0.28301,"123":2.56809,"124":2.19074,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 98 99 100 101 102 103 104 111 112 115 117"},E:{"9":0.00524,"14":0.01048,"15":0.00524,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1","9.1":0.00524,"12.1":0.00524,"13.1":0.01572,"14.1":0.03669,"15.1":0.01048,"15.2-15.3":0.00524,"15.4":0.01048,"15.5":0.01048,"15.6":0.12054,"16.0":0.01048,"16.1":0.03145,"16.2":0.01572,"16.3":0.04193,"16.4":0.01572,"16.5":0.03669,"16.6":0.14151,"17.0":0.03669,"17.1":0.06289,"17.2":0.12578,"17.3":0.19392,"17.4":0.67085,"17.5":0.01572},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00179,"5.0-5.1":0.00179,"6.0-6.1":0.00448,"7.0-7.1":0.00716,"8.1-8.4":0.00179,"9.0-9.2":0.00448,"9.3":0.02238,"10.0-10.2":0.00448,"10.3":0.03581,"11.0-11.2":0.03044,"11.3-11.4":0.00895,"12.0-12.1":0.00627,"12.2-12.5":0.14591,"13.0-13.1":0.00269,"13.2":0.02954,"13.3":0.00716,"13.4-13.7":0.02775,"14.0-14.4":0.05461,"14.5-14.8":0.08325,"15.0-15.1":0.03849,"15.2-15.3":0.04386,"15.4":0.05013,"15.5":0.06356,"15.6-15.8":0.555,"16.0":0.1298,"16.1":0.27034,"16.2":0.1298,"16.3":0.22916,"16.4":0.04744,"16.5":0.09936,"16.6-16.7":0.78506,"17.0":0.09399,"17.1":0.17366,"17.2":0.23095,"17.3":1.68471,"17.4":3.80267,"17.5":0.03491},P:{"4":0.11422,"20":0.01038,"21":0.03115,"22":0.02077,"23":0.14537,"24":1.77554,"5.0-5.4":0.02077,_:"6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 18.0","11.1-11.2":0.01038,"13.0":0.01038,"17.0":0.01038,"19.0":0.01038},I:{"0":0.07109,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00018},A:{"8":0.01048,"11":0.04193,_:"6 7 9 10 5.5"},K:{"0":0.52349,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0238},H:{"0":0},L:{"0":35.97866},R:{_:"0"},M:{"0":0.30458}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js index 122b9c340b82f0..65a489a2f86f20 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SL.js @@ -1 +1 @@ -module.exports={C:{"4":0.11053,"19":0.00158,"30":0.00474,"38":0.00316,"40":0.00158,"61":0.00474,"62":0.00158,"66":0.00158,"78":0.00158,"108":0.00158,"115":0.01895,"120":0.00158,"121":0.00158,"122":0.02369,"123":0.29054,"124":0.14053,"125":0.04895,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 39 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 63 64 65 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 117 118 119 126 127 3.5 3.6"},D:{"26":0.00158,"30":0.00158,"38":0.00158,"39":0.00158,"43":0.00158,"46":0.00474,"47":0.00316,"48":0.00158,"49":0.01105,"50":0.00632,"55":0.00474,"58":0.00632,"60":0.00474,"61":0.00158,"63":0.02053,"64":0.01895,"65":0.01579,"66":0.00158,"68":0.00158,"69":0.01105,"70":0.00158,"72":0.01105,"74":0.00947,"75":0.01105,"76":0.00947,"77":0.00158,"79":0.00316,"80":0.01263,"81":0.02053,"83":0.0079,"84":0.00316,"87":0.02684,"89":0.00474,"90":0.00316,"91":0.00158,"92":0.00316,"93":0.04105,"94":0.00316,"95":0.01737,"96":0.00158,"98":0.00316,"99":0.00947,"100":0.00316,"101":0.00158,"102":0.00947,"103":0.06632,"104":0.00158,"105":0.00316,"106":0.00158,"107":0.00158,"108":0.00632,"109":0.20843,"110":0.00158,"111":0.00158,"112":0.0079,"113":0.00632,"114":0.01421,"115":0.00947,"116":0.04421,"117":0.01895,"118":0.01737,"119":0.04895,"120":0.14211,"121":0.83213,"122":3.37117,"123":0.76424,"124":0.0079,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 31 32 33 34 35 36 37 40 41 42 44 45 51 52 53 54 56 57 59 62 67 71 73 78 85 86 88 97 125 126"},F:{"31":0.00316,"34":0.00158,"37":0.00158,"44":0.00158,"51":0.00158,"53":0.00316,"55":0.00158,"79":0.01105,"81":0.00158,"83":0.00158,"85":0.00158,"90":0.00158,"95":0.01105,"102":0.00316,"104":0.00158,"106":0.00474,"107":0.26527,"108":0.18632,"109":0.00474,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 38 39 40 41 42 43 45 46 47 48 49 50 52 54 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 84 86 87 88 89 91 92 93 94 96 97 98 99 100 101 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01579,"13":0.01579,"14":0.00474,"15":0.00158,"16":0.01105,"17":0.00158,"18":0.04421,"84":0.00474,"88":0.00158,"89":0.00474,"90":0.01579,"92":0.03158,"94":0.00158,"100":0.01421,"107":0.00158,"108":0.00158,"109":0.0079,"110":0.00158,"112":0.00158,"114":0.00316,"115":0.00316,"116":0.00158,"117":0.00474,"118":0.00316,"119":0.01263,"120":0.04895,"121":0.12158,"122":1.75269,"123":0.0679,_:"79 80 81 83 85 86 87 91 93 95 96 97 98 99 101 102 103 104 105 106 111 113"},E:{"14":0.03632,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 9.1 10.1 15.2-15.3 15.5 16.0 17.5","5.1":0.00158,"7.1":0.00158,"11.1":0.01105,"12.1":0.00316,"13.1":0.00632,"14.1":0.01579,"15.1":0.00316,"15.4":0.00474,"15.6":0.03632,"16.1":0.00316,"16.2":0.0079,"16.3":0.0079,"16.4":0.00474,"16.5":0.00632,"16.6":0.01895,"17.0":0.00158,"17.1":0.01105,"17.2":0.00947,"17.3":0.02211,"17.4":0.08369},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00133,"5.0-5.1":0.00066,"6.0-6.1":0.00399,"7.0-7.1":0.00465,"8.1-8.4":0.00133,"9.0-9.2":0.00266,"9.3":0.01661,"10.0-10.2":0.00266,"10.3":0.02791,"11.0-11.2":0.01993,"11.3-11.4":0.00664,"12.0-12.1":0.00598,"12.2-12.5":0.11494,"13.0-13.1":0.00199,"13.2":0.01993,"13.3":0.00598,"13.4-13.7":0.02259,"14.0-14.4":0.04319,"14.5-14.8":0.06777,"15.0-15.1":0.02923,"15.2-15.3":0.03455,"15.4":0.04053,"15.5":0.05182,"15.6-15.8":0.43386,"16.0":0.10564,"16.1":0.21859,"16.2":0.10564,"16.3":0.18803,"16.4":0.03987,"16.5":0.08438,"16.6-16.7":0.63917,"17.0":0.08305,"17.1":0.1661,"17.2":0.26776,"17.3":3.29551,"17.4":0.4837,"17.5":0},P:{"4":0.19248,"20":0.06078,"21":0.07091,"22":0.04052,"23":0.25326,"24":0.29379,"5.0-5.4":0.02026,"6.2-6.4":0.08104,"7.2-7.4":0.14183,_:"8.2 10.1 12.0 15.0","9.2":0.02026,"11.1-11.2":0.02026,"13.0":0.01013,"14.0":0.01013,"16.0":0.04052,"17.0":0.01013,"18.0":0.01013,"19.0":0.07091},I:{"0":0.02516,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":10.0599,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00316,"11":0.00474,_:"6 7 8 9 5.5"},S:{"2.5":0.06737,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":65.26404},R:{_:"0"},M:{"0":0.02526},Q:{_:"14.9"},O:{"0":0.40421},H:{"0":6.1}}; +module.exports={C:{"4":0.22976,"43":0.00145,"47":0.00289,"57":0.01445,"60":0.00145,"95":0.00145,"115":0.03902,"119":0.01156,"120":0.00578,"121":0.00145,"122":0.00578,"123":0.01301,"124":0.26444,"125":0.2182,"126":0.05202,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 49 50 51 52 53 54 55 56 58 59 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 127 128 3.5 3.6"},D:{"11":0.00145,"29":0.00145,"33":0.00289,"39":0.00145,"43":0.00289,"46":0.00145,"50":0.00867,"58":0.00289,"60":0.00289,"63":0.02457,"64":0.00867,"65":0.01156,"66":0.00145,"67":0.00145,"68":0.00289,"69":0.01301,"70":0.00145,"71":0.00145,"72":0.01301,"74":0.00434,"75":0.05058,"76":0.00723,"77":0.00289,"79":0.00578,"80":0.00434,"81":0.00578,"83":0.00434,"84":0.00289,"86":0.00289,"87":0.00867,"88":0.00723,"90":0.00434,"91":0.00289,"92":0.00289,"93":0.05058,"94":0.00145,"95":0.00145,"96":0.00145,"98":0.00145,"99":0.00723,"100":0.00145,"101":0.00434,"102":0.0159,"103":0.07659,"104":0.00145,"105":0.00723,"106":0.00578,"107":0.01445,"108":0.01445,"109":0.18063,"110":0.00723,"111":0.02023,"112":0.00578,"113":0.00723,"114":0.00578,"115":0.00145,"116":0.03179,"117":0.03468,"118":0.01301,"119":0.02746,"120":0.05491,"121":0.19219,"122":0.30345,"123":3.13565,"124":0.96093,"125":0.00723,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 34 35 36 37 38 40 41 42 44 45 47 48 49 51 52 53 54 55 56 57 59 61 62 73 78 85 89 97 126 127"},F:{"37":0.00289,"42":0.00145,"46":0.01156,"48":0.00145,"65":0.01301,"74":0.00145,"79":0.01156,"81":0.00145,"82":0.00145,"89":0.00289,"90":0.01012,"95":0.01879,"106":0.00145,"107":0.01156,"108":0.34825,"109":0.08381,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 75 76 77 78 80 83 84 85 86 87 88 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0159,"13":0.00578,"14":0.00578,"15":0.01879,"16":0.00578,"17":0.00578,"18":0.07514,"84":0.00723,"85":0.00145,"89":0.00434,"90":0.00289,"92":0.03179,"100":0.00723,"107":0.00145,"108":0.01879,"109":0.00145,"111":0.00145,"112":0.01156,"113":0.00145,"114":0.00145,"115":0.00145,"116":0.00434,"117":0.01012,"118":0.00289,"119":0.01012,"120":0.01445,"121":0.01734,"122":0.14739,"123":1.32507,"124":0.50431,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 110"},E:{"12":0.00145,"14":0.03324,_:"0 4 5 6 7 8 9 10 11 13 15 3.1 3.2 6.1 9.1 10.1 12.1 15.1 15.4 16.4","5.1":0.00289,"7.1":0.00145,"11.1":0.00578,"13.1":0.01879,"14.1":0.0159,"15.2-15.3":0.00145,"15.5":0.00145,"15.6":0.05925,"16.0":0.00145,"16.1":0.00434,"16.2":0.00145,"16.3":0.00434,"16.5":0.00578,"16.6":0.06936,"17.0":0.00145,"17.1":0.02601,"17.2":0.02601,"17.3":0.03179,"17.4":0.03613,"17.5":0.00145},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00123,"6.0-6.1":0.00307,"7.0-7.1":0.00491,"8.1-8.4":0.00123,"9.0-9.2":0.00307,"9.3":0.01536,"10.0-10.2":0.00307,"10.3":0.02457,"11.0-11.2":0.02088,"11.3-11.4":0.00614,"12.0-12.1":0.0043,"12.2-12.5":0.10012,"13.0-13.1":0.00184,"13.2":0.02027,"13.3":0.00491,"13.4-13.7":0.01904,"14.0-14.4":0.03747,"14.5-14.8":0.05713,"15.0-15.1":0.02641,"15.2-15.3":0.0301,"15.4":0.0344,"15.5":0.04361,"15.6-15.8":0.38083,"16.0":0.08907,"16.1":0.1855,"16.2":0.08907,"16.3":0.15725,"16.4":0.03256,"16.5":0.06818,"16.6-16.7":0.5387,"17.0":0.0645,"17.1":0.11916,"17.2":0.15848,"17.3":1.15602,"17.4":2.60933,"17.5":0.02396},P:{"4":0.2324,"20":0.0101,"21":0.06063,"22":0.06063,"23":0.15156,"24":0.50522,"5.0-5.4":0.03031,"6.2-6.4":0.02021,"7.2-7.4":0.09094,"8.2":0.0101,"9.2":0.02021,_:"10.1 12.0 13.0 14.0 15.0 18.0","11.1-11.2":0.0101,"16.0":0.03031,"17.0":0.0101,"19.0":0.03031},I:{"0":0.0426,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"10":0.00289,"11":0.03468,_:"6 7 8 9 5.5"},K:{"0":9.64744,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.05133,_:"3.0-3.1"},Q:{"14.9":0.00856},O:{"0":0.26521},H:{"0":5.82},L:{"0":66.69409},R:{_:"0"},M:{"0":0.03422}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js index 5c34d2274db635..bb6cfa1d7e6030 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SM.js @@ -1 +1 @@ -module.exports={C:{"52":0.0075,"64":0.0075,"78":0.41994,"102":0.0375,"115":0.08999,"118":0.0075,"120":0.0075,"121":0.0075,"122":0.07499,"123":0.92238,"124":0.28496,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 125 126 127 3.5 3.6"},D:{"87":0.0075,"103":0.0225,"104":0.0225,"109":1.70227,"114":0.0075,"116":10.98604,"117":0.0375,"119":0.24747,"120":0.08249,"121":0.48744,"122":46.78626,"123":5.96171,"125":0.015,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 105 106 107 108 110 111 112 113 115 118 124 126"},F:{"107":0.06749,"108":0.0225,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.0075,"121":0.30746,"122":2.08472,"123":0.03,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120"},E:{"14":0.015,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.2 16.4 17.5","13.1":0.0375,"14.1":1.07986,"15.5":0.06749,"15.6":0.47994,"16.1":0.0075,"16.3":0.0225,"16.5":0.0375,"16.6":1.01237,"17.0":0.0075,"17.1":0.015,"17.2":0.18748,"17.3":0.23997,"17.4":0.015},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00142,"5.0-5.1":0.00071,"6.0-6.1":0.00425,"7.0-7.1":0.00495,"8.1-8.4":0.00142,"9.0-9.2":0.00283,"9.3":0.01769,"10.0-10.2":0.00283,"10.3":0.02972,"11.0-11.2":0.02123,"11.3-11.4":0.00708,"12.0-12.1":0.00637,"12.2-12.5":0.1224,"13.0-13.1":0.00212,"13.2":0.02123,"13.3":0.00637,"13.4-13.7":0.02406,"14.0-14.4":0.04599,"14.5-14.8":0.07217,"15.0-15.1":0.03113,"15.2-15.3":0.03679,"15.4":0.04316,"15.5":0.05519,"15.6-15.8":0.46202,"16.0":0.1125,"16.1":0.23278,"16.2":0.1125,"16.3":0.20023,"16.4":0.04245,"16.5":0.08986,"16.6-16.7":0.68065,"17.0":0.08844,"17.1":0.17688,"17.2":0.28514,"17.3":3.50936,"17.4":0.51508,"17.5":0},P:{"23":1.35134,"24":0.17404,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.01024},I:{"0":0.00249,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.01251,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":17.25638},R:{_:"0"},M:{"0":0.06002},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"78":0.47572,"115":0.19351,"123":0.00806,"124":0.87887,"125":0.4354,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 126 127 128 3.5 3.6"},D:{"79":0.01613,"87":0.00806,"94":0.00806,"103":0.00806,"108":0.00806,"109":2.27377,"116":14.13444,"117":0.04032,"118":0.02419,"120":0.01613,"121":0.02419,"122":0.28221,"123":39.61352,"124":15.86798,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 88 89 90 91 92 93 95 96 97 98 99 100 101 102 104 105 106 107 110 111 112 113 114 115 119 125 126 127"},F:{"46":0.00806,"107":0.03225,"108":0.00806,"109":0.02419,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.00806,"122":0.01613,"123":2.37052,"124":2.55597,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.1 16.4 17.0 17.2 17.5","13.1":0.02419,"14.1":0.02419,"15.5":0.00806,"15.6":0.08869,"16.2":0.00806,"16.3":0.00806,"16.5":0.03225,"16.6":0.29027,"17.1":0.03225,"17.3":0.0645,"17.4":0.28221},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00099,"5.0-5.1":0.00099,"6.0-6.1":0.00248,"7.0-7.1":0.00397,"8.1-8.4":0.00099,"9.0-9.2":0.00248,"9.3":0.01239,"10.0-10.2":0.00248,"10.3":0.01983,"11.0-11.2":0.01685,"11.3-11.4":0.00496,"12.0-12.1":0.00347,"12.2-12.5":0.0808,"13.0-13.1":0.00149,"13.2":0.01636,"13.3":0.00397,"13.4-13.7":0.01537,"14.0-14.4":0.03024,"14.5-14.8":0.0461,"15.0-15.1":0.02131,"15.2-15.3":0.02429,"15.4":0.02776,"15.5":0.03519,"15.6-15.8":0.30732,"16.0":0.07187,"16.1":0.14969,"16.2":0.07187,"16.3":0.12689,"16.4":0.02627,"16.5":0.05502,"16.6-16.7":0.43471,"17.0":0.05205,"17.1":0.09616,"17.2":0.12789,"17.3":0.93287,"17.4":2.10564,"17.5":0.01933},P:{"4":0.01021,"23":0.01021,"24":1.3989,_:"20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0","19.0":0.03063},I:{"0":0.00579,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},A:{"11":0.00806,_:"6 7 8 9 10 5.5"},K:{"0":0.00581,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":13.04726},R:{_:"0"},M:{"0":0.13946}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js index 549e9f9dd55869..da18bdfa52979f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SN.js @@ -1 +1 @@ -module.exports={C:{"52":0.01267,"57":0.00211,"66":0.00211,"68":0.00211,"70":0.02322,"72":0.00422,"78":0.019,"80":0.00633,"81":0.00422,"84":0.00211,"88":0.00422,"91":0.00422,"94":0.00211,"95":0.01478,"96":0.00211,"99":0.00211,"102":0.00211,"104":0.00211,"109":0.00633,"111":0.00211,"113":0.00211,"114":0.00211,"115":0.22166,"116":0.00211,"119":0.00211,"120":0.01056,"121":0.00844,"122":0.03378,"123":0.74729,"124":0.33143,"125":0.00422,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 67 69 71 73 74 75 76 77 79 82 83 85 86 87 89 90 92 93 97 98 100 101 103 105 106 107 108 110 112 117 118 126 127 3.5 3.6"},D:{"11":0.00211,"35":0.00211,"36":0.00422,"37":0.00211,"38":0.00211,"47":0.00211,"49":0.00422,"56":0.00211,"58":0.00211,"65":0.00422,"66":0.00211,"68":0.00211,"69":0.01056,"70":0.00844,"71":0.00211,"73":0.00422,"74":0.00211,"75":0.00422,"76":0.00211,"77":0.00844,"79":0.04222,"80":0.00211,"81":0.00844,"83":0.00844,"84":0.00422,"85":0.00211,"86":0.01478,"87":0.04855,"88":0.01689,"89":0.00211,"91":0.00422,"92":0.00422,"93":0.02533,"94":0.00211,"95":0.02322,"96":0.00211,"97":0.00211,"98":0.01689,"99":0.01689,"100":0.00633,"102":0.01056,"103":0.12666,"104":0.00211,"105":0.00211,"106":0.01267,"108":0.01056,"109":0.92251,"110":0.00633,"111":0.00422,"112":0.00633,"113":0.00211,"114":0.038,"115":0.00633,"116":0.12666,"117":0.02533,"118":0.01056,"119":0.04433,"120":0.10766,"121":0.39687,"122":6.50399,"123":2.02656,"124":0.00211,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 57 59 60 61 62 63 64 67 72 78 90 101 107 125 126"},F:{"25":0.00211,"46":0.00422,"79":0.00633,"85":0.00211,"89":0.00211,"95":0.01267,"102":0.00211,"106":0.00422,"107":0.25332,"108":0.11399,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00211,"14":0.00211,"15":0.01267,"17":0.00633,"18":0.01267,"89":0.00211,"90":0.00633,"92":0.01478,"100":0.00422,"101":0.00422,"105":0.00211,"108":0.00211,"109":0.02533,"110":0.00633,"112":0.00211,"113":0.00211,"114":0.00211,"115":0.00211,"116":0.00422,"117":0.00422,"118":0.00844,"119":0.00422,"120":0.04433,"121":0.08655,"122":2.55642,"123":0.19843,_:"13 16 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 102 103 104 106 107 111"},E:{"13":0.00422,"14":0.00422,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00422,"13.1":0.02533,"14.1":0.019,"15.1":0.00422,"15.2-15.3":0.00211,"15.4":0.00422,"15.5":0.00422,"15.6":0.076,"16.0":0.00211,"16.1":0.01056,"16.2":0.00633,"16.3":0.01689,"16.4":0.00633,"16.5":0.00844,"16.6":0.03589,"17.0":0.01689,"17.1":0.02111,"17.2":0.04222,"17.3":0.12244,"17.4":0.03378},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00299,"5.0-5.1":0.0015,"6.0-6.1":0.00898,"7.0-7.1":0.01048,"8.1-8.4":0.00299,"9.0-9.2":0.00599,"9.3":0.03741,"10.0-10.2":0.00599,"10.3":0.06285,"11.0-11.2":0.0449,"11.3-11.4":0.01497,"12.0-12.1":0.01347,"12.2-12.5":0.2589,"13.0-13.1":0.00449,"13.2":0.0449,"13.3":0.01347,"13.4-13.7":0.05088,"14.0-14.4":0.09728,"14.5-14.8":0.15265,"15.0-15.1":0.06585,"15.2-15.3":0.07782,"15.4":0.09129,"15.5":0.11673,"15.6-15.8":0.97724,"16.0":0.23795,"16.1":0.49236,"16.2":0.23795,"16.3":0.42352,"16.4":0.08979,"16.5":0.19006,"16.6-16.7":1.43967,"17.0":0.18707,"17.1":0.37414,"17.2":0.60311,"17.3":7.42285,"17.4":1.08948,"17.5":0},P:{"4":0.19643,"20":0.04135,"21":0.08271,"22":0.11372,"23":1.13721,"24":0.71334,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0","7.2-7.4":0.34116,"11.1-11.2":0.02068,"13.0":0.02068,"15.0":0.01034,"16.0":0.03101,"17.0":0.06203,"18.0":0.01034,"19.0":0.08271},I:{"0":0.03143,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.264,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00633,_:"6 7 8 9 10 5.5"},S:{"2.5":0.01578,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":65.21948},R:{_:"0"},M:{"0":0.08678},Q:{_:"14.9"},O:{"0":0.02367},H:{"0":0.02}}; +module.exports={C:{"52":0.00587,"66":0.00196,"68":0.00587,"70":0.02151,"72":0.00782,"78":0.01369,"80":0.00782,"81":0.00196,"84":0.00196,"85":0.00196,"91":0.00391,"95":0.01173,"96":0.00196,"97":0.00196,"99":0.00196,"102":0.00196,"104":0.00196,"109":0.00391,"113":0.00196,"115":0.18768,"116":0.00196,"120":0.00587,"121":0.00587,"122":0.00978,"123":0.03324,"124":0.58846,"125":0.36168,"126":0.00782,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 69 71 73 74 75 76 77 79 82 83 86 87 88 89 90 92 93 94 98 100 101 103 105 106 107 108 110 111 112 114 117 118 119 127 128 3.5 3.6"},D:{"11":0.00196,"34":0.00196,"36":0.00391,"38":0.00391,"39":0.00196,"43":0.00196,"49":0.00196,"50":0.00196,"51":0.00196,"53":0.00196,"56":0.00196,"59":0.00196,"63":0.00196,"65":0.00196,"68":0.00391,"69":0.01369,"70":0.00782,"71":0.00196,"73":0.00196,"74":0.00196,"75":0.00978,"76":0.00196,"77":0.00391,"79":0.04301,"80":0.00196,"81":0.00391,"83":0.0176,"86":0.0176,"87":0.02737,"88":0.02933,"90":0.00196,"91":0.01564,"92":0.00782,"93":0.02151,"94":0.00196,"95":0.01369,"96":0.00196,"97":0.00196,"98":0.01369,"99":0.01173,"100":0.00391,"101":0.00196,"102":0.00391,"103":0.1349,"104":0.00196,"105":0.00196,"106":0.00391,"107":0.00196,"108":0.02542,"109":0.96577,"110":0.00978,"111":0.00196,"112":0.00587,"113":0.00196,"114":0.01955,"115":0.00391,"116":0.10948,"117":0.02542,"118":0.00782,"119":0.03519,"120":0.04106,"121":0.08798,"122":0.26979,"123":5.46814,"124":2.60406,"125":0.01955,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 40 41 42 44 45 46 47 48 52 54 55 57 58 60 61 62 64 66 67 72 78 84 85 89 126 127"},F:{"40":0.00196,"46":0.00196,"79":0.00587,"85":0.00196,"89":0.00782,"95":0.01369,"102":0.00587,"107":0.04497,"108":0.24047,"109":0.06256,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00196,"13":0.00196,"15":0.00587,"17":0.00196,"18":0.00587,"84":0.00196,"90":0.00196,"92":0.00978,"100":0.00196,"101":0.00587,"102":0.00196,"109":0.01564,"112":0.00196,"114":0.00196,"115":0.00196,"117":0.00391,"118":0.00391,"119":0.00587,"120":0.02542,"121":0.02151,"122":0.11535,"123":1.66566,"124":0.84847,_:"14 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 103 104 105 106 107 108 110 111 113 116"},E:{"11":0.00196,"13":0.00196,"14":0.01369,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00782,"13.1":0.02737,"14.1":0.02542,"15.1":0.00196,"15.2-15.3":0.00391,"15.4":0.00196,"15.5":0.00391,"15.6":0.06061,"16.0":0.00196,"16.1":0.01369,"16.2":0.00391,"16.3":0.01369,"16.4":0.00196,"16.5":0.00587,"16.6":0.02737,"17.0":0.0176,"17.1":0.01564,"17.2":0.01955,"17.3":0.04692,"17.4":0.14272},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00308,"5.0-5.1":0.00308,"6.0-6.1":0.00771,"7.0-7.1":0.01233,"8.1-8.4":0.00308,"9.0-9.2":0.00771,"9.3":0.03854,"10.0-10.2":0.00771,"10.3":0.06166,"11.0-11.2":0.05241,"11.3-11.4":0.01541,"12.0-12.1":0.01079,"12.2-12.5":0.25125,"13.0-13.1":0.00462,"13.2":0.05087,"13.3":0.01233,"13.4-13.7":0.04778,"14.0-14.4":0.09403,"14.5-14.8":0.14335,"15.0-15.1":0.06628,"15.2-15.3":0.07553,"15.4":0.08632,"15.5":0.10944,"15.6-15.8":0.95568,"16.0":0.22351,"16.1":0.46551,"16.2":0.22351,"16.3":0.3946,"16.4":0.0817,"16.5":0.1711,"16.6-16.7":1.35183,"17.0":0.16185,"17.1":0.29904,"17.2":0.39769,"17.3":2.90096,"17.4":6.54796,"17.5":0.06012},P:{"4":0.17451,"20":0.04106,"21":0.11292,"22":0.12318,"23":0.37981,"24":1.56031,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 14.0","7.2-7.4":0.32849,"9.2":0.01027,"11.1-11.2":0.02053,"13.0":0.02053,"15.0":0.02053,"16.0":0.04106,"17.0":0.10265,"18.0":0.02053,"19.0":0.11292},I:{"0":0.03205,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"11":0.00391,_:"6 7 8 9 10 5.5"},K:{"0":0.26962,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01609,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.02414},H:{"0":0.02},L:{"0":65.50925},R:{_:"0"},M:{"0":0.0885}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js index 17aeac7363f1ae..9ee159354c1f77 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SO.js @@ -1 +1 @@ -module.exports={C:{"43":0.00199,"58":0.00199,"114":0.00199,"115":0.02792,"116":0.00598,"118":0.02991,"120":0.00199,"121":0.00598,"122":0.00798,"123":0.31705,"124":0.14955,"125":0.00399,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 117 119 126 127 3.5 3.6"},D:{"33":0.00199,"38":0.00399,"40":0.00199,"43":0.00199,"49":0.00199,"51":0.00399,"56":0.00199,"58":0.00997,"59":0.00199,"64":0.01396,"68":0.01595,"69":0.01795,"70":0.00798,"71":0.00199,"73":0.00598,"74":0.00199,"75":0.00199,"76":0.00199,"77":0.13958,"78":0.00399,"79":0.08774,"81":0.00798,"83":0.01595,"86":0.01196,"87":0.06979,"88":0.04786,"91":0.00399,"93":0.00199,"94":0.00199,"95":0.00199,"96":0.00199,"98":0.02991,"99":0.01994,"101":0.00199,"102":0.00598,"103":0.06979,"105":0.01994,"106":0.01795,"107":0.00997,"108":0.01994,"109":0.44067,"110":0.01396,"111":0.05184,"112":0.02193,"113":0.00997,"114":0.01396,"115":0.00798,"116":0.04187,"117":0.01994,"118":0.01196,"119":0.19142,"120":0.18145,"121":0.5643,"122":9.18038,"123":2.39479,"124":0.00997,"125":0.00199,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 44 45 46 47 48 50 52 53 54 55 57 60 61 62 63 65 66 67 72 80 84 85 89 90 92 97 100 104 126"},F:{"46":0.00399,"79":0.0339,"81":0.00199,"93":0.00798,"95":0.00199,"105":0.00399,"106":0.00598,"107":0.28913,"108":0.10169,"109":0.00199,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00199,"14":0.00199,"15":0.00199,"16":0.00199,"17":0.28913,"18":0.02592,"83":0.00199,"84":0.00598,"89":0.01396,"90":0.00399,"92":0.02393,"100":0.00798,"105":0.00798,"106":0.00199,"107":0.00997,"108":0.00399,"109":0.00997,"110":0.00199,"111":0.00199,"112":0.00199,"114":0.00399,"115":0.00199,"116":0.00598,"117":0.00798,"118":0.01396,"119":0.01595,"120":0.02792,"121":0.10169,"122":1.56928,"123":0.15753,_:"13 79 80 81 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 113"},E:{"14":0.01595,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.00399,"13.1":0.00199,"14.1":0.02193,"15.1":0.00598,"15.2-15.3":0.00199,"15.4":0.00399,"15.5":0.02592,"15.6":0.07777,"16.0":0.00199,"16.1":0.01595,"16.2":0.01196,"16.3":0.00798,"16.4":0.00199,"16.5":0.00399,"16.6":0.0319,"17.0":0.02792,"17.1":0.02792,"17.2":0.01994,"17.3":0.09571,"17.4":0.04586},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00151,"5.0-5.1":0.00075,"6.0-6.1":0.00453,"7.0-7.1":0.00528,"8.1-8.4":0.00151,"9.0-9.2":0.00302,"9.3":0.01887,"10.0-10.2":0.00302,"10.3":0.03171,"11.0-11.2":0.02265,"11.3-11.4":0.00755,"12.0-12.1":0.00679,"12.2-12.5":0.13061,"13.0-13.1":0.00226,"13.2":0.02265,"13.3":0.00679,"13.4-13.7":0.02567,"14.0-14.4":0.04907,"14.5-14.8":0.07701,"15.0-15.1":0.03322,"15.2-15.3":0.03926,"15.4":0.04605,"15.5":0.05889,"15.6-15.8":0.49299,"16.0":0.12004,"16.1":0.24838,"16.2":0.12004,"16.3":0.21366,"16.4":0.0453,"16.5":0.09588,"16.6-16.7":0.72628,"17.0":0.09437,"17.1":0.18874,"17.2":0.30425,"17.3":3.74463,"17.4":0.54962,"17.5":0},P:{"4":0.17313,"20":0.04074,"21":0.12221,"22":0.26479,"23":1.12027,"24":0.97769,_:"5.0-5.4 10.1 12.0","6.2-6.4":0.01018,"7.2-7.4":0.75363,"8.2":0.01018,"9.2":0.08147,"11.1-11.2":0.03055,"13.0":0.02037,"14.0":0.04074,"15.0":0.03055,"16.0":0.08147,"17.0":0.11203,"18.0":0.03055,"19.0":0.35645},I:{"0":0.14352,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00035},K:{"0":2.11367,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00199,"10":0.00199,"11":0.01196,_:"6 7 9 5.5"},S:{"2.5":0.00801,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":64.78548},R:{_:"0"},M:{"0":0.03202},Q:{_:"14.9"},O:{"0":2.78609},H:{"0":0.12}}; +module.exports={C:{"7":0.00168,"34":0.00337,"106":0.00168,"109":0.00168,"115":0.02188,"116":0.0101,"118":0.01346,"123":0.03198,"124":0.26423,"125":0.15652,"126":0.00673,_:"2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 110 111 112 113 114 117 119 120 121 122 127 128 3.5 3.6"},D:{"11":0.00337,"33":0.00168,"38":0.00505,"43":0.00337,"56":0.00337,"58":0.04544,"59":0.00505,"64":0.12791,"65":0.00168,"68":0.04712,"69":0.00842,"70":0.00505,"71":0.00168,"72":0.00168,"73":0.00673,"74":0.00337,"75":0.00168,"77":0.01515,"78":0.00505,"79":0.05217,"80":0.00168,"81":0.00505,"83":0.0101,"85":0.00168,"86":0.00168,"87":0.04712,"88":0.02693,"91":0.00168,"93":0.00337,"95":0.00337,"98":0.0101,"99":0.03198,"102":0.01346,"103":0.03703,"104":0.00842,"105":0.00505,"106":0.00842,"107":0.00168,"108":0.01346,"109":0.2777,"110":0.0101,"111":0.03198,"112":0.0101,"113":0.00168,"114":0.01178,"115":0.00505,"116":0.01683,"117":0.02188,"118":0.00673,"119":0.23899,"120":0.06227,"121":0.05049,"122":0.24908,"123":6.95416,"124":3.38451,"125":0.02861,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 57 60 61 62 63 66 67 76 84 89 90 92 94 96 97 100 101 126 127"},F:{"18":0.00168,"79":0.01683,"83":0.00168,"95":0.00337,"105":0.00168,"106":0.00168,"107":0.02861,"108":0.19186,"109":0.10603,_:"9 11 12 15 16 17 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00168,"14":0.00168,"15":0.00168,"16":0.00673,"17":0.00168,"18":0.01851,"84":0.00673,"89":0.00168,"90":0.00505,"92":0.02525,"100":0.00168,"107":0.00842,"108":0.00337,"109":0.0101,"111":0.00168,"112":0.00337,"114":0.00337,"115":0.00168,"117":0.00168,"118":0.00842,"119":0.02356,"120":0.0101,"121":0.0202,"122":0.08078,"123":1.21849,"124":0.50658,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 110 113 116"},E:{"13":0.00337,"14":0.00842,"15":0.00168,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 16.0 17.5","5.1":0.00168,"13.1":0.00505,"14.1":0.04039,"15.1":0.00168,"15.2-15.3":0.00337,"15.4":0.00673,"15.5":0.00337,"15.6":0.05049,"16.1":0.00842,"16.2":0.00505,"16.3":0.00842,"16.4":0.00168,"16.5":0.00505,"16.6":0.0101,"17.0":0.00673,"17.1":0.00337,"17.2":0.01178,"17.3":0.0202,"17.4":0.08415},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00168,"5.0-5.1":0.00168,"6.0-6.1":0.00419,"7.0-7.1":0.00671,"8.1-8.4":0.00168,"9.0-9.2":0.00419,"9.3":0.02096,"10.0-10.2":0.00419,"10.3":0.03354,"11.0-11.2":0.02851,"11.3-11.4":0.00838,"12.0-12.1":0.00587,"12.2-12.5":0.13667,"13.0-13.1":0.00252,"13.2":0.02767,"13.3":0.00671,"13.4-13.7":0.02599,"14.0-14.4":0.05115,"14.5-14.8":0.07798,"15.0-15.1":0.03605,"15.2-15.3":0.04108,"15.4":0.04695,"15.5":0.05953,"15.6-15.8":0.51984,"16.0":0.12158,"16.1":0.25321,"16.2":0.12158,"16.3":0.21464,"16.4":0.04444,"16.5":0.09307,"16.6-16.7":0.73532,"17.0":0.08804,"17.1":0.16266,"17.2":0.21632,"17.3":1.57797,"17.4":3.56175,"17.5":0.0327},P:{"4":0.14288,"20":0.04082,"21":0.13268,"22":0.28576,"23":0.56132,"24":1.65334,_:"5.0-5.4 8.2 10.1 12.0","6.2-6.4":0.07144,"7.2-7.4":0.79605,"9.2":0.01021,"11.1-11.2":0.02041,"13.0":0.01021,"14.0":0.03062,"15.0":0.02041,"16.0":0.08165,"17.0":0.01021,"18.0":0.02041,"19.0":0.30617},I:{"0":0.14083,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00035},A:{"8":0.00748,"11":0.00935,_:"6 7 9 10 5.5"},K:{"0":2.32054,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":1.94641},H:{"0":0.1},L:{"0":67.18929},R:{_:"0"},M:{"0":0.04991}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js index 3247537236c7e9..f6b5a3fb7d9e09 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SR.js @@ -1 +1 @@ -module.exports={C:{"4":0.01741,"52":0.0029,"108":0.0029,"115":0.33071,"116":0.0116,"120":0.0087,"121":0.04061,"122":0.15375,"123":2.19026,"124":0.40324,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 117 118 119 125 126 127 3.5 3.6"},D:{"49":0.0087,"55":0.0029,"56":0.0029,"63":0.0029,"69":0.02321,"71":0.0029,"73":0.0116,"74":0.0029,"76":0.0058,"77":0.0058,"79":0.0087,"81":0.01741,"83":0.01741,"84":0.0029,"86":0.0087,"87":0.07253,"88":0.02031,"89":0.0029,"93":0.04352,"94":0.02611,"95":0.0029,"96":0.0029,"99":0.0029,"103":0.08993,"105":0.0058,"108":0.01741,"109":0.79487,"110":0.01741,"111":0.04352,"112":0.0116,"113":0.01451,"114":0.0087,"115":0.0029,"116":0.02901,"117":0.0087,"118":0.01451,"119":0.03481,"120":0.17406,"121":0.70784,"122":11.23847,"123":2.98803,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 59 60 61 62 64 65 66 67 68 70 72 75 78 80 85 90 91 92 97 98 100 101 102 104 106 107 124 125 126"},F:{"73":0.0058,"81":0.0029,"95":0.0029,"102":0.0029,"104":0.0029,"106":0.0087,"107":1.19231,"108":0.2756,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.0029,"18":0.0058,"92":0.0058,"100":0.0029,"109":0.02611,"112":0.0029,"114":0.0116,"117":0.0029,"118":0.0029,"119":0.0087,"120":0.07253,"121":0.20017,"122":3.28683,"123":0.22048,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 113 115 116"},E:{"14":0.0058,"15":0.0029,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.2-15.3 17.5","11.1":0.0029,"13.1":0.0058,"14.1":0.06382,"15.1":0.0029,"15.4":0.0058,"15.5":0.0029,"15.6":0.31041,"16.0":0.0058,"16.1":0.02031,"16.2":0.06382,"16.3":0.05222,"16.4":0.02321,"16.5":0.01741,"16.6":0.13055,"17.0":0.0087,"17.1":0.02901,"17.2":0.09863,"17.3":0.37423,"17.4":0.09283},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00276,"5.0-5.1":0.00138,"6.0-6.1":0.00829,"7.0-7.1":0.00967,"8.1-8.4":0.00276,"9.0-9.2":0.00553,"9.3":0.03454,"10.0-10.2":0.00553,"10.3":0.05803,"11.0-11.2":0.04145,"11.3-11.4":0.01382,"12.0-12.1":0.01243,"12.2-12.5":0.23903,"13.0-13.1":0.00414,"13.2":0.04145,"13.3":0.01243,"13.4-13.7":0.04698,"14.0-14.4":0.08981,"14.5-14.8":0.14093,"15.0-15.1":0.06079,"15.2-15.3":0.07185,"15.4":0.08428,"15.5":0.10777,"15.6-15.8":0.90222,"16.0":0.21968,"16.1":0.45457,"16.2":0.21968,"16.3":0.39101,"16.4":0.0829,"16.5":0.17547,"16.6-16.7":1.32916,"17.0":0.17271,"17.1":0.34542,"17.2":0.55681,"17.3":6.85303,"17.4":1.00585,"17.5":0},P:{"4":0.58544,"20":0.12545,"21":0.18818,"22":0.14636,"23":2.38357,"24":3.86808,"5.0-5.4":0.01045,"6.2-6.4":0.01045,"7.2-7.4":0.6168,_:"8.2 9.2 10.1","11.1-11.2":0.02091,"12.0":0.01045,"13.0":0.03136,"14.0":0.03136,"15.0":0.01045,"16.0":0.09409,"17.0":0.10454,"18.0":0.02091,"19.0":0.07318},I:{"0":0.00707,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":0.2982,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.07543,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":49.84346},R:{_:"0"},M:{"0":0.0994},Q:{_:"14.9"},O:{"0":0.852},H:{"0":0}}; +module.exports={C:{"4":0.0486,"72":0.00286,"103":0.00572,"108":0.00286,"113":0.0143,"115":0.43743,"116":0.00286,"118":0.00286,"121":0.01715,"122":0.05718,"123":0.0143,"124":1.82404,"125":0.46602,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 109 110 111 112 114 117 119 120 126 127 128 3.5 3.6"},D:{"47":0.00286,"49":0.00572,"58":0.01144,"65":0.02287,"68":0.00286,"69":0.02573,"70":0.00286,"73":0.00858,"76":0.02573,"78":0.00286,"79":0.00572,"80":0.00286,"81":0.01144,"83":0.01144,"84":0.00286,"86":0.00286,"87":0.01144,"88":0.00286,"89":0.00286,"90":0.00572,"92":0.00858,"93":0.02573,"94":0.04003,"99":0.00572,"100":0.00858,"102":0.00858,"103":0.14867,"104":0.00286,"108":0.00286,"109":0.76335,"111":0.06004,"112":0.00858,"113":0.00572,"114":0.00858,"115":0.02001,"116":0.12008,"117":0.00858,"118":0.00858,"119":0.06576,"120":0.07148,"121":0.10292,"122":0.65471,"123":10.77271,"124":4.76881,"125":0.02001,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 59 60 61 62 63 64 66 67 71 72 74 75 77 85 91 95 96 97 98 101 105 106 107 110 126 127"},F:{"95":0.00286,"107":0.77193,"108":0.35452,"109":0.18869,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00286},B:{"15":0.00858,"16":0.00286,"18":0.00858,"92":0.01144,"99":0.00572,"100":0.00286,"109":0.03145,"110":0.00858,"114":0.01144,"118":0.00286,"119":0.00286,"120":0.02573,"121":0.03145,"122":0.15439,"123":2.40156,"124":0.90916,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 101 102 103 104 105 106 107 108 111 112 113 115 116 117"},E:{"14":0.01715,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.00286,"14.1":0.0486,"15.1":0.00572,"15.2-15.3":0.00858,"15.4":0.00572,"15.5":0.00286,"15.6":0.21157,"16.0":0.02859,"16.1":0.00286,"16.2":0.08863,"16.3":0.02573,"16.4":0.01144,"16.5":0.02001,"16.6":0.09435,"17.0":0.01144,"17.1":0.01144,"17.2":0.00572,"17.3":0.06004,"17.4":0.36881},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00293,"5.0-5.1":0.00293,"6.0-6.1":0.00732,"7.0-7.1":0.01172,"8.1-8.4":0.00293,"9.0-9.2":0.00732,"9.3":0.03661,"10.0-10.2":0.00732,"10.3":0.05858,"11.0-11.2":0.04979,"11.3-11.4":0.01464,"12.0-12.1":0.01025,"12.2-12.5":0.2387,"13.0-13.1":0.00439,"13.2":0.04833,"13.3":0.01172,"13.4-13.7":0.0454,"14.0-14.4":0.08933,"14.5-14.8":0.13619,"15.0-15.1":0.06297,"15.2-15.3":0.07176,"15.4":0.08201,"15.5":0.10397,"15.6-15.8":0.90794,"16.0":0.21234,"16.1":0.44225,"16.2":0.21234,"16.3":0.37489,"16.4":0.07761,"16.5":0.16255,"16.6-16.7":1.28429,"17.0":0.15376,"17.1":0.2841,"17.2":0.37782,"17.3":2.75603,"17.4":6.22083,"17.5":0.05711},P:{"4":0.50277,"20":0.11522,"21":0.17806,"22":0.07332,"23":0.4085,"24":6.30552,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.42945,"11.1-11.2":0.01047,"12.0":0.01047,"13.0":0.03142,"14.0":0.01047,"15.0":0.01047,"16.0":0.08379,"17.0":0.0419,"18.0":0.0419,"19.0":0.08379},I:{"0":0.01422,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.05432,_:"6 7 8 9 10 5.5"},K:{"0":0.38556,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.06426},O:{"0":0.97104},H:{"0":0},L:{"0":48.00396},R:{_:"0"},M:{"0":0.0714}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js index abe5206574d4db..5986bfca53ac60 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ST.js @@ -1 +1 @@ -module.exports={C:{"28":0.00516,"78":0.12386,"83":0.00516,"115":2.33277,"118":0.02064,"122":0.01032,"123":0.94446,"124":1.23864,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 125 126 127 3.5 3.6"},D:{"11":0.00516,"36":0.02064,"43":0.08258,"44":0.01032,"52":0.07742,"64":0.00516,"72":0.00516,"76":0.00516,"77":0.06709,"78":0.02064,"79":0.07742,"80":0.03097,"81":0.03613,"83":0.00516,"85":0.00516,"86":0.00516,"87":0.04645,"88":0.14451,"89":1.70313,"94":0.07742,"104":0.1858,"109":1.88377,"116":0.06193,"117":0.00516,"119":0.18064,"120":0.18064,"121":1.48637,"122":6.55447,"123":2.63211,"124":0.05677,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 69 70 71 73 74 75 84 90 91 92 93 95 96 97 98 99 100 101 102 103 105 106 107 108 110 111 112 113 114 115 118 125 126"},F:{"46":0.00516,"95":0.02064,"107":0.29418,"108":0.04645,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00516,"84":0.00516,"90":0.00516,"92":0.04129,"107":0.00516,"109":0.22192,"118":0.00516,"119":0.02064,"120":0.07742,"121":0.13419,"122":23.23998,"123":1.36767,_:"13 14 15 16 17 18 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112 113 114 115 116 117"},E:{"14":0.00516,"15":0.00516,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 17.0 17.5","9.1":0.00516,"14.1":0.00516,"15.6":0.03097,"16.5":0.00516,"16.6":0.00516,"17.1":0.01548,"17.2":0.06709,"17.3":0.35095,"17.4":0.02064},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00052,"5.0-5.1":0.00026,"6.0-6.1":0.00156,"7.0-7.1":0.00182,"8.1-8.4":0.00052,"9.0-9.2":0.00104,"9.3":0.00651,"10.0-10.2":0.00104,"10.3":0.01093,"11.0-11.2":0.00781,"11.3-11.4":0.0026,"12.0-12.1":0.00234,"12.2-12.5":0.04504,"13.0-13.1":0.00078,"13.2":0.00781,"13.3":0.00234,"13.4-13.7":0.00885,"14.0-14.4":0.01692,"14.5-14.8":0.02655,"15.0-15.1":0.01145,"15.2-15.3":0.01354,"15.4":0.01588,"15.5":0.02031,"15.6-15.8":0.17,"16.0":0.04139,"16.1":0.08565,"16.2":0.04139,"16.3":0.07368,"16.4":0.01562,"16.5":0.03306,"16.6-16.7":0.25045,"17.0":0.03254,"17.1":0.06508,"17.2":0.10492,"17.3":1.29128,"17.4":0.18953,"17.5":0},P:{"4":0.16565,"20":0.01035,"21":0.03106,"22":0.02071,"23":0.32095,"24":0.72472,"5.0-5.4":0.02071,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 17.0 18.0","7.2-7.4":0.05177,"15.0":0.01035,"16.0":0.01035,"19.0":0.41413},I:{"0":0.07711,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":0.25647,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.05161,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":45.667},R:{_:"0"},M:{"0":0.00484},Q:{_:"14.9"},O:{"0":2.87921},H:{"0":0}}; +module.exports={C:{"4":0.00609,"43":0.01217,"78":0.01217,"115":2.28225,"124":0.9981,"125":0.37733,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"11":0.01826,"36":0.01826,"42":0.0852,"43":0.00609,"50":0.02434,"52":0.04869,"56":0.00609,"62":0.01217,"65":0.00609,"68":0.01826,"72":0.01826,"77":0.00609,"79":0.06695,"83":0.01826,"84":0.01826,"87":0.28604,"88":0.0426,"89":1.12591,"92":0.03043,"95":0.14606,"99":0.01217,"104":0.05477,"106":0.01217,"109":3.52379,"112":0.01217,"116":0.03652,"117":0.00609,"119":0.05477,"120":0.03043,"121":0.09129,"122":0.10955,"123":13.09099,"124":4.2602,"125":0.01217,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 44 45 46 47 48 49 51 53 54 55 57 58 59 60 61 63 64 66 67 69 70 71 73 74 75 76 78 80 81 85 86 90 91 93 94 96 97 98 100 101 102 103 105 107 108 110 111 113 114 115 118 126 127"},F:{"84":0.01217,"95":0.07303,"106":0.01217,"107":0.96767,"108":0.10346,"109":0.15824,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"80":0.02434,"88":0.00609,"90":0.00609,"92":0.01217,"107":0.00609,"109":0.12172,"119":0.00609,"120":0.02434,"121":0.00609,"122":0.19475,"123":18.27626,"124":9.71934,_:"12 13 14 15 16 17 18 79 81 83 84 85 86 87 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 110 111 112 113 114 115 116 117 118"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.1 17.5","14.1":0.00609,"15.6":0.00609,"17.0":0.00609,"17.2":0.01826,"17.3":0.01826,"17.4":0.03043},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0.00035,"6.0-6.1":0.00087,"7.0-7.1":0.00139,"8.1-8.4":0.00035,"9.0-9.2":0.00087,"9.3":0.00435,"10.0-10.2":0.00087,"10.3":0.00695,"11.0-11.2":0.00591,"11.3-11.4":0.00174,"12.0-12.1":0.00122,"12.2-12.5":0.02833,"13.0-13.1":0.00052,"13.2":0.00574,"13.3":0.00139,"13.4-13.7":0.00539,"14.0-14.4":0.0106,"14.5-14.8":0.01617,"15.0-15.1":0.00747,"15.2-15.3":0.00852,"15.4":0.00973,"15.5":0.01234,"15.6-15.8":0.10777,"16.0":0.0252,"16.1":0.0525,"16.2":0.0252,"16.3":0.0445,"16.4":0.00921,"16.5":0.01929,"16.6-16.7":0.15245,"17.0":0.01825,"17.1":0.03372,"17.2":0.04485,"17.3":0.32714,"17.4":0.73841,"17.5":0.00678},P:{"4":0.18533,"20":0.0103,"21":0.0103,"22":0.10296,"23":0.10296,"24":0.58688,"5.0-5.4":0.02059,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0","7.2-7.4":0.06178,"16.0":0.02059,"19.0":0.12355},I:{"0":0.10917,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00027},A:{"11":0.01217,_:"6 7 8 9 10 5.5"},K:{"0":0.35801,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":2.53692},H:{"0":0.01},L:{"0":36.83891},R:{_:"0"},M:{"0":0.01958}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js index 872894cb1a600a..b8664a154e1501 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SV.js @@ -1 +1 @@ -module.exports={C:{"35":0.00394,"51":0.00394,"52":0.00394,"68":0.00788,"71":0.00788,"78":0.00394,"81":0.00394,"88":0.00394,"90":0.00394,"91":0.00788,"102":0.00788,"103":0.02365,"104":0.00394,"106":0.00394,"108":0.00394,"110":0.00394,"111":0.01577,"114":0.00394,"115":0.33113,"118":0.00788,"119":0.01971,"120":0.08278,"121":0.02759,"122":0.03154,"123":1.32845,"124":0.47698,"125":0.00394,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 72 73 74 75 76 77 79 80 82 83 84 85 86 87 89 92 93 94 95 96 97 98 99 100 101 105 107 109 112 113 116 117 126 127 3.5 3.6"},D:{"34":0.00394,"38":0.00394,"49":0.01971,"55":0.00394,"65":0.00788,"68":0.00394,"69":0.00394,"72":0.00394,"73":0.00394,"74":0.00394,"75":0.00394,"76":0.00394,"78":0.00394,"79":0.07096,"81":0.00788,"83":0.00394,"84":0.00788,"85":0.00394,"86":0.00394,"87":0.09855,"88":0.03548,"91":0.00394,"92":0.00394,"93":0.01183,"94":0.03154,"95":0.00394,"96":0.00394,"97":0.00394,"98":0.00394,"99":0.01183,"100":0.00788,"101":0.00788,"102":0.00394,"103":0.20498,"104":0.00394,"105":0.02365,"106":0.02365,"107":0.05913,"108":0.00788,"109":1.90004,"110":0.0749,"111":0.06307,"112":0.03548,"113":0.01577,"114":0.02759,"115":0.01183,"116":0.10249,"117":0.01971,"118":0.05519,"119":0.14191,"120":0.34295,"121":0.92243,"122":18.43673,"123":4.26919,"124":0.01971,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 70 71 77 80 89 90 125 126"},F:{"28":0.01183,"46":0.01183,"95":0.02759,"102":0.00394,"105":0.00394,"106":0.00788,"107":1.84091,"108":0.20498,"109":0.00788,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00394,"85":0.00394,"92":0.01577,"100":0.02759,"104":0.00394,"106":0.00394,"109":0.03548,"110":0.00394,"112":0.00788,"114":0.01183,"115":0.00788,"116":0.00394,"117":0.01183,"118":0.01577,"119":0.02365,"120":0.0473,"121":0.17345,"122":3.52809,"123":0.22469,_:"12 13 14 15 16 17 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 105 107 108 111 113"},E:{"12":0.00394,"14":0.00394,"15":0.00394,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00394,"12.1":0.00788,"13.1":0.01183,"14.1":0.01577,"15.1":0.00394,"15.2-15.3":0.00788,"15.4":0.00788,"15.5":0.00788,"15.6":0.05913,"16.0":0.00394,"16.1":0.01183,"16.2":0.00788,"16.3":0.01577,"16.4":0.02365,"16.5":0.00788,"16.6":0.0749,"17.0":0.01971,"17.1":0.02365,"17.2":0.08672,"17.3":0.33901,"17.4":0.08672},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00138,"5.0-5.1":0.00069,"6.0-6.1":0.00415,"7.0-7.1":0.00485,"8.1-8.4":0.00138,"9.0-9.2":0.00277,"9.3":0.01731,"10.0-10.2":0.00277,"10.3":0.02908,"11.0-11.2":0.02077,"11.3-11.4":0.00692,"12.0-12.1":0.00623,"12.2-12.5":0.11977,"13.0-13.1":0.00208,"13.2":0.02077,"13.3":0.00623,"13.4-13.7":0.02354,"14.0-14.4":0.045,"14.5-14.8":0.07062,"15.0-15.1":0.03046,"15.2-15.3":0.036,"15.4":0.04223,"15.5":0.054,"15.6-15.8":0.45208,"16.0":0.11008,"16.1":0.22777,"16.2":0.11008,"16.3":0.19593,"16.4":0.04154,"16.5":0.08792,"16.6-16.7":0.66601,"17.0":0.08654,"17.1":0.17308,"17.2":0.279,"17.3":3.43388,"17.4":0.50401,"17.5":0},P:{"4":0.08307,"20":0.04153,"21":0.05192,"22":0.10383,"23":0.99681,"24":1.3187,"5.0-5.4":0.01038,"6.2-6.4":0.02077,"7.2-7.4":0.13498,_:"8.2 9.2 10.1 14.0 15.0","11.1-11.2":0.01038,"12.0":0.01038,"13.0":0.10383,"16.0":0.02077,"17.0":0.01038,"18.0":0.02077,"19.0":0.04153},I:{"0":0.09048,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.33525,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01971,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.15663},R:{_:"0"},M:{"0":0.23622},Q:{_:"14.9"},O:{"0":0.10903},H:{"0":0.01}}; +module.exports={C:{"51":0.00429,"52":0.00429,"68":0.00429,"71":0.00429,"78":0.00429,"88":0.00429,"91":0.00858,"93":0.00429,"102":0.01286,"103":0.03859,"104":0.00429,"106":0.00429,"108":0.00429,"111":0.00429,"113":0.00429,"114":0.00429,"115":0.3945,"118":0.00858,"119":0.01286,"120":0.07718,"121":0.01286,"122":0.00858,"123":0.04288,"124":1.4279,"125":0.80186,"126":0.00858,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 94 95 96 97 98 99 100 101 105 107 109 110 112 116 117 127 128 3.5 3.6"},D:{"34":0.00429,"38":0.00429,"49":0.0343,"55":0.00429,"65":0.00429,"68":0.00429,"73":0.00429,"74":0.00429,"75":0.00429,"76":0.00429,"77":0.00429,"78":0.00858,"79":0.05574,"83":0.00429,"84":0.00429,"87":0.11149,"88":0.0343,"89":0.00429,"91":0.09434,"92":0.00858,"93":0.00429,"94":0.03859,"95":0.00429,"96":0.00429,"97":0.00429,"98":0.00858,"99":0.00858,"100":0.00858,"101":0.00429,"103":0.20582,"104":0.00858,"105":0.00429,"106":0.04717,"107":0.01715,"108":0.01286,"109":2.05395,"110":0.01715,"111":0.0343,"112":0.0729,"113":0.01286,"114":0.03859,"115":0.01286,"116":0.09862,"117":0.01286,"118":0.04288,"119":0.12864,"120":0.22298,"121":0.18867,"122":0.8919,"123":17.7952,"124":7.73555,"125":0.02573,"126":0.00429,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 66 67 69 70 71 72 80 81 85 86 90 102 127"},F:{"28":0.00858,"36":0.00429,"95":0.0343,"102":0.00429,"107":1.48794,"108":0.39021,"109":0.1801,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00429,"14":0.01715,"18":0.00429,"85":0.00429,"87":0.00429,"92":0.01286,"104":0.00429,"105":0.00429,"108":0.00429,"109":0.0343,"110":0.01715,"112":0.00858,"113":0.00429,"114":0.00429,"115":0.00429,"116":0.00858,"117":0.01286,"118":0.00858,"119":0.01286,"120":0.0343,"121":0.04288,"122":0.21011,"123":2.7529,"124":1.32499,_:"13 15 16 17 79 80 81 83 84 86 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 106 107 111"},E:{"12":0.00429,"14":0.00858,"15":0.00429,_:"0 4 5 6 7 8 9 10 11 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00429,"12.1":0.00858,"13.1":0.01286,"14.1":0.01286,"15.1":0.00429,"15.2-15.3":0.00858,"15.4":0.00429,"15.5":0.00429,"15.6":0.06861,"16.0":0.00429,"16.1":0.00858,"16.2":0.00858,"16.3":0.01715,"16.4":0.03002,"16.5":0.01286,"16.6":0.0729,"17.0":0.00858,"17.1":0.02144,"17.2":0.05146,"17.3":0.10291,"17.4":0.33446,"17.5":0.00429},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00136,"6.0-6.1":0.00339,"7.0-7.1":0.00542,"8.1-8.4":0.00136,"9.0-9.2":0.00339,"9.3":0.01695,"10.0-10.2":0.00339,"10.3":0.02712,"11.0-11.2":0.02305,"11.3-11.4":0.00678,"12.0-12.1":0.00475,"12.2-12.5":0.1105,"13.0-13.1":0.00203,"13.2":0.02237,"13.3":0.00542,"13.4-13.7":0.02101,"14.0-14.4":0.04135,"14.5-14.8":0.06304,"15.0-15.1":0.02915,"15.2-15.3":0.03322,"15.4":0.03796,"15.5":0.04813,"15.6-15.8":0.4203,"16.0":0.09829,"16.1":0.20472,"16.2":0.09829,"16.3":0.17354,"16.4":0.03593,"16.5":0.07525,"16.6-16.7":0.59451,"17.0":0.07118,"17.1":0.13151,"17.2":0.1749,"17.3":1.2758,"17.4":2.8797,"17.5":0.02644},P:{"4":0.06233,"20":0.04155,"21":0.07272,"22":0.05194,"23":0.19737,"24":1.71401,_:"5.0-5.4 8.2 9.2 10.1 12.0 15.0","6.2-6.4":0.01039,"7.2-7.4":0.07272,"11.1-11.2":0.01039,"13.0":0.10388,"14.0":0.01039,"16.0":0.01039,"17.0":0.01039,"18.0":0.01039,"19.0":0.03116},I:{"0":0.091,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00023},A:{"11":0.01286,_:"6 7 8 9 10 5.5"},K:{"0":0.35408,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.1028},H:{"0":0},L:{"0":48.95991},R:{_:"0"},M:{"0":0.25128}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js index 8b28b198501797..06eae8f7c966c8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SY.js @@ -1 +1 @@ -module.exports={C:{"16":0.00095,"36":0.00095,"41":0.00572,"43":0.00191,"47":0.00191,"48":0.00095,"51":0.00095,"52":0.00477,"56":0.00095,"58":0.00095,"61":0.00095,"63":0.00095,"66":0.00095,"68":0.00095,"72":0.00381,"73":0.00095,"78":0.02573,"88":0.00095,"91":0.00095,"92":0.00095,"94":0.00095,"98":0.00095,"99":0.00095,"101":0.00667,"102":0.00095,"103":0.00095,"104":0.00095,"106":0.00191,"108":0.00095,"109":0.00191,"110":0.00095,"111":0.00095,"112":0.00095,"113":0.00667,"114":0.00095,"115":0.18202,"116":0.00191,"117":0.00095,"118":0.00286,"119":0.00095,"120":0.00381,"121":0.00953,"122":0.0143,"123":0.23634,"124":0.08005,"125":0.00095,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 42 44 45 46 49 50 53 54 55 57 59 60 62 64 65 67 69 70 71 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 93 95 96 97 100 105 107 126 127 3.5 3.6"},D:{"11":0.00477,"31":0.00191,"32":0.00095,"33":0.00191,"34":0.00191,"36":0.00191,"38":0.00953,"39":0.00191,"40":0.00191,"42":0.00095,"43":0.00667,"44":0.00286,"45":0.00095,"47":0.00095,"49":0.00572,"50":0.00286,"52":0.00191,"55":0.00286,"56":0.00572,"58":0.04193,"59":0.00095,"60":0.00286,"61":0.00095,"63":0.00477,"64":0.00191,"65":0.00191,"66":0.00667,"67":0.00095,"68":0.0162,"69":0.00667,"70":0.01334,"71":0.00381,"72":0.00286,"73":0.00477,"74":0.00381,"75":0.00381,"76":0.00286,"77":0.00191,"78":0.01144,"79":0.02097,"80":0.00381,"81":0.00667,"83":0.0162,"84":0.00191,"85":0.00381,"86":0.00381,"87":0.01144,"88":0.00762,"89":0.0143,"90":0.00477,"91":0.00477,"92":0.01048,"93":0.01239,"94":0.03431,"95":0.00572,"96":0.00286,"97":0.00477,"98":0.01811,"99":0.00858,"100":0.00762,"101":0.00381,"102":0.01525,"103":0.02287,"104":0.00858,"105":0.02097,"106":0.00953,"107":0.01144,"108":0.02001,"109":0.83388,"110":0.00381,"111":0.01906,"112":0.01239,"113":0.00286,"114":0.02001,"115":0.02097,"116":0.0143,"117":0.01239,"118":0.00762,"119":0.02668,"120":0.11436,"121":0.19632,"122":2.01845,"123":0.54702,"124":0.00191,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 35 37 41 46 48 51 53 54 57 62 125 126"},F:{"36":0.00095,"46":0.00095,"73":0.00095,"79":0.00953,"80":0.00095,"81":0.00191,"84":0.00095,"85":0.00286,"86":0.00095,"89":0.00191,"94":0.00858,"95":0.01715,"101":0.00095,"102":0.00095,"104":0.00095,"105":0.00095,"106":0.00381,"107":0.09244,"108":0.04956,"109":0.00095,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 74 75 76 77 78 82 83 87 88 90 91 92 93 96 97 98 99 100 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00286,"14":0.00095,"15":0.00095,"16":0.00191,"17":0.00095,"18":0.0162,"84":0.00477,"89":0.00095,"92":0.01715,"100":0.00191,"101":0.00381,"105":0.00095,"109":0.01525,"111":0.00095,"112":0.00095,"113":0.00191,"114":0.00095,"115":0.00191,"116":0.00381,"117":0.00191,"118":0.00095,"119":0.00381,"120":0.02383,"121":0.01811,"122":0.43457,"123":0.05718,_:"13 79 80 81 83 85 86 87 88 90 91 93 94 95 96 97 98 99 102 103 104 106 107 108 110"},E:{"14":0.00477,"15":0.00095,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 9.1 10.1 11.1 12.1 15.1 16.0 17.5","5.1":0.44982,"7.1":0.00095,"13.1":0.00191,"14.1":0.00477,"15.2-15.3":0.00095,"15.4":0.00286,"15.5":0.00095,"15.6":0.02668,"16.1":0.00286,"16.2":0.00095,"16.3":0.00286,"16.4":0.00762,"16.5":0.00095,"16.6":0.01144,"17.0":0.00477,"17.1":0.00191,"17.2":0.00191,"17.3":0.00953,"17.4":0.00762},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00064,"5.0-5.1":0.00032,"6.0-6.1":0.00192,"7.0-7.1":0.00224,"8.1-8.4":0.00064,"9.0-9.2":0.00128,"9.3":0.00801,"10.0-10.2":0.00128,"10.3":0.01345,"11.0-11.2":0.00961,"11.3-11.4":0.0032,"12.0-12.1":0.00288,"12.2-12.5":0.0554,"13.0-13.1":0.00096,"13.2":0.00961,"13.3":0.00288,"13.4-13.7":0.01089,"14.0-14.4":0.02081,"14.5-14.8":0.03266,"15.0-15.1":0.01409,"15.2-15.3":0.01665,"15.4":0.01953,"15.5":0.02498,"15.6-15.8":0.20911,"16.0":0.05092,"16.1":0.10536,"16.2":0.05092,"16.3":0.09062,"16.4":0.01921,"16.5":0.04067,"16.6-16.7":0.30806,"17.0":0.04003,"17.1":0.08006,"17.2":0.12905,"17.3":1.58833,"17.4":0.23313,"17.5":0},P:{"4":3.80826,"20":0.13237,"21":0.34621,"22":0.32584,"23":1.38482,"24":0.24438,"5.0-5.4":0.13237,"6.2-6.4":0.60077,"7.2-7.4":0.63132,"8.2":0.07128,"9.2":0.29529,"10.1":0.08146,"11.1-11.2":0.1731,"12.0":0.08146,"13.0":0.26475,"14.0":0.32584,"15.0":0.08146,"16.0":0.28511,"17.0":0.39712,"18.0":0.11201,"19.0":0.19347},I:{"0":0.18919,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00011,"4.4":0,"4.4.3-4.4.4":0.00046},K:{"0":1.67489,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01811,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00905,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":76.63695},R:{_:"0"},M:{"0":0.06332},Q:{_:"14.9"},O:{"0":1.37499},H:{"0":0.27}}; +module.exports={C:{"6":0.00068,"31":0.00068,"35":0.00068,"36":0.00068,"38":0.00068,"39":0.00068,"43":0.00068,"47":0.00136,"48":0.00068,"49":0.00136,"52":0.0075,"58":0.00068,"60":0.00068,"63":0.0075,"65":0.00068,"66":0.00205,"72":0.00273,"76":0.00068,"78":0.015,"84":0.00068,"86":0.00068,"88":0.00068,"89":0.00136,"91":0.00136,"92":0.00068,"94":0.00068,"97":0.00068,"99":0.00068,"100":0.00068,"101":0.00341,"102":0.00068,"103":0.00205,"104":0.00068,"105":0.00068,"106":0.00205,"107":0.00068,"108":0.00068,"109":0.00068,"110":0.00068,"112":0.00136,"113":0.00477,"114":0.00068,"115":0.14458,"116":0.00205,"117":0.00068,"118":0.00205,"119":0.00068,"120":0.00136,"121":0.00205,"122":0.00546,"123":0.00682,"124":0.12412,"125":0.0948,"126":0.00341,_:"2 3 4 5 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 37 40 41 42 44 45 46 50 51 53 54 55 56 57 59 61 62 64 67 68 69 70 71 73 74 75 77 79 80 81 82 83 85 87 90 93 95 96 98 111 127 128 3.5 3.6"},D:{"11":0.00205,"19":0.00068,"22":0.00068,"28":0.00136,"31":0.00068,"32":0.00068,"33":0.00136,"34":0.00205,"35":0.00068,"36":0.00205,"37":0.00136,"38":0.01569,"39":0.00068,"40":0.00136,"41":0.00136,"42":0.00068,"43":0.00409,"44":0.00409,"45":0.00068,"47":0.00068,"49":0.00614,"50":0.00205,"51":0.00068,"53":0.00068,"55":0.00136,"56":0.00341,"58":0.03546,"59":0.00068,"60":0.00136,"61":0.00068,"62":0.00068,"63":0.00341,"64":0.00136,"65":0.00068,"66":0.00409,"68":0.02114,"69":0.00477,"70":0.01569,"71":0.00409,"72":0.00273,"73":0.00341,"74":0.00205,"75":0.00818,"76":0.00273,"77":0.00068,"78":0.01091,"79":0.02251,"80":0.00477,"81":0.00682,"83":0.01841,"84":0.00136,"85":0.00205,"86":0.00546,"87":0.0075,"88":0.02114,"89":0.00614,"90":0.00409,"91":0.00614,"92":0.00477,"93":0.00614,"94":0.02864,"95":0.00341,"96":0.00546,"97":0.00341,"98":0.02933,"99":0.0075,"100":0.00682,"101":0.00136,"102":0.01841,"103":0.01569,"104":0.00546,"105":0.0191,"106":0.01296,"107":0.01023,"108":0.00682,"109":0.68609,"110":0.00205,"111":0.01637,"112":0.01091,"113":0.00341,"114":0.01023,"115":0.00273,"116":0.01228,"117":0.01569,"118":0.00955,"119":0.0266,"120":0.04979,"121":0.06138,"122":0.10162,"123":1.38105,"124":0.51491,"125":0.00682,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 23 24 25 26 27 29 30 46 48 52 54 57 67 126 127"},F:{"28":0.00068,"33":0.00068,"40":0.00068,"42":0.00205,"57":0.00068,"79":0.0075,"80":0.00068,"82":0.00068,"84":0.00068,"85":0.00205,"89":0.00068,"94":0.00136,"95":0.01841,"98":0.00068,"103":0.00068,"106":0.00068,"107":0.02592,"108":0.04433,"109":0.02319,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 34 35 36 37 38 39 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 81 83 86 87 88 90 91 92 93 96 97 99 100 101 102 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00068,"13":0.00068,"14":0.00068,"15":0.00136,"17":0.00136,"18":0.01432,"84":0.00136,"88":0.00068,"89":0.00136,"92":0.01023,"100":0.00205,"108":0.00068,"109":0.01228,"113":0.00068,"114":0.00136,"116":0.00136,"117":0.00068,"118":0.00273,"119":0.00477,"120":0.01159,"121":0.00409,"122":0.02046,"123":0.2462,"124":0.1098,_:"16 79 80 81 83 85 86 87 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 110 111 112 115"},E:{"13":0.00068,"14":0.00409,"15":0.00136,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 16.0 17.5","5.1":0.12822,"13.1":0.00273,"14.1":0.00477,"15.2-15.3":0.00205,"15.4":0.00068,"15.5":0.00273,"15.6":0.0191,"16.1":0.00136,"16.2":0.00068,"16.3":0.00136,"16.4":0.00341,"16.5":0.00068,"16.6":0.01159,"17.0":0.00409,"17.1":0.00136,"17.2":0.00273,"17.3":0.00409,"17.4":0.00818},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00047,"5.0-5.1":0.00047,"6.0-6.1":0.00117,"7.0-7.1":0.00188,"8.1-8.4":0.00047,"9.0-9.2":0.00117,"9.3":0.00587,"10.0-10.2":0.00117,"10.3":0.00939,"11.0-11.2":0.00798,"11.3-11.4":0.00235,"12.0-12.1":0.00164,"12.2-12.5":0.03827,"13.0-13.1":0.0007,"13.2":0.00775,"13.3":0.00188,"13.4-13.7":0.00728,"14.0-14.4":0.01432,"14.5-14.8":0.02184,"15.0-15.1":0.0101,"15.2-15.3":0.01151,"15.4":0.01315,"15.5":0.01667,"15.6-15.8":0.14558,"16.0":0.03405,"16.1":0.07091,"16.2":0.03405,"16.3":0.06011,"16.4":0.01245,"16.5":0.02606,"16.6-16.7":0.20593,"17.0":0.02466,"17.1":0.04555,"17.2":0.06058,"17.3":0.44192,"17.4":0.99749,"17.5":0.00916},P:{"4":3.71535,"20":0.13089,"21":0.3222,"22":0.30206,"23":0.8357,"24":0.92632,"5.0-5.4":0.13089,"6.2-6.4":0.55378,"7.2-7.4":0.68467,"8.2":0.07048,"9.2":0.29199,"10.1":0.07048,"11.1-11.2":0.17117,"12.0":0.08055,"13.0":0.30206,"14.0":0.3222,"15.0":0.09062,"16.0":0.26179,"17.0":0.39268,"18.0":0.10069,"19.0":0.20137},I:{"0":0.19488,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00012,"4.4":0,"4.4.3-4.4.4":0.00049},A:{"7":0.00068,"11":0.015,_:"6 8 9 10 5.5"},K:{"0":1.5711,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00932,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":1.20202},H:{"0":0.19},L:{"0":79.53269},R:{_:"0"},M:{"0":0.07454}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js index 143d78b3c6073d..2c4b6745741b54 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/SZ.js @@ -1 +1 @@ -module.exports={C:{"53":0.00192,"64":0.00383,"66":0.00192,"108":0.00192,"112":0.00383,"113":0.0115,"115":0.18202,"119":0.00192,"122":0.02108,"123":0.15711,"124":0.06323,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 114 116 117 118 120 121 125 126 127 3.5 3.6"},D:{"33":0.00383,"38":0.00383,"40":0.00192,"44":0.00192,"50":0.00383,"57":0.00192,"61":0.00192,"68":0.00766,"70":0.02682,"72":0.00192,"73":0.00192,"76":0.00192,"78":0.00383,"79":0.00766,"83":0.00192,"85":0.00192,"86":0.01341,"87":0.00383,"88":0.00766,"89":0.00383,"90":0.00575,"91":0.0115,"92":0.00192,"93":0.00192,"94":0.0115,"95":0.00766,"97":0.00192,"99":0.00766,"102":0.00766,"103":0.01533,"104":0.00192,"106":0.00766,"108":0.00383,"109":0.8143,"111":0.00766,"112":0.00192,"113":0.00192,"114":0.00383,"115":0.00192,"116":0.0364,"117":0.00958,"118":0.04024,"119":0.03066,"120":0.24142,"121":0.37554,"122":4.7536,"123":1.2933,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 39 41 42 43 45 46 47 48 49 51 52 53 54 55 56 58 59 60 62 63 64 65 66 67 69 71 74 75 77 80 81 84 96 98 100 101 105 107 110 124 125 126"},F:{"19":0.00192,"45":0.00192,"63":0.00192,"73":0.00192,"79":0.00383,"80":0.00192,"82":0.00192,"95":0.02874,"102":0.00383,"106":0.00383,"107":0.35254,"108":0.18968,"109":0.00192,_:"9 11 12 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 74 75 76 77 78 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01341,"13":0.00383,"14":0.00192,"15":0.00575,"16":0.00958,"17":0.00575,"18":0.05556,"84":0.01533,"85":0.00192,"88":0.0115,"89":0.00192,"90":0.04982,"91":0.00192,"92":0.01341,"100":0.00192,"103":0.00575,"105":0.00192,"109":0.00766,"110":0.00958,"113":0.00383,"114":0.00766,"115":0.00192,"116":0.01341,"117":0.00575,"118":0.00192,"119":0.01533,"120":0.02491,"121":0.16669,"122":1.65926,"123":0.05748,_:"79 80 81 83 86 87 93 94 95 96 97 98 99 101 102 104 106 107 108 111 112"},E:{"14":0.02874,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.1 16.0 17.5","9.1":0.00383,"13.1":0.01341,"14.1":0.01916,"15.2-15.3":0.0115,"15.4":0.00766,"15.5":0.01724,"15.6":0.0115,"16.1":0.00192,"16.2":0.00383,"16.3":0.03257,"16.4":0.00766,"16.5":0.00383,"16.6":0.04215,"17.0":0.00192,"17.1":0.00575,"17.2":0.02108,"17.3":0.0594,"17.4":0.00766},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00075,"5.0-5.1":0.00038,"6.0-6.1":0.00225,"7.0-7.1":0.00263,"8.1-8.4":0.00075,"9.0-9.2":0.0015,"9.3":0.00938,"10.0-10.2":0.0015,"10.3":0.01576,"11.0-11.2":0.01125,"11.3-11.4":0.00375,"12.0-12.1":0.00338,"12.2-12.5":0.0649,"13.0-13.1":0.00113,"13.2":0.01125,"13.3":0.00338,"13.4-13.7":0.01275,"14.0-14.4":0.02438,"14.5-14.8":0.03826,"15.0-15.1":0.01651,"15.2-15.3":0.01951,"15.4":0.02288,"15.5":0.02926,"15.6-15.8":0.24497,"16.0":0.05965,"16.1":0.12342,"16.2":0.05965,"16.3":0.10617,"16.4":0.02251,"16.5":0.04764,"16.6-16.7":0.36089,"17.0":0.04689,"17.1":0.09379,"17.2":0.15118,"17.3":1.86071,"17.4":0.2731,"17.5":0},P:{"4":0.54858,"20":0.02032,"21":0.32509,"22":0.07111,"23":1.44257,"24":0.88383,_:"5.0-5.4 6.2-6.4 8.2 9.2 12.0 14.0","7.2-7.4":1.13781,"10.1":0.01016,"11.1-11.2":0.01016,"13.0":0.01016,"15.0":0.02032,"16.0":0.02032,"17.0":0.01016,"18.0":0.03048,"19.0":0.13207},I:{"0":0.0161,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":16.32828,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00766,"11":0.01724,_:"6 7 8 9 5.5"},S:{"2.5":0.15362,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":61.3748},R:{_:"0"},M:{"0":0.13745},Q:{_:"14.9"},O:{"0":0.29106},H:{"0":1.58}}; +module.exports={C:{"34":0.00181,"45":0.00181,"52":0.00363,"60":0.00363,"66":0.00181,"93":0.00181,"108":0.00363,"111":0.00181,"113":0.00907,"115":0.04895,"121":0.00363,"122":0.00181,"123":0.01994,"124":0.14685,"125":0.07796,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 46 47 48 49 50 51 53 54 55 56 57 58 59 61 62 63 64 65 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 112 114 116 117 118 119 120 126 127 128 3.5 3.6"},D:{"11":0.00363,"31":0.00181,"34":0.00181,"39":0.00181,"40":0.00907,"43":0.00363,"50":0.00181,"56":0.00181,"57":0.00181,"62":0.00544,"65":0.00363,"66":0.1396,"68":0.00544,"69":0.00544,"70":0.02538,"72":0.00181,"73":0.00181,"74":0.00363,"76":0.00363,"78":0.00363,"79":0.00181,"80":0.00181,"81":0.00181,"83":0.00544,"84":0.00544,"85":0.00181,"86":0.00363,"87":0.06527,"88":0.03263,"89":0.00363,"90":0.00181,"92":0.00181,"94":0.01632,"95":0.00181,"99":0.00907,"100":0.00181,"101":0.00181,"102":0.00544,"103":0.01813,"105":0.00181,"106":0.00544,"109":0.72339,"110":0.00544,"111":0.01088,"112":0.00363,"114":0.02176,"115":0.00181,"116":0.02176,"117":0.00725,"118":0.02538,"119":0.10334,"120":0.0979,"121":0.07433,"122":0.24294,"123":3.96866,"124":1.4087,"125":0.00544,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 35 36 37 38 41 42 44 45 46 47 48 49 51 52 53 54 55 58 59 60 61 63 64 67 71 75 77 91 93 96 97 98 104 107 108 113 126 127"},F:{"42":0.00181,"63":0.00363,"76":0.00181,"78":0.00363,"80":0.00544,"82":0.01269,"83":0.00181,"92":0.00181,"95":0.01269,"100":0.00181,"105":0.00907,"107":0.03082,"108":0.35535,"109":0.09246,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 64 65 66 67 68 69 70 71 72 73 74 75 77 79 81 84 85 86 87 88 89 90 91 93 94 96 97 98 99 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00544,"13":0.00544,"14":0.00907,"15":0.00181,"16":0.02176,"17":0.00363,"18":0.2085,"80":0.00181,"84":0.0145,"85":0.00181,"88":0.00181,"89":0.00725,"90":0.02176,"92":0.01632,"96":0.00363,"99":0.00181,"100":0.01994,"103":0.00181,"108":0.00181,"109":0.00725,"110":0.00181,"112":0.00544,"114":0.00181,"115":0.00181,"116":0.00363,"117":0.00181,"118":0.00363,"119":0.00544,"120":0.0145,"121":0.00907,"122":0.12147,"123":1.3253,"124":0.72339,_:"79 81 83 86 87 91 93 94 95 97 98 101 102 104 105 106 107 111 113"},E:{"14":0.01813,"15":0.00363,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 15.5 16.4","5.1":0.00181,"12.1":0.00725,"13.1":0.00181,"14.1":0.01632,"15.1":0.00181,"15.2-15.3":0.00363,"15.4":0.00363,"15.6":0.01813,"16.0":0.00725,"16.1":0.00181,"16.2":0.00181,"16.3":0.21393,"16.5":0.00181,"16.6":0.0145,"17.0":0.00544,"17.1":0.00725,"17.2":0.01088,"17.3":0.01813,"17.4":0.05983,"17.5":0.00544},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00064,"5.0-5.1":0.00064,"6.0-6.1":0.00161,"7.0-7.1":0.00257,"8.1-8.4":0.00064,"9.0-9.2":0.00161,"9.3":0.00804,"10.0-10.2":0.00161,"10.3":0.01287,"11.0-11.2":0.01094,"11.3-11.4":0.00322,"12.0-12.1":0.00225,"12.2-12.5":0.05244,"13.0-13.1":0.00097,"13.2":0.01062,"13.3":0.00257,"13.4-13.7":0.00997,"14.0-14.4":0.01962,"14.5-14.8":0.02992,"15.0-15.1":0.01383,"15.2-15.3":0.01576,"15.4":0.01802,"15.5":0.02284,"15.6-15.8":0.19946,"16.0":0.04665,"16.1":0.09716,"16.2":0.04665,"16.3":0.08236,"16.4":0.01705,"16.5":0.03571,"16.6-16.7":0.28214,"17.0":0.03378,"17.1":0.06241,"17.2":0.083,"17.3":0.60546,"17.4":1.36662,"17.5":0.01255},P:{"4":0.24351,"20":0.02029,"21":0.22322,"22":0.09132,"23":0.51746,"24":1.20741,_:"5.0-5.4 8.2 9.2 10.1 14.0 15.0","6.2-6.4":0.02029,"7.2-7.4":1.27844,"11.1-11.2":0.03044,"12.0":0.01015,"13.0":0.01015,"16.0":0.03044,"17.0":0.01015,"18.0":0.01015,"19.0":0.12176},I:{"0":0.02446,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"11":0.0272,_:"6 7 8 9 10 5.5"},K:{"0":17.13227,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.14735,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.31107},H:{"0":1.54},L:{"0":62.15094},R:{_:"0"},M:{"0":0.09005}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js index 79392dd0f59606..5fd91a2fcf6817 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TC.js @@ -1 +1 @@ -module.exports={C:{"115":2.79507,"123":0.31606,"124":0.11805,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 125 126 127 3.5 3.6"},D:{"65":0.01523,"76":0.01904,"79":0.02666,"83":0.00762,"88":0.01142,"91":0.00762,"92":0.00381,"93":0.02666,"94":0.01523,"103":0.01523,"105":0.0495,"109":0.54835,"110":0.0457,"113":0.00762,"114":0.01523,"115":0.01523,"116":0.06474,"118":0.00381,"119":0.08758,"120":0.25514,"121":3.17587,"122":9.77514,"123":2.22768,"124":0.0457,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 77 78 80 81 84 85 86 87 89 90 95 96 97 98 99 100 101 102 104 106 107 108 111 112 117 125 126"},F:{"95":0.0495,"106":0.02285,"107":0.33891,"108":0.00381,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00381,"18":0.07997,"83":0.00762,"109":0.01142,"110":0.01904,"114":0.12186,"119":0.01142,"120":0.05331,"121":0.57882,"122":8.51469,"123":0.3351,_:"12 14 15 16 17 79 80 81 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 113 115 116 117 118"},E:{"13":0.00381,"14":0.19802,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 12.1 15.1 15.5 17.5","11.1":0.00381,"13.1":0.11043,"14.1":0.06093,"15.2-15.3":0.19802,"15.4":0.02666,"15.6":0.51789,"16.0":0.10662,"16.1":0.11424,"16.2":0.15613,"16.3":0.69306,"16.4":0.38842,"16.5":0.08378,"16.6":0.46458,"17.0":0.03046,"17.1":0.25133,"17.2":0.39603,"17.3":2.73034,"17.4":0.34653},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00623,"5.0-5.1":0.00312,"6.0-6.1":0.0187,"7.0-7.1":0.02182,"8.1-8.4":0.00623,"9.0-9.2":0.01247,"9.3":0.07793,"10.0-10.2":0.01247,"10.3":0.13092,"11.0-11.2":0.09351,"11.3-11.4":0.03117,"12.0-12.1":0.02805,"12.2-12.5":0.53925,"13.0-13.1":0.00935,"13.2":0.09351,"13.3":0.02805,"13.4-13.7":0.10598,"14.0-14.4":0.20261,"14.5-14.8":0.31794,"15.0-15.1":0.13715,"15.2-15.3":0.16209,"15.4":0.19014,"15.5":0.24313,"15.6-15.8":2.03544,"16.0":0.49561,"16.1":1.02551,"16.2":0.49561,"16.3":0.88213,"16.4":0.18702,"16.5":0.39587,"16.6-16.7":2.9986,"17.0":0.38963,"17.1":0.77926,"17.2":1.25617,"17.3":15.46058,"17.4":2.26921,"17.5":0},P:{"4":0.05421,"20":0.03252,"21":0.03252,"22":0.07589,"23":1.05163,"24":1.62624,_:"5.0-5.4 6.2-6.4 8.2 10.1 11.1-11.2 12.0 15.0 17.0 18.0","7.2-7.4":0.07589,"9.2":0.01084,"13.0":0.01084,"14.0":0.01084,"16.0":0.01084,"19.0":0.01084},I:{"0":0.04317,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.03096,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01523,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":28.15816},R:{_:"0"},M:{"0":0.12384},Q:{_:"14.9"},O:{"0":0.13622},H:{"0":0}}; +module.exports={C:{"88":0.00834,"115":2.6075,"124":0.27118,"125":0.05841,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"53":0.00417,"75":0.00834,"76":0.00417,"79":0.00834,"83":0.01252,"84":0.03755,"87":0.00417,"88":0.00417,"91":0.02086,"93":0.00417,"94":0.00417,"103":0.12933,"105":0.16688,"109":1.12227,"111":0.01252,"112":0.00417,"113":0.06675,"115":0.02086,"116":0.05006,"118":0.02086,"119":0.10013,"120":0.13768,"121":0.62163,"122":1.75224,"123":10.76793,"124":2.88285,"125":0.03755,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 80 81 85 86 89 90 92 95 96 97 98 99 100 101 102 104 106 107 108 110 114 117 126 127"},F:{"95":0.1043,"106":0.00417,"107":0.28787,"108":0.02503,"109":0.05006,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.08344,"92":0.01252,"109":0.01252,"110":0.02503,"112":0.00417,"114":0.22529,"120":0.36714,"121":0.02503,"122":0.42972,"123":8.00607,"124":3.59626,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 113 115 116 117 118 119"},E:{"14":0.04589,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.0292,"14.1":0.12099,"15.1":0.02086,"15.2-15.3":0.14185,"15.4":0.00834,"15.5":0.02086,"15.6":0.50064,"16.0":0.02503,"16.1":0.11264,"16.2":0.24198,"16.3":0.74679,"16.4":0.25449,"16.5":0.03755,"16.6":0.8052,"17.0":0.0292,"17.1":0.30456,"17.2":0.13768,"17.3":0.69255,"17.4":2.04428},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00571,"5.0-5.1":0.00571,"6.0-6.1":0.01429,"7.0-7.1":0.02286,"8.1-8.4":0.00571,"9.0-9.2":0.01429,"9.3":0.07144,"10.0-10.2":0.01429,"10.3":0.1143,"11.0-11.2":0.09715,"11.3-11.4":0.02857,"12.0-12.1":0.02,"12.2-12.5":0.46577,"13.0-13.1":0.00857,"13.2":0.0943,"13.3":0.02286,"13.4-13.7":0.08858,"14.0-14.4":0.17431,"14.5-14.8":0.26574,"15.0-15.1":0.12287,"15.2-15.3":0.14002,"15.4":0.16002,"15.5":0.20288,"15.6-15.8":1.77163,"16.0":0.41433,"16.1":0.86296,"16.2":0.41433,"16.3":0.73151,"16.4":0.15145,"16.5":0.31718,"16.6-16.7":2.506,"17.0":0.30003,"17.1":0.55435,"17.2":0.73723,"17.3":5.37776,"17.4":12.13853,"17.5":0.11144},P:{"4":0.08832,"20":0.02208,"22":0.02208,"23":0.14352,"24":4.78033,_:"21 5.0-5.4 8.2 9.2 10.1 12.0 14.0 15.0 17.0 18.0","6.2-6.4":0.0552,"7.2-7.4":0.06624,"11.1-11.2":0.03312,"13.0":0.01104,"16.0":0.02208,"19.0":0.01104},I:{"0":0.05224,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00013},A:{"11":0.04172,_:"6 7 8 9 10 5.5"},K:{"0":0.02914,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0408},H:{"0":0},L:{"0":24.76774},R:{_:"0"},M:{"0":0.22146}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js index b1c13d97989823..333bfcc4c089f8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TD.js @@ -1 +1 @@ -module.exports={C:{"33":0.00094,"48":0.00094,"72":0.00094,"77":0.00094,"95":0.00469,"109":0.00094,"115":0.02436,"116":0.00094,"119":0.00187,"120":0.00094,"121":0.00375,"122":0.00375,"123":0.51254,"124":0.22207,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 117 118 125 126 127 3.5 3.6"},D:{"58":0.00562,"61":0.00094,"63":0.00187,"68":0.00094,"70":0.00187,"72":0.00094,"77":0.00187,"78":0.00094,"80":0.00187,"85":0.00187,"87":0.00469,"88":0.00094,"94":0.00843,"95":0.0937,"96":0.00094,"97":0.00094,"99":0.06746,"103":0.02717,"104":0.00094,"105":0.00281,"106":0.00094,"108":0.00187,"109":0.09745,"111":0.00469,"112":0.00094,"114":0.01874,"115":0.00094,"116":0.00562,"117":0.00843,"118":0.00094,"119":0.00281,"120":0.05247,"121":0.11244,"122":0.89202,"123":0.2736,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 62 64 65 66 67 69 71 73 74 75 76 79 81 83 84 86 89 90 91 92 93 98 100 101 102 107 110 113 124 125 126"},F:{"42":0.00094,"46":0.00094,"90":0.00094,"95":0.02343,"100":0.00094,"105":0.00094,"107":0.0178,"108":0.00843,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 96 97 98 99 101 102 103 104 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00187,"14":0.00469,"17":0.00281,"18":0.00375,"84":0.00187,"90":0.00187,"92":0.00937,"100":0.00094,"109":0.02436,"110":0.00094,"111":0.00562,"112":0.00187,"113":0.00094,"115":0.00094,"117":0.00094,"118":0.00094,"119":0.00281,"120":0.00656,"121":0.02624,"122":0.33545,"123":0.02998,_:"13 15 16 79 80 81 83 85 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 114 116"},E:{"14":0.00094,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.5 17.1 17.2 17.5","5.1":0.0506,"14.1":0.00562,"15.6":0.0075,"16.2":0.00094,"16.3":0.00187,"16.4":0.01687,"16.6":0.00187,"17.0":0.00094,"17.3":0.01031,"17.4":0.00094},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00066,"5.0-5.1":0.00033,"6.0-6.1":0.00198,"7.0-7.1":0.00231,"8.1-8.4":0.00066,"9.0-9.2":0.00132,"9.3":0.00825,"10.0-10.2":0.00132,"10.3":0.01386,"11.0-11.2":0.0099,"11.3-11.4":0.0033,"12.0-12.1":0.00297,"12.2-12.5":0.05707,"13.0-13.1":0.00099,"13.2":0.0099,"13.3":0.00297,"13.4-13.7":0.01122,"14.0-14.4":0.02144,"14.5-14.8":0.03365,"15.0-15.1":0.01452,"15.2-15.3":0.01715,"15.4":0.02012,"15.5":0.02573,"15.6-15.8":0.21542,"16.0":0.05245,"16.1":0.10853,"16.2":0.05245,"16.3":0.09336,"16.4":0.01979,"16.5":0.0419,"16.6-16.7":0.31736,"17.0":0.04124,"17.1":0.08247,"17.2":0.13295,"17.3":1.63627,"17.4":0.24016,"17.5":0},P:{"20":0.11113,"21":0.3233,"22":0.29299,"23":0.73752,"24":0.25258,_:"4 8.2 10.1 12.0 13.0","5.0-5.4":0.0101,"6.2-6.4":0.0101,"7.2-7.4":0.12124,"9.2":0.16165,"11.1-11.2":0.05052,"14.0":0.0101,"15.0":0.0101,"16.0":0.09093,"17.0":0.02021,"18.0":0.06062,"19.0":0.20206},I:{"0":0.00903,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},K:{"0":1.13601,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.0253,_:"6 7 8 9 10 5.5"},S:{"2.5":0.02719,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":89.52441},R:{_:"0"},M:{"0":0.00906},Q:{"14.9":0.00906},O:{"0":0.11782},H:{"0":0.16}}; +module.exports={C:{"41":0.00224,"52":0.00075,"66":0.00075,"72":0.00149,"77":0.00671,"94":0.00075,"95":0.00298,"99":0.00075,"100":0.00149,"111":0.00149,"115":0.07535,"119":0.00075,"122":0.00224,"123":0.00671,"124":0.29094,"125":0.12085,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 67 68 69 70 71 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 96 97 98 101 102 103 104 105 106 107 108 109 110 112 113 114 116 117 118 120 121 126 127 128 3.5 3.6"},D:{"58":0.00448,"62":0.00224,"65":0.00075,"68":0.00597,"70":0.00448,"74":0.00075,"78":0.01119,"79":0.00149,"80":0.00597,"87":0.00448,"88":0.00149,"94":0.00746,"95":0.06938,"96":0.00149,"99":0.06043,"102":0.00075,"103":0.04178,"105":0.00075,"106":0.00075,"108":0.00522,"109":0.06043,"110":0.00075,"111":0.01119,"113":0.00149,"114":0.00746,"115":0.00075,"116":0.00522,"117":0.00746,"118":0.00149,"119":0.00298,"120":0.04774,"121":0.02387,"122":0.09101,"123":0.73779,"124":0.39314,"125":0.00298,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 59 60 61 63 64 66 67 69 71 72 73 75 76 77 81 83 84 85 86 89 90 91 92 93 97 98 100 101 104 107 112 126 127"},F:{"34":0.00075,"46":0.00075,"51":0.00149,"57":0.00075,"79":0.00149,"95":0.01865,"107":0.00075,"108":0.02387,"109":0.02686,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 52 53 54 55 56 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00298,"14":0.00075,"16":0.00075,"17":0.00075,"18":0.00746,"89":0.00149,"90":0.00075,"92":0.01492,"107":0.00075,"109":0.04252,"110":0.00298,"111":0.02014,"112":0.00075,"115":0.00075,"116":0.00149,"117":0.00075,"118":0.00075,"119":0.00149,"120":0.00597,"121":0.00373,"122":0.05222,"123":0.28124,"124":0.11041,_:"13 15 79 80 81 83 84 85 86 87 88 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 113 114"},E:{"14":0.00075,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.3 16.5 17.0 17.1 17.5","5.1":0.00224,"13.1":0.00522,"14.1":0.02387,"15.5":0.00149,"15.6":0.00224,"16.4":0.00075,"16.6":0.00448,"17.2":0.00224,"17.3":0.00298,"17.4":0.00075},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00062,"5.0-5.1":0.00062,"6.0-6.1":0.00154,"7.0-7.1":0.00247,"8.1-8.4":0.00062,"9.0-9.2":0.00154,"9.3":0.0077,"10.0-10.2":0.00154,"10.3":0.01233,"11.0-11.2":0.01048,"11.3-11.4":0.00308,"12.0-12.1":0.00216,"12.2-12.5":0.05023,"13.0-13.1":0.00092,"13.2":0.01017,"13.3":0.00247,"13.4-13.7":0.00955,"14.0-14.4":0.0188,"14.5-14.8":0.02866,"15.0-15.1":0.01325,"15.2-15.3":0.0151,"15.4":0.01726,"15.5":0.02188,"15.6-15.8":0.19106,"16.0":0.04468,"16.1":0.09306,"16.2":0.04468,"16.3":0.07889,"16.4":0.01633,"16.5":0.03421,"16.6-16.7":0.27025,"17.0":0.03236,"17.1":0.05978,"17.2":0.0795,"17.3":0.57995,"17.4":1.30906,"17.5":0.01202},P:{"4":0.01006,"20":0.12067,"21":0.36201,"22":0.67374,"23":0.48268,"24":0.26145,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 17.0","7.2-7.4":0.10056,"9.2":0.13073,"11.1-11.2":0.03017,"13.0":0.01006,"14.0":0.02011,"15.0":0.02011,"16.0":0.13073,"18.0":0.06033,"19.0":0.36201},I:{"0":0.00922,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.00895,_:"6 7 8 9 10 5.5"},K:{"0":0.86092,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.02776,_:"3.0-3.1"},Q:{"14.9":0.02776},O:{"0":0.10179},H:{"0":0.12},L:{"0":89.99216},R:{_:"0"},M:{"0":0.00925}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js index f4d82cce7047b9..947f21951ed1a7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TG.js @@ -1 +1 @@ -module.exports={C:{"43":0.00323,"47":0.01937,"48":0.00323,"52":0.00323,"58":0.00323,"62":0.00323,"72":0.00969,"74":0.00323,"90":0.00646,"92":0.00323,"95":0.00323,"98":0.00323,"99":0.00323,"100":0.00323,"102":0.00323,"103":0.00323,"108":0.00969,"109":0.00323,"110":0.00323,"111":0.00969,"112":0.01292,"113":0.00323,"114":0.00323,"115":0.51987,"116":0.01937,"119":0.00323,"120":0.00646,"121":0.0226,"122":0.09364,"123":2.70913,"124":0.98162,"125":0.00323,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 49 50 51 53 54 55 56 57 59 60 61 63 64 65 66 67 68 69 70 71 73 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 93 94 96 97 101 104 105 106 107 117 118 126 127 3.5 3.6"},D:{"25":0.00323,"33":0.01615,"35":0.00969,"40":0.00323,"42":0.00323,"43":0.00323,"46":0.00323,"47":0.00969,"49":0.00323,"50":0.00323,"64":0.00323,"68":0.00323,"69":0.00646,"70":0.00969,"74":0.00323,"75":0.00646,"76":0.18728,"77":0.00323,"79":0.05812,"80":0.00646,"81":0.00646,"83":0.00646,"86":0.00646,"87":0.01292,"88":0.00969,"89":0.00323,"90":0.01937,"91":0.00646,"92":0.00323,"93":0.40685,"95":0.02583,"96":0.00323,"97":0.00323,"99":0.00646,"100":0.01937,"101":0.00323,"102":0.01292,"103":0.08718,"104":0.1001,"105":0.00969,"106":0.01937,"107":0.01615,"108":0.01292,"109":2.89964,"110":0.00323,"112":0.00969,"113":0.00323,"114":0.00646,"115":0.00323,"116":0.03875,"117":0.00646,"118":0.02583,"119":0.06458,"120":0.09364,"121":0.64903,"122":8.89912,"123":2.49925,"124":0.00646,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 34 36 37 38 39 41 44 45 48 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 71 72 73 78 84 85 94 98 111 125 126"},F:{"12":0.00323,"29":0.00323,"36":0.00646,"42":0.00323,"46":0.00323,"71":0.00969,"79":0.01615,"95":0.2002,"102":0.00646,"103":0.00323,"104":0.03229,"106":0.00646,"107":0.75236,"108":0.3455,"109":0.00646,_:"9 11 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 37 38 39 40 41 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00323,"17":0.00323,"18":0.02906,"89":0.00646,"92":0.03875,"100":0.00323,"108":0.00323,"109":0.08073,"110":0.00323,"111":0.00323,"115":0.00323,"117":0.01615,"118":0.00646,"119":0.00969,"120":0.03875,"121":0.10656,"122":4.01365,"123":0.39394,_:"13 14 15 16 79 80 81 83 84 85 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 112 113 114 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.3 17.5","5.1":0.00323,"7.1":0.00323,"12.1":0.00969,"13.1":0.00323,"14.1":0.00323,"15.6":0.01292,"16.2":0.01292,"16.4":0.00323,"16.5":0.00323,"16.6":0.01615,"17.0":0.00323,"17.1":0.01937,"17.2":0.00646,"17.3":0.03229,"17.4":0.00969},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00121,"5.0-5.1":0.0006,"6.0-6.1":0.00362,"7.0-7.1":0.00422,"8.1-8.4":0.00121,"9.0-9.2":0.00241,"9.3":0.01506,"10.0-10.2":0.00241,"10.3":0.02531,"11.0-11.2":0.01808,"11.3-11.4":0.00603,"12.0-12.1":0.00542,"12.2-12.5":0.10424,"13.0-13.1":0.00181,"13.2":0.01808,"13.3":0.00542,"13.4-13.7":0.02049,"14.0-14.4":0.03916,"14.5-14.8":0.06146,"15.0-15.1":0.02651,"15.2-15.3":0.03133,"15.4":0.03675,"15.5":0.047,"15.6-15.8":0.39345,"16.0":0.0958,"16.1":0.19823,"16.2":0.0958,"16.3":0.17052,"16.4":0.03615,"16.5":0.07652,"16.6-16.7":0.57963,"17.0":0.07532,"17.1":0.15063,"17.2":0.24282,"17.3":2.98855,"17.4":0.43864,"17.5":0},P:{"4":0.12666,"21":0.01055,"22":0.16888,"23":0.18999,"24":0.33775,_:"20 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0 19.0","5.0-5.4":0.01055,"7.2-7.4":0.03166,"13.0":0.15832,"17.0":0.30609},I:{"0":0.06742,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":2.02986,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.01937,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":61.51508},R:{_:"0"},M:{"0":0.10832},Q:{"14.9":0.02708},O:{"0":0.25049},H:{"0":0.8}}; +module.exports={C:{"21":0.00639,"47":0.01918,"52":0.00639,"57":0.0032,"58":0.0032,"68":0.0032,"72":0.02557,"80":0.00639,"81":0.0032,"82":0.0032,"93":0.0032,"100":0.0032,"108":0.0032,"110":0.0032,"111":0.01278,"112":0.00639,"113":0.0032,"115":0.58806,"121":0.00959,"122":0.02557,"123":0.04155,"124":2.3203,"125":1.53088,"126":0.0032,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 78 79 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 99 101 102 103 104 105 106 107 109 114 116 117 118 119 120 127 128 3.5 3.6"},D:{"33":0.0032,"34":0.0032,"42":0.0032,"43":0.0032,"47":0.12784,"49":0.01598,"50":0.00959,"53":0.0032,"54":0.0032,"63":0.0032,"64":0.0032,"65":0.00959,"68":0.01278,"69":0.0032,"70":0.01918,"73":0.0032,"75":0.00639,"76":0.14702,"79":0.03196,"80":0.03835,"81":0.01278,"83":0.00639,"86":0.0032,"87":0.03196,"88":0.01598,"89":0.00959,"90":0.00639,"91":0.01278,"93":0.42826,"95":0.03196,"96":0.0032,"97":0.0032,"99":0.01598,"100":0.01918,"102":0.00959,"103":0.05114,"104":0.02237,"105":0.00959,"106":0.00959,"107":0.00639,"108":0.00639,"109":3.5156,"110":0.0032,"112":0.0032,"113":0.00639,"114":0.00639,"115":0.02557,"116":0.05114,"117":0.01278,"118":0.02237,"119":0.05433,"120":0.07351,"121":0.163,"122":0.38032,"123":7.5937,"124":3.39415,"125":0.00959,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 35 36 37 38 39 40 41 44 45 46 48 51 52 55 56 57 58 59 60 61 62 66 67 71 72 74 77 78 84 85 92 94 98 101 111 126 127"},F:{"36":0.0032,"77":0.0032,"79":0.01598,"83":0.0032,"92":0.0032,"95":0.13104,"102":0.0032,"104":0.00959,"105":0.0032,"106":0.0032,"107":0.13743,"108":0.62002,"109":0.43785,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 81 82 84 85 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00639,"13":0.0032,"16":0.0032,"17":0.00639,"18":0.01278,"84":0.0032,"89":0.0032,"90":0.0032,"92":0.03516,"104":0.0032,"109":0.06072,"113":0.0032,"114":0.0032,"115":0.00639,"117":0.00959,"119":0.00639,"120":0.01278,"121":0.02876,"122":0.15021,"123":2.66546,"124":1.47336,_:"14 15 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 110 111 112 116 118"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 15.4 15.5 16.0 16.1 16.4 17.0 17.5","13.1":0.00959,"14.1":0.00639,"15.6":0.02557,"16.2":0.05433,"16.3":0.00959,"16.5":0.0032,"16.6":0.02237,"17.1":0.00639,"17.2":0.00639,"17.3":0.00959,"17.4":0.03835},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00136,"5.0-5.1":0.00136,"6.0-6.1":0.0034,"7.0-7.1":0.00545,"8.1-8.4":0.00136,"9.0-9.2":0.0034,"9.3":0.01702,"10.0-10.2":0.0034,"10.3":0.02724,"11.0-11.2":0.02315,"11.3-11.4":0.00681,"12.0-12.1":0.00477,"12.2-12.5":0.111,"13.0-13.1":0.00204,"13.2":0.02247,"13.3":0.00545,"13.4-13.7":0.02111,"14.0-14.4":0.04154,"14.5-14.8":0.06333,"15.0-15.1":0.02928,"15.2-15.3":0.03337,"15.4":0.03813,"15.5":0.04835,"15.6-15.8":0.42221,"16.0":0.09874,"16.1":0.20566,"16.2":0.09874,"16.3":0.17433,"16.4":0.03609,"16.5":0.07559,"16.6-16.7":0.59722,"17.0":0.0715,"17.1":0.13211,"17.2":0.17569,"17.3":1.2816,"17.4":2.8928,"17.5":0.02656},P:{"4":0.14451,"21":0.02064,"22":0.15483,"23":0.07225,"24":0.30965,_:"20 8.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","5.0-5.4":0.01032,"6.2-6.4":0.01032,"7.2-7.4":0.02064,"9.2":0.01032,"13.0":0.07225,"16.0":0.01032,"17.0":0.03097,"19.0":0.01032},I:{"0":0.0542,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00014},A:{"11":0.01598,_:"6 7 8 9 10 5.5"},K:{"0":1.56172,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01361},O:{"0":0.27892},H:{"0":0.52},L:{"0":61.84227},R:{_:"0"},M:{"0":0.21089}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TH.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TH.js index 3ecc06c60bc130..01b6eff7ea2404 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TH.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TH.js @@ -1 +1 @@ -module.exports={C:{"47":0.00362,"52":0.00723,"53":0.01447,"55":0.06511,"56":1.03808,"78":0.00723,"85":0.00362,"96":0.00362,"103":0.00362,"113":0.00362,"115":0.13383,"119":0.00362,"120":0.00723,"121":0.00362,"122":0.01447,"123":0.49191,"124":0.17723,"125":0.00362,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 54 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 114 116 117 118 126 127 3.5 3.6"},D:{"25":0.07957,"37":0.01447,"38":0.00362,"43":0.00723,"49":0.01809,"53":0.0217,"55":0.00362,"56":0.00362,"57":0.00723,"58":0.00362,"63":0.02894,"65":0.00362,"68":0.00362,"69":0.00362,"70":0.00362,"71":0.00362,"73":0.01809,"74":0.0434,"75":0.00362,"76":0.00362,"78":0.00723,"79":0.62936,"80":0.00723,"81":0.00723,"83":0.01085,"84":0.00362,"85":0.00362,"86":0.00723,"87":0.41596,"88":0.02894,"89":0.00362,"90":0.00362,"91":0.01085,"92":0.0217,"93":0.00362,"94":0.05787,"95":0.00723,"96":0.00723,"97":0.00723,"98":0.00723,"99":0.0217,"100":0.00362,"101":0.03255,"102":0.01809,"103":0.02894,"104":0.00723,"105":0.0217,"106":0.01447,"107":0.01447,"108":0.02894,"109":1.96041,"110":0.01447,"111":0.0217,"112":0.01809,"113":0.03617,"114":0.03617,"115":0.01447,"116":0.08681,"117":0.03617,"118":0.02532,"119":0.07234,"120":0.18447,"121":0.73063,"122":15.12268,"123":3.55913,"124":0.00723,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 46 47 48 50 51 52 54 59 60 61 62 64 66 67 72 77 125 126"},F:{"28":0.00362,"46":0.01085,"95":0.01085,"102":0.00362,"106":0.00362,"107":0.29298,"108":0.06511,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01447,"84":0.00362,"92":0.00723,"106":0.00362,"108":0.00723,"109":0.04702,"110":0.00362,"111":0.00362,"113":0.00362,"114":0.00723,"115":0.00362,"116":0.00362,"117":0.00723,"118":0.00723,"119":0.00723,"120":0.03255,"121":0.06149,"122":2.53552,"123":0.18085,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 107 112"},E:{"13":0.00362,"14":0.01447,"15":0.00362,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00362,"12.1":0.00362,"13.1":0.01809,"14.1":0.05064,"15.1":0.01809,"15.2-15.3":0.00723,"15.4":0.01809,"15.5":0.03255,"15.6":0.14468,"16.0":0.01447,"16.1":0.09404,"16.2":0.09404,"16.3":0.14106,"16.4":0.03617,"16.5":0.05426,"16.6":0.35447,"17.0":0.07596,"17.1":0.13383,"17.2":0.24596,"17.3":2.00744,"17.4":0.22787},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00352,"5.0-5.1":0.00176,"6.0-6.1":0.01057,"7.0-7.1":0.01233,"8.1-8.4":0.00352,"9.0-9.2":0.00705,"9.3":0.04404,"10.0-10.2":0.00705,"10.3":0.07399,"11.0-11.2":0.05285,"11.3-11.4":0.01762,"12.0-12.1":0.01586,"12.2-12.5":0.30478,"13.0-13.1":0.00529,"13.2":0.05285,"13.3":0.01586,"13.4-13.7":0.0599,"14.0-14.4":0.11451,"14.5-14.8":0.17969,"15.0-15.1":0.07752,"15.2-15.3":0.09161,"15.4":0.10746,"15.5":0.13741,"15.6-15.8":1.1504,"16.0":0.28011,"16.1":0.5796,"16.2":0.28011,"16.3":0.49856,"16.4":0.1057,"16.5":0.22374,"16.6-16.7":1.69476,"17.0":0.22021,"17.1":0.44043,"17.2":0.70997,"17.3":8.73807,"17.4":1.28252,"17.5":0},P:{"4":0.48276,"20":0.06297,"21":0.09445,"22":0.15742,"23":1.54274,"24":1.29087,"5.0-5.4":0.06297,"6.2-6.4":0.02099,"7.2-7.4":0.07346,"8.2":0.08396,"9.2":0.01049,_:"10.1 12.0","11.1-11.2":0.03148,"13.0":0.01049,"14.0":0.13643,"15.0":0.01049,"16.0":0.18891,"17.0":0.07346,"18.0":0.06297,"19.0":0.11544},I:{"0":0.03178,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.42681,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00371,"9":0.00371,"11":0.44833,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":43.38459},R:{_:"0"},M:{"0":0.16596},Q:{_:"14.9"},O:{"0":0.14043},H:{"0":0.02}}; +module.exports={C:{"48":0.00362,"52":0.01448,"53":0.02533,"55":0.14838,"56":1.20513,"78":0.00362,"85":0.00362,"96":0.00362,"98":0.00362,"103":0.00362,"105":0.00362,"108":0.00362,"110":0.00362,"113":0.00362,"115":0.152,"119":0.00724,"120":0.01086,"121":0.00362,"122":0.00362,"123":0.01448,"124":0.49218,"125":0.2859,"126":0.00362,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 54 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 97 99 100 101 102 104 106 107 109 111 112 114 116 117 118 127 128 3.5 3.6"},D:{"25":0.11581,"37":0.0181,"38":0.00362,"43":0.01086,"49":0.0181,"53":0.00362,"56":0.00724,"58":0.00362,"65":0.00362,"68":0.00362,"70":0.00362,"73":0.00362,"74":0.01448,"78":0.00362,"79":0.304,"80":0.00362,"81":0.00362,"83":0.00362,"84":0.00362,"85":0.00362,"86":0.00724,"87":0.18095,"88":0.00724,"89":0.00362,"90":0.00362,"91":0.01086,"92":0.12667,"93":0.00362,"94":0.04343,"95":0.00724,"96":0.00362,"97":0.00362,"98":0.00362,"99":0.02171,"100":0.00362,"101":0.04705,"102":0.01086,"103":0.02895,"104":0.01086,"105":0.02533,"106":0.0181,"107":0.02171,"108":0.03981,"109":1.99045,"110":0.01086,"111":0.0181,"112":0.0181,"113":0.05429,"114":0.04343,"115":0.01448,"116":0.05067,"117":0.03257,"118":0.09409,"119":0.05429,"120":0.10133,"121":0.1339,"122":0.50666,"123":13.43735,"124":6.35135,"125":0.02171,"126":0.00362,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 34 35 36 39 40 41 42 44 45 46 47 48 50 51 52 54 55 57 59 60 61 62 63 64 66 67 69 71 72 75 76 77 127"},F:{"95":0.01448,"102":0.00362,"106":0.00362,"107":0.20628,"108":0.17733,"109":0.06514,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00362,"18":0.01086,"92":0.00724,"107":0.00362,"108":0.00724,"109":0.05429,"110":0.00362,"111":0.00362,"113":0.00362,"114":0.00362,"115":0.00362,"116":0.00362,"117":0.00362,"118":0.00724,"119":0.00724,"120":0.02533,"121":0.01448,"122":0.10133,"123":1.95788,"124":1.08208,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 112"},E:{"14":0.01448,"15":0.00724,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00362,"13.1":0.0181,"14.1":0.05429,"15.1":0.01086,"15.2-15.3":0.00724,"15.4":0.05067,"15.5":0.02895,"15.6":0.14838,"16.0":0.0181,"16.1":0.07962,"16.2":0.04343,"16.3":0.10857,"16.4":0.03619,"16.5":0.0579,"16.6":0.24609,"17.0":0.0579,"17.1":0.12667,"17.2":0.15924,"17.3":0.65142,"17.4":1.25579,"17.5":0.01086},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00343,"5.0-5.1":0.00343,"6.0-6.1":0.00857,"7.0-7.1":0.01371,"8.1-8.4":0.00343,"9.0-9.2":0.00857,"9.3":0.04283,"10.0-10.2":0.00857,"10.3":0.06853,"11.0-11.2":0.05825,"11.3-11.4":0.01713,"12.0-12.1":0.01199,"12.2-12.5":0.27927,"13.0-13.1":0.00514,"13.2":0.05654,"13.3":0.01371,"13.4-13.7":0.05311,"14.0-14.4":0.10451,"14.5-14.8":0.15934,"15.0-15.1":0.07367,"15.2-15.3":0.08395,"15.4":0.09594,"15.5":0.12164,"15.6-15.8":1.06225,"16.0":0.24843,"16.1":0.51742,"16.2":0.24843,"16.3":0.4386,"16.4":0.0908,"16.5":0.19018,"16.6-16.7":1.50256,"17.0":0.1799,"17.1":0.33238,"17.2":0.44203,"17.3":3.22443,"17.4":7.27809,"17.5":0.06682},P:{"4":0.13587,"20":0.0209,"21":0.09406,"22":0.10451,"23":0.33444,"24":2.35155,"5.0-5.4":0.0209,"6.2-6.4":0.01045,"7.2-7.4":0.13587,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01045,"13.0":0.0209,"14.0":0.16722,"16.0":0.06271,"17.0":0.09406,"18.0":0.03135,"19.0":0.03135},I:{"0":0.03813,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"8":0.00369,"9":0.00369,"11":0.5427,_:"6 7 10 5.5"},K:{"0":0.238,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00638},O:{"0":0.15953},H:{"0":0.03},L:{"0":44.02324},R:{_:"0"},M:{"0":0.12762}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js index 22e04b1b98ede7..a35f1e0cdc472a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TJ.js @@ -1 +1 @@ -module.exports={C:{"52":0.01264,"68":0.00253,"72":0.00253,"73":0.00253,"77":0.00253,"82":0.00253,"102":0.00253,"107":0.00253,"109":0.06826,"111":0.00253,"115":0.09606,"116":0.00253,"119":0.00506,"121":0.00253,"122":0.00253,"123":0.27808,"124":0.11882,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 74 75 76 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 108 110 112 113 114 117 118 120 125 126 127 3.5 3.6"},D:{"26":0.00253,"31":0.00253,"33":0.00253,"35":0.01011,"36":0.00506,"39":0.00506,"40":0.00758,"44":0.01264,"47":0.00253,"49":0.02022,"50":0.00253,"59":0.00253,"62":0.00253,"63":0.00506,"64":0.00758,"67":0.00253,"68":0.01011,"69":0.01264,"70":0.00758,"71":0.02275,"72":0.01517,"73":0.00506,"74":0.02022,"75":0.01264,"76":0.01264,"77":0.85194,"78":0.02275,"79":0.03286,"80":0.02022,"81":0.02275,"83":0.03539,"84":0.01011,"85":0.01517,"86":0.02275,"87":0.02022,"88":0.02275,"89":0.03286,"90":0.03286,"91":0.01264,"92":0.05056,"93":0.00253,"94":0.00506,"96":0.01264,"97":0.01011,"98":0.02528,"99":0.00506,"100":0.01011,"101":0.00506,"102":0.02022,"103":0.00758,"104":0.0177,"105":0.0632,"106":0.316,"107":0.00758,"108":0.0455,"109":1.96678,"110":0.18707,"111":0.00253,"112":0.12387,"113":0.01264,"114":0.02528,"115":0.01264,"116":0.03034,"117":0.04298,"118":0.02781,"119":0.0809,"120":0.15674,"121":0.43987,"122":5.5161,"123":1.29686,"124":0.00253,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 32 34 37 38 41 42 43 45 46 48 51 52 53 54 55 56 57 58 60 61 65 66 95 125 126"},F:{"32":0.00253,"36":0.01011,"45":0.00253,"53":0.00253,"55":0.00253,"62":0.00253,"66":0.00253,"75":0.00253,"79":0.02275,"80":0.00253,"81":0.00253,"82":0.00253,"84":0.00253,"85":0.00506,"86":0.01011,"87":0.00758,"93":0.00253,"94":0.11123,"95":0.12387,"97":0.00253,"98":0.00253,"106":0.01264,"107":0.36403,"108":0.19466,"109":0.00253,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 37 38 39 40 41 42 43 44 46 47 48 49 50 51 52 54 56 57 58 60 63 64 65 67 68 69 70 71 72 73 74 76 77 78 83 88 89 90 91 92 96 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5","11.6":0.00253,"12.1":0.00253},B:{"12":0.00253,"13":0.00506,"14":0.00506,"15":0.0177,"16":0.00758,"17":0.00253,"18":0.03792,"79":0.00253,"80":0.00253,"81":0.00253,"83":0.00253,"84":0.00506,"86":0.00253,"89":0.00758,"90":0.01264,"92":0.06826,"100":0.01517,"108":0.00253,"109":0.04045,"110":0.12893,"112":0.00253,"115":0.00253,"116":0.00253,"117":0.00758,"118":0.00253,"119":0.01264,"120":0.07331,"121":0.0455,"122":0.94294,"123":0.05309,_:"85 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 111 113 114"},E:{"14":0.02022,"15":0.00253,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 15.2-15.3 16.2 17.5","5.1":3.78189,"9.1":0.0809,"12.1":0.00253,"13.1":0.00506,"14.1":0.00506,"15.1":0.00253,"15.4":0.00253,"15.5":0.00253,"15.6":0.02781,"16.0":0.00253,"16.1":0.00253,"16.3":0.00506,"16.4":0.00253,"16.5":0.01264,"16.6":0.02781,"17.0":0.01264,"17.1":0.01517,"17.2":0.04803,"17.3":0.08595,"17.4":0.04045},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00141,"5.0-5.1":0.0007,"6.0-6.1":0.00422,"7.0-7.1":0.00492,"8.1-8.4":0.00141,"9.0-9.2":0.00281,"9.3":0.01758,"10.0-10.2":0.00281,"10.3":0.02953,"11.0-11.2":0.02109,"11.3-11.4":0.00703,"12.0-12.1":0.00633,"12.2-12.5":0.12164,"13.0-13.1":0.00211,"13.2":0.02109,"13.3":0.00633,"13.4-13.7":0.02391,"14.0-14.4":0.0457,"14.5-14.8":0.07172,"15.0-15.1":0.03094,"15.2-15.3":0.03656,"15.4":0.04289,"15.5":0.05484,"15.6-15.8":0.45913,"16.0":0.1118,"16.1":0.23132,"16.2":0.1118,"16.3":0.19898,"16.4":0.04219,"16.5":0.0893,"16.6-16.7":0.6764,"17.0":0.08789,"17.1":0.17578,"17.2":0.28336,"17.3":3.48745,"17.4":0.51187,"17.5":0},P:{"4":0.33547,"20":0.09149,"21":0.21348,"22":0.36596,"23":1.02673,"24":0.73192,"5.0-5.4":0.0305,"6.2-6.4":0.07116,"7.2-7.4":0.34563,"8.2":0.08132,"9.2":0.04066,"10.1":0.01017,"11.1-11.2":0.09149,"12.0":0.01017,"13.0":0.02033,"14.0":0.0305,"15.0":0.02033,"16.0":0.2948,"17.0":0.0305,"18.0":0.07116,"19.0":0.20331},I:{"0":0.01488,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":1.27693,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00547,"11":0.25997,_:"6 7 9 10 5.5"},S:{"2.5":0.01494,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":62.65299},R:{_:"0"},M:{"0":0.03736},Q:{"14.9":0.00747},O:{"0":1.06102},H:{"0":0.21}}; +module.exports={C:{"38":0.01985,"44":0.09923,"52":0.01764,"54":0.00221,"72":0.00221,"94":0.00882,"99":0.00221,"105":0.02205,"107":0.01544,"108":0.06395,"109":0.13892,"110":0.02646,"111":0.10584,"112":0.00221,"114":0.00221,"115":0.10364,"116":0.00221,"123":0.05292,"124":0.19404,"125":0.17861,"126":0.00221,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 100 101 102 103 104 106 113 117 118 119 120 121 122 127 128 3.5 3.6"},D:{"31":0.00221,"33":0.00221,"35":0.00441,"36":0.00221,"44":0.00662,"47":0.00441,"49":0.02646,"54":0.00221,"57":0.00882,"60":0.00221,"61":0.00221,"62":0.01103,"63":0.00441,"66":0.00221,"68":0.01764,"69":0.00221,"70":0.02205,"71":0.00662,"72":0.00441,"73":0.00441,"74":0.00441,"75":0.00441,"76":0.01323,"77":0.7056,"78":0.00662,"79":0.49392,"81":0.00662,"83":0.01544,"85":0.01323,"86":0.00662,"87":0.02426,"88":0.00441,"89":0.00882,"90":0.00662,"92":0.03749,"94":0.02205,"95":0.02867,"96":0.00882,"97":0.00882,"98":0.00662,"99":0.01103,"100":0.01544,"101":0.00221,"102":0.02205,"103":0.02867,"104":0.00441,"105":0.24917,"106":0.14333,"107":0.05733,"108":0.27783,"109":2.19177,"110":0.06174,"111":0.02426,"112":0.03749,"113":0.00441,"114":0.01985,"115":0.00882,"116":0.0419,"117":0.02205,"118":0.03087,"119":0.05954,"120":0.28224,"121":0.07277,"122":0.30429,"123":4.8488,"124":1.72872,"125":0.00221,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 34 37 38 39 40 41 42 43 45 46 48 50 51 52 53 55 56 58 59 64 65 67 80 84 91 93 126 127"},F:{"36":0.03308,"38":0.00441,"68":0.00221,"79":0.03749,"81":0.00221,"82":0.00441,"83":0.00221,"84":0.00221,"85":0.00221,"86":0.00662,"89":0.00221,"94":0.01764,"95":0.1301,"97":0.00221,"101":0.00221,"105":0.00221,"106":0.00221,"107":0.09702,"108":0.46526,"109":0.19404,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 80 87 88 90 91 92 93 96 98 99 100 102 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00221,"14":0.02205,"16":0.00662,"17":0.00221,"18":0.03528,"84":0.00221,"85":0.00221,"89":0.00221,"90":0.00221,"92":0.02426,"96":0.01544,"100":0.00441,"105":0.00221,"106":0.00221,"109":0.0419,"112":0.00882,"114":0.00662,"115":0.00441,"116":0.00221,"117":0.00221,"118":0.00221,"119":0.00441,"120":0.03528,"121":0.0419,"122":0.11246,"123":0.75191,"124":0.44982,_:"12 15 79 80 81 83 86 87 88 91 93 94 95 97 98 99 101 102 103 104 107 108 110 111 113"},E:{"14":0.00221,"15":0.00221,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 13.1 15.1 15.2-15.3 15.4 15.5 17.5","5.1":0.67473,"11.1":0.00441,"12.1":0.00221,"14.1":0.00221,"15.6":0.09041,"16.0":0.00221,"16.1":0.00441,"16.2":0.02426,"16.3":0.00441,"16.4":0.01103,"16.5":0.00662,"16.6":0.05733,"17.0":0.00662,"17.1":0.02426,"17.2":0.03528,"17.3":0.03087,"17.4":0.09041},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00138,"5.0-5.1":0.00138,"6.0-6.1":0.00345,"7.0-7.1":0.00551,"8.1-8.4":0.00138,"9.0-9.2":0.00345,"9.3":0.01723,"10.0-10.2":0.00345,"10.3":0.02756,"11.0-11.2":0.02343,"11.3-11.4":0.00689,"12.0-12.1":0.00482,"12.2-12.5":0.11232,"13.0-13.1":0.00207,"13.2":0.02274,"13.3":0.00551,"13.4-13.7":0.02136,"14.0-14.4":0.04203,"14.5-14.8":0.06408,"15.0-15.1":0.02963,"15.2-15.3":0.03376,"15.4":0.03859,"15.5":0.04892,"15.6-15.8":0.42723,"16.0":0.09992,"16.1":0.2081,"16.2":0.09992,"16.3":0.1764,"16.4":0.03652,"16.5":0.07649,"16.6-16.7":0.60432,"17.0":0.07235,"17.1":0.13368,"17.2":0.17778,"17.3":1.29684,"17.4":2.9272,"17.5":0.02687},P:{"4":0.56803,"20":0.06086,"21":0.22315,"22":0.26373,"23":0.39559,"24":1.09548,"5.0-5.4":0.06086,"6.2-6.4":0.13186,"7.2-7.4":0.31444,"8.2":0.01014,"9.2":0.04057,"10.1":0.02029,"11.1-11.2":0.071,"12.0":0.01014,"13.0":0.06086,"14.0":0.06086,"15.0":0.03043,"16.0":0.24344,"17.0":0.04057,"18.0":0.09129,"19.0":0.18258},I:{"0":0.04658,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"8":0.08029,"9":0.04623,"10":0.00973,"11":0.14599,_:"6 7 5.5"},K:{"0":1.8167,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08575,_:"3.0-3.1"},Q:{"14.9":0.0078},O:{"0":0.61581},H:{"0":0.21},L:{"0":64.65358},R:{_:"0"},M:{"0":0.14031}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js index fddf59af8d9193..031dbc24ce5f2d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TL.js @@ -1 +1 @@ -module.exports={C:{"8":0.00784,"18":0.00784,"21":0.00392,"30":0.00784,"35":0.00392,"36":0.00392,"37":0.00784,"38":0.01959,"40":0.00392,"41":0.03134,"43":0.00392,"44":0.00784,"46":0.00392,"47":0.00392,"48":0.03134,"50":0.01959,"52":0.01175,"53":0.00392,"56":0.01959,"57":0.00392,"60":0.00784,"61":0.00392,"63":0.00392,"67":0.09011,"72":0.09011,"78":0.03526,"79":0.17631,"85":0.06269,"88":0.00392,"89":0.00784,"94":0.00392,"97":0.01175,"99":0.01959,"100":0.00784,"102":0.00392,"103":0.01175,"104":0.00784,"106":0.00392,"107":0.00392,"110":0.01175,"111":0.00392,"112":0.00784,"113":0.00784,"114":0.00392,"115":1.16365,"116":0.00392,"117":0.00392,"118":0.03134,"119":0.02743,"120":0.01959,"121":0.07444,"122":0.23508,"123":3.98461,"124":0.9795,"125":0.01959,_:"2 3 4 5 6 7 9 10 11 12 13 14 15 16 17 19 20 22 23 24 25 26 27 28 29 31 32 33 34 39 42 45 49 51 54 55 58 59 62 64 65 66 68 69 70 71 73 74 75 76 77 80 81 82 83 84 86 87 90 91 92 93 95 96 98 101 105 108 109 126 127 3.5 3.6"},D:{"18":0.01175,"23":0.00392,"31":0.02351,"34":0.00392,"35":0.00392,"41":0.00784,"42":0.01567,"43":0.01567,"46":0.00392,"49":0.00392,"50":0.00392,"56":0.00784,"58":0.04702,"60":0.00392,"61":0.02351,"62":0.00784,"63":0.00392,"64":0.01175,"65":0.01567,"67":0.00784,"68":0.05877,"69":0.00784,"71":0.00784,"72":0.00392,"74":0.02743,"76":0.00784,"77":0.00392,"78":0.00392,"79":0.01959,"80":0.1097,"81":0.00392,"83":0.01175,"84":0.05093,"85":0.02351,"86":0.01175,"87":0.05877,"88":0.01567,"89":0.00392,"90":0.00784,"92":0.01959,"93":0.00392,"94":0.00392,"95":0.00392,"96":0.00392,"97":0.01175,"98":0.01567,"99":0.00784,"100":0.03918,"101":0.00784,"102":0.03526,"103":0.23116,"104":0.00784,"105":0.03134,"106":0.00392,"107":0.03134,"108":0.01567,"109":1.78269,"110":0.01175,"111":0.02743,"112":0.05093,"113":0.02351,"114":0.06661,"115":0.03526,"116":0.20765,"117":0.10187,"118":0.14105,"119":0.21549,"120":0.5446,"121":1.53194,"122":12.60421,"123":2.10788,"124":0.00784,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 19 20 21 22 24 25 26 27 28 29 30 32 33 36 37 38 39 40 44 45 47 48 51 52 53 54 55 57 59 66 70 73 75 91 125 126"},F:{"85":0.01175,"95":0.0431,"102":0.01175,"104":0.02743,"106":0.00392,"107":0.41923,"108":0.25859,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.06269,"13":0.00784,"14":0.02351,"15":0.00784,"16":0.03526,"17":0.02743,"18":0.07052,"80":0.00392,"84":0.00392,"89":0.02351,"90":0.01959,"91":0.00784,"92":0.16064,"96":0.02743,"100":0.11362,"104":0.30169,"105":0.00392,"108":0.06269,"109":0.02351,"110":0.01175,"111":0.01567,"112":0.01959,"113":0.03526,"114":0.05485,"115":0.02351,"116":0.05485,"117":0.03918,"118":0.05093,"119":0.11362,"120":0.1959,"121":0.24683,"122":5.06206,"123":0.32911,_:"79 81 83 85 86 87 88 93 94 95 97 98 99 101 102 103 106 107"},E:{"13":0.00392,"14":0.03134,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00392,"12.1":0.01567,"13.1":0.04702,"14.1":0.0862,"15.1":0.02351,"15.2-15.3":0.02351,"15.4":0.01567,"15.5":0.01175,"15.6":0.03526,"16.0":0.00784,"16.1":0.03134,"16.2":0.00392,"16.3":0.03134,"16.4":0.00784,"16.5":0.10187,"16.6":0.06269,"17.0":0.05877,"17.1":0.03134,"17.2":0.04702,"17.3":0.06269,"17.4":0.01175},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00146,"5.0-5.1":0.00073,"6.0-6.1":0.00437,"7.0-7.1":0.0051,"8.1-8.4":0.00146,"9.0-9.2":0.00291,"9.3":0.0182,"10.0-10.2":0.00291,"10.3":0.03057,"11.0-11.2":0.02184,"11.3-11.4":0.00728,"12.0-12.1":0.00655,"12.2-12.5":0.12593,"13.0-13.1":0.00218,"13.2":0.02184,"13.3":0.00655,"13.4-13.7":0.02475,"14.0-14.4":0.04731,"14.5-14.8":0.07425,"15.0-15.1":0.03203,"15.2-15.3":0.03785,"15.4":0.0444,"15.5":0.05678,"15.6-15.8":0.47532,"16.0":0.11574,"16.1":0.23948,"16.2":0.11574,"16.3":0.20599,"16.4":0.04367,"16.5":0.09244,"16.6-16.7":0.70024,"17.0":0.09099,"17.1":0.18197,"17.2":0.29334,"17.3":3.61036,"17.4":0.52991,"17.5":0},P:{"4":0.03066,"20":0.04089,"21":0.10221,"22":0.07155,"23":0.36797,"24":0.26575,_:"5.0-5.4 8.2 10.1 12.0 17.0","6.2-6.4":0.02044,"7.2-7.4":0.15332,"9.2":0.02044,"11.1-11.2":0.03066,"13.0":0.03066,"14.0":0.05111,"15.0":0.01022,"16.0":0.08177,"18.0":0.06133,"19.0":0.10221},I:{"0":0.03028,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00007},K:{"0":1.01201,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.12146,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.38151},R:{_:"0"},M:{"0":0.04865},Q:{"14.9":0.05473},O:{"0":0.69932},H:{"0":0.04}}; +module.exports={C:{"29":0.0125,"30":0.00417,"35":0.00834,"37":0.00834,"38":0.02501,"40":0.0125,"41":0.00417,"42":0.00834,"43":0.00417,"44":0.02501,"47":0.02084,"48":0.02084,"50":0.02084,"52":0.00417,"53":0.01667,"56":0.04168,"57":0.00417,"60":0.00834,"61":0.00417,"63":0.01667,"67":0.03334,"68":0.00417,"72":0.05418,"78":0.02501,"79":0.12921,"80":0.00417,"85":0.1042,"87":0.00417,"88":0.00834,"91":0.00417,"94":0.00417,"95":0.00417,"96":0.00417,"97":0.00417,"98":0.00834,"99":0.00834,"103":0.00417,"105":0.00834,"107":0.00417,"110":0.02084,"112":0.00417,"113":0.00417,"114":0.0125,"115":1.22539,"116":0.02084,"117":0.02084,"118":0.02084,"119":0.02501,"120":0.02084,"121":0.04585,"122":0.07919,"123":0.25008,"124":3.57614,"125":1.16287,"126":0.06669,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 31 32 33 34 36 39 45 46 49 51 54 55 58 59 62 64 65 66 69 70 71 73 74 75 76 77 81 82 83 84 86 89 90 92 93 100 101 102 104 106 108 109 111 127 128 3.5 3.6"},D:{"11":0.00417,"29":0.00417,"31":0.03751,"34":0.02501,"40":0.00417,"41":0.01667,"42":0.04585,"43":0.02501,"48":0.0125,"49":0.01667,"51":0.03751,"54":0.00417,"55":0.00417,"58":0.05418,"63":0.00834,"64":0.0125,"65":0.0125,"66":0.00417,"67":0.0125,"68":0.03751,"69":0.03334,"71":0.00417,"72":0.00417,"73":0.00417,"74":0.02501,"75":0.00834,"76":0.00417,"77":0.00417,"78":0.00417,"79":0.0125,"80":0.08336,"81":0.00417,"84":0.02084,"85":0.03334,"86":0.0125,"87":0.03751,"88":0.02501,"90":0.00417,"91":0.00417,"92":0.00834,"95":0.00417,"96":0.00834,"97":0.04585,"98":0.00417,"99":0.0125,"100":0.00834,"101":0.03334,"102":0.02084,"103":0.35845,"105":0.01667,"106":0.00834,"107":0.02084,"108":0.01667,"109":2.01314,"110":0.02501,"111":0.02918,"112":0.03334,"113":0.01667,"114":0.05835,"115":0.06669,"116":0.24174,"117":0.04168,"118":0.12504,"119":0.13754,"120":0.40013,"121":0.33761,"122":1.36294,"123":14.25039,"124":3.66367,"125":0.04168,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 32 33 35 36 37 38 39 44 45 46 47 50 52 53 56 57 59 60 61 62 70 83 89 93 94 104 126 127"},F:{"42":0.00417,"64":0.0125,"71":0.00417,"72":0.00417,"80":0.00417,"85":0.00834,"95":0.04168,"101":0.00417,"102":0.00834,"103":0.00417,"106":0.00417,"107":0.04168,"108":0.68355,"109":0.09586,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 69 70 73 74 75 76 77 78 79 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.06669,"13":0.02084,"14":0.00417,"15":0.00834,"16":0.05002,"17":0.03334,"18":0.07502,"80":0.00417,"84":0.02084,"89":0.05002,"90":0.03334,"92":0.07502,"96":0.04168,"97":0.0125,"98":0.00417,"100":0.1042,"102":0.00417,"103":0.00834,"105":0.00834,"106":0.00834,"108":0.00417,"109":0.04585,"110":0.0125,"111":0.0125,"112":0.0125,"113":0.05418,"114":0.06252,"115":0.02918,"116":0.08336,"117":0.02501,"118":0.02918,"119":0.02918,"120":0.13754,"121":0.15422,"122":0.63354,"123":3.46778,"124":1.45046,_:"79 81 83 85 86 87 88 91 93 94 95 99 101 104 107"},E:{"10":0.00834,"11":0.00417,"14":0.00417,"15":0.01667,_:"0 4 5 6 7 8 9 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 16.0 17.5","12.1":0.02084,"13.1":0.03751,"14.1":0.05835,"15.1":0.01667,"15.2-15.3":0.02501,"15.4":0.00834,"15.5":0.02084,"15.6":0.03751,"16.1":0.02918,"16.2":0.02918,"16.3":0.02501,"16.4":0.0125,"16.5":0.1167,"16.6":0.05002,"17.0":0.04585,"17.1":0.03334,"17.2":0.07086,"17.3":0.02918,"17.4":0.04585},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0014,"5.0-5.1":0.0014,"6.0-6.1":0.00351,"7.0-7.1":0.00562,"8.1-8.4":0.0014,"9.0-9.2":0.00351,"9.3":0.01755,"10.0-10.2":0.00351,"10.3":0.02808,"11.0-11.2":0.02387,"11.3-11.4":0.00702,"12.0-12.1":0.00491,"12.2-12.5":0.11443,"13.0-13.1":0.00211,"13.2":0.02317,"13.3":0.00562,"13.4-13.7":0.02176,"14.0-14.4":0.04283,"14.5-14.8":0.06529,"15.0-15.1":0.03019,"15.2-15.3":0.0344,"15.4":0.03931,"15.5":0.04985,"15.6-15.8":0.43527,"16.0":0.1018,"16.1":0.21202,"16.2":0.1018,"16.3":0.17973,"16.4":0.03721,"16.5":0.07793,"16.6-16.7":0.6157,"17.0":0.07372,"17.1":0.1362,"17.2":0.18113,"17.3":1.32126,"17.4":2.98232,"17.5":0.02738},P:{"4":0.02008,"20":0.03012,"21":0.1004,"22":0.09036,"23":0.21084,"24":0.45179,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0","7.2-7.4":0.11044,"9.2":0.06024,"11.1-11.2":0.03012,"13.0":0.01004,"14.0":0.02008,"16.0":0.04016,"17.0":0.01004,"18.0":0.02008,"19.0":0.11044},I:{"0":0.01161,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00003},A:{"11":0.08336,_:"6 7 8 9 10 5.5"},K:{"0":1.07457,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01749},O:{"0":0.65307},H:{"0":0.01},L:{"0":49.54209},R:{_:"0"},M:{"0":0.05831}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js index 830ed697aaac5f..49a15ee494e48d 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TM.js @@ -1 +1 @@ -module.exports={C:{"69":0.01337,"76":0.00535,"78":0.0294,"85":0.08821,"91":0.1684,"115":0.00267,"118":0.00535,"119":0.00802,"120":0.00267,"121":0.01069,"122":0.00535,"123":0.07752,"124":0.07217,"125":0.00267,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 73 74 75 77 79 80 81 82 83 84 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 126 127 3.5 3.6"},D:{"49":0.00802,"55":0.00802,"56":0.00535,"59":0.00267,"61":0.00535,"67":0.00802,"68":0.00267,"71":0.00535,"73":0.08554,"74":0.03475,"77":0.02138,"78":0.00267,"80":0.01871,"83":0.00535,"84":0.01871,"85":0.00267,"87":0.01604,"88":0.03742,"89":0.00267,"90":0.00802,"94":0.01069,"96":0.00535,"98":0.02406,"99":0.00267,"100":0.00802,"101":0.01871,"102":0.06683,"104":0.02406,"105":0.14167,"106":0.03742,"107":0.00535,"108":0.01871,"109":5.37273,"110":0.01069,"111":0.00535,"112":0.01871,"114":0.02673,"116":0.05346,"117":0.03742,"118":0.04811,"119":0.01604,"120":0.26195,"121":0.3956,"122":9.49717,"123":2.77725,"124":0.00267,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 57 58 60 62 63 64 65 66 69 70 72 75 76 79 81 86 91 92 93 95 97 103 113 115 125 126"},F:{"34":0.00802,"36":0.00267,"40":0.04811,"50":0.00267,"51":0.00535,"60":0.00802,"62":0.00267,"66":0.00802,"70":0.00267,"74":0.00535,"78":0.00267,"79":0.00267,"83":0.00267,"90":0.00267,"91":0.00535,"93":0.00267,"94":0.00802,"95":0.01069,"99":0.03208,"100":0.00802,"101":0.00267,"105":0.00267,"106":0.02138,"107":0.08821,"108":0.00802,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 41 42 43 44 45 46 47 48 49 52 53 54 55 56 57 58 63 64 65 67 68 69 71 72 73 75 76 77 80 81 82 84 85 86 87 88 89 92 96 97 98 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"84":0.02673,"88":0.07217,"89":0.03742,"90":0.01069,"91":0.00802,"92":0.06415,"97":0.00535,"98":0.08019,"99":0.01069,"100":0.03475,"103":0.03475,"104":0.00267,"108":0.00535,"109":0.00802,"111":0.02406,"112":0.02138,"114":0.00267,"115":0.02138,"116":0.00267,"118":0.00267,"119":0.00535,"120":0.04277,"121":0.02138,"122":0.20048,"123":0.00802,_:"12 13 14 15 16 17 18 79 80 81 83 85 86 87 93 94 95 96 101 102 105 106 107 110 113 117"},E:{"9":0.00267,"10":0.00267,_:"0 4 5 6 7 8 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 13.1 15.4 16.0 16.1 16.2 17.5","9.1":0.00267,"14.1":0.00535,"15.1":0.00267,"15.2-15.3":0.00267,"15.5":0.00535,"15.6":0.01337,"16.3":0.00535,"16.4":0.00535,"16.5":0.00802,"16.6":0.04811,"17.0":0.00267,"17.1":0.01871,"17.2":0.03475,"17.3":0.04811,"17.4":0.00802},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00123,"5.0-5.1":0.00061,"6.0-6.1":0.00368,"7.0-7.1":0.00429,"8.1-8.4":0.00123,"9.0-9.2":0.00245,"9.3":0.01533,"10.0-10.2":0.00245,"10.3":0.02576,"11.0-11.2":0.0184,"11.3-11.4":0.00613,"12.0-12.1":0.00552,"12.2-12.5":0.10611,"13.0-13.1":0.00184,"13.2":0.0184,"13.3":0.00552,"13.4-13.7":0.02085,"14.0-14.4":0.03987,"14.5-14.8":0.06256,"15.0-15.1":0.02699,"15.2-15.3":0.03189,"15.4":0.03741,"15.5":0.04784,"15.6-15.8":0.40052,"16.0":0.09752,"16.1":0.20179,"16.2":0.09752,"16.3":0.17358,"16.4":0.0368,"16.5":0.0779,"16.6-16.7":0.59005,"17.0":0.07667,"17.1":0.15334,"17.2":0.24718,"17.3":3.04223,"17.4":0.44652,"17.5":0},P:{"4":0.18435,"20":0.07169,"21":0.24581,"22":0.20484,"23":0.90129,"24":0.40968,"5.0-5.4":0.04097,"6.2-6.4":0.03073,"7.2-7.4":0.07169,_:"8.2 9.2 10.1 11.1-11.2","12.0":0.01024,"13.0":0.13314,"14.0":0.04097,"15.0":0.05121,"16.0":0.04097,"17.0":0.04097,"18.0":0.02048,"19.0":0.10242},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.32976,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":66.13001},R:{_:"0"},M:{"0":0.01466},Q:{_:"14.9"},O:{"0":0.41037},H:{"0":0}}; +module.exports={C:{"47":0.0028,"64":0.01679,"69":0.00839,"88":0.16788,"89":0.35255,"91":0.64074,"115":0.04197,"116":0.10073,"119":0.0056,"121":0.06156,"123":0.01399,"124":0.1427,"125":0.04197,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 68 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 118 120 122 126 127 128 3.5 3.6"},D:{"57":0.00839,"61":0.0028,"69":0.01679,"70":0.0028,"71":0.02798,"73":0.02798,"74":0.0028,"77":0.0028,"78":0.0056,"79":0.0028,"80":0.00839,"83":0.04757,"84":0.0056,"85":0.0028,"86":0.0028,"87":0.0056,"89":0.00839,"90":0.02518,"91":0.01399,"92":0.0056,"95":0.01399,"96":0.01679,"97":0.0056,"98":0.01119,"99":0.0028,"100":0.04757,"101":0.01399,"102":0.12871,"103":0.01679,"104":0.0056,"105":0.02238,"106":0.01959,"107":0.03637,"108":0.1399,"109":5.54843,"110":0.01399,"111":0.00839,"112":0.01399,"113":0.0028,"114":0.01679,"115":0.01399,"116":0.01959,"117":0.0056,"118":0.0028,"119":0.03917,"120":0.07555,"121":0.1455,"122":0.40011,"123":7.79243,"124":4.46841,"125":0.06995,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 58 59 60 62 63 64 65 66 67 68 72 75 76 81 88 93 94 126 127"},F:{"46":0.0028,"48":0.0028,"51":0.0028,"60":0.00839,"76":0.0028,"77":0.0056,"79":0.01399,"81":0.01119,"83":0.0056,"90":0.0028,"93":0.0056,"95":0.02518,"100":0.0028,"103":0.0028,"106":0.06995,"107":0.04197,"108":0.02798,"109":0.04197,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 49 50 52 53 54 55 56 57 58 62 63 64 65 66 67 68 69 70 71 72 73 74 75 78 80 82 84 85 86 87 88 89 91 92 94 96 97 98 99 101 102 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.0056,"84":0.01399,"88":0.01959,"89":0.03917,"90":0.04197,"91":0.0028,"92":0.15389,"96":0.01399,"99":0.01119,"100":0.01959,"103":0.0056,"108":0.0028,"109":0.01399,"111":0.0056,"112":0.04757,"114":0.01119,"115":0.00839,"117":0.01399,"118":0.0028,"119":0.0056,"120":0.10073,"121":0.00839,"122":0.01679,"123":0.21824,"124":0.1371,_:"12 13 14 15 16 17 79 80 81 83 85 86 87 93 94 95 97 98 101 102 104 105 106 107 110 113 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.2-15.3 15.4 15.5 16.0 16.1 16.3 16.5","14.1":0.0028,"15.1":0.0028,"15.6":0.02798,"16.2":0.0028,"16.4":0.0028,"16.6":0.17627,"17.0":0.0028,"17.1":0.03358,"17.2":0.00839,"17.3":0.0056,"17.4":0.1343,"17.5":0.0028},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00135,"5.0-5.1":0.00135,"6.0-6.1":0.00338,"7.0-7.1":0.00542,"8.1-8.4":0.00135,"9.0-9.2":0.00338,"9.3":0.01692,"10.0-10.2":0.00338,"10.3":0.02708,"11.0-11.2":0.02302,"11.3-11.4":0.00677,"12.0-12.1":0.00474,"12.2-12.5":0.11035,"13.0-13.1":0.00203,"13.2":0.02234,"13.3":0.00542,"13.4-13.7":0.02099,"14.0-14.4":0.0413,"14.5-14.8":0.06296,"15.0-15.1":0.02911,"15.2-15.3":0.03317,"15.4":0.03791,"15.5":0.04807,"15.6-15.8":0.41973,"16.0":0.09816,"16.1":0.20445,"16.2":0.09816,"16.3":0.17331,"16.4":0.03588,"16.5":0.07515,"16.6-16.7":0.59372,"17.0":0.07108,"17.1":0.13134,"17.2":0.17466,"17.3":1.27409,"17.4":2.87585,"17.5":0.0264},P:{"4":0.09992,"20":0.00999,"21":0.24979,"22":0.32972,"23":0.31973,"24":0.97917,"5.0-5.4":0.02997,"6.2-6.4":0.03997,"7.2-7.4":0.15986,_:"8.2 9.2 12.0 14.0","10.1":0.00999,"11.1-11.2":0.00999,"13.0":0.03997,"15.0":0.00999,"16.0":0.02997,"17.0":0.01998,"18.0":0.15986,"19.0":0.28975},I:{"0":0.00717,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00002},A:{"11":0.1343,_:"6 7 8 9 10 5.5"},K:{"0":0.25207,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.02161},O:{"0":0.28808},H:{"0":0},L:{"0":63.34452},R:{_:"0"},M:{"0":0.02881}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js index 8de691c3791c6e..6508bbd02b961a 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TN.js @@ -1 +1 @@ -module.exports={C:{"51":0.00284,"52":0.01706,"67":0.00284,"68":0.00284,"72":0.00284,"75":0.01422,"78":0.00853,"82":0.00284,"88":0.00284,"102":0.00853,"103":0.01706,"104":0.00284,"105":0.00569,"106":0.00284,"107":0.00569,"108":0.01422,"109":0.00569,"110":0.00284,"111":0.00284,"112":0.00569,"113":0.00569,"115":0.20754,"116":0.00284,"118":0.00284,"119":0.00284,"120":0.00284,"121":0.00853,"122":0.02843,"123":0.61977,"124":0.25303,"125":0.00853,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 79 80 81 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 114 117 126 127 3.5 3.6"},D:{"38":0.00284,"39":0.00284,"42":0.00284,"43":0.00284,"47":0.00284,"49":0.0398,"50":0.00853,"51":0.00284,"56":0.01422,"58":0.06539,"59":0.00284,"60":0.00284,"63":0.00284,"64":0.00284,"65":0.01706,"66":0.01422,"67":0.01422,"68":0.00284,"69":0.00569,"70":0.01137,"71":0.00569,"72":0.00569,"73":0.00569,"74":0.00569,"75":0.00569,"76":0.01137,"77":0.00284,"78":0.00569,"79":0.03127,"80":0.00853,"81":0.02274,"83":0.00569,"84":0.00284,"85":0.05117,"86":0.01137,"87":0.05686,"88":0.01137,"89":0.00569,"90":0.00853,"91":0.0597,"92":0.00569,"93":0.00284,"94":0.01137,"95":0.01137,"96":0.00569,"97":0.00569,"98":0.02274,"99":0.01137,"100":0.00569,"101":0.01706,"102":0.02559,"103":0.02843,"104":0.04833,"105":0.02843,"106":0.05686,"107":0.05402,"108":0.07392,"109":3.15289,"110":0.03412,"111":0.02559,"112":0.02559,"113":0.00853,"114":0.01706,"115":0.01422,"116":0.05402,"117":0.01137,"118":0.0199,"119":0.09382,"120":0.25587,"121":0.96662,"122":10.51057,"123":2.80604,"124":0.00284,"125":0.00284,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 40 41 44 45 46 48 52 53 54 55 57 61 62 126"},F:{"40":0.00284,"46":0.00284,"65":0.00284,"79":0.00569,"82":0.00284,"84":0.00284,"85":0.00853,"86":0.00284,"90":0.00284,"91":0.00284,"92":0.00853,"94":0.00284,"95":0.08529,"96":0.00284,"102":0.00284,"105":0.00569,"106":0.01422,"107":2.14647,"108":0.2445,"109":0.00569,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 87 88 89 93 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00284},B:{"12":0.00569,"16":0.00284,"17":0.00284,"18":0.00853,"85":0.00284,"92":0.01706,"100":0.00284,"107":0.01422,"108":0.00284,"109":0.04265,"110":0.00853,"114":0.0199,"116":0.00284,"117":0.00284,"118":0.00853,"119":0.00853,"120":0.02274,"121":0.11656,"122":1.75697,"123":0.14215,_:"13 14 15 79 80 81 83 84 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 111 112 113 115"},E:{"14":0.00284,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3 17.5","5.1":0.00284,"13.1":0.01137,"14.1":0.02274,"15.4":0.00284,"15.5":0.00569,"15.6":0.03696,"16.0":0.01137,"16.1":0.01137,"16.2":0.00853,"16.3":0.01137,"16.4":0.00284,"16.5":0.00569,"16.6":0.03127,"17.0":0.00853,"17.1":0.01422,"17.2":0.03412,"17.3":0.05402,"17.4":0.04549},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00135,"5.0-5.1":0.00067,"6.0-6.1":0.00405,"7.0-7.1":0.00472,"8.1-8.4":0.00135,"9.0-9.2":0.0027,"9.3":0.01687,"10.0-10.2":0.0027,"10.3":0.02835,"11.0-11.2":0.02025,"11.3-11.4":0.00675,"12.0-12.1":0.00607,"12.2-12.5":0.11676,"13.0-13.1":0.00202,"13.2":0.02025,"13.3":0.00607,"13.4-13.7":0.02295,"14.0-14.4":0.04387,"14.5-14.8":0.06884,"15.0-15.1":0.0297,"15.2-15.3":0.0351,"15.4":0.04117,"15.5":0.05264,"15.6-15.8":0.44071,"16.0":0.10731,"16.1":0.22204,"16.2":0.10731,"16.3":0.191,"16.4":0.04049,"16.5":0.08571,"16.6-16.7":0.64926,"17.0":0.08436,"17.1":0.16873,"17.2":0.27199,"17.3":3.34753,"17.4":0.49133,"17.5":0},P:{"4":0.12493,"20":0.03407,"21":0.06814,"22":0.0795,"23":0.64734,"24":0.45428,"5.0-5.4":0.01136,_:"6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.30664,"11.1-11.2":0.01136,"13.0":0.01136,"14.0":0.02271,"15.0":0.01136,"16.0":0.02271,"17.0":0.04543,"18.0":0.01136,"19.0":0.03407},I:{"0":0.14255,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00034},K:{"0":0.33511,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00581,"11":0.12781,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":64.71399},R:{_:"0"},M:{"0":0.10736},Q:{_:"14.9"},O:{"0":0.13598},H:{"0":0.08}}; +module.exports={C:{"47":0.00619,"52":0.0495,"67":0.00309,"68":0.00309,"72":0.00309,"75":0.02166,"78":0.00619,"79":0.00309,"82":0.00309,"84":0.00309,"88":0.00309,"102":0.00619,"103":0.02166,"104":0.00619,"105":0.01238,"106":0.00309,"107":0.00619,"108":0.00619,"109":0.00309,"110":0.00309,"112":0.00619,"113":0.00309,"115":0.24752,"120":0.00309,"121":0.00928,"122":0.01238,"123":0.02785,"124":0.47648,"125":0.29393,"126":0.01238,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 73 74 76 77 80 81 83 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 111 114 116 117 118 119 127 128 3.5 3.6"},D:{"11":0.00309,"38":0.00309,"43":0.00309,"47":0.00309,"49":0.0495,"50":0.02475,"51":0.00309,"54":0.00309,"56":0.01547,"58":0.07735,"59":0.00309,"60":0.00619,"63":0.00309,"64":0.00309,"65":0.02166,"66":0.00309,"67":0.00619,"68":0.00619,"69":0.00619,"70":0.01547,"71":0.00619,"72":0.00309,"73":0.01238,"74":0.00309,"75":0.00309,"76":0.01238,"77":0.00619,"78":0.00309,"79":0.04332,"80":0.00309,"81":0.04022,"83":0.01238,"84":0.00619,"85":0.06188,"86":0.01238,"87":0.07116,"88":0.01238,"89":0.00619,"90":0.00619,"91":0.00928,"92":0.00928,"93":0.00619,"94":0.00928,"95":0.01238,"96":0.00619,"97":0.00928,"98":0.03094,"99":0.01547,"100":0.00619,"101":0.00309,"102":0.03403,"103":0.03094,"104":0.03094,"105":0.04022,"106":0.06497,"107":0.03094,"108":0.03713,"109":3.92938,"110":0.02166,"111":0.02475,"112":0.02475,"113":0.01856,"114":0.01856,"115":0.00928,"116":0.08973,"117":0.01856,"118":0.01547,"119":0.06807,"120":0.16089,"121":0.15161,"122":0.57548,"123":10.25352,"124":4.77714,"125":0.02475,"126":0.00309,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 45 46 48 52 53 55 57 61 62 127"},F:{"28":0.00309,"36":0.00309,"46":0.00928,"65":0.00309,"79":0.00619,"82":0.00928,"85":0.00619,"91":0.00309,"93":0.00309,"95":0.11757,"102":0.00309,"106":0.00928,"107":1.98944,"108":0.48576,"109":0.2568,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 86 87 88 89 90 92 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00309,"14":0.00309,"15":0.00309,"17":0.00309,"18":0.00928,"92":0.02475,"100":0.00309,"106":0.00309,"107":0.00928,"108":0.00309,"109":0.04332,"110":0.00928,"111":0.00309,"114":0.01547,"116":0.00619,"117":0.00619,"118":0.01238,"119":0.00619,"120":0.02166,"121":0.02785,"122":0.12067,"123":1.37992,"124":0.72709,_:"13 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 112 113 115"},E:{"13":0.00309,"14":0.01238,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 10.1 11.1 12.1 15.2-15.3 17.5","9.1":0.00309,"13.1":0.00928,"14.1":0.01547,"15.1":0.00309,"15.4":0.00309,"15.5":0.00309,"15.6":0.03713,"16.0":0.01547,"16.1":0.01856,"16.2":0.00619,"16.3":0.01238,"16.4":0.00309,"16.5":0.00619,"16.6":0.04022,"17.0":0.00619,"17.1":0.02475,"17.2":0.05569,"17.3":0.03094,"17.4":0.1021},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00116,"5.0-5.1":0.00116,"6.0-6.1":0.00291,"7.0-7.1":0.00465,"8.1-8.4":0.00116,"9.0-9.2":0.00291,"9.3":0.01454,"10.0-10.2":0.00291,"10.3":0.02326,"11.0-11.2":0.01977,"11.3-11.4":0.00581,"12.0-12.1":0.00407,"12.2-12.5":0.09478,"13.0-13.1":0.00174,"13.2":0.01919,"13.3":0.00465,"13.4-13.7":0.01803,"14.0-14.4":0.03547,"14.5-14.8":0.05408,"15.0-15.1":0.025,"15.2-15.3":0.02849,"15.4":0.03256,"15.5":0.04129,"15.6-15.8":0.36052,"16.0":0.08432,"16.1":0.17561,"16.2":0.08432,"16.3":0.14886,"16.4":0.03082,"16.5":0.06454,"16.6-16.7":0.50996,"17.0":0.06106,"17.1":0.11281,"17.2":0.15002,"17.3":1.09436,"17.4":2.47015,"17.5":0.02268},P:{"4":0.17391,"20":0.04092,"21":0.08184,"22":0.08184,"23":0.24552,"24":1.16623,_:"5.0-5.4 8.2 9.2 10.1 12.0","6.2-6.4":0.01023,"7.2-7.4":0.38874,"11.1-11.2":0.02046,"13.0":0.02046,"14.0":0.01023,"15.0":0.01023,"16.0":0.03069,"17.0":0.06138,"18.0":0.02046,"19.0":0.04092},I:{"0":0.11004,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00028},A:{"8":0.00309,"11":0.03713,_:"6 7 9 10 5.5"},K:{"0":0.39961,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00691,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.13812},H:{"0":0.07},L:{"0":62.20542},R:{_:"0"},M:{"0":0.08978}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js index fd8073232b0f42..0e60d8439dd4a9 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TO.js @@ -1 +1 @@ -module.exports={C:{"115":0.02106,"118":0.04633,"119":0.02948,"120":0.01685,"122":0.00421,"123":0.58968,"124":0.08003,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 121 125 126 127 3.5 3.6"},D:{"64":0.01685,"68":0.05054,"71":0.00421,"74":0.02527,"76":0.00842,"80":0.00421,"85":0.02527,"86":0.00421,"93":0.04212,"94":0.00842,"96":0.06318,"99":0.02527,"102":0.00842,"103":0.21902,"104":0.04633,"105":0.00842,"106":0.00842,"107":0.00421,"108":0.00421,"109":0.41699,"112":0.00842,"114":0.06739,"115":0.00842,"116":0.1769,"117":0.11372,"118":0.04212,"119":0.13057,"120":5.56405,"121":1.14145,"122":10.99332,"123":2.29554,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 65 66 67 69 70 72 73 75 77 78 79 81 83 84 87 88 89 90 91 92 95 97 98 100 101 110 111 113 124 125 126"},F:{"84":0.00421,"107":0.12636,"108":0.10951,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.02106,"16":0.01685,"18":0.06739,"92":0.03791,"100":0.04212,"107":0.00842,"108":0.02948,"109":0.06739,"115":0.00421,"116":0.09266,"117":0.0716,"118":0.00421,"119":0.12215,"120":0.26114,"121":0.37487,"122":10.46682,"123":0.27799,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 110 111 112 113 114"},E:{"14":0.00421,"15":0.00421,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 11.1 15.1 15.2-15.3 15.5 16.4 16.5 17.5","9.1":0.00421,"12.1":0.00842,"13.1":0.12215,"14.1":0.03791,"15.4":0.00421,"15.6":0.92243,"16.0":0.02106,"16.1":0.00421,"16.2":0.01685,"16.3":0.00421,"16.6":0.23587,"17.0":0.09266,"17.1":0.05897,"17.2":0.12215,"17.3":0.23587,"17.4":0.46332},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00243,"5.0-5.1":0.00122,"6.0-6.1":0.00729,"7.0-7.1":0.00851,"8.1-8.4":0.00243,"9.0-9.2":0.00486,"9.3":0.03039,"10.0-10.2":0.00486,"10.3":0.05106,"11.0-11.2":0.03647,"11.3-11.4":0.01216,"12.0-12.1":0.01094,"12.2-12.5":0.21031,"13.0-13.1":0.00365,"13.2":0.03647,"13.3":0.01094,"13.4-13.7":0.04133,"14.0-14.4":0.07902,"14.5-14.8":0.124,"15.0-15.1":0.05349,"15.2-15.3":0.06322,"15.4":0.07416,"15.5":0.09482,"15.6-15.8":0.79385,"16.0":0.19329,"16.1":0.39996,"16.2":0.19329,"16.3":0.34404,"16.4":0.07294,"16.5":0.15439,"16.6-16.7":1.16949,"17.0":0.15196,"17.1":0.30392,"17.2":0.48992,"17.3":6.02982,"17.4":0.88502,"17.5":0},P:{"4":0.01026,"20":0.08209,"21":0.08209,"22":0.05131,"23":2.24731,"24":1.80606,"5.0-5.4":0.01026,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 17.0","7.2-7.4":0.04105,"11.1-11.2":0.01026,"13.0":0.01026,"15.0":0.01026,"16.0":0.02052,"18.0":0.01026,"19.0":0.03079},I:{"0":0.02306,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.34313,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":44.24104},R:{_:"0"},M:{"0":0.03473},Q:{_:"14.9"},O:{"0":0.08105},H:{"0":0.01}}; +module.exports={C:{"103":0.00441,"108":0.05727,"115":0.07489,"118":0.03084,"119":0.03965,"122":0.01322,"123":0.02203,"124":0.76207,"125":0.22906,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 109 110 111 112 113 114 116 117 120 121 126 127 128 3.5 3.6"},D:{"63":0.03965,"74":0.00441,"78":0.00441,"79":0.01322,"81":0.01762,"88":0.01762,"93":0.03084,"94":0.01762,"98":0.0837,"103":0.04846,"104":0.04846,"108":0.11013,"109":0.22906,"112":0.00441,"114":0.03084,"116":0.0881,"117":0.21144,"118":0.90743,"119":0.00441,"120":1.71795,"121":0.37443,"122":2.25096,"123":11.23275,"124":4.33893,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 75 76 77 80 83 84 85 86 87 89 90 91 92 95 96 97 99 100 101 102 105 106 107 110 111 113 115 125 126 127"},F:{"107":0.03084,"108":0.10572,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.04846,"15":0.00441,"16":0.00441,"18":0.00441,"89":0.01762,"90":0.10572,"92":0.06608,"97":0.30395,"100":0.01322,"107":0.01322,"108":0.11013,"109":0.05286,"112":0.0881,"114":0.01322,"116":0.03524,"117":0.02203,"118":0.00441,"119":0.09251,"120":0.23787,"121":0.07489,"122":1.19816,"123":5.32124,"124":2.61217,_:"12 14 17 79 80 81 83 84 85 86 87 88 91 93 94 95 96 98 99 101 102 103 104 105 106 110 111 113 115"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0 16.1 16.2 17.1 17.5","11.1":0.03084,"12.1":0.11894,"13.1":0.01762,"14.1":0.03084,"15.1":0.02203,"15.2-15.3":0.00441,"15.4":0.02203,"15.5":0.1762,"15.6":1.54175,"16.3":0.00441,"16.4":0.01762,"16.5":0.04846,"16.6":0.33478,"17.0":0.00441,"17.2":0.03524,"17.3":0.07489,"17.4":0.33919},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00253,"5.0-5.1":0.00253,"6.0-6.1":0.00632,"7.0-7.1":0.01012,"8.1-8.4":0.00253,"9.0-9.2":0.00632,"9.3":0.03161,"10.0-10.2":0.00632,"10.3":0.05058,"11.0-11.2":0.04299,"11.3-11.4":0.01264,"12.0-12.1":0.00885,"12.2-12.5":0.20611,"13.0-13.1":0.00379,"13.2":0.04173,"13.3":0.01012,"13.4-13.7":0.0392,"14.0-14.4":0.07713,"14.5-14.8":0.1176,"15.0-15.1":0.05437,"15.2-15.3":0.06196,"15.4":0.07081,"15.5":0.08978,"15.6-15.8":0.78397,"16.0":0.18335,"16.1":0.38187,"16.2":0.18335,"16.3":0.3237,"16.4":0.06702,"16.5":0.14036,"16.6-16.7":1.10894,"17.0":0.13277,"17.1":0.24531,"17.2":0.32623,"17.3":2.37973,"17.4":5.37147,"17.5":0.04931},P:{"4":0.20645,"21":0.17548,"22":0.19612,"23":0.26838,"24":2.84896,_:"20 5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.05161,"11.1-11.2":0.02064,"19.0":0.06193},I:{"0":0.01672,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"11":0.00441,_:"6 7 8 9 10 5.5"},K:{"0":0.07833,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.06155},H:{"0":0},L:{"0":42.47865},R:{_:"0"},M:{"0":0.18464}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js index a7e3bf3fe06662..2366f2e080dde4 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TR.js @@ -1 +1 @@ -module.exports={C:{"47":0.00244,"48":0.00244,"52":0.00488,"72":0.00244,"78":0.00244,"88":0.00732,"102":0.00244,"103":0.00244,"104":0.00244,"105":0.00244,"106":0.00244,"108":0.00244,"109":0.00244,"110":0.00244,"111":0.00244,"115":0.12688,"116":0.00244,"120":0.00244,"121":0.00244,"122":0.00732,"123":0.22204,"124":0.1098,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 107 112 113 114 117 118 119 125 126 127 3.5 3.6"},D:{"22":0.00244,"26":0.02196,"34":0.0488,"38":0.07564,"39":0.00244,"43":0.00244,"47":0.03416,"48":0.00244,"49":0.05612,"50":0.00244,"53":0.00732,"55":0.00244,"56":0.00244,"58":0.00244,"59":0.00488,"60":0.00244,"65":0.00244,"66":0.00244,"67":0.00488,"68":0.00732,"69":0.00244,"70":0.00244,"71":0.00244,"72":0.00488,"73":0.01952,"74":0.00244,"75":0.00488,"76":0.00244,"77":0.00244,"78":0.00488,"79":0.30988,"80":0.0122,"81":0.00488,"83":0.05612,"84":0.00488,"85":0.02928,"86":0.00732,"87":0.23424,"88":0.00976,"89":0.01464,"90":0.00732,"91":0.00732,"92":0.00732,"93":0.00244,"94":0.03416,"95":0.00732,"96":0.02196,"97":0.00732,"98":0.00976,"99":0.03172,"100":0.00976,"101":0.00732,"102":0.00976,"103":0.02196,"104":0.00976,"105":0.01708,"106":0.0366,"107":0.0366,"108":0.04636,"109":3.21592,"110":0.02684,"111":0.02928,"112":0.0366,"113":0.00732,"114":0.01952,"115":0.00976,"116":0.04392,"117":0.01952,"118":0.0244,"119":0.06832,"120":0.1464,"121":0.56364,"122":8.71324,"123":2.88164,"124":0.00244,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 41 42 44 45 46 51 52 54 57 61 62 63 64 125 126"},F:{"28":0.01952,"31":0.00488,"32":0.00976,"36":0.00732,"40":0.02684,"46":0.12688,"79":0.00244,"81":0.00244,"85":0.00244,"86":0.00244,"91":0.00244,"93":0.00244,"94":0.00244,"95":0.06344,"102":0.00244,"105":0.00244,"106":0.00976,"107":1.17608,"108":0.24888,"109":0.00488,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 87 88 89 90 92 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00244,"13":0.00244,"14":0.00244,"15":0.00244,"16":0.00244,"17":0.00244,"18":0.00732,"84":0.00244,"92":0.00732,"100":0.00244,"103":0.00244,"106":0.00244,"107":0.00488,"108":0.00488,"109":0.08296,"110":0.00488,"111":0.00488,"112":0.00244,"113":0.00244,"114":0.00488,"115":0.00244,"116":0.00244,"117":0.00488,"118":0.00488,"119":0.00732,"120":0.01952,"121":0.05368,"122":1.63724,"123":0.18788,_:"79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105"},E:{"13":0.00244,"14":0.0122,"15":0.00244,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 17.5","5.1":0.00244,"12.1":0.00244,"13.1":0.01464,"14.1":0.01952,"15.1":0.00244,"15.2-15.3":0.00244,"15.4":0.00488,"15.5":0.00976,"15.6":0.0732,"16.0":0.00976,"16.1":0.01708,"16.2":0.01464,"16.3":0.02928,"16.4":0.0122,"16.5":0.01952,"16.6":0.08296,"17.0":0.01464,"17.1":0.03172,"17.2":0.061,"17.3":0.183,"17.4":0.04148},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00237,"5.0-5.1":0.00118,"6.0-6.1":0.0071,"7.0-7.1":0.00828,"8.1-8.4":0.00237,"9.0-9.2":0.00473,"9.3":0.02957,"10.0-10.2":0.00473,"10.3":0.04969,"11.0-11.2":0.03549,"11.3-11.4":0.01183,"12.0-12.1":0.01065,"12.2-12.5":0.20466,"13.0-13.1":0.00355,"13.2":0.03549,"13.3":0.01065,"13.4-13.7":0.04022,"14.0-14.4":0.07689,"14.5-14.8":0.12066,"15.0-15.1":0.05205,"15.2-15.3":0.06152,"15.4":0.07216,"15.5":0.09227,"15.6-15.8":0.77249,"16.0":0.18809,"16.1":0.3892,"16.2":0.18809,"16.3":0.33478,"16.4":0.07098,"16.5":0.15024,"16.6-16.7":1.13803,"17.0":0.14787,"17.1":0.29575,"17.2":0.47674,"17.3":5.8676,"17.4":0.86121,"17.5":0},P:{"4":0.38857,"20":0.0409,"21":0.12271,"22":0.08181,"23":1.64633,"24":0.95099,"5.0-5.4":0.0409,"6.2-6.4":0.02045,"7.2-7.4":0.11248,_:"8.2 10.1","9.2":0.02045,"11.1-11.2":0.02045,"12.0":0.01023,"13.0":0.0409,"14.0":0.01023,"15.0":0.01023,"16.0":0.02045,"17.0":0.07158,"18.0":0.02045,"19.0":0.0409},I:{"0":0.02258,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.90708,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00248,"9":0.00248,"11":0.14876,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":58.83082},R:{_:"0"},M:{"0":0.09827},Q:{_:"14.9"},O:{"0":0.11339},H:{"0":0}}; +module.exports={C:{"46":0.00216,"47":0.00216,"48":0.00216,"51":0.00216,"52":0.00431,"71":0.00216,"72":0.00216,"78":0.00431,"88":0.00647,"102":0.00216,"103":0.00216,"105":0.00216,"106":0.00216,"107":0.00216,"108":0.00216,"110":0.00216,"111":0.00216,"115":0.11211,"121":0.00216,"122":0.00216,"123":0.00647,"124":0.18326,"125":0.09918,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 49 50 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 109 112 113 114 116 117 118 119 120 126 127 128 3.5 3.6"},D:{"22":0.00431,"26":0.02587,"34":0.06252,"38":0.10996,"39":0.00431,"41":0.00216,"43":0.00216,"47":0.04096,"49":0.06684,"50":0.00431,"53":0.01078,"55":0.00216,"56":0.00431,"58":0.00216,"60":0.00647,"61":0.00216,"63":0.00216,"65":0.00216,"66":0.00216,"67":0.00431,"68":0.00431,"69":0.00431,"70":0.00216,"71":0.00431,"72":0.00216,"73":0.01509,"74":0.00216,"75":0.00431,"77":0.00216,"78":0.00431,"79":0.33418,"80":0.01078,"81":0.00647,"83":0.04096,"84":0.00216,"85":0.0194,"86":0.00647,"87":0.23716,"88":0.01078,"89":0.00216,"90":0.00431,"91":0.00647,"92":0.00431,"93":0.00216,"94":0.06252,"95":0.00647,"96":0.00647,"97":0.00431,"98":0.00862,"99":0.0345,"100":0.01078,"101":0.00647,"102":0.00647,"103":0.01725,"104":0.00647,"105":0.01078,"106":0.02587,"107":0.0194,"108":0.02587,"109":2.79633,"110":0.01725,"111":0.01725,"112":0.02587,"113":0.00862,"114":0.01509,"115":0.00647,"116":0.07546,"117":0.01725,"118":0.0194,"119":0.04743,"120":0.09702,"121":0.0884,"122":0.29322,"123":7.52228,"124":2.66913,"125":0.01725,"126":0.00216,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 27 28 29 30 31 32 33 35 36 37 40 42 44 45 46 48 51 52 54 57 59 62 64 76 127"},F:{"25":0.00216,"28":0.0194,"31":0.00647,"32":0.01078,"36":0.00862,"40":0.03665,"46":0.12289,"79":0.00431,"82":0.00216,"85":0.00431,"86":0.00862,"95":0.05606,"106":0.00431,"107":0.70501,"108":0.42689,"109":0.1272,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 26 27 29 30 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00216,"13":0.00216,"14":0.00216,"15":0.00216,"16":0.00216,"17":0.00431,"18":0.00862,"92":0.00647,"100":0.00216,"106":0.00216,"107":0.00216,"108":0.00216,"109":0.08193,"110":0.00216,"111":0.00431,"112":0.00216,"113":0.00216,"114":0.00431,"115":0.00216,"116":0.00216,"117":0.00431,"118":0.00216,"119":0.00647,"120":0.01294,"121":0.01294,"122":0.0733,"123":1.17071,"124":0.47863,_:"79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00216,"14":0.01078,"15":0.00216,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00216,"13.1":0.01078,"14.1":0.0194,"15.1":0.00216,"15.2-15.3":0.00216,"15.4":0.00431,"15.5":0.00647,"15.6":0.06037,"16.0":0.00862,"16.1":0.01294,"16.2":0.01078,"16.3":0.02587,"16.4":0.00647,"16.5":0.01294,"16.6":0.06684,"17.0":0.01078,"17.1":0.0194,"17.2":0.03234,"17.3":0.06684,"17.4":0.16601,"17.5":0.00216},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00228,"5.0-5.1":0.00228,"6.0-6.1":0.0057,"7.0-7.1":0.00912,"8.1-8.4":0.00228,"9.0-9.2":0.0057,"9.3":0.02849,"10.0-10.2":0.0057,"10.3":0.04559,"11.0-11.2":0.03875,"11.3-11.4":0.0114,"12.0-12.1":0.00798,"12.2-12.5":0.18578,"13.0-13.1":0.00342,"13.2":0.03761,"13.3":0.00912,"13.4-13.7":0.03533,"14.0-14.4":0.06952,"14.5-14.8":0.106,"15.0-15.1":0.04901,"15.2-15.3":0.05585,"15.4":0.06383,"15.5":0.08092,"15.6-15.8":0.70663,"16.0":0.16526,"16.1":0.3442,"16.2":0.16526,"16.3":0.29177,"16.4":0.06041,"16.5":0.12651,"16.6-16.7":0.99955,"17.0":0.11967,"17.1":0.22111,"17.2":0.29405,"17.3":2.14498,"17.4":4.84159,"17.5":0.04445},P:{"4":0.43803,"20":0.04075,"21":0.12224,"22":0.07131,"23":0.5399,"24":2.05772,"5.0-5.4":0.04075,"6.2-6.4":0.03056,"7.2-7.4":0.09168,_:"8.2 10.1","9.2":0.02037,"11.1-11.2":0.01019,"12.0":0.01019,"13.0":0.04075,"14.0":0.01019,"15.0":0.01019,"16.0":0.02037,"17.0":0.07131,"18.0":0.02037,"19.0":0.04075},I:{"0":0.03125,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.00216,"11":0.14661,_:"6 7 9 10 5.5"},K:{"0":0.86284,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.10197},H:{"0":0},L:{"0":61.42446},R:{_:"0"},M:{"0":0.09413}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js index 8e9ae059c928d7..e257cd23196fc8 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TT.js @@ -1 +1 @@ -module.exports={C:{"4":0.00389,"48":0.00389,"52":0.00389,"57":0.00389,"78":0.00777,"114":0.00777,"115":0.0894,"119":0.03498,"120":0.00389,"121":0.01166,"122":0.01166,"123":0.74242,"124":0.34206,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 116 117 118 125 126 127 3.5 3.6"},D:{"38":0.00389,"47":0.00389,"49":0.00777,"63":0.00389,"65":0.00389,"67":0.00389,"68":0.00389,"69":0.00389,"70":0.00389,"74":0.00777,"75":0.00777,"76":0.01166,"77":0.00389,"79":0.05053,"81":0.02332,"83":0.00777,"84":0.00389,"85":0.00389,"86":0.00389,"87":0.0311,"88":0.00777,"89":0.00777,"91":0.01555,"93":0.03887,"94":0.00777,"95":0.01944,"96":0.00389,"97":0.00389,"98":0.01555,"99":0.00389,"100":0.00777,"101":0.00777,"102":0.00777,"103":0.34206,"104":0.00389,"105":0.00389,"106":0.00777,"107":0.01555,"108":0.03498,"109":1.37989,"110":0.01944,"111":0.03498,"112":0.01166,"113":0.01166,"114":0.02721,"115":0.01166,"116":0.13993,"117":0.0311,"118":0.02721,"119":0.07385,"120":0.21767,"121":1.27494,"122":15.61797,"123":5.022,"124":0.01166,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 55 56 57 58 59 60 61 62 64 66 71 72 73 78 80 90 92 125 126"},F:{"28":0.03887,"91":0.00389,"95":0.00777,"106":0.08551,"107":1.13112,"108":0.10884,"109":0.00389,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.00389,"15":0.00777,"18":0.00389,"84":0.01944,"85":0.00389,"90":0.00777,"92":0.00777,"100":0.00389,"109":0.03887,"116":0.01166,"117":0.00777,"118":0.00389,"119":0.01944,"120":0.03887,"121":0.20212,"122":5.42625,"123":0.39647,_:"12 14 16 17 79 80 81 83 86 87 88 89 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 114 115"},E:{"14":0.01166,"15":0.00777,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 17.5","5.1":0.01166,"13.1":0.05442,"14.1":0.03498,"15.1":0.00389,"15.2-15.3":0.00777,"15.4":0.00777,"15.5":0.0311,"15.6":0.15937,"16.0":0.02332,"16.1":0.0311,"16.2":0.05053,"16.3":0.0311,"16.4":0.01166,"16.5":0.06608,"16.6":0.29541,"17.0":0.02721,"17.1":0.14771,"17.2":0.14382,"17.3":0.91733,"17.4":0.33428},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00351,"5.0-5.1":0.00176,"6.0-6.1":0.01054,"7.0-7.1":0.01229,"8.1-8.4":0.00351,"9.0-9.2":0.00702,"9.3":0.0439,"10.0-10.2":0.00702,"10.3":0.07375,"11.0-11.2":0.05268,"11.3-11.4":0.01756,"12.0-12.1":0.0158,"12.2-12.5":0.30378,"13.0-13.1":0.00527,"13.2":0.05268,"13.3":0.0158,"13.4-13.7":0.0597,"14.0-14.4":0.11414,"14.5-14.8":0.17911,"15.0-15.1":0.07726,"15.2-15.3":0.09131,"15.4":0.10711,"15.5":0.13697,"15.6-15.8":1.14665,"16.0":0.2792,"16.1":0.57772,"16.2":0.2792,"16.3":0.49694,"16.4":0.10536,"16.5":0.22301,"16.6-16.7":1.68925,"17.0":0.2195,"17.1":0.43899,"17.2":0.70766,"17.3":8.70965,"17.4":1.27835,"17.5":0},P:{"4":0.3282,"20":0.02188,"21":0.08752,"22":0.07658,"23":1.71757,"24":2.69123,"5.0-5.4":0.01094,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.14222,"11.1-11.2":0.01094,"13.0":0.03282,"16.0":0.02188,"17.0":0.02188,"18.0":0.01094,"19.0":0.03282},I:{"0":0.01826,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.18947,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00777,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":40.06854},R:{_:"0"},M:{"0":0.60509},Q:{_:"14.9"},O:{"0":0.03667},H:{"0":0}}; +module.exports={C:{"4":0.00773,"31":0.00387,"48":0.00387,"52":0.00387,"78":0.00387,"87":0.00387,"88":0.00387,"99":0.00387,"102":0.00387,"114":0.0116,"115":0.10438,"121":0.00387,"122":0.01933,"123":0.01546,"124":0.74227,"125":0.26675,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 89 90 91 92 93 94 95 96 97 98 100 101 103 104 105 106 107 108 109 110 111 112 113 116 117 118 119 120 126 127 128 3.5 3.6"},D:{"38":0.00387,"47":0.00387,"49":0.00773,"53":0.00387,"56":0.00387,"65":0.00387,"67":0.00387,"69":0.00387,"74":0.00387,"76":0.0116,"77":0.00387,"79":0.04253,"80":0.00773,"81":0.01546,"83":0.00387,"84":0.0116,"85":0.00387,"86":0.00387,"87":0.02706,"88":0.00387,"89":0.00387,"91":0.01546,"92":0.00387,"93":0.04639,"94":0.00773,"95":0.01546,"96":0.00773,"97":0.00387,"98":0.0116,"99":0.00773,"100":0.01546,"101":0.00387,"102":0.00387,"103":0.3634,"106":0.00773,"107":0.0116,"108":0.00387,"109":1.11341,"110":0.00773,"111":0.04253,"112":0.0116,"113":0.0116,"114":0.03866,"115":0.0232,"116":0.09665,"117":0.0232,"118":0.05799,"119":0.06186,"120":0.16624,"121":0.24742,"122":1.68944,"123":15.09673,"124":4.73972,"125":0.03866,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 54 55 57 58 59 60 61 62 63 64 66 68 70 71 72 73 75 78 90 104 105 126 127"},F:{"28":0.0116,"77":0.00773,"95":0.00773,"106":0.01546,"107":0.80413,"108":0.20103,"109":0.08119,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.02706,"15":0.03479,"18":0.00387,"92":0.0116,"109":0.06959,"110":0.01546,"113":0.00387,"114":0.00773,"116":0.00387,"117":0.00387,"118":0.00387,"119":0.01933,"120":0.0116,"121":0.01933,"122":0.38273,"123":4.48843,"124":1.89821,_:"12 14 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112 115"},E:{"13":0.00387,"14":0.00773,"15":0.01546,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 15.1 15.2-15.3","5.1":0.00387,"13.1":0.05799,"14.1":0.03093,"15.4":0.00773,"15.5":0.0232,"15.6":0.21263,"16.0":0.03479,"16.1":0.0232,"16.2":0.03093,"16.3":0.04639,"16.4":0.0116,"16.5":0.03479,"16.6":0.84665,"17.0":0.10052,"17.1":0.09665,"17.2":0.10052,"17.3":0.28608,"17.4":0.64176,"17.5":0.00387},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00376,"5.0-5.1":0.00376,"6.0-6.1":0.0094,"7.0-7.1":0.01504,"8.1-8.4":0.00376,"9.0-9.2":0.0094,"9.3":0.047,"10.0-10.2":0.0094,"10.3":0.0752,"11.0-11.2":0.06392,"11.3-11.4":0.0188,"12.0-12.1":0.01316,"12.2-12.5":0.30645,"13.0-13.1":0.00564,"13.2":0.06204,"13.3":0.01504,"13.4-13.7":0.05828,"14.0-14.4":0.11468,"14.5-14.8":0.17485,"15.0-15.1":0.08084,"15.2-15.3":0.09212,"15.4":0.10528,"15.5":0.13349,"15.6-15.8":1.16564,"16.0":0.27261,"16.1":0.56778,"16.2":0.27261,"16.3":0.4813,"16.4":0.09964,"16.5":0.20869,"16.6-16.7":1.64882,"17.0":0.19741,"17.1":0.36473,"17.2":0.48506,"17.3":3.53829,"17.4":7.98654,"17.5":0.07332},P:{"4":0.3295,"20":0.01098,"21":0.09885,"22":0.09885,"23":0.1977,"24":4.07479,"5.0-5.4":0.01098,"6.2-6.4":0.01098,"7.2-7.4":0.14278,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01098,"13.0":0.01098,"14.0":0.01098,"16.0":0.01098,"17.0":0.03295,"18.0":0.01098,"19.0":0.02197},I:{"0":0.01833,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},A:{"11":0.00773,_:"6 7 8 9 10 5.5"},K:{"0":0.21469,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0368},H:{"0":0},L:{"0":38.62623},R:{_:"0"},M:{"0":0.36804}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js index 2f28becc3b27fe..165706e2fbd977 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TV.js @@ -1 +1 @@ -module.exports={C:{_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 3.5 3.6"},D:{"109":1.31774,"118":1.05651,"121":0.78948,"122":26.1225,"123":2.64128,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 119 120 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"106":1.84599,"121":7.12274,"122":13.98425,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 107 108 109 110 111 112 113 114 115 116 117 118 119 120 123"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.3 17.4 17.5","14.1":0.78948},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00059,"5.0-5.1":0.00029,"6.0-6.1":0.00176,"7.0-7.1":0.00206,"8.1-8.4":0.00059,"9.0-9.2":0.00118,"9.3":0.00735,"10.0-10.2":0.00118,"10.3":0.01235,"11.0-11.2":0.00882,"11.3-11.4":0.00294,"12.0-12.1":0.00265,"12.2-12.5":0.05087,"13.0-13.1":0.00088,"13.2":0.00882,"13.3":0.00265,"13.4-13.7":0.01,"14.0-14.4":0.01911,"14.5-14.8":0.03,"15.0-15.1":0.01294,"15.2-15.3":0.01529,"15.4":0.01794,"15.5":0.02294,"15.6-15.8":0.19203,"16.0":0.04676,"16.1":0.09675,"16.2":0.04676,"16.3":0.08322,"16.4":0.01764,"16.5":0.03735,"16.6-16.7":0.28289,"17.0":0.03676,"17.1":0.07352,"17.2":0.11851,"17.3":1.45858,"17.4":0.21408,"17.5":0},P:{"23":0.26848,_:"4 20 21 22 24 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":1.59592,"3":0,"4":0.00016,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00016,"4.2-4.3":0.00096,"4.4":0,"4.4.3-4.4.4":0.00385},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":39.51678},R:{_:"0"},M:{_:"0"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"124":2.65506,"125":5.31012,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"100":0.88502,"109":4.4251,"118":0.43928,"123":26.5506,"124":6.63442,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 119 120 121 122 125 126 127"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.43928,"122":0.88502,"123":6.19514,"124":6.63442,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.1 15.2-15.3 15.4 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 16.6 17.0 17.1 17.2 17.5","17.3":0.43928,"17.4":0.43928},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00109,"5.0-5.1":0.00109,"6.0-6.1":0.00272,"7.0-7.1":0.00435,"8.1-8.4":0.00109,"9.0-9.2":0.00272,"9.3":0.01361,"10.0-10.2":0.00272,"10.3":0.02177,"11.0-11.2":0.01851,"11.3-11.4":0.00544,"12.0-12.1":0.00381,"12.2-12.5":0.08872,"13.0-13.1":0.00163,"13.2":0.01796,"13.3":0.00435,"13.4-13.7":0.01687,"14.0-14.4":0.0332,"14.5-14.8":0.05062,"15.0-15.1":0.0234,"15.2-15.3":0.02667,"15.4":0.03048,"15.5":0.03865,"15.6-15.8":0.33746,"16.0":0.07892,"16.1":0.16438,"16.2":0.07892,"16.3":0.13934,"16.4":0.02885,"16.5":0.06042,"16.6-16.7":0.47735,"17.0":0.05715,"17.1":0.10559,"17.2":0.14043,"17.3":1.02437,"17.4":2.31218,"17.5":0.02123},P:{"23":0.45131,"24":3.1797,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":28.97106},R:{_:"0"},M:{_:"0"}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js index 00a7a93ee38ea7..c49b8f4e8143f1 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TW.js @@ -1 +1 @@ -module.exports={C:{"34":0.02604,"52":0.00434,"78":0.00434,"88":0.01302,"102":0.00434,"103":0.00434,"115":0.16058,"119":0.00434,"120":0.00434,"121":0.00434,"122":0.01736,"123":0.42966,"124":0.1953,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 113 114 116 117 118 125 126 127 3.5 3.6"},D:{"11":0.00868,"26":0.00434,"30":0.00868,"33":0.01302,"34":0.0217,"38":0.07378,"45":0.00434,"49":0.0434,"53":0.04774,"55":0.00434,"56":0.01736,"58":0.00434,"61":0.0434,"63":0.00434,"64":0.00434,"65":0.00868,"66":0.00868,"67":0.00868,"68":0.00434,"69":0.00434,"70":0.00434,"71":0.00434,"72":0.00434,"73":0.0217,"74":0.0217,"75":0.00434,"76":0.00868,"77":0.00434,"78":0.00434,"79":0.42966,"80":0.00868,"81":0.0217,"83":0.0217,"84":0.00434,"85":0.00434,"86":0.01302,"87":0.32116,"88":0.00434,"89":0.01302,"90":0.00868,"91":0.00868,"92":0.00434,"93":0.00434,"94":0.0434,"95":0.01302,"96":0.01302,"97":0.0217,"98":0.01302,"99":0.01736,"100":0.00868,"101":0.01736,"102":0.03038,"103":0.07378,"104":0.01736,"105":0.01302,"106":0.01736,"107":0.01736,"108":0.0434,"109":3.3201,"110":0.01736,"111":0.02604,"112":0.01736,"113":0.01302,"114":0.03038,"115":0.01736,"116":0.14322,"117":0.02604,"118":0.04774,"119":0.13888,"120":0.27776,"121":1.30634,"122":17.5119,"123":5.24706,"124":0.01736,"125":0.00434,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 31 32 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 54 57 59 60 62 126"},F:{"28":0.01736,"36":0.01736,"40":0.00434,"46":0.09982,"95":0.01302,"106":0.00434,"107":0.06944,"108":0.03038,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00434,"17":0.00434,"18":0.00868,"84":0.00434,"92":0.00434,"106":0.00434,"107":0.00434,"108":0.00434,"109":0.09982,"110":0.00434,"111":0.00434,"112":0.00434,"113":0.00868,"114":0.00868,"115":0.00868,"116":0.00434,"117":0.00434,"118":0.00868,"119":0.01302,"120":0.03472,"121":0.11718,"122":3.57616,"123":0.29946,_:"12 13 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105"},E:{"12":0.00434,"13":0.03472,"14":0.11718,"15":0.01736,_:"0 4 5 6 7 8 9 10 11 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00434,"12.1":0.0217,"13.1":0.0868,"14.1":0.30814,"15.1":0.03472,"15.2-15.3":0.03038,"15.4":0.1085,"15.5":0.17794,"15.6":0.65968,"16.0":0.03038,"16.1":0.13888,"16.2":0.09982,"16.3":0.2821,"16.4":0.06076,"16.5":0.16926,"16.6":0.92008,"17.0":0.05208,"17.1":0.26908,"17.2":0.46004,"17.3":2.39568,"17.4":0.217},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00537,"5.0-5.1":0.00269,"6.0-6.1":0.01612,"7.0-7.1":0.01881,"8.1-8.4":0.00537,"9.0-9.2":0.01075,"9.3":0.06719,"10.0-10.2":0.01075,"10.3":0.11287,"11.0-11.2":0.08062,"11.3-11.4":0.02687,"12.0-12.1":0.02419,"12.2-12.5":0.46493,"13.0-13.1":0.00806,"13.2":0.08062,"13.3":0.02419,"13.4-13.7":0.09137,"14.0-14.4":0.17468,"14.5-14.8":0.27412,"15.0-15.1":0.11825,"15.2-15.3":0.13975,"15.4":0.16394,"15.5":0.20962,"15.6-15.8":1.75491,"16.0":0.42731,"16.1":0.88417,"16.2":0.42731,"16.3":0.76055,"16.4":0.16125,"16.5":0.34131,"16.6-16.7":2.58534,"17.0":0.33593,"17.1":0.67186,"17.2":1.08305,"17.3":13.3298,"17.4":1.95647,"17.5":0},P:{"4":0.63549,"20":0.04539,"21":0.09078,"22":0.11348,"23":1.42986,"24":1.54334,"5.0-5.4":0.11348,"6.2-6.4":0.03404,_:"7.2-7.4 8.2 10.1","9.2":0.01135,"11.1-11.2":0.03404,"12.0":0.01135,"13.0":0.03404,"14.0":0.0227,"15.0":0.01135,"16.0":0.0227,"17.0":0.04539,"18.0":0.0227,"19.0":0.04539},I:{"0":0.01691,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.16411,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.10416,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":26.04366},R:{_:"0"},M:{"0":0.10752},Q:{"14.9":0.00566},O:{"0":0.08489},H:{"0":0}}; +module.exports={C:{"34":0.03084,"52":0.00881,"78":0.00441,"88":0.01322,"102":0.00441,"103":0.00441,"115":0.16743,"119":0.00441,"121":0.00441,"122":0.00881,"123":0.01762,"124":0.4406,"125":0.22911,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 126 127 128 3.5 3.6"},D:{"11":0.00881,"26":0.00441,"30":0.00881,"33":0.01322,"34":0.02203,"38":0.07931,"45":0.00441,"49":0.03525,"53":0.05287,"55":0.00441,"56":0.01762,"61":0.04847,"63":0.00441,"64":0.00441,"65":0.00881,"66":0.00881,"67":0.00881,"68":0.00441,"69":0.00441,"70":0.00441,"71":0.00881,"72":0.00441,"73":0.02644,"74":0.02203,"75":0.00441,"76":0.00881,"77":0.01322,"78":0.00441,"79":0.45822,"80":0.00881,"81":0.02203,"83":0.02203,"84":0.00441,"85":0.00441,"86":0.01322,"87":0.32164,"88":0.00881,"89":0.01322,"90":0.00881,"91":0.00441,"92":0.00441,"93":0.00441,"94":0.0749,"95":0.01322,"96":0.01322,"97":0.02203,"98":0.00881,"99":0.01762,"100":0.00881,"101":0.01762,"102":0.02644,"103":0.0705,"104":0.02203,"105":0.01322,"106":0.01762,"107":0.01322,"108":0.04406,"109":3.41465,"110":0.01322,"111":0.01762,"112":0.01322,"113":0.00881,"114":0.02644,"115":0.01762,"116":0.14099,"117":0.02203,"118":0.03525,"119":0.10574,"120":0.1454,"121":0.19827,"122":0.79749,"123":17.05122,"124":6.93945,"125":0.02644,"126":0.00441,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 31 32 35 36 37 39 40 41 42 43 44 46 47 48 50 51 52 54 57 58 59 60 62 127"},F:{"28":0.01322,"36":0.01762,"40":0.00441,"46":0.10574,"95":0.01762,"107":0.01762,"108":0.08371,"109":0.02203,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00441,"17":0.00441,"18":0.00881,"84":0.00441,"92":0.00441,"98":0.00441,"106":0.00441,"107":0.00441,"108":0.00441,"109":0.09253,"110":0.00441,"111":0.00441,"112":0.00441,"113":0.00881,"114":0.00441,"115":0.00881,"116":0.00441,"117":0.00441,"118":0.00881,"119":0.01322,"120":0.02203,"121":0.02203,"122":0.14099,"123":2.58192,"124":1.2513,_:"12 13 15 16 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 99 100 101 102 103 104 105"},E:{"13":0.03525,"14":0.11015,"15":0.01762,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00441,"12.1":0.02203,"13.1":0.08812,"14.1":0.2952,"15.1":0.03525,"15.2-15.3":0.02644,"15.4":0.10574,"15.5":0.17183,"15.6":0.62565,"16.0":0.03525,"16.1":0.13659,"16.2":0.09253,"16.3":0.25995,"16.4":0.05728,"16.5":0.15862,"16.6":0.86358,"17.0":0.04406,"17.1":0.20268,"17.2":0.26877,"17.3":1.06185,"17.4":1.96948,"17.5":0.00441},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00521,"5.0-5.1":0.00521,"6.0-6.1":0.01303,"7.0-7.1":0.02086,"8.1-8.4":0.00521,"9.0-9.2":0.01303,"9.3":0.06517,"10.0-10.2":0.01303,"10.3":0.10428,"11.0-11.2":0.08863,"11.3-11.4":0.02607,"12.0-12.1":0.01825,"12.2-12.5":0.42492,"13.0-13.1":0.00782,"13.2":0.08603,"13.3":0.02086,"13.4-13.7":0.08081,"14.0-14.4":0.15902,"14.5-14.8":0.24244,"15.0-15.1":0.1121,"15.2-15.3":0.12774,"15.4":0.14599,"15.5":0.18509,"15.6-15.8":1.61628,"16.0":0.378,"16.1":0.78728,"16.2":0.378,"16.3":0.66737,"16.4":0.13817,"16.5":0.28937,"16.6-16.7":2.28625,"17.0":0.27372,"17.1":0.50574,"17.2":0.67258,"17.3":4.90618,"17.4":11.0741,"17.5":0.10167},P:{"4":0.68693,"20":0.0458,"21":0.08014,"22":0.10304,"23":0.38926,"24":2.5302,"5.0-5.4":0.12594,"6.2-6.4":0.0458,_:"7.2-7.4 8.2 10.1","9.2":0.01145,"11.1-11.2":0.03435,"12.0":0.01145,"13.0":0.03435,"14.0":0.01145,"15.0":0.01145,"16.0":0.0229,"17.0":0.0458,"18.0":0.0229,"19.0":0.03435},I:{"0":0.01671,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.00716,"11":0.1074,_:"6 7 9 10 5.5"},K:{"0":0.16779,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00559},O:{"0":0.08949},H:{"0":0},L:{"0":25.73514},R:{_:"0"},M:{"0":0.12305}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TZ.js index ef870db5d132be..ad8cf5ff6742ed 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/TZ.js @@ -1 +1 @@ -module.exports={C:{"26":0.00162,"34":0.00162,"35":0.00162,"41":0.00162,"42":0.00162,"48":0.00162,"49":0.00162,"52":0.00162,"53":0.00323,"64":0.00162,"65":0.00162,"68":0.00162,"72":0.00323,"78":0.00323,"88":0.00485,"91":0.00969,"100":0.00162,"102":0.00162,"107":0.00162,"112":0.00323,"113":0.00162,"114":0.00162,"115":0.14051,"116":0.00323,"117":0.00323,"118":0.00323,"119":0.00162,"120":0.00323,"121":0.01292,"122":0.0323,"123":0.52003,"124":0.2584,"125":0.01131,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 36 37 38 39 40 43 44 45 46 47 50 51 54 55 56 57 58 59 60 61 62 63 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 101 103 104 105 106 108 109 110 111 126 127 3.5 3.6"},D:{"11":0.00162,"33":0.00162,"37":0.00162,"38":0.00162,"40":0.00162,"41":0.00162,"43":0.00162,"46":0.00162,"49":0.00162,"50":0.00162,"55":0.00323,"56":0.00162,"58":0.00162,"59":0.00162,"60":0.00162,"62":0.00323,"63":0.00485,"64":0.00162,"68":0.00969,"69":0.00323,"70":0.00485,"71":0.00162,"72":0.00323,"73":0.00162,"74":0.00485,"75":0.01131,"76":0.00162,"77":0.00646,"78":0.00162,"79":0.00969,"80":0.00646,"81":0.00485,"83":0.01938,"84":0.00162,"85":0.00162,"86":0.00162,"87":0.01292,"88":0.01292,"89":0.00162,"90":0.021,"91":0.00323,"92":0.00162,"93":0.00323,"94":0.10336,"95":0.00323,"96":0.00646,"97":0.00162,"98":0.00162,"99":0.19703,"100":0.00162,"101":0.00162,"102":0.01454,"103":0.0323,"104":0.00485,"105":0.00646,"106":0.00808,"107":0.01454,"108":0.01131,"109":0.7962,"110":0.00969,"111":0.00808,"112":0.02907,"113":0.02584,"114":0.02584,"115":0.00646,"116":0.04684,"117":0.01777,"118":0.01777,"119":0.03876,"120":0.13566,"121":0.37468,"122":4.66897,"123":1.22094,"124":0.00323,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 34 35 36 39 42 44 45 47 48 51 52 53 54 57 61 65 66 67 125 126"},F:{"36":0.00162,"37":0.00323,"40":0.00162,"52":0.00162,"79":0.00485,"80":0.00162,"81":0.00323,"86":0.00162,"89":0.00162,"94":0.06137,"95":0.0323,"96":0.00162,"102":0.00162,"105":0.00162,"106":0.00485,"107":0.26002,"108":0.15181,"109":0.00162,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 38 39 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 83 84 85 87 88 90 91 92 93 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01131,"13":0.00969,"14":0.00323,"15":0.01131,"16":0.00969,"17":0.00323,"18":0.04845,"84":0.00646,"89":0.01292,"90":0.00969,"92":0.04361,"100":0.01292,"103":0.00162,"107":0.00162,"108":0.00323,"109":0.09206,"110":0.00162,"111":0.00162,"112":0.00323,"113":0.00162,"114":0.00323,"115":0.00646,"116":0.00646,"117":0.00485,"118":0.00969,"119":0.01292,"120":0.03392,"121":0.07591,"122":1.23709,"123":0.08398,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 104 105 106"},E:{"11":0.00162,"13":0.00162,"14":0.00162,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 16.0 17.5","11.1":0.00323,"12.1":0.00646,"13.1":0.00969,"14.1":0.01454,"15.1":0.00162,"15.2-15.3":0.00485,"15.4":0.00162,"15.5":0.00485,"15.6":0.01938,"16.1":0.00646,"16.2":0.00323,"16.3":0.00969,"16.4":0.00808,"16.5":0.00969,"16.6":0.05007,"17.0":0.01131,"17.1":0.01292,"17.2":0.03715,"17.3":0.06299,"17.4":0.02746},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00085,"5.0-5.1":0.00042,"6.0-6.1":0.00254,"7.0-7.1":0.00296,"8.1-8.4":0.00085,"9.0-9.2":0.00169,"9.3":0.01057,"10.0-10.2":0.00169,"10.3":0.01775,"11.0-11.2":0.01268,"11.3-11.4":0.00423,"12.0-12.1":0.0038,"12.2-12.5":0.07312,"13.0-13.1":0.00127,"13.2":0.01268,"13.3":0.0038,"13.4-13.7":0.01437,"14.0-14.4":0.02747,"14.5-14.8":0.04311,"15.0-15.1":0.0186,"15.2-15.3":0.02198,"15.4":0.02578,"15.5":0.03297,"15.6-15.8":0.27599,"16.0":0.0672,"16.1":0.13905,"16.2":0.0672,"16.3":0.11961,"16.4":0.02536,"16.5":0.05368,"16.6-16.7":0.40659,"17.0":0.05283,"17.1":0.10566,"17.2":0.17033,"17.3":2.09637,"17.4":0.30769,"17.5":0},P:{"4":0.19282,"20":0.0203,"21":0.07104,"22":0.08119,"23":0.38563,"24":0.274,"5.0-5.4":0.03044,"6.2-6.4":0.01015,"7.2-7.4":0.06089,_:"8.2 10.1 15.0","9.2":0.04059,"11.1-11.2":0.04059,"12.0":0.01015,"13.0":0.01015,"14.0":0.01015,"16.0":0.04059,"17.0":0.0203,"18.0":0.01015,"19.0":0.09133},I:{"0":0.05846,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00014},K:{"0":7.43226,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.02423,_:"6 7 8 9 10 5.5"},S:{"2.5":1.50109,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":60.63143},R:{_:"0"},M:{"0":0.08386},Q:{_:"14.9"},O:{"0":0.3019},H:{"0":12.3}}; +module.exports={C:{"34":0.00144,"37":0.00144,"38":0.00144,"43":0.00144,"52":0.00288,"56":0.00144,"57":0.00144,"65":0.00144,"66":0.00144,"72":0.00431,"78":0.00144,"88":0.00144,"91":0.01007,"95":0.00575,"100":0.00144,"102":0.02301,"108":0.00288,"110":0.00144,"111":0.00144,"112":0.00144,"113":0.00575,"114":0.00144,"115":0.13661,"116":0.00144,"118":0.00288,"119":0.00144,"120":0.00144,"121":0.00288,"122":0.00575,"123":0.02445,"124":0.49611,"125":0.25884,"126":0.01294,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 39 40 41 42 44 45 46 47 48 49 50 51 53 54 55 58 59 60 61 62 63 64 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 96 97 98 99 101 103 104 105 106 107 109 117 127 128 3.5 3.6"},D:{"11":0.00144,"32":0.00144,"37":0.00431,"38":0.00575,"39":0.00288,"40":0.00144,"41":0.00144,"43":0.00144,"46":0.00144,"49":0.00144,"51":0.00288,"55":0.00431,"57":0.00144,"58":0.00144,"59":0.00144,"60":0.00144,"62":0.00288,"63":0.00144,"64":0.00144,"65":0.00431,"67":0.00144,"68":0.00575,"69":0.00719,"70":0.00575,"71":0.00144,"72":0.00144,"73":0.00144,"74":0.00288,"75":0.00144,"76":0.00144,"77":0.00431,"78":0.00288,"79":0.00863,"80":0.00431,"81":0.00144,"83":0.02301,"85":0.00144,"86":0.00144,"87":0.01438,"88":0.00863,"89":0.02876,"90":0.0302,"91":0.00431,"92":0.00144,"93":0.00431,"94":0.08484,"95":0.00144,"96":0.00719,"97":0.00288,"98":0.00288,"99":0.1438,"100":0.00288,"101":0.00144,"102":0.00575,"103":0.02445,"104":0.00288,"105":0.00575,"106":0.00863,"107":0.01294,"108":0.0115,"109":0.63272,"110":0.00431,"111":0.00719,"112":0.00719,"113":0.02013,"114":0.00863,"115":0.00863,"116":0.06615,"117":0.0115,"118":0.0115,"119":0.03451,"120":0.08484,"121":0.11073,"122":0.30773,"123":3.95019,"124":1.60768,"125":0.01582,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 33 34 35 36 42 44 45 47 48 50 52 53 54 56 61 66 84 126 127"},F:{"34":0.00144,"37":0.00431,"68":0.00144,"79":0.00431,"80":0.00288,"81":0.00144,"82":0.00144,"89":0.00144,"94":0.02876,"95":0.03164,"101":0.00144,"106":0.00144,"107":0.03164,"108":0.21714,"109":0.11935,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 78 83 84 85 86 87 88 90 91 92 93 96 97 98 99 100 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01007,"13":0.00575,"14":0.00719,"15":0.00575,"16":0.01007,"17":0.00288,"18":0.04745,"84":0.00575,"85":0.00144,"89":0.0115,"90":0.01007,"92":0.03164,"100":0.00431,"101":0.00144,"103":0.00144,"107":0.00144,"108":0.00288,"109":0.09203,"110":0.00144,"111":0.00144,"112":0.00288,"114":0.00144,"115":0.00431,"116":0.00431,"117":0.00288,"118":0.00288,"119":0.00863,"120":0.01294,"121":0.01869,"122":0.11504,"123":0.78802,"124":0.35231,_:"79 80 81 83 86 87 88 91 93 94 95 96 97 98 99 102 104 105 106 113"},E:{"11":0.00144,"13":0.00144,"14":0.00288,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00144,"12.1":0.00719,"13.1":0.0115,"14.1":0.01294,"15.1":0.00144,"15.2-15.3":0.00144,"15.4":0.00288,"15.5":0.00144,"15.6":0.02301,"16.0":0.00288,"16.1":0.00719,"16.2":0.00144,"16.3":0.00575,"16.4":0.00575,"16.5":0.00575,"16.6":0.0302,"17.0":0.00288,"17.1":0.00863,"17.2":0.02301,"17.3":0.01869,"17.4":0.0719},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00069,"5.0-5.1":0.00069,"6.0-6.1":0.00173,"7.0-7.1":0.00277,"8.1-8.4":0.00069,"9.0-9.2":0.00173,"9.3":0.00865,"10.0-10.2":0.00173,"10.3":0.01384,"11.0-11.2":0.01176,"11.3-11.4":0.00346,"12.0-12.1":0.00242,"12.2-12.5":0.05638,"13.0-13.1":0.00104,"13.2":0.01141,"13.3":0.00277,"13.4-13.7":0.01072,"14.0-14.4":0.0211,"14.5-14.8":0.03217,"15.0-15.1":0.01487,"15.2-15.3":0.01695,"15.4":0.01937,"15.5":0.02456,"15.6-15.8":0.21446,"16.0":0.05016,"16.1":0.10446,"16.2":0.05016,"16.3":0.08855,"16.4":0.01833,"16.5":0.0384,"16.6-16.7":0.30336,"17.0":0.03632,"17.1":0.06711,"17.2":0.08924,"17.3":0.65099,"17.4":1.4694,"17.5":0.01349},P:{"4":0.18574,"20":0.00978,"21":0.06843,"22":0.11731,"23":0.16619,"24":0.41059,"5.0-5.4":0.01955,"6.2-6.4":0.00978,"7.2-7.4":0.04888,_:"8.2 12.0 15.0","9.2":0.0391,"10.1":0.00978,"11.1-11.2":0.0391,"13.0":0.00978,"14.0":0.00978,"16.0":0.02933,"17.0":0.02933,"18.0":0.00978,"19.0":0.07821},I:{"0":0.05969,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"11":0.01726,_:"6 7 8 9 10 5.5"},K:{"0":8.08154,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":2.17475,_:"3.0-3.1"},Q:{"14.9":0.00856},O:{"0":0.30823},H:{"0":12.57},L:{"0":60.78987},R:{_:"0"},M:{"0":0.07706}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js index f5940136323792..e3eb68fbeeb9dd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UA.js @@ -1 +1 @@ -module.exports={C:{"34":0.00572,"38":0.00572,"44":0.01144,"49":0.00572,"52":0.13156,"53":0.00572,"55":0.01144,"56":0.09152,"68":0.01144,"72":0.00572,"75":0.00572,"78":0.00572,"82":0.00572,"83":0.01716,"84":0.00572,"87":0.00572,"88":0.01144,"91":0.00572,"98":0.00572,"99":0.00572,"101":0.00572,"102":0.01716,"103":0.04576,"104":0.00572,"105":0.01716,"106":0.05148,"107":0.03432,"108":0.03432,"109":0.03432,"110":0.03432,"111":0.02288,"112":0.00572,"113":0.01144,"114":0.00572,"115":0.7722,"116":0.00572,"118":0.00572,"119":0.01144,"120":0.02288,"121":0.01716,"122":0.04576,"123":1.09252,"124":0.4862,"125":0.01144,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 45 46 47 48 50 51 54 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 85 86 89 90 92 93 94 95 96 97 100 117 126 127 3.5 3.6"},D:{"38":0.00572,"41":0.00572,"48":0.01144,"49":0.09152,"56":0.00572,"57":0.00572,"61":0.01144,"63":0.00572,"64":0.00572,"68":0.00572,"69":0.00572,"70":0.01144,"71":0.01144,"72":0.00572,"73":0.01144,"74":0.01716,"75":0.00572,"76":0.01144,"77":0.00572,"78":0.01144,"79":0.04576,"80":0.02288,"81":0.01716,"83":0.0286,"84":0.01144,"85":0.03432,"86":0.04576,"87":0.04004,"88":0.02288,"89":0.0286,"90":0.01716,"91":0.01716,"92":0.01144,"93":0.01144,"94":0.00572,"95":0.01716,"96":0.01716,"97":0.04576,"98":0.02288,"99":0.01716,"100":0.02288,"101":0.01716,"102":0.13156,"103":0.05148,"104":0.09724,"105":0.12012,"106":0.3718,"107":0.38324,"108":0.48048,"109":4.19848,"110":0.26884,"111":0.286,"112":0.32604,"113":0.04576,"114":0.09152,"115":0.03432,"116":0.10868,"117":0.02288,"118":0.06292,"119":0.12012,"120":0.59488,"121":1.60732,"122":17.77776,"123":5.67996,"124":0.02288,"125":0.00572,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 47 50 51 52 53 54 55 58 59 60 62 65 66 67 126"},F:{"36":0.03432,"46":0.00572,"64":0.00572,"69":0.00572,"79":0.04004,"80":0.01144,"81":0.00572,"82":0.00572,"83":0.01144,"84":0.0286,"85":0.06292,"86":0.0286,"87":0.01144,"89":0.00572,"90":0.00572,"91":0.01716,"92":0.01716,"93":0.01716,"94":0.01716,"95":0.86372,"96":0.01716,"97":0.00572,"98":0.00572,"99":0.01144,"102":0.00572,"105":0.01144,"106":0.04576,"107":3.5464,"108":1.41284,"109":0.01144,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 65 66 67 68 70 71 72 73 74 75 76 77 78 88 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.00572},B:{"12":0.00572,"18":0.01144,"86":0.00572,"90":0.00572,"92":0.01716,"103":0.01144,"105":0.00572,"106":0.04004,"107":0.06292,"108":0.06292,"109":0.12584,"110":0.04004,"111":0.03432,"112":0.00572,"114":0.00572,"116":0.02288,"117":0.00572,"119":0.00572,"120":0.01716,"121":0.04004,"122":7.24724,"123":0.27456,_:"13 14 15 16 17 79 80 81 83 84 85 87 88 89 91 93 94 95 96 97 98 99 100 101 102 104 113 115 118"},E:{"14":0.01144,"15":0.00572,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 15.2-15.3 17.5","5.1":0.0286,"9.1":0.02288,"12.1":0.00572,"13.1":0.01716,"14.1":0.04004,"15.1":0.00572,"15.4":0.01716,"15.5":0.01144,"15.6":0.143,"16.0":0.01716,"16.1":0.03432,"16.2":0.01716,"16.3":0.06292,"16.4":0.01716,"16.5":0.03432,"16.6":0.15444,"17.0":0.04576,"17.1":0.0572,"17.2":0.14872,"17.3":0.38324,"17.4":0.12584},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00184,"5.0-5.1":0.00092,"6.0-6.1":0.00551,"7.0-7.1":0.00642,"8.1-8.4":0.00184,"9.0-9.2":0.00367,"9.3":0.02295,"10.0-10.2":0.00367,"10.3":0.03855,"11.0-11.2":0.02754,"11.3-11.4":0.00918,"12.0-12.1":0.00826,"12.2-12.5":0.15879,"13.0-13.1":0.00275,"13.2":0.02754,"13.3":0.00826,"13.4-13.7":0.03121,"14.0-14.4":0.05966,"14.5-14.8":0.09362,"15.0-15.1":0.04039,"15.2-15.3":0.04773,"15.4":0.05599,"15.5":0.07159,"15.6-15.8":0.59935,"16.0":0.14594,"16.1":0.30197,"16.2":0.14594,"16.3":0.25975,"16.4":0.05507,"16.5":0.11657,"16.6-16.7":0.88297,"17.0":0.11473,"17.1":0.22946,"17.2":0.36989,"17.3":4.55252,"17.4":0.66819,"17.5":0},P:{"4":0.03315,"20":0.03315,"21":0.0442,"22":0.03315,"23":0.56356,"24":0.4862,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 15.0 16.0","7.2-7.4":0.0221,"11.1-11.2":0.01105,"13.0":0.01105,"14.0":0.01105,"17.0":0.01105,"18.0":0.01105,"19.0":0.0221},I:{"0":0.06822,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},K:{"0":1.12447,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01753,"9":0.00584,"10":0.00584,"11":0.23962,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":30.75568},R:{_:"0"},M:{"0":0.14555},Q:{"14.9":0.00428},O:{"0":0.19265},H:{"0":0.01}}; +module.exports={C:{"34":0.0058,"48":0.0058,"49":0.0058,"52":0.13342,"55":0.0116,"56":0.07541,"68":0.0116,"72":0.0116,"75":0.0116,"78":0.0058,"81":0.0058,"82":0.0058,"83":0.0174,"84":0.0058,"86":0.0058,"88":0.0116,"91":0.0058,"98":0.0058,"99":0.0058,"101":0.0058,"102":0.0232,"103":0.05221,"104":0.0058,"105":0.0174,"106":0.0174,"107":0.0174,"108":0.0232,"109":0.0232,"110":0.0174,"111":0.03481,"112":0.0058,"113":0.0058,"114":0.0058,"115":0.77153,"116":0.0058,"117":0.0058,"118":0.0174,"119":0.0232,"120":0.0174,"121":0.0116,"122":0.0174,"123":0.03481,"124":1.1486,"125":0.66131,"126":0.0058,"127":0.0058,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 50 51 53 54 57 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 85 87 89 90 92 93 94 95 96 97 100 128 3.5 3.6"},D:{"11":0.0116,"38":0.0058,"41":0.0174,"42":0.0058,"48":0.0058,"49":0.12762,"57":0.0058,"61":0.0174,"63":0.0058,"64":0.0058,"68":0.0058,"69":0.0058,"70":0.0058,"71":0.0116,"72":0.0058,"73":0.0058,"74":0.0116,"75":0.0058,"76":0.0116,"78":0.0058,"79":0.04061,"80":0.0174,"81":0.0174,"83":0.02901,"84":0.0058,"85":0.04061,"86":0.0232,"87":0.05221,"88":0.0116,"89":0.0058,"90":0.0116,"91":0.0116,"92":0.0058,"93":0.0058,"94":0.0058,"95":0.0116,"96":0.0174,"97":0.02901,"98":0.0232,"99":0.0116,"100":0.0174,"101":0.0174,"102":0.11602,"103":0.04641,"104":0.12182,"105":0.06961,"106":0.16823,"107":0.18563,"108":0.23204,"109":4.19412,"110":0.11022,"111":0.13342,"112":0.13922,"113":0.06961,"114":0.11602,"115":0.0174,"116":0.15083,"117":0.09282,"118":0.12182,"119":0.44668,"120":0.41767,"121":0.36546,"122":0.79474,"123":19.29993,"124":7.69213,"125":0.04061,"126":0.0174,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 43 44 45 46 47 50 51 52 53 54 55 56 58 59 60 62 65 66 67 77 127"},F:{"36":0.02901,"46":0.0058,"51":0.0058,"57":0.0058,"64":0.0058,"69":0.0058,"72":0.0058,"75":0.0058,"77":0.0058,"78":0.0058,"79":0.02901,"80":0.0058,"82":0.0058,"83":0.0174,"84":0.0174,"85":0.06381,"86":0.02901,"87":0.0116,"90":0.0058,"91":0.0116,"92":0.0058,"93":0.0116,"94":0.0116,"95":0.96877,"96":0.0058,"97":0.0058,"98":0.0058,"99":0.0232,"102":0.0174,"103":0.0058,"105":0.0058,"106":0.0174,"107":1.48506,"108":2.9237,"109":0.99777,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 52 53 54 55 56 58 60 62 63 65 66 67 68 70 71 73 74 76 81 88 89 100 101 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6","12.1":0.0058},B:{"12":0.0058,"18":0.0116,"92":0.0174,"100":0.0058,"103":0.0058,"105":0.0058,"106":0.0116,"107":0.0232,"108":0.02901,"109":0.09282,"110":0.0116,"111":0.0116,"112":0.0058,"113":0.0058,"114":0.0058,"115":0.0058,"116":0.02901,"117":0.0116,"118":0.0058,"119":0.0058,"120":0.0116,"121":0.0058,"122":0.07541,"123":3.35298,"124":2.07096,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104"},E:{"14":0.0116,"15":0.0058,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 15.2-15.3","5.1":0.04061,"9.1":0.0058,"12.1":0.0058,"13.1":0.0232,"14.1":0.02901,"15.1":0.0116,"15.4":0.0058,"15.5":0.0116,"15.6":0.11602,"16.0":0.0116,"16.1":0.04061,"16.2":0.0116,"16.3":0.07541,"16.4":0.0116,"16.5":0.03481,"16.6":0.14503,"17.0":0.05221,"17.1":0.04641,"17.2":0.08702,"17.3":0.16823,"17.4":0.5511,"17.5":0.0058},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00191,"5.0-5.1":0.00191,"6.0-6.1":0.00477,"7.0-7.1":0.00763,"8.1-8.4":0.00191,"9.0-9.2":0.00477,"9.3":0.02386,"10.0-10.2":0.00477,"10.3":0.03817,"11.0-11.2":0.03244,"11.3-11.4":0.00954,"12.0-12.1":0.00668,"12.2-12.5":0.15554,"13.0-13.1":0.00286,"13.2":0.03149,"13.3":0.00763,"13.4-13.7":0.02958,"14.0-14.4":0.05821,"14.5-14.8":0.08874,"15.0-15.1":0.04103,"15.2-15.3":0.04676,"15.4":0.05344,"15.5":0.06775,"15.6-15.8":0.59161,"16.0":0.13836,"16.1":0.28817,"16.2":0.13836,"16.3":0.24428,"16.4":0.05057,"16.5":0.10592,"16.6-16.7":0.83684,"17.0":0.10019,"17.1":0.18512,"17.2":0.24618,"17.3":1.79581,"17.4":4.05346,"17.5":0.03721},P:{"4":0.04235,"20":0.03176,"21":0.04235,"22":0.03176,"23":0.09528,"24":1.00569,_:"5.0-5.4 8.2 9.2 12.0 14.0 15.0 16.0","6.2-6.4":0.01059,"7.2-7.4":0.05293,"10.1":0.01059,"11.1-11.2":0.01059,"13.0":0.01059,"17.0":0.02117,"18.0":0.01059,"19.0":0.02117},I:{"0":0.02508,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.02395,"9":0.01198,"10":0.00599,"11":0.14372,_:"6 7 5.5"},K:{"0":1.20162,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0042},O:{"0":0.15952},H:{"0":0.02},L:{"0":29.26978},R:{_:"0"},M:{"0":0.19731}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js index ed80f7bb4104af..86d6a7f59873c7 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UG.js @@ -1 +1 @@ -module.exports={C:{"43":0.00229,"50":0.00458,"52":0.00458,"55":0.00229,"56":0.00229,"57":0.00229,"58":0.00229,"66":0.00229,"68":0.00229,"69":0.00229,"72":0.00458,"78":0.00458,"91":0.00458,"93":0.00458,"99":0.00229,"102":0.00458,"103":0.00229,"106":0.00229,"108":0.00229,"109":0.00229,"110":0.00229,"111":0.00229,"112":0.00229,"114":0.00686,"115":0.30659,"116":0.00229,"118":0.00229,"119":0.00458,"120":0.00458,"121":0.00915,"122":0.04118,"123":0.85571,"124":0.38896,"125":0.02059,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 47 48 49 51 53 54 59 60 61 62 63 64 65 67 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 92 94 95 96 97 98 100 101 104 105 107 113 117 126 127 3.5 3.6"},D:{"11":0.00229,"19":0.00915,"31":0.00229,"33":0.00458,"39":0.00229,"40":0.00229,"43":0.00229,"49":0.00458,"50":0.00458,"53":0.00229,"55":0.00458,"56":0.00229,"58":0.00229,"59":0.00229,"62":0.00229,"63":0.00229,"64":0.01602,"68":0.01144,"69":0.00686,"70":0.00915,"71":0.00458,"72":0.06635,"73":0.00229,"74":0.00458,"75":0.00458,"76":0.00458,"77":0.00458,"78":0.00229,"79":0.02746,"80":0.00686,"81":0.00229,"83":0.00915,"86":0.00458,"87":0.07779,"88":0.0389,"89":0.00229,"90":0.00229,"91":0.00458,"92":0.00229,"93":0.01373,"94":0.02059,"95":0.01602,"96":0.00458,"97":0.00229,"98":0.00458,"99":0.00915,"100":0.00458,"101":0.00229,"102":0.00915,"103":0.04576,"104":0.00686,"105":0.01144,"106":0.02974,"107":0.0183,"108":0.01144,"109":1.08222,"110":0.00686,"111":0.01144,"112":0.00915,"113":0.0183,"114":0.0183,"115":0.00915,"116":0.06406,"117":0.00915,"118":0.00915,"119":0.0755,"120":0.13957,"121":0.50107,"122":6.12269,"123":1.56042,"124":0.00458,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 32 34 35 36 37 38 41 42 44 45 46 47 48 51 52 54 57 60 61 65 66 67 84 85 125 126"},F:{"37":0.00229,"42":0.00229,"79":0.00686,"81":0.00915,"82":0.00229,"85":0.00229,"92":0.00229,"95":0.02974,"102":0.00915,"105":0.00229,"106":0.00915,"107":0.30659,"108":0.13499,"109":0.00229,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 41 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 86 87 88 89 90 91 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0183,"13":0.01144,"14":0.00915,"15":0.00686,"16":0.00686,"17":0.00458,"18":0.07779,"84":0.00458,"89":0.00229,"90":0.0183,"92":0.02974,"100":0.00686,"109":0.02746,"111":0.00229,"112":0.00686,"113":0.00229,"114":0.00915,"115":0.00458,"116":0.00915,"117":0.00686,"118":0.01144,"119":0.04118,"120":0.04347,"121":0.10982,"122":1.59474,"123":0.09152,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110"},E:{"12":0.00229,"13":0.00229,"14":0.00229,_:"0 4 5 6 7 8 9 10 11 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00458,"12.1":0.00458,"13.1":0.02974,"14.1":0.01144,"15.1":0.00229,"15.2-15.3":0.00229,"15.4":0.00229,"15.5":0.00229,"15.6":0.12813,"16.0":0.00229,"16.1":0.00458,"16.2":0.00229,"16.3":0.00686,"16.4":0.00458,"16.5":0.00915,"16.6":0.01602,"17.0":0.00458,"17.1":0.01144,"17.2":0.02517,"17.3":0.0389,"17.4":0.01373},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0007,"5.0-5.1":0.00035,"6.0-6.1":0.00209,"7.0-7.1":0.00243,"8.1-8.4":0.0007,"9.0-9.2":0.00139,"9.3":0.00869,"10.0-10.2":0.00139,"10.3":0.01461,"11.0-11.2":0.01043,"11.3-11.4":0.00348,"12.0-12.1":0.00313,"12.2-12.5":0.06016,"13.0-13.1":0.00104,"13.2":0.01043,"13.3":0.00313,"13.4-13.7":0.01182,"14.0-14.4":0.0226,"14.5-14.8":0.03547,"15.0-15.1":0.0153,"15.2-15.3":0.01808,"15.4":0.02121,"15.5":0.02713,"15.6-15.8":0.22709,"16.0":0.05529,"16.1":0.11442,"16.2":0.05529,"16.3":0.09842,"16.4":0.02087,"16.5":0.04417,"16.6-16.7":0.33455,"17.0":0.04347,"17.1":0.08694,"17.2":0.14015,"17.3":1.72492,"17.4":0.25317,"17.5":0},P:{"4":0.10281,"20":0.02056,"21":0.08225,"22":0.06169,"23":0.45238,"24":0.41125,"5.0-5.4":0.03084,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.08225,"9.2":0.10281,"11.1-11.2":0.04113,"13.0":0.01028,"14.0":0.01028,"15.0":0.02056,"16.0":0.03084,"17.0":0.02056,"18.0":0.01028,"19.0":0.11309},I:{"0":0.0384,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},K:{"0":6.2366,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00549,"11":0.02196,_:"6 7 8 9 5.5"},S:{"2.5":0.28531,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":61.95516},R:{_:"0"},M:{"0":0.13109},Q:{"14.9":0.00771},O:{"0":0.33157},H:{"0":10.45}}; +module.exports={C:{"36":0.00208,"45":0.00208,"47":0.00208,"48":0.00208,"50":0.00208,"52":0.01039,"56":0.00208,"58":0.00208,"59":0.00208,"68":0.00208,"72":0.00416,"78":0.00208,"88":0.00208,"91":0.00623,"93":0.00416,"102":0.00623,"103":0.00208,"109":0.00208,"110":0.00208,"111":0.00208,"112":0.00208,"113":0.00208,"115":0.29923,"116":0.00208,"118":0.00208,"119":0.00416,"120":0.00208,"121":0.00416,"122":0.01247,"123":0.0374,"124":0.77094,"125":0.41976,"126":0.02909,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 46 49 51 53 54 55 57 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 94 95 96 97 98 99 100 101 104 105 106 107 108 114 117 127 128 3.5 3.6"},D:{"19":0.01247,"39":0.00208,"43":0.00208,"49":0.00208,"50":0.00208,"53":0.00208,"55":0.00208,"56":0.00208,"58":0.00208,"59":0.00831,"63":0.00623,"64":0.01247,"65":0.00208,"67":0.00208,"68":0.00831,"69":0.00623,"70":0.00623,"71":0.00208,"72":0.01039,"73":0.00208,"74":0.00416,"75":0.00208,"76":0.00208,"77":0.00831,"78":0.00208,"79":0.00623,"80":0.01247,"81":0.00623,"83":0.00623,"84":0.00208,"85":0.00208,"86":0.00208,"87":0.01662,"88":0.02286,"89":0.00208,"90":0.00208,"91":0.00416,"92":0.00416,"93":0.02078,"94":0.01247,"95":0.02286,"96":0.00208,"98":0.00416,"99":0.00623,"100":0.00623,"101":0.00208,"102":0.01455,"103":0.03117,"104":0.00831,"105":0.01039,"106":0.03533,"107":0.01455,"108":0.02286,"109":1.00783,"110":0.00416,"111":0.00416,"112":0.00623,"113":0.01039,"114":0.02494,"115":0.00831,"116":0.05611,"117":0.01039,"118":0.01247,"119":0.04572,"120":0.08935,"121":0.11845,"122":0.40313,"123":5.51086,"124":2.00319,"125":0.02078,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 40 41 42 44 45 46 47 48 51 52 54 57 60 61 62 66 97 126 127"},F:{"46":0.00416,"79":0.00416,"81":0.01039,"82":0.00208,"86":0.00208,"90":0.00208,"95":0.02494,"102":0.00416,"106":0.00416,"107":0.05818,"108":0.25975,"109":0.11637,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 85 87 88 89 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.01455,"13":0.00831,"14":0.00416,"15":0.00623,"16":0.00623,"17":0.00416,"18":0.06234,"84":0.00416,"89":0.00208,"90":0.01039,"92":0.02909,"100":0.00831,"109":0.02494,"111":0.00208,"112":0.00208,"113":0.00208,"114":0.00831,"115":0.00208,"116":0.00831,"117":0.00623,"118":0.00416,"119":0.01247,"120":0.02286,"121":0.0187,"122":0.15585,"123":1.08887,"124":0.36573,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110"},E:{"12":0.00416,"14":0.00416,_:"0 4 5 6 7 8 9 10 11 13 15 3.1 3.2 5.1 6.1 7.1 9.1 15.1 15.4 16.0 17.5","10.1":0.00208,"11.1":0.00208,"12.1":0.00416,"13.1":0.01247,"14.1":0.01247,"15.2-15.3":0.00208,"15.5":0.00623,"15.6":0.08728,"16.1":0.00623,"16.2":0.00208,"16.3":0.00416,"16.4":0.01039,"16.5":0.01455,"16.6":0.03117,"17.0":0.00208,"17.1":0.02494,"17.2":0.01039,"17.3":0.03533,"17.4":0.07273},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00069,"5.0-5.1":0.00069,"6.0-6.1":0.00173,"7.0-7.1":0.00276,"8.1-8.4":0.00069,"9.0-9.2":0.00173,"9.3":0.00863,"10.0-10.2":0.00173,"10.3":0.01381,"11.0-11.2":0.01174,"11.3-11.4":0.00345,"12.0-12.1":0.00242,"12.2-12.5":0.05629,"13.0-13.1":0.00104,"13.2":0.0114,"13.3":0.00276,"13.4-13.7":0.01071,"14.0-14.4":0.02107,"14.5-14.8":0.03212,"15.0-15.1":0.01485,"15.2-15.3":0.01692,"15.4":0.01934,"15.5":0.02452,"15.6-15.8":0.21412,"16.0":0.05008,"16.1":0.1043,"16.2":0.05008,"16.3":0.08841,"16.4":0.0183,"16.5":0.03833,"16.6-16.7":0.30288,"17.0":0.03626,"17.1":0.067,"17.2":0.0891,"17.3":0.64996,"17.4":1.46707,"17.5":0.01347},P:{"4":0.09193,"20":0.02043,"21":0.06128,"22":0.11235,"23":0.22471,"24":0.56177,"5.0-5.4":0.02043,"6.2-6.4":0.01021,"7.2-7.4":0.08171,_:"8.2 10.1 12.0","9.2":0.11235,"11.1-11.2":0.04086,"13.0":0.01021,"14.0":0.01021,"15.0":0.01021,"16.0":0.03064,"17.0":0.01021,"18.0":0.01021,"19.0":0.11235},I:{"0":0.03944,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},A:{"10":0.00246,"11":0.02456,_:"6 7 8 9 5.5"},K:{"0":6.35593,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.22179,_:"3.0-3.1"},Q:{"14.9":0.00792},O:{"0":0.27724},H:{"0":12.1},L:{"0":61.20461},R:{_:"0"},M:{"0":0.11089}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js index 0cb33806aa3ec1..dcd4e36df36c55 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/US.js @@ -1 +1 @@ -module.exports={C:{"3":0.00507,"4":0.00507,"11":0.08104,"17":0.00507,"38":0.00507,"43":0.00507,"44":0.02533,"45":0.01013,"48":0.00507,"52":0.02533,"59":0.00507,"68":0.00507,"72":0.01013,"75":0.00507,"76":0.00507,"77":0.01013,"78":0.03546,"79":0.00507,"80":0.00507,"83":0.00507,"88":0.01013,"91":0.01013,"93":0.00507,"94":0.02533,"102":0.02533,"103":0.01013,"104":0.0152,"105":0.00507,"106":0.00507,"107":0.00507,"108":0.00507,"109":0.00507,"110":0.00507,"111":0.00507,"112":0.01013,"113":0.00507,"114":0.00507,"115":0.42546,"116":0.00507,"117":0.01013,"118":0.41533,"119":0.01013,"120":0.01013,"121":0.03039,"122":0.10637,"123":1.59041,"124":0.62806,_:"2 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 81 82 84 85 86 87 89 90 92 95 96 97 98 99 100 101 125 126 127 3.5","3.6":0.00507},D:{"38":0.00507,"41":0.00507,"47":0.00507,"48":0.06585,"49":0.03039,"50":0.00507,"51":0.01013,"52":0.00507,"53":0.00507,"56":0.05065,"60":0.00507,"62":0.00507,"65":0.00507,"66":0.02533,"67":0.00507,"68":0.02026,"69":0.02533,"70":0.0152,"71":0.0152,"72":0.02026,"73":0.00507,"74":0.02533,"75":0.02026,"76":0.03039,"77":0.0152,"78":0.02533,"79":0.18234,"80":0.04559,"81":0.09624,"83":0.11143,"84":0.02026,"85":0.03039,"86":0.37988,"87":0.08611,"88":0.04052,"89":0.03039,"90":0.03039,"91":0.08611,"92":0.0152,"93":0.07091,"94":0.04052,"95":0.01013,"96":0.02026,"97":0.0152,"98":0.01013,"99":0.03039,"100":0.37481,"101":0.68884,"102":0.34442,"103":0.77495,"104":0.4204,"105":0.08611,"106":0.03546,"107":0.03039,"108":0.06078,"109":0.68884,"110":0.15702,"111":0.04052,"112":0.04559,"113":0.10637,"114":0.23299,"115":0.06585,"116":0.37481,"117":0.35455,"118":0.25325,"119":0.45079,"120":1.00794,"121":3.58096,"122":14.17187,"123":3.59615,"124":0.04052,"125":0.02026,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 43 44 45 46 54 55 57 58 59 61 63 64 126"},F:{"53":0.00507,"54":0.00507,"55":0.00507,"95":0.03546,"102":0.05065,"106":0.02026,"107":0.66352,"108":0.1013,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00507,"15":0.00507,"16":0.00507,"17":0.00507,"18":0.00507,"80":0.00507,"81":0.00507,"83":0.00507,"84":0.00507,"85":0.00507,"86":0.00507,"87":0.01013,"88":0.00507,"89":0.00507,"90":0.00507,"92":0.00507,"95":0.00507,"103":0.00507,"106":0.00507,"107":0.00507,"108":0.00507,"109":0.09117,"110":0.01013,"111":0.00507,"112":0.00507,"113":0.00507,"114":0.01013,"115":0.00507,"116":0.01013,"117":0.01013,"118":0.01013,"119":0.02026,"120":0.08611,"121":0.32923,"122":6.10839,"123":0.46092,_:"13 14 79 91 93 94 96 97 98 99 100 101 102 104 105"},E:{"5":0.00507,"8":0.00507,"9":0.0152,"13":0.01013,"14":0.07598,"15":0.0152,_:"0 4 6 7 10 11 12 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.00507,"9.1":0.09624,"11.1":0.01013,"12.1":0.03039,"13.1":0.19247,"14.1":0.19754,"15.1":0.10637,"15.2-15.3":0.02533,"15.4":0.04052,"15.5":0.05572,"15.6":0.47105,"16.0":0.07091,"16.1":0.09624,"16.2":0.09624,"16.3":0.2178,"16.4":0.08611,"16.5":0.16208,"16.6":0.82053,"17.0":0.09624,"17.1":0.27351,"17.2":0.66858,"17.3":2.45146,"17.4":0.47611},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00522,"5.0-5.1":0.00261,"6.0-6.1":0.01565,"7.0-7.1":0.01825,"8.1-8.4":0.00522,"9.0-9.2":0.01043,"9.3":0.06519,"10.0-10.2":0.01043,"10.3":0.10952,"11.0-11.2":0.07823,"11.3-11.4":0.02608,"12.0-12.1":0.02347,"12.2-12.5":0.45112,"13.0-13.1":0.00782,"13.2":0.07823,"13.3":0.02347,"13.4-13.7":0.08866,"14.0-14.4":0.1695,"14.5-14.8":0.26598,"15.0-15.1":0.11474,"15.2-15.3":0.1356,"15.4":0.15907,"15.5":0.2034,"15.6-15.8":1.7028,"16.0":0.41462,"16.1":0.85792,"16.2":0.41462,"16.3":0.73797,"16.4":0.15646,"16.5":0.33117,"16.6-16.7":2.50856,"17.0":0.32596,"17.1":0.65191,"17.2":1.05088,"17.3":12.93396,"17.4":1.89837,"17.5":0},P:{"4":0.04321,"20":0.0108,"21":0.04321,"22":0.04321,"23":0.42131,"24":1.1343,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 12.0 14.0 15.0","11.1-11.2":0.0108,"13.0":0.0108,"16.0":0.02161,"17.0":0.0108,"18.0":0.0108,"19.0":0.0108},I:{"0":0.13761,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00033},K:{"0":0.37013,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0114,"9":0.03419,"10":0.0057,"11":0.13106,_:"6 7 5.5"},S:{"2.5":0.00494,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":21.42989},R:{_:"0"},M:{"0":0.53298},Q:{"14.9":0.03455},O:{"0":0.08883},H:{"0":0}}; +module.exports={C:{"4":0.00519,"11":0.06222,"17":0.00519,"38":0.00519,"43":0.00519,"44":0.02593,"45":0.00519,"48":0.00519,"52":0.02074,"59":0.00519,"72":0.00519,"78":0.03111,"83":0.00519,"88":0.01037,"91":0.00519,"93":0.00519,"94":0.01556,"102":0.01037,"103":0.01037,"104":0.02074,"105":0.00519,"107":0.00519,"108":0.00519,"109":0.00519,"110":0.00519,"112":0.00519,"113":0.01037,"114":0.00519,"115":0.38369,"116":0.00519,"117":0.01037,"118":0.52369,"119":0.00519,"120":0.00519,"121":0.02074,"122":0.02074,"123":0.08815,"124":1.57624,"125":0.70516,"126":0.00519,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 95 96 97 98 99 100 101 106 111 127 128 3.5 3.6"},D:{"38":0.00519,"41":0.00519,"43":0.00519,"47":0.00519,"48":0.06741,"49":0.03111,"51":0.00519,"52":0.00519,"53":0.00519,"56":0.04667,"62":0.00519,"65":0.00519,"66":0.02593,"67":0.00519,"68":0.00519,"69":0.01037,"70":0.00519,"71":0.00519,"72":0.00519,"74":0.01037,"75":0.01037,"76":0.02074,"77":0.00519,"78":0.01037,"79":0.18666,"80":0.02593,"81":0.05704,"83":0.11407,"84":0.01037,"85":0.06741,"86":0.58591,"87":0.06222,"88":0.02074,"89":0.02593,"90":0.01037,"91":0.08296,"92":0.01037,"93":0.05185,"94":0.0363,"95":0.01037,"96":0.02074,"97":0.01556,"98":0.01037,"99":0.02593,"100":0.60665,"101":1.15107,"102":0.58072,"103":1.01626,"104":0.61702,"105":0.08815,"106":0.0363,"107":0.02593,"108":0.05185,"109":0.6585,"110":0.04667,"111":0.03111,"112":0.04148,"113":0.12963,"114":0.23333,"115":0.05704,"116":0.30592,"117":0.35777,"118":0.2437,"119":0.30073,"120":0.59109,"121":1.12515,"122":2.64435,"123":13.81803,"124":4.78576,"125":0.05704,"126":0.02074,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 42 44 45 46 50 54 55 57 58 59 60 61 63 64 73 127"},F:{"95":0.03111,"102":0.00519,"106":0.00519,"107":0.53406,"108":0.21259,"109":0.08815,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00519,"17":0.00519,"18":0.00519,"85":0.00519,"87":0.00519,"92":0.00519,"107":0.00519,"108":0.00519,"109":0.08296,"110":0.00519,"111":0.00519,"112":0.00519,"113":0.00519,"114":0.01037,"115":0.00519,"116":0.00519,"117":0.01037,"118":0.00519,"119":0.01556,"120":0.04148,"121":0.05704,"122":0.43036,"123":4.57836,"124":1.92882,_:"13 14 15 16 79 80 81 83 84 86 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"8":0.00519,"9":0.01037,"13":0.01037,"14":0.07778,"15":0.01556,_:"0 4 5 6 7 10 11 12 3.1 3.2 6.1 7.1 10.1","5.1":0.00519,"9.1":0.01556,"11.1":0.00519,"12.1":0.02593,"13.1":0.17111,"14.1":0.18666,"15.1":0.10889,"15.2-15.3":0.02074,"15.4":0.04148,"15.5":0.05185,"15.6":0.45628,"16.0":0.07778,"16.1":0.09333,"16.2":0.08815,"16.3":0.21259,"16.4":0.08296,"16.5":0.14518,"16.6":0.77257,"17.0":0.08296,"17.1":0.19185,"17.2":0.31629,"17.3":0.88145,"17.4":2.57176,"17.5":0.02074},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00479,"5.0-5.1":0.00479,"6.0-6.1":0.01197,"7.0-7.1":0.01915,"8.1-8.4":0.00479,"9.0-9.2":0.01197,"9.3":0.05985,"10.0-10.2":0.01197,"10.3":0.09576,"11.0-11.2":0.0814,"11.3-11.4":0.02394,"12.0-12.1":0.01676,"12.2-12.5":0.39023,"13.0-13.1":0.00718,"13.2":0.079,"13.3":0.01915,"13.4-13.7":0.07422,"14.0-14.4":0.14604,"14.5-14.8":0.22265,"15.0-15.1":0.10294,"15.2-15.3":0.11731,"15.4":0.13407,"15.5":0.16998,"15.6-15.8":1.4843,"16.0":0.34713,"16.1":0.723,"16.2":0.34713,"16.3":0.61287,"16.4":0.12688,"16.5":0.26574,"16.6-16.7":2.09957,"17.0":0.25137,"17.1":0.46444,"17.2":0.61766,"17.3":4.50557,"17.4":10.16985,"17.5":0.09337},P:{"4":0.03275,"20":0.01092,"21":0.03275,"22":0.03275,"23":0.09825,"24":1.25537,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0","13.0":0.01092,"16.0":0.02183,"17.0":0.01092,"18.0":0.01092,"19.0":0.01092},I:{"0":0.11991,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.0003},A:{"8":0.01103,"9":0.03309,"11":0.30328,_:"6 7 10 5.5"},K:{"0":0.3323,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00482,_:"3.0-3.1"},Q:{"14.9":0.03853},O:{"0":0.07706},H:{"0":0},L:{"0":22.07956},R:{_:"0"},M:{"0":0.66461}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UY.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UY.js index 0aaf0f8e8978a3..78f31f2c2ec475 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UY.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UY.js @@ -1 +1 @@ -module.exports={C:{"52":0.01788,"57":0.00447,"63":0.00447,"65":0.00447,"66":0.00447,"78":0.00447,"82":0.00447,"83":0.02235,"88":0.00894,"91":0.00447,"102":0.00894,"103":0.01341,"105":0.00447,"107":0.00447,"109":0.00447,"111":0.00894,"112":0.02235,"113":0.01341,"115":0.27714,"116":0.00447,"119":0.00894,"120":0.02235,"121":0.01788,"122":0.03576,"123":1.17114,"124":0.47829,"125":0.00447,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 64 67 68 69 70 71 72 73 74 75 76 77 79 80 81 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 106 108 110 114 117 118 126 127 3.5 3.6"},D:{"38":0.01341,"43":0.00447,"44":0.00447,"45":0.00447,"47":0.01341,"49":0.02682,"51":0.00447,"55":0.00894,"56":0.00447,"62":0.01788,"63":0.00447,"65":0.00894,"69":0.00447,"70":0.00894,"71":0.02682,"72":0.00447,"73":0.02682,"74":0.03576,"75":0.00894,"76":0.00447,"78":0.00447,"79":0.03129,"80":0.03129,"81":0.01788,"83":0.03129,"84":0.00894,"85":0.00447,"86":0.21009,"87":0.0447,"88":0.01341,"89":0.00447,"90":0.01788,"91":0.01341,"92":0.00447,"93":0.03129,"94":0.01788,"95":0.01341,"96":0.00447,"97":0.00447,"98":0.00894,"99":0.00894,"100":0.01341,"101":0.00447,"102":0.00894,"103":0.08046,"104":0.00894,"105":0.01341,"106":0.04917,"107":0.01788,"108":0.03129,"109":2.29758,"110":0.02235,"111":0.01341,"112":0.01341,"113":0.01788,"114":0.02682,"115":0.08046,"116":0.16092,"117":0.02682,"118":0.03576,"119":0.14304,"120":0.32184,"121":1.22031,"122":20.63352,"123":5.96298,"124":0.00447,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 48 50 52 53 54 57 58 59 60 61 64 66 67 68 77 125 126"},F:{"95":0.04917,"104":0.08493,"106":0.04023,"107":3.29886,"108":0.25032,"109":0.00447,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01788,"100":0.00447,"109":0.03129,"114":0.00447,"117":0.00447,"118":0.00447,"119":0.01341,"120":0.0447,"121":0.09834,"122":3.09771,"123":0.30396,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 110 111 112 113 115 116"},E:{"9":0.00447,"14":0.00894,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00894,"13.1":0.04023,"14.1":0.02235,"15.1":0.02682,"15.2-15.3":0.00447,"15.4":0.00894,"15.5":0.03129,"15.6":0.06705,"16.0":0.00447,"16.1":0.02682,"16.2":0.01341,"16.3":0.02682,"16.4":0.01341,"16.5":0.03129,"16.6":0.12069,"17.0":0.02235,"17.1":0.05364,"17.2":0.10728,"17.3":0.27267,"17.4":0.09834},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00154,"5.0-5.1":0.00077,"6.0-6.1":0.00462,"7.0-7.1":0.00539,"8.1-8.4":0.00154,"9.0-9.2":0.00308,"9.3":0.01924,"10.0-10.2":0.00308,"10.3":0.03233,"11.0-11.2":0.02309,"11.3-11.4":0.0077,"12.0-12.1":0.00693,"12.2-12.5":0.13317,"13.0-13.1":0.00231,"13.2":0.02309,"13.3":0.00693,"13.4-13.7":0.02617,"14.0-14.4":0.05004,"14.5-14.8":0.07852,"15.0-15.1":0.03387,"15.2-15.3":0.04003,"15.4":0.04696,"15.5":0.06004,"15.6-15.8":0.50266,"16.0":0.12239,"16.1":0.25326,"16.2":0.12239,"16.3":0.21785,"16.4":0.04619,"16.5":0.09776,"16.6-16.7":0.74052,"17.0":0.09622,"17.1":0.19244,"17.2":0.31022,"17.3":3.81809,"17.4":0.5604,"17.5":0},P:{"4":0.04161,"20":0.0104,"21":0.13523,"22":0.04161,"23":0.79058,"24":0.68656,"5.0-5.4":0.0104,_:"6.2-6.4 8.2 9.2 12.0 13.0 14.0 15.0","7.2-7.4":0.11443,"10.1":0.0104,"11.1-11.2":0.0104,"16.0":0.03121,"17.0":0.0104,"18.0":0.0104,"19.0":0.0208},I:{"0":0.06058,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},K:{"0":0.19908,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00447,"8":0.01788,"9":0.00447,"10":0.00447,"11":0.02682,_:"6 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":46.85372},R:{_:"0"},M:{"0":0.28756},Q:{_:"14.9"},O:{"0":0.01106},H:{"0":0}}; +module.exports={C:{"52":0.0191,"63":0.00478,"65":0.00478,"68":0.00478,"78":0.00478,"83":0.02388,"88":0.02388,"91":0.02388,"102":0.01433,"103":0.01433,"105":0.00478,"111":0.00478,"112":0.03343,"113":0.0191,"114":0.00478,"115":0.29611,"118":0.00478,"120":0.0191,"121":0.00955,"122":0.01433,"123":0.05731,"124":0.99818,"125":0.48238,"126":0.00478,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 64 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 106 107 108 109 110 116 117 119 127 128 3.5 3.6"},D:{"11":0.00478,"26":0.02866,"38":0.41551,"41":0.00478,"42":0.00478,"43":0.01433,"44":0.00478,"45":0.00478,"46":0.00478,"47":0.00955,"49":0.03343,"51":0.00478,"52":0.00478,"55":0.00955,"62":0.02388,"65":0.0191,"69":0.00955,"70":0.00955,"71":0.0191,"72":0.00955,"73":0.01433,"74":0.01433,"75":0.01433,"76":0.00478,"78":0.00478,"79":0.0191,"80":0.02388,"81":0.02866,"83":0.0191,"84":0.01433,"85":0.00478,"86":0.16716,"87":0.02388,"88":0.01433,"89":0.0191,"90":0.02388,"91":0.00478,"92":0.00955,"93":0.03821,"94":0.01433,"95":0.00955,"96":0.00478,"97":0.00478,"98":0.00955,"99":0.00478,"100":0.0191,"101":0.00478,"102":0.00955,"103":0.08597,"104":0.00955,"105":0.00955,"106":0.04298,"107":0.00478,"108":0.02866,"109":2.56949,"110":0.00955,"111":0.0191,"112":0.02388,"113":0.01433,"114":0.03343,"115":0.05254,"116":0.21492,"117":0.0191,"118":0.04298,"119":0.16716,"120":0.19582,"121":0.24835,"122":1.16534,"123":20.20248,"124":8.83082,"125":0.02388,"126":0.00478,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 34 35 36 37 39 40 48 50 53 54 56 57 58 59 60 61 63 64 66 67 68 77 127"},F:{"28":0.00478,"95":0.05254,"99":0.00478,"104":0.04298,"106":0.02388,"107":2.76053,"108":0.47282,"109":0.24835,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 100 101 102 103 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00478,"92":0.0191,"100":0.00478,"105":0.00478,"109":0.02866,"113":0.00478,"114":0.00478,"116":0.00478,"117":0.00478,"119":0.01433,"120":0.02388,"121":0.02388,"122":0.12895,"123":2.44531,"124":1.23698,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 106 107 108 110 111 112 115 118"},E:{"9":0.00955,"14":0.01433,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00478,"13.1":0.05254,"14.1":0.02388,"15.1":0.04298,"15.2-15.3":0.00478,"15.4":0.00955,"15.5":0.05254,"15.6":0.07642,"16.0":0.00478,"16.1":0.02388,"16.2":0.00955,"16.3":0.04776,"16.4":0.01433,"16.5":0.04776,"16.6":0.12418,"17.0":0.05254,"17.1":0.03821,"17.2":0.07164,"17.3":0.08119,"17.4":0.34387},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00153,"5.0-5.1":0.00153,"6.0-6.1":0.00383,"7.0-7.1":0.00613,"8.1-8.4":0.00153,"9.0-9.2":0.00383,"9.3":0.01915,"10.0-10.2":0.00383,"10.3":0.03063,"11.0-11.2":0.02604,"11.3-11.4":0.00766,"12.0-12.1":0.00536,"12.2-12.5":0.12483,"13.0-13.1":0.0023,"13.2":0.02527,"13.3":0.00613,"13.4-13.7":0.02374,"14.0-14.4":0.04672,"14.5-14.8":0.07122,"15.0-15.1":0.03293,"15.2-15.3":0.03753,"15.4":0.04289,"15.5":0.05437,"15.6-15.8":0.47482,"16.0":0.11105,"16.1":0.23128,"16.2":0.11105,"16.3":0.19605,"16.4":0.04059,"16.5":0.08501,"16.6-16.7":0.67164,"17.0":0.08041,"17.1":0.14857,"17.2":0.19759,"17.3":1.44131,"17.4":3.25328,"17.5":0.02987},P:{"4":0.01042,"20":0.01042,"21":0.13542,"22":0.03125,"23":0.14583,"24":1.13542,"5.0-5.4":0.01042,_:"6.2-6.4 8.2 9.2 11.1-11.2 12.0 13.0 14.0 15.0 18.0","7.2-7.4":0.10417,"10.1":0.01042,"16.0":0.02083,"17.0":0.01042,"19.0":0.02083},I:{"0":0.07804,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{"7":0.00507,"8":0.02537,"9":0.00507,"10":0.00507,"11":0.0406,_:"6 5.5"},K:{"0":0.16194,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.01045},H:{"0":0},L:{"0":43.5966},R:{_:"0"},M:{"0":0.27687}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js index 18e09bcb53917b..fc20445e9dac2c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/UZ.js @@ -1 +1 @@ -module.exports={C:{"22":0.00291,"52":0.02906,"67":0.00291,"68":0.00581,"84":0.00291,"88":0.00581,"92":0.00291,"100":0.00291,"102":0.00291,"103":0.00581,"104":0.00581,"111":0.00291,"115":0.17145,"116":0.00291,"118":0.00291,"119":0.00581,"121":0.00291,"122":0.02325,"123":0.30804,"124":0.16274,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 85 86 87 89 90 91 93 94 95 96 97 98 99 101 105 106 107 108 109 110 112 113 114 117 120 125 126 127 3.5","3.6":0.00291},D:{"11":0.00291,"34":0.00291,"35":0.00291,"37":0.00291,"43":0.00291,"44":0.00291,"45":0.00291,"46":0.00291,"47":0.00291,"49":0.04068,"51":0.00291,"53":0.00291,"56":0.00291,"62":0.00291,"63":0.00291,"64":0.06103,"66":0.02325,"68":0.00581,"69":0.00291,"70":0.00291,"71":0.00291,"72":0.00291,"73":0.00291,"74":0.00291,"75":0.00291,"77":0.00291,"78":0.00291,"79":0.01744,"80":0.02034,"81":0.00291,"83":0.03487,"84":0.00291,"85":0.00581,"86":0.01744,"87":0.02325,"88":0.00291,"89":0.01744,"90":0.00291,"91":0.02325,"92":0.00291,"93":0.00581,"94":0.00291,"95":0.00291,"96":0.00291,"97":0.00872,"98":0.01162,"99":0.00581,"100":0.01453,"101":0.02325,"102":0.05521,"103":0.01453,"104":0.00872,"105":0.05521,"106":0.12496,"107":0.03197,"108":0.03197,"109":2.39164,"110":0.00581,"111":0.00872,"112":0.04359,"113":0.01162,"114":0.01744,"115":0.01453,"116":0.04068,"117":0.01744,"118":0.02615,"119":0.07265,"120":0.24701,"121":0.8224,"122":11.17938,"123":3.21694,"124":0.00872,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 38 39 40 41 42 48 50 52 54 55 57 58 59 60 61 65 67 76 125 126"},F:{"28":0.00291,"46":0.00291,"53":0.00872,"54":0.00291,"55":0.00291,"62":0.00291,"79":0.08427,"80":0.00291,"81":0.00291,"89":0.00291,"90":0.00291,"95":0.05231,"96":0.00581,"98":0.00291,"99":0.00872,"101":0.00291,"102":0.00872,"104":0.02906,"105":0.07556,"106":0.05812,"107":0.25573,"108":0.11333,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 82 83 84 85 86 87 88 91 92 93 94 97 100 103 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5","11.6":0.00581,"12.1":0.00291},B:{"12":0.00291,"15":0.00291,"16":0.00291,"17":0.02034,"18":0.02325,"84":0.00581,"88":0.00291,"89":0.00581,"92":0.02034,"100":0.00291,"105":0.01162,"107":0.00872,"108":0.00291,"109":0.01744,"110":0.00291,"112":0.00291,"113":0.00291,"114":0.00291,"115":0.00581,"116":0.00872,"117":0.00581,"118":0.01162,"119":0.00872,"120":0.03487,"121":0.06393,"122":1.71163,"123":0.16274,_:"13 14 79 80 81 83 85 86 87 90 91 93 94 95 96 97 98 99 101 102 103 104 106 111"},E:{"9":0.00581,"14":0.00291,"15":0.00291,_:"0 4 5 6 7 8 10 11 12 13 3.1 3.2 6.1 7.1 10.1 11.1 15.1 16.0 17.5","5.1":0.31385,"9.1":0.00291,"12.1":0.00291,"13.1":0.00581,"14.1":0.00872,"15.2-15.3":0.00291,"15.4":0.00581,"15.5":0.00291,"15.6":0.02906,"16.1":0.02034,"16.2":0.01453,"16.3":0.02034,"16.4":0.00291,"16.5":0.01162,"16.6":0.03778,"17.0":0.02034,"17.1":0.0465,"17.2":0.06103,"17.3":0.16855,"17.4":0.06103},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00145,"5.0-5.1":0.00072,"6.0-6.1":0.00434,"7.0-7.1":0.00506,"8.1-8.4":0.00145,"9.0-9.2":0.00289,"9.3":0.01807,"10.0-10.2":0.00289,"10.3":0.03036,"11.0-11.2":0.02169,"11.3-11.4":0.00723,"12.0-12.1":0.00651,"12.2-12.5":0.12506,"13.0-13.1":0.00217,"13.2":0.02169,"13.3":0.00651,"13.4-13.7":0.02458,"14.0-14.4":0.04699,"14.5-14.8":0.07373,"15.0-15.1":0.03181,"15.2-15.3":0.03759,"15.4":0.0441,"15.5":0.05638,"15.6-15.8":0.47204,"16.0":0.11494,"16.1":0.23783,"16.2":0.11494,"16.3":0.20457,"16.4":0.04337,"16.5":0.09181,"16.6-16.7":0.69541,"17.0":0.09036,"17.1":0.18072,"17.2":0.29132,"17.3":3.58548,"17.4":0.52626,"17.5":0},P:{"4":0.35278,"20":0.09338,"21":0.14526,"22":0.3009,"23":1.63938,"24":1.13096,"5.0-5.4":0.02075,"6.2-6.4":0.06225,"7.2-7.4":0.3009,_:"8.2 10.1","9.2":0.02075,"11.1-11.2":0.0415,"12.0":0.01038,"13.0":0.0415,"14.0":0.03113,"15.0":0.01038,"16.0":0.05188,"17.0":0.06225,"18.0":0.03113,"19.0":0.08301},I:{"0":0.04239,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.38308,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01889,"9":0.00315,"10":0.00315,"11":0.0787,_:"6 7 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":55.23108},R:{_:"0"},M:{"0":0.05675},Q:{"14.9":0.00709},O:{"0":2.97239},H:{"0":0}}; +module.exports={C:{"38":0.00319,"52":0.00957,"66":0.00319,"67":0.01914,"68":0.00957,"80":0.00319,"81":0.00319,"84":0.00319,"88":0.00319,"96":0.00319,"99":0.00319,"101":0.00319,"103":0.00319,"106":0.00319,"108":0.00319,"110":0.00319,"113":0.00319,"115":0.14036,"116":0.00319,"118":0.02233,"119":0.00638,"121":0.00319,"122":0.00638,"123":0.02233,"124":0.33814,"125":0.16907,"126":0.00319,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 69 70 71 72 73 74 75 76 77 78 79 82 83 85 86 87 89 90 91 92 93 94 95 97 98 100 102 104 105 107 109 111 112 114 117 120 127 128 3.5","3.6":0.00319},D:{"11":0.00319,"27":0.00319,"35":0.00957,"39":0.00319,"40":0.00319,"41":0.00319,"43":0.00319,"44":0.00319,"45":0.00319,"46":0.00319,"47":0.00319,"49":0.02233,"50":0.00319,"51":0.00319,"56":0.00638,"59":0.16269,"61":0.00319,"62":0.00319,"64":0.00319,"66":0.01914,"68":0.00638,"69":0.00638,"70":0.00319,"71":0.00319,"72":0.00319,"73":0.00319,"75":0.00319,"77":0.00319,"78":0.00319,"79":0.01595,"80":0.00957,"81":0.00319,"83":0.02871,"84":0.00638,"85":0.00957,"86":0.00957,"87":0.01276,"88":0.00319,"89":0.00957,"90":0.00319,"91":0.01595,"92":0.00319,"93":0.00638,"94":0.00319,"96":0.00319,"97":0.00957,"98":0.00638,"99":0.00957,"100":0.01595,"101":0.00319,"102":0.06061,"103":0.01914,"104":0.00957,"105":0.01914,"106":0.14993,"107":0.02233,"108":0.01595,"109":2.19153,"110":0.01914,"111":0.00957,"112":0.04466,"113":0.01276,"114":0.01276,"115":0.01914,"116":0.04147,"117":0.02552,"118":0.01914,"119":0.05742,"120":0.14355,"121":0.20735,"122":0.3509,"123":12.1858,"124":5.15823,"125":0.02871,"126":0.00319,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 36 37 38 42 48 52 53 54 55 57 58 60 63 65 67 74 76 95 127"},F:{"28":0.00319,"53":0.01276,"55":0.00638,"62":0.00319,"77":0.00319,"79":0.14674,"81":0.00319,"86":0.00319,"87":0.00319,"90":0.00319,"93":0.00319,"95":0.05423,"101":0.00638,"102":0.00957,"103":0.00319,"104":0.01276,"105":0.07656,"106":0.04466,"107":0.13079,"108":0.17545,"109":0.07656,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 56 57 58 60 63 64 65 66 67 68 69 70 71 72 73 74 75 76 78 80 82 83 84 85 88 89 91 92 94 96 97 98 99 100 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5","11.6":0.00319,"12.1":0.00638},B:{"12":0.00319,"14":0.00319,"15":0.00319,"16":0.00319,"17":0.01914,"18":0.02871,"84":0.00957,"89":0.00319,"90":0.00319,"92":0.02552,"100":0.00638,"108":0.00319,"109":0.01595,"110":0.00319,"111":0.00319,"112":0.00638,"114":0.00319,"115":0.00638,"116":0.00319,"117":0.00957,"118":0.00638,"119":0.01595,"120":0.02871,"121":0.04785,"122":0.13079,"123":1.49611,"124":0.70499,_:"13 79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 113"},E:{"9":0.00638,"14":0.00319,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 12.1","5.1":0.35409,"9.1":0.00319,"11.1":0.00957,"13.1":0.00638,"14.1":0.02552,"15.1":0.00319,"15.2-15.3":0.00319,"15.4":0.02233,"15.5":0.00319,"15.6":0.04147,"16.0":0.00319,"16.1":0.02552,"16.2":0.04466,"16.3":0.01914,"16.4":0.00638,"16.5":0.00638,"16.6":0.04466,"17.0":0.00957,"17.1":0.0319,"17.2":0.03828,"17.3":0.06061,"17.4":0.17226,"17.5":0.00319},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00131,"5.0-5.1":0.00131,"6.0-6.1":0.00328,"7.0-7.1":0.00525,"8.1-8.4":0.00131,"9.0-9.2":0.00328,"9.3":0.01641,"10.0-10.2":0.00328,"10.3":0.02626,"11.0-11.2":0.02232,"11.3-11.4":0.00657,"12.0-12.1":0.0046,"12.2-12.5":0.10702,"13.0-13.1":0.00197,"13.2":0.02167,"13.3":0.00525,"13.4-13.7":0.02035,"14.0-14.4":0.04005,"14.5-14.8":0.06106,"15.0-15.1":0.02823,"15.2-15.3":0.03217,"15.4":0.03677,"15.5":0.04662,"15.6-15.8":0.40708,"16.0":0.0952,"16.1":0.19829,"16.2":0.0952,"16.3":0.16808,"16.4":0.0348,"16.5":0.07288,"16.6-16.7":0.57582,"17.0":0.06894,"17.1":0.12738,"17.2":0.1694,"17.3":1.23568,"17.4":2.78915,"17.5":0.02561},P:{"4":0.38237,"20":0.07044,"21":0.161,"22":0.23144,"23":0.61381,"24":1.74081,"5.0-5.4":0.01006,"6.2-6.4":0.07044,"7.2-7.4":0.26162,_:"8.2","9.2":0.02012,"10.1":0.01006,"11.1-11.2":0.04025,"12.0":0.02012,"13.0":0.02012,"14.0":0.02012,"15.0":0.01006,"16.0":0.05031,"17.0":0.06037,"18.0":0.03019,"19.0":0.07044},I:{"0":0.04748,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00003,"4.4":0,"4.4.3-4.4.4":0.00012},A:{"7":0.00332,"8":0.02326,"9":0.00665,"10":0.00332,"11":0.10966,_:"6 5.5"},K:{"0":0.42909,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01362},O:{"0":1.86621},H:{"0":0},L:{"0":54.16911},R:{_:"0"},M:{"0":0.12941}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js index 105f7bae0f437b..9233c8e4100f21 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VA.js @@ -1 +1 @@ -module.exports={C:{"115":5.1653,"119":0.05996,"123":4.7113,"124":1.55901,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 120 121 122 125 126 127 3.5 3.6"},D:{"67":0.0257,"103":0.23128,"108":0.0257,"109":1.59328,"116":0.11136,"121":2.01301,"122":29.13297,"123":4.03459,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 110 111 112 113 114 115 117 118 119 120 124 125 126"},F:{"107":0.0257,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.08566,"101":0.0257,"121":0.05996,"122":22.65707,"123":0.19702,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 16.4 17.5","12.1":0.8823,"13.1":0.34264,"14.1":0.0257,"15.5":0.11136,"15.6":0.19702,"16.3":0.23128,"16.5":0.34264,"16.6":0.23128,"17.0":0.08566,"17.1":0.71098,"17.2":1.01935,"17.3":8.77158,"17.4":0.39404},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00127,"5.0-5.1":0.00064,"6.0-6.1":0.00381,"7.0-7.1":0.00445,"8.1-8.4":0.00127,"9.0-9.2":0.00254,"9.3":0.01588,"10.0-10.2":0.00254,"10.3":0.02668,"11.0-11.2":0.01906,"11.3-11.4":0.00635,"12.0-12.1":0.00572,"12.2-12.5":0.1099,"13.0-13.1":0.00191,"13.2":0.01906,"13.3":0.00572,"13.4-13.7":0.0216,"14.0-14.4":0.04129,"14.5-14.8":0.0648,"15.0-15.1":0.02795,"15.2-15.3":0.03303,"15.4":0.03875,"15.5":0.04955,"15.6-15.8":0.41483,"16.0":0.10101,"16.1":0.209,"16.2":0.10101,"16.3":0.17978,"16.4":0.03812,"16.5":0.08068,"16.6-16.7":0.61112,"17.0":0.07941,"17.1":0.15882,"17.2":0.25601,"17.3":3.1509,"17.4":0.46247,"17.5":0},P:{"23":0.18598,"24":0.4923,_:"4 20 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":7.08645},R:{_:"0"},M:{"0":0.15487},Q:{_:"14.9"},O:{"0":0.15487},H:{"0":0}}; +module.exports={C:{"104":0.09754,"109":0.03251,"110":0.03251,"115":0.84531,"122":0.03251,"124":5.46202,"125":1.85318,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 105 106 107 108 111 112 113 114 116 117 118 119 120 121 123 126 127 128 3.5 3.6"},D:{"103":0.03251,"107":0.16256,"109":1.65811,"114":0.09754,"116":0.06502,"120":0.06502,"122":2.1783,"123":28.12288,"124":9.85114,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 108 110 111 112 113 115 117 118 119 121 125 126 127"},F:{"107":0.13005,"108":0.39014,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.09754,"122":0.22758,"123":15.67078,"124":8.42061,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{"14":0.03251,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 14.1 15.1 15.2-15.3 15.5 16.0 16.1 16.2 16.4 17.5","13.1":0.16256,"15.4":0.03251,"15.6":0.09754,"16.3":0.09754,"16.5":0.2601,"16.6":0.09754,"17.0":0.06502,"17.1":1.6256,"17.2":0.19507,"17.3":0.61773,"17.4":2.08077},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00168,"5.0-5.1":0.00168,"6.0-6.1":0.0042,"7.0-7.1":0.00671,"8.1-8.4":0.00168,"9.0-9.2":0.0042,"9.3":0.02098,"10.0-10.2":0.0042,"10.3":0.03356,"11.0-11.2":0.02853,"11.3-11.4":0.00839,"12.0-12.1":0.00587,"12.2-12.5":0.13676,"13.0-13.1":0.00252,"13.2":0.02769,"13.3":0.00671,"13.4-13.7":0.02601,"14.0-14.4":0.05118,"14.5-14.8":0.07803,"15.0-15.1":0.03608,"15.2-15.3":0.04111,"15.4":0.04699,"15.5":0.05957,"15.6-15.8":0.5202,"16.0":0.12166,"16.1":0.25339,"16.2":0.12166,"16.3":0.21479,"16.4":0.04447,"16.5":0.09313,"16.6-16.7":0.73583,"17.0":0.0881,"17.1":0.16277,"17.2":0.21647,"17.3":1.57906,"17.4":3.5642,"17.5":0.03272},P:{"24":0.63925,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.22277},H:{"0":0},L:{"0":9.31389},R:{_:"0"},M:{"0":0.03182}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js index bac594784eb72c..952cb7a0bae766 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VC.js @@ -1 +1 @@ -module.exports={C:{"78":0.00356,"115":0.09261,"118":0.00356,"121":0.00356,"122":0.12111,"123":1.68483,"124":0.54142,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 125 126 127 3.5 3.6"},D:{"29":0.0285,"53":0.00356,"56":0.06055,"74":0.00712,"75":0.00712,"76":0.02493,"77":0.01425,"79":0.01069,"80":0.00356,"81":0.00712,"83":0.03562,"85":0.01069,"87":0.05699,"88":0.02137,"91":0.02493,"93":0.08905,"94":0.00356,"95":0.02493,"99":0.01069,"102":0.01069,"103":0.28496,"104":0.00712,"105":0.04631,"108":0.00356,"109":0.75158,"110":0.00712,"112":0.00356,"113":0.00356,"114":0.00712,"115":0.02493,"116":0.01781,"117":0.03206,"118":0.02137,"119":0.18166,"120":0.3277,"121":2.29749,"122":11.46608,"123":2.72493,"124":0.04987,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 78 84 86 89 90 92 96 97 98 100 101 106 107 111 125 126"},F:{"85":0.01069,"86":0.01425,"95":0.00356,"105":0.00356,"106":0.00356,"107":0.41319,"108":0.13179,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00356,"92":0.02493,"100":0.00356,"110":0.00356,"119":0.01781,"120":0.01781,"121":0.431,"122":4.55936,"123":0.27071,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 109 111 112 113 114 115 116 117 118"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.04987,"14.1":0.05343,"15.1":0.00356,"15.2-15.3":0.00356,"15.4":0.00712,"15.5":0.00712,"15.6":0.21016,"16.0":0.01069,"16.1":0.04274,"16.2":0.24578,"16.3":0.04987,"16.4":0.1033,"16.5":0.01781,"16.6":0.58061,"17.0":0.00712,"17.1":0.08549,"17.2":0.1781,"17.3":0.94749,"17.4":0.27784},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00323,"5.0-5.1":0.00162,"6.0-6.1":0.0097,"7.0-7.1":0.01132,"8.1-8.4":0.00323,"9.0-9.2":0.00647,"9.3":0.04042,"10.0-10.2":0.00647,"10.3":0.06791,"11.0-11.2":0.04851,"11.3-11.4":0.01617,"12.0-12.1":0.01455,"12.2-12.5":0.27974,"13.0-13.1":0.00485,"13.2":0.04851,"13.3":0.01455,"13.4-13.7":0.05498,"14.0-14.4":0.1051,"14.5-14.8":0.16493,"15.0-15.1":0.07115,"15.2-15.3":0.08408,"15.4":0.09864,"15.5":0.12612,"15.6-15.8":1.05588,"16.0":0.2571,"16.1":0.53198,"16.2":0.2571,"16.3":0.4576,"16.4":0.09702,"16.5":0.20536,"16.6-16.7":1.55553,"17.0":0.20212,"17.1":0.40424,"17.2":0.65164,"17.3":8.02019,"17.4":1.17716,"17.5":0},P:{"4":0.24682,"20":0.01175,"21":0.09403,"22":0.03526,"23":1.04607,"24":1.68076,"5.0-5.4":0.01175,"6.2-6.4":0.01175,"7.2-7.4":0.1528,_:"8.2 9.2 10.1 12.0 14.0 15.0 16.0","11.1-11.2":0.05877,"13.0":0.02351,"17.0":0.02351,"18.0":0.01175,"19.0":0.03526},I:{"0":0.08975,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00022},K:{"0":0.33472,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00356,"11":0.00712,_:"6 7 8 9 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":49.32514},R:{_:"0"},M:{"0":0.21886},Q:{_:"14.9"},O:{"0":0.10943},H:{"0":0}}; +module.exports={C:{"78":0.00345,"115":0.0483,"122":0.00345,"123":0.04485,"124":2.4219,"125":1.38,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"29":0.01035,"49":0.0276,"56":0.00345,"69":0.00345,"73":0.04485,"74":0.01725,"76":0.0483,"79":0.0138,"81":0.0069,"83":0.06555,"85":0.069,"87":0.03105,"88":0.0138,"91":0.01035,"93":0.13455,"94":0.0276,"95":0.0069,"98":0.0069,"99":0.0207,"102":0.00345,"103":0.1656,"107":0.00345,"108":0.00345,"109":0.7452,"110":0.0276,"112":0.01725,"114":0.01725,"115":0.0345,"116":0.0414,"117":0.0276,"118":0.0276,"119":0.07935,"120":0.2346,"121":0.28635,"122":1.8423,"123":9.2046,"124":3.72255,"125":0.0276,"126":0.01035,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 70 71 72 75 77 78 80 84 86 89 90 92 96 97 100 101 104 105 106 111 113 127"},F:{"82":0.00345,"85":0.0069,"106":0.00345,"107":0.138,"108":0.1035,"109":0.30705,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"14":0.00345,"18":0.00345,"96":0.0138,"106":0.00345,"108":0.00345,"109":0.0069,"114":0.00345,"115":0.0069,"117":0.0069,"119":0.00345,"120":0.0138,"121":0.02415,"122":0.19665,"123":4.30215,"124":1.30755,_:"12 13 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 99 100 101 102 103 104 105 107 110 111 112 113 116 118"},E:{"14":0.0069,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 16.0","12.1":0.01035,"13.1":0.0138,"14.1":0.04485,"15.2-15.3":0.00345,"15.4":0.01035,"15.5":0.00345,"15.6":0.2622,"16.1":0.03795,"16.2":0.00345,"16.3":0.0828,"16.4":0.0069,"16.5":0.0276,"16.6":0.4209,"17.0":0.03795,"17.1":0.03795,"17.2":0.1311,"17.3":0.45885,"17.4":0.6969,"17.5":0.0207},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00312,"5.0-5.1":0.00312,"6.0-6.1":0.0078,"7.0-7.1":0.01248,"8.1-8.4":0.00312,"9.0-9.2":0.0078,"9.3":0.039,"10.0-10.2":0.0078,"10.3":0.0624,"11.0-11.2":0.05304,"11.3-11.4":0.0156,"12.0-12.1":0.01092,"12.2-12.5":0.25428,"13.0-13.1":0.00468,"13.2":0.05148,"13.3":0.01248,"13.4-13.7":0.04836,"14.0-14.4":0.09516,"14.5-14.8":0.14508,"15.0-15.1":0.06708,"15.2-15.3":0.07644,"15.4":0.08736,"15.5":0.11076,"15.6-15.8":0.96718,"16.0":0.2262,"16.1":0.47111,"16.2":0.2262,"16.3":0.39935,"16.4":0.08268,"16.5":0.17316,"16.6-16.7":1.3681,"17.0":0.1638,"17.1":0.30263,"17.2":0.40247,"17.3":2.93587,"17.4":6.62676,"17.5":0.06084},P:{"4":0.2356,"20":0.02356,"21":0.15314,"22":0.04712,"23":0.18848,"24":2.45028,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0 15.0 17.0","7.2-7.4":0.1767,"9.2":0.01178,"11.1-11.2":0.07068,"13.0":0.25916,"14.0":0.01178,"16.0":0.01178,"18.0":0.02356,"19.0":0.02356},I:{"0":0.07827,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.51737,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.07859},H:{"0":0},L:{"0":49.3712},R:{_:"0"},M:{"0":0.28161}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js index e08b4fecff0423..62471a18fcbcf5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VE.js @@ -1 +1 @@ -module.exports={C:{"4":1.28202,"27":0.00372,"40":0.00372,"41":0.00372,"45":0.00372,"47":0.00372,"49":0.01115,"52":0.16722,"60":0.00372,"66":0.00372,"67":0.00372,"68":0.01486,"69":0.00372,"71":0.00372,"72":0.01858,"73":0.00372,"75":0.01486,"78":0.01486,"79":0.00372,"80":0.00372,"81":0.00372,"88":0.00372,"89":0.00372,"91":0.00743,"99":0.00372,"102":0.00372,"103":0.00372,"104":0.00372,"105":0.00743,"106":0.00743,"107":0.00372,"108":0.00372,"110":0.00372,"111":0.00743,"112":0.00743,"113":0.03716,"114":0.00372,"115":0.66145,"116":0.00372,"118":0.00372,"119":0.00372,"120":0.00372,"121":0.01858,"122":0.04088,"123":0.78779,"124":0.33072,"125":0.00743,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 42 43 44 46 48 50 51 53 54 55 56 57 58 59 61 62 63 64 65 70 74 76 77 82 83 84 85 86 87 90 92 93 94 95 96 97 98 100 101 109 117 126 127 3.5 3.6"},D:{"38":0.00372,"45":0.00372,"46":0.00372,"47":0.00743,"49":0.10033,"51":0.00372,"58":0.00372,"59":0.00372,"61":0.00372,"63":0.00372,"64":0.00372,"65":0.00743,"66":0.05202,"67":0.00743,"68":0.01486,"69":0.02973,"70":0.01486,"71":0.01486,"72":0.01486,"73":0.02973,"74":0.02601,"75":0.0223,"76":0.02973,"77":0.0223,"78":0.01486,"79":0.05202,"80":0.05202,"81":0.02973,"83":0.03344,"84":0.01486,"85":0.04459,"86":0.02973,"87":0.06317,"88":0.02601,"89":0.01486,"90":0.02601,"91":0.04459,"92":0.00743,"93":0.02973,"94":0.00743,"95":0.00372,"96":0.01115,"97":0.0223,"98":0.04088,"99":0.01858,"100":0.01858,"101":0.0223,"102":0.03344,"103":0.08918,"104":0.01858,"105":0.02973,"106":0.03716,"107":0.04088,"108":0.07804,"109":5.53312,"110":0.02973,"111":0.01858,"112":0.03716,"113":0.0223,"114":0.03344,"115":0.01115,"116":0.10405,"117":0.01858,"118":0.12634,"119":0.09662,"120":0.2787,"121":0.65402,"122":10.3342,"123":2.85017,"124":0.00372,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 48 50 52 53 54 55 56 57 60 62 125 126"},F:{"28":0.00372,"36":0.00372,"53":0.00372,"54":0.00372,"55":0.00372,"65":0.00372,"79":0.01115,"81":0.00372,"82":0.00372,"85":0.00372,"86":0.00372,"91":0.00372,"95":0.26012,"102":0.00372,"105":0.00372,"106":0.01486,"107":1.58673,"108":0.301,"109":0.00372,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 87 88 89 90 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.02973,"17":0.00372,"18":0.00743,"80":0.00372,"81":0.00372,"83":0.00372,"84":0.00372,"85":0.00372,"86":0.00372,"89":0.00372,"90":0.00372,"92":0.0223,"100":0.00372,"105":0.00372,"106":0.00372,"109":0.09662,"110":0.00372,"111":0.00372,"112":0.00372,"113":0.00372,"114":0.00372,"116":0.00372,"117":0.00372,"118":0.00743,"119":0.01486,"120":0.02973,"121":0.08918,"122":2.05495,"123":0.17094,_:"12 13 14 16 79 87 88 91 93 94 95 96 97 98 99 101 102 103 104 107 108 115"},E:{"14":0.00743,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 15.2-15.3 17.5","5.1":0.00372,"9.1":0.05946,"13.1":0.01115,"14.1":0.03716,"15.1":0.00372,"15.4":0.01486,"15.5":0.00372,"15.6":0.04088,"16.0":0.00372,"16.1":0.00372,"16.2":0.00372,"16.3":0.01486,"16.4":0.00372,"16.5":0.00743,"16.6":0.04088,"17.0":0.00743,"17.1":0.02601,"17.2":0.04459,"17.3":0.06689,"17.4":0.0223},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00061,"5.0-5.1":0.00031,"6.0-6.1":0.00184,"7.0-7.1":0.00215,"8.1-8.4":0.00061,"9.0-9.2":0.00123,"9.3":0.00768,"10.0-10.2":0.00123,"10.3":0.01291,"11.0-11.2":0.00922,"11.3-11.4":0.00307,"12.0-12.1":0.00277,"12.2-12.5":0.05316,"13.0-13.1":0.00092,"13.2":0.00922,"13.3":0.00277,"13.4-13.7":0.01045,"14.0-14.4":0.01997,"14.5-14.8":0.03134,"15.0-15.1":0.01352,"15.2-15.3":0.01598,"15.4":0.01874,"15.5":0.02397,"15.6-15.8":0.20066,"16.0":0.04886,"16.1":0.1011,"16.2":0.04886,"16.3":0.08696,"16.4":0.01844,"16.5":0.03903,"16.6-16.7":0.29561,"17.0":0.03841,"17.1":0.07682,"17.2":0.12384,"17.3":1.52415,"17.4":0.22371,"17.5":0},P:{"4":0.06432,"20":0.01072,"21":0.04288,"22":0.02144,"23":0.27871,"24":0.26799,"5.0-5.4":0.02144,_:"6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","7.2-7.4":0.07504,"13.0":0.01072,"16.0":0.01072,"17.0":0.06432,"19.0":0.04288},I:{"0":0.06884,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00017},K:{"0":0.41103,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00811,"9":0.00405,"11":0.03243,_:"6 7 10 5.5"},S:{"2.5":0.01885,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":64.50378},R:{_:"0"},M:{"0":0.13196},Q:{_:"14.9"},O:{"0":0.0377},H:{"0":0.01}}; +module.exports={C:{"4":2.32472,"27":0.00776,"40":0.00388,"45":0.00388,"48":0.00388,"49":0.00776,"52":0.18241,"60":0.00388,"61":0.00388,"65":0.00388,"66":0.00388,"67":0.00388,"68":0.01164,"72":0.01552,"75":0.01552,"78":0.01164,"84":0.00388,"88":0.00776,"91":0.01164,"99":0.00388,"100":0.00388,"101":0.00388,"102":0.00776,"103":0.00776,"104":0.00388,"106":0.00388,"107":0.00388,"108":0.00388,"109":0.00388,"110":0.00388,"111":0.00388,"112":0.00776,"113":0.01941,"115":0.67918,"116":0.00388,"118":0.00388,"119":0.00388,"120":0.00388,"121":0.01552,"122":0.02329,"123":0.03105,"124":0.73351,"125":0.43079,"126":0.00388,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 46 47 50 51 53 54 55 56 57 58 59 62 63 64 69 70 71 73 74 76 77 79 80 81 82 83 85 86 87 89 90 92 93 94 95 96 97 98 105 114 117 127 128 3.5 3.6"},D:{"11":0.00388,"24":0.00388,"43":0.00388,"44":0.00388,"45":0.00388,"46":0.00388,"47":0.00388,"49":0.12807,"50":0.00388,"51":0.00388,"53":0.00388,"58":0.00388,"59":0.00388,"63":0.00776,"64":0.00388,"65":0.01552,"66":0.03493,"67":0.00388,"68":0.00776,"69":0.01164,"70":0.00776,"71":0.00776,"72":0.01164,"73":0.02717,"74":0.01941,"75":0.01941,"76":0.03105,"77":0.03105,"78":0.00776,"79":0.02717,"80":0.01552,"81":0.01941,"83":0.02329,"84":0.00776,"85":0.03881,"86":0.01164,"87":0.05822,"88":0.01552,"89":0.01164,"90":0.01164,"91":0.02329,"92":0.01164,"93":0.06986,"94":0.00776,"95":0.00776,"96":0.01164,"97":0.02717,"98":0.04657,"99":0.01552,"100":0.02329,"101":0.02329,"102":0.03881,"103":0.09314,"104":0.01552,"105":0.02717,"106":0.03105,"107":0.02329,"108":0.08538,"109":5.91464,"110":0.03105,"111":0.02329,"112":0.02717,"113":0.01164,"114":0.02717,"115":0.01164,"116":0.09703,"117":0.01552,"118":0.13584,"119":0.08538,"120":0.163,"121":0.20957,"122":0.55886,"123":10.05955,"124":4.30403,"125":0.10091,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 48 52 54 55 56 57 60 61 62 126 127"},F:{"28":0.00388,"36":0.00388,"65":0.00388,"79":0.01552,"82":0.00388,"85":0.00388,"86":0.00388,"92":0.00388,"95":0.28331,"101":0.00388,"102":0.00388,"106":0.00388,"107":1.25356,"108":0.51617,"109":0.31824,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 87 88 89 90 91 93 94 96 97 98 99 100 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00388,"15":0.03881,"18":0.00388,"83":0.00388,"84":0.00388,"85":0.00388,"89":0.00388,"92":0.03881,"100":0.00388,"106":0.00388,"107":0.00388,"109":0.10479,"111":0.00388,"112":0.00388,"114":0.00388,"115":0.00388,"117":0.00388,"119":0.01164,"120":0.01552,"121":0.02717,"122":0.1436,"123":1.6339,"124":0.76844,_:"13 14 16 17 79 80 81 86 87 88 90 91 93 94 95 96 97 98 99 101 102 103 104 105 108 110 113 116 118"},E:{"9":0.00388,"14":0.00388,_:"0 4 5 6 7 8 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 12.1 15.2-15.3 17.5","5.1":0.00388,"9.1":0.01164,"13.1":0.01552,"14.1":0.03881,"15.1":0.00388,"15.4":0.00388,"15.5":0.00776,"15.6":0.04657,"16.0":0.00388,"16.1":0.00776,"16.2":0.00388,"16.3":0.01552,"16.4":0.00388,"16.5":0.01164,"16.6":0.03881,"17.0":0.01164,"17.1":0.01552,"17.2":0.02717,"17.3":0.03881,"17.4":0.09314},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0006,"5.0-5.1":0.0006,"6.0-6.1":0.00151,"7.0-7.1":0.00242,"8.1-8.4":0.0006,"9.0-9.2":0.00151,"9.3":0.00756,"10.0-10.2":0.00151,"10.3":0.01209,"11.0-11.2":0.01028,"11.3-11.4":0.00302,"12.0-12.1":0.00212,"12.2-12.5":0.04928,"13.0-13.1":0.00091,"13.2":0.00998,"13.3":0.00242,"13.4-13.7":0.00937,"14.0-14.4":0.01844,"14.5-14.8":0.02812,"15.0-15.1":0.013,"15.2-15.3":0.01481,"15.4":0.01693,"15.5":0.02147,"15.6-15.8":0.18744,"16.0":0.04384,"16.1":0.0913,"16.2":0.04384,"16.3":0.0774,"16.4":0.01602,"16.5":0.03356,"16.6-16.7":0.26514,"17.0":0.03174,"17.1":0.05865,"17.2":0.078,"17.3":0.56898,"17.4":1.28429,"17.5":0.01179},P:{"4":0.07446,"20":0.01064,"21":0.05319,"22":0.02127,"23":0.05319,"24":0.49995,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 18.0","7.2-7.4":0.06382,"13.0":0.01064,"16.0":0.01064,"17.0":0.03191,"19.0":0.02127},I:{"0":0.06095,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00015},A:{"8":0.01164,"9":0.00388,"11":0.03105,_:"6 7 10 5.5"},K:{"0":0.42228,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01224,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0306},H:{"0":0},L:{"0":61.41334},R:{_:"0"},M:{"0":0.22644}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js index 8695affa9ad9ac..2a4786db044806 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VG.js @@ -1 +1 @@ -module.exports={C:{"103":0.00772,"112":0.00386,"115":0.0656,"117":0.00772,"122":0.07718,"123":0.82969,"124":0.18137,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 113 114 116 118 119 120 121 125 126 127 3.5 3.6"},D:{"49":0.02315,"53":0.23154,"78":0.00386,"79":0.09648,"85":0.01158,"88":0.00386,"90":0.00386,"92":0.00386,"93":0.00772,"94":0.01544,"99":0.00386,"100":0.03473,"101":0.03859,"102":0.05017,"103":0.09262,"104":0.00386,"106":0.42063,"108":0.12735,"109":1.40082,"110":0.00772,"111":0.00772,"112":0.00386,"113":0.01544,"114":0.01544,"116":0.02701,"118":0.01158,"119":0.33573,"120":0.33959,"121":0.9879,"122":12.34494,"123":2.7206,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 80 81 83 84 86 87 89 91 95 96 97 98 105 107 115 117 124 125 126"},F:{"95":0.01544,"106":0.01158,"107":0.41291,"108":0.00386,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.08104,"14":0.01158,"89":0.05789,"112":0.01158,"113":0.00386,"114":0.00386,"119":0.00386,"120":0.0656,"121":0.59429,"122":9.01462,"123":0.42063,_:"13 15 16 17 18 79 80 81 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 115 116 117 118"},E:{"13":0.0193,"14":0.01158,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.1 15.2-15.3 17.5","12.1":0.00386,"13.1":0.01544,"14.1":0.08104,"15.4":0.00772,"15.5":0.03859,"15.6":0.27013,"16.0":0.0193,"16.1":0.04631,"16.2":0.0656,"16.3":0.08104,"16.4":0.01158,"16.5":0.32802,"16.6":2.08,"17.0":0.03859,"17.1":0.13892,"17.2":0.20839,"17.3":2.28453,"17.4":0.14278},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.0059,"5.0-5.1":0.00295,"6.0-6.1":0.01769,"7.0-7.1":0.02064,"8.1-8.4":0.0059,"9.0-9.2":0.01179,"9.3":0.07371,"10.0-10.2":0.01179,"10.3":0.12383,"11.0-11.2":0.08845,"11.3-11.4":0.02948,"12.0-12.1":0.02653,"12.2-12.5":0.51005,"13.0-13.1":0.00884,"13.2":0.08845,"13.3":0.02653,"13.4-13.7":0.10024,"14.0-14.4":0.19164,"14.5-14.8":0.30073,"15.0-15.1":0.12972,"15.2-15.3":0.15331,"15.4":0.17985,"15.5":0.22997,"15.6-15.8":1.92524,"16.0":0.46878,"16.1":0.96999,"16.2":0.46878,"16.3":0.83437,"16.4":0.1769,"16.5":0.37443,"16.6-16.7":2.83626,"17.0":0.36854,"17.1":0.73707,"17.2":1.18816,"17.3":14.62354,"17.4":2.14636,"17.5":0},P:{"4":0.08511,"20":0.01064,"21":0.03192,"22":0.07447,"23":2.02143,"24":1.77673,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 17.0","7.2-7.4":0.01064,"11.1-11.2":0.02128,"13.0":0.02128,"18.0":0.02128,"19.0":0.02128},I:{"0":0,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0.16581,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00392,"11":0.22762,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":27.92461},R:{_:"0"},M:{"0":0.24564},Q:{_:"14.9"},O:{"0":0.14124},H:{"0":0}}; +module.exports={C:{"65":0.00402,"87":0.00402,"91":0.00402,"101":0.00402,"102":0.00805,"104":0.00402,"105":0.10862,"106":0.00402,"107":0.00402,"108":0.00402,"109":0.02012,"110":0.01207,"111":0.01207,"115":0.03218,"119":0.00402,"120":0.00805,"122":0.00805,"123":0.15287,"124":0.64368,"125":0.30977,"126":0.00402,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 88 89 90 92 93 94 95 96 97 98 99 100 103 112 113 114 116 117 118 121 127 128 3.5 3.6"},D:{"53":0.08851,"70":0.00402,"76":0.00402,"79":0.02012,"83":0.00402,"86":0.93736,"87":0.00402,"89":0.00402,"91":0.02012,"92":0.00402,"93":0.00805,"99":0.00402,"100":0.00402,"101":0.01207,"102":0.01609,"103":0.06035,"104":0.01207,"105":0.01207,"106":0.77644,"107":0.01207,"108":0.04828,"109":1.56092,"110":0.07241,"111":0.37414,"112":0.5954,"114":0.03218,"115":0.07644,"116":0.04023,"117":0.01207,"118":0.08046,"119":0.21724,"120":0.1569,"121":0.18506,"122":1.00575,"123":12.07302,"124":3.67702,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 71 72 73 74 75 77 78 80 81 84 85 88 90 94 95 96 97 98 113 125 126 127"},F:{"83":0.01609,"89":0.02012,"95":0.02414,"103":0.01207,"104":0.01207,"106":0.01207,"107":0.43851,"108":0.01609,"109":0.07241,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 84 85 86 87 88 90 91 92 93 94 96 97 98 99 100 101 102 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.00402,"92":0.01207,"104":0.01207,"105":0.02816,"107":0.00402,"108":0.00805,"109":0.05632,"110":0.04023,"112":0.00402,"115":0.00402,"119":0.03218,"120":0.13678,"121":0.08046,"122":0.68391,"123":4.46955,"124":1.76207,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 106 111 113 114 116 117 118"},E:{"13":0.02012,"15":0.02012,_:"0 4 5 6 7 8 9 10 11 12 14 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.1","13.1":0.10862,"14.1":0.1046,"15.2-15.3":0.02012,"15.4":0.00402,"15.5":0.01609,"15.6":0.54311,"16.0":0.04828,"16.1":0.06839,"16.2":0.02816,"16.3":0.04023,"16.4":0.00805,"16.5":0.12874,"16.6":1.2592,"17.0":0.06839,"17.1":0.15287,"17.2":0.45862,"17.3":1.44828,"17.4":1.98334,"17.5":0.00402},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00572,"5.0-5.1":0.00572,"6.0-6.1":0.01431,"7.0-7.1":0.02289,"8.1-8.4":0.00572,"9.0-9.2":0.01431,"9.3":0.07153,"10.0-10.2":0.01431,"10.3":0.11445,"11.0-11.2":0.09728,"11.3-11.4":0.02861,"12.0-12.1":0.02003,"12.2-12.5":0.46639,"13.0-13.1":0.00858,"13.2":0.09442,"13.3":0.02289,"13.4-13.7":0.0887,"14.0-14.4":0.17454,"14.5-14.8":0.2661,"15.0-15.1":0.12304,"15.2-15.3":0.1402,"15.4":0.16023,"15.5":0.20315,"15.6-15.8":1.77401,"16.0":0.41489,"16.1":0.86412,"16.2":0.41489,"16.3":0.7325,"16.4":0.15165,"16.5":0.31761,"16.6-16.7":2.50937,"17.0":0.30044,"17.1":0.55509,"17.2":0.73822,"17.3":5.38498,"17.4":12.15484,"17.5":0.11159},P:{"4":0.01103,"20":0.03309,"21":0.01103,"22":0.11031,"23":0.14341,"24":3.13288,_:"5.0-5.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 17.0","6.2-6.4":0.01103,"7.2-7.4":0.02206,"13.0":0.01103,"15.0":0.02206,"16.0":0.01103,"18.0":0.01103,"19.0":0.01103},I:{"0":0.06547,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"8":0.09479,"9":0.02061,"10":0.00824,"11":0.04533,_:"6 7 5.5"},K:{"0":0.10159,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.08964},H:{"0":0},L:{"0":27.34374},R:{_:"0"},M:{"0":0.34063}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js index c0ff8b0be74c33..e1f1f2c80c749b 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VI.js @@ -1 +1 @@ -module.exports={C:{"110":0.0224,"111":0.01344,"115":0.21947,"116":0.15677,"117":0.00448,"118":0.19708,"121":0.00896,"122":0.08062,"123":4.95377,"124":0.79726,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 112 113 114 119 120 125 126 127 3.5 3.6"},D:{"75":0.00448,"76":0.0224,"83":0.00448,"88":0.00448,"90":0.00448,"91":0.00448,"93":0.11198,"94":0.00448,"101":0.00448,"102":0.00896,"103":0.25082,"104":0.00448,"109":0.31353,"110":0.01344,"111":0.0851,"113":0.00896,"114":0.03583,"115":0.03135,"116":0.58675,"117":0.12541,"118":0.0224,"119":0.09406,"120":0.47477,"121":2.55751,"122":12.46058,"123":2.31564,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 79 80 81 84 85 86 87 89 92 95 96 97 98 99 100 105 106 107 108 112 124 125 126"},F:{"81":0.00448,"82":0.00448,"102":0.00896,"106":0.01344,"107":0.41655,"108":0.02687,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.00448,"100":0.01792,"108":0.00448,"109":0.15229,"110":0.00448,"111":0.00896,"112":0.00448,"115":0.0224,"117":0.00896,"118":0.00896,"119":0.01344,"120":0.05375,"121":0.35832,"122":7.25598,"123":0.44342,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 113 114 116"},E:{"14":0.17468,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.0851,"14.1":0.2777,"15.1":0.00896,"15.2-15.3":0.00448,"15.4":0.05375,"15.5":0.0224,"15.6":0.76591,"16.0":0.30905,"16.1":0.04479,"16.2":0.04479,"16.3":0.51061,"16.4":0.13437,"16.5":1.13319,"16.6":1.20485,"17.0":0.41655,"17.1":0.11645,"17.2":0.4703,"17.3":2.4948,"17.4":0.54644},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00601,"5.0-5.1":0.00301,"6.0-6.1":0.01804,"7.0-7.1":0.02105,"8.1-8.4":0.00601,"9.0-9.2":0.01203,"9.3":0.07518,"10.0-10.2":0.01203,"10.3":0.12631,"11.0-11.2":0.09022,"11.3-11.4":0.03007,"12.0-12.1":0.02707,"12.2-12.5":0.52026,"13.0-13.1":0.00902,"13.2":0.09022,"13.3":0.02707,"13.4-13.7":0.10225,"14.0-14.4":0.19547,"14.5-14.8":0.30674,"15.0-15.1":0.13232,"15.2-15.3":0.15638,"15.4":0.18344,"15.5":0.23457,"15.6-15.8":1.96376,"16.0":0.47816,"16.1":0.9894,"16.2":0.47816,"16.3":0.85106,"16.4":0.18044,"16.5":0.38193,"16.6-16.7":2.89301,"17.0":0.37591,"17.1":0.75182,"17.2":1.21194,"17.3":14.91615,"17.4":2.18931,"17.5":0},P:{"4":0.01099,"20":0.01099,"22":0.02199,"23":0.62666,"24":1.79202,_:"21 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 19.0","5.0-5.4":0.01099,"6.2-6.4":0.02199,"13.0":0.01099,"18.0":0.02199},I:{"0":0.02199,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00005},K:{"0":0.3423,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.05375,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.61781},R:{_:"0"},M:{"0":0.36439},Q:{_:"14.9"},O:{"0":0.01104},H:{"0":0}}; +module.exports={C:{"78":0.02238,"115":0.0537,"118":0.08055,"123":0.04475,"124":3.96485,"125":2.23303,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 119 120 121 122 126 127 128 3.5 3.6"},D:{"50":0.00448,"75":0.01343,"76":0.00895,"79":0.00448,"80":0.00448,"87":0.0179,"91":0.00448,"92":0.00448,"93":0.04923,"101":0.00448,"103":0.179,"105":0.00448,"108":0.00895,"109":0.38933,"110":0.00895,"111":0.09845,"114":0.02238,"115":0.01343,"116":0.54595,"117":0.12978,"118":0.00895,"119":0.04475,"120":0.29983,"121":0.51015,"122":2.02718,"123":11.7782,"124":3.95143,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 81 83 84 85 86 88 89 90 94 95 96 97 98 99 100 102 104 106 107 112 113 125 126 127"},F:{"82":0.02238,"95":0.00448,"100":0.00448,"102":0.00448,"107":0.8234,"108":0.1074,"109":0.0537,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"92":0.01343,"104":0.04028,"108":0.00895,"109":0.11635,"115":0.02685,"118":0.00448,"119":0.00895,"120":0.04028,"121":0.04028,"122":0.6086,"123":5.70115,"124":2.39413,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 105 106 107 110 111 112 113 114 116 117"},E:{"13":0.00895,"14":0.3043,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1","12.1":0.00448,"13.1":0.03133,"14.1":0.37143,"15.1":0.00895,"15.2-15.3":0.00895,"15.4":0.06265,"15.5":0.02238,"15.6":0.55043,"16.0":0.11188,"16.1":0.03133,"16.2":0.02685,"16.3":0.34905,"16.4":0.0358,"16.5":1.52598,"16.6":0.87263,"17.0":0.15663,"17.1":0.17453,"17.2":0.23718,"17.3":0.59518,"17.4":1.72288,"17.5":0.00448},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00559,"5.0-5.1":0.00559,"6.0-6.1":0.01397,"7.0-7.1":0.02235,"8.1-8.4":0.00559,"9.0-9.2":0.01397,"9.3":0.06985,"10.0-10.2":0.01397,"10.3":0.11176,"11.0-11.2":0.095,"11.3-11.4":0.02794,"12.0-12.1":0.01956,"12.2-12.5":0.45542,"13.0-13.1":0.00838,"13.2":0.0922,"13.3":0.02235,"13.4-13.7":0.08661,"14.0-14.4":0.17043,"14.5-14.8":0.25984,"15.0-15.1":0.12014,"15.2-15.3":0.13691,"15.4":0.15646,"15.5":0.19837,"15.6-15.8":1.73228,"16.0":0.40513,"16.1":0.84379,"16.2":0.40513,"16.3":0.71526,"16.4":0.14808,"16.5":0.31013,"16.6-16.7":2.45033,"17.0":0.29337,"17.1":0.54203,"17.2":0.72085,"17.3":5.25829,"17.4":11.86888,"17.5":0.10897},P:{"4":0.02186,"22":0.07653,"23":0.12026,"24":2.07716,_:"20 21 6.2-6.4 7.2-7.4 8.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 17.0 19.0","5.0-5.4":0.02186,"9.2":0.06559,"13.0":0.01093,"18.0":0.01093},I:{"0":0.02201,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"10":0.00448,"11":0.05818,_:"6 7 8 9 5.5"},K:{"0":0.00553,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.0221},H:{"0":0},L:{"0":24.39163},R:{_:"0"},M:{"0":0.55803}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js index 538949ff33a14f..3d2a9000ff198f 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VN.js @@ -1 +1 @@ -module.exports={C:{"47":0.00114,"52":0.00343,"54":0.00114,"59":0.00343,"68":0.00114,"72":0.00114,"75":0.00114,"78":0.00114,"88":0.00457,"99":0.00114,"101":0.00114,"103":0.00114,"105":0.00114,"106":0.00114,"107":0.00114,"108":0.00114,"109":0.00114,"110":0.00114,"111":0.00114,"115":0.03772,"117":0.00114,"118":0.00572,"119":0.00114,"120":0.00114,"121":0.00229,"122":0.00343,"123":0.1063,"124":0.04686,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 102 104 112 113 114 116 125 126 127 3.5 3.6"},D:{"11":0.00114,"26":0.00229,"34":0.00572,"38":0.05029,"41":0.00114,"43":0.00114,"47":0.00914,"49":0.01486,"50":0.00114,"52":0.00229,"53":0.00343,"54":0.00229,"55":0.00114,"56":0.00343,"57":0.00457,"58":0.00114,"61":0.00114,"65":0.00114,"66":0.01143,"68":0.00457,"69":0.00457,"70":0.00457,"71":0.00572,"72":0.00572,"73":0.00229,"74":0.00572,"75":0.00457,"76":0.00457,"77":0.00457,"78":0.00572,"79":0.08001,"80":0.00914,"81":0.00914,"83":0.00686,"84":0.01257,"85":0.01372,"86":0.00914,"87":0.05372,"88":0.00686,"89":0.00914,"90":0.008,"91":0.00457,"92":0.00229,"93":0.00114,"94":0.00229,"95":0.00343,"96":0.00114,"97":0.00343,"98":0.00229,"99":0.00457,"100":0.01143,"101":0.00457,"102":0.01029,"103":0.01486,"104":0.00457,"105":0.00572,"106":0.01372,"107":0.01143,"108":0.016,"109":0.61493,"110":0.00914,"111":0.01143,"112":0.01143,"113":0.00457,"114":0.01029,"115":0.008,"116":0.02286,"117":0.016,"118":0.01143,"119":0.03315,"120":0.06744,"121":0.21031,"122":3.55016,"123":1.05613,"124":0.00229,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 42 44 45 46 48 51 59 60 62 63 64 67 125 126"},F:{"28":0.00914,"29":0.00572,"36":0.02172,"40":0.00343,"46":0.02743,"54":0.00114,"55":0.00114,"79":0.00114,"81":0.00114,"93":0.00114,"95":0.00457,"107":0.08573,"108":0.024,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 87 88 89 90 91 92 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00114,"14":0.00114,"16":0.00114,"17":0.00229,"18":0.00229,"80":0.00114,"81":0.00114,"83":0.00114,"84":0.00229,"85":0.00114,"86":0.00114,"87":0.00114,"88":0.00114,"89":0.00114,"90":0.00114,"92":0.00229,"99":0.00114,"100":0.00114,"106":0.00114,"107":0.00229,"108":0.00229,"109":0.00572,"110":0.00114,"111":0.00114,"112":0.00114,"113":0.00114,"114":0.00114,"115":0.00114,"116":0.00114,"117":0.00229,"118":0.00114,"119":0.00457,"120":0.008,"121":0.01257,"122":0.49835,"123":0.04229,_:"13 15 79 91 93 94 95 96 97 98 101 102 103 104 105"},E:{"13":0.00457,"14":0.02057,"15":0.00343,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.02629,"11.1":0.00343,"12.1":0.00114,"13.1":0.01715,"14.1":0.04572,"15.1":0.008,"15.2-15.3":0.00572,"15.4":0.01029,"15.5":0.01715,"15.6":0.10516,"16.0":0.00572,"16.1":0.01486,"16.2":0.01143,"16.3":0.02858,"16.4":0.00914,"16.5":0.01257,"16.6":0.09373,"17.0":0.00686,"17.1":0.01486,"17.2":0.02515,"17.3":0.13487,"17.4":0.02743},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00482,"5.0-5.1":0.00241,"6.0-6.1":0.01445,"7.0-7.1":0.01686,"8.1-8.4":0.00482,"9.0-9.2":0.00964,"9.3":0.06023,"10.0-10.2":0.00964,"10.3":0.10118,"11.0-11.2":0.07227,"11.3-11.4":0.02409,"12.0-12.1":0.02168,"12.2-12.5":0.41677,"13.0-13.1":0.00723,"13.2":0.07227,"13.3":0.02168,"13.4-13.7":0.08191,"14.0-14.4":0.15659,"14.5-14.8":0.24573,"15.0-15.1":0.106,"15.2-15.3":0.12527,"15.4":0.14696,"15.5":0.18791,"15.6-15.8":1.57314,"16.0":0.38305,"16.1":0.7926,"16.2":0.38305,"16.3":0.68178,"16.4":0.14455,"16.5":0.30596,"16.6-16.7":2.31756,"17.0":0.30114,"17.1":0.60228,"17.2":0.97087,"17.3":11.94916,"17.4":1.75383,"17.5":0},P:{"4":0.51645,"20":0.05165,"21":0.14461,"22":0.15494,"23":1.52869,"24":0.87797,"5.0-5.4":0.01033,"6.2-6.4":0.02066,"7.2-7.4":0.08263,_:"8.2 10.1","9.2":0.01033,"11.1-11.2":0.03099,"12.0":0.01033,"13.0":0.02066,"14.0":0.02066,"15.0":0.01033,"16.0":0.04132,"17.0":0.04132,"18.0":0.03099,"19.0":0.05165},I:{"0":0.01764,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},K:{"0":0.50256,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0012,"9":0.0012,"11":0.0216,_:"6 7 10 5.5"},S:{"2.5":0.00886,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":58.49024},R:{_:"0"},M:{"0":0.08857},Q:{_:"14.9"},O:{"0":2.37368},H:{"0":0.02}}; +module.exports={C:{"4":0.00127,"47":0.00127,"51":0.00127,"52":0.00507,"54":0.00127,"59":0.0038,"68":0.00127,"72":0.00127,"75":0.00127,"78":0.00127,"88":0.00507,"99":0.00127,"101":0.00127,"102":0.00127,"103":0.00254,"105":0.00127,"106":0.00127,"107":0.00127,"108":0.00127,"109":0.00127,"110":0.00127,"111":0.00127,"112":0.00127,"113":0.00127,"115":0.04058,"118":0.00634,"119":0.00127,"121":0.00254,"122":0.00127,"123":0.0038,"124":0.13821,"125":0.05706,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 53 55 56 57 58 60 61 62 63 64 65 66 67 69 70 71 73 74 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 100 104 114 116 117 120 126 127 128 3.5 3.6"},D:{"11":0.00127,"26":0.00254,"34":0.00761,"38":0.04945,"41":0.00127,"43":0.00127,"47":0.01141,"49":0.01775,"50":0.00127,"52":0.00507,"53":0.0038,"54":0.00127,"55":0.00127,"56":0.00888,"57":0.00634,"58":0.00127,"61":0.00127,"65":0.00127,"66":0.01648,"67":0.00127,"68":0.00254,"69":0.00254,"70":0.00127,"71":0.00254,"72":0.00254,"73":0.00254,"74":0.0038,"75":0.00254,"76":0.00254,"77":0.00254,"78":0.00254,"79":0.08876,"80":0.00507,"81":0.00634,"83":0.0038,"84":0.01014,"85":0.01268,"86":0.00507,"87":0.06086,"88":0.00254,"89":0.00761,"90":0.00507,"91":0.00254,"92":0.00127,"93":0.00127,"94":0.00507,"95":0.00254,"96":0.00254,"97":0.00254,"98":0.00127,"99":0.0038,"100":0.00761,"101":0.0038,"102":0.01268,"103":0.02156,"104":0.01014,"105":0.00761,"106":0.01268,"107":0.01014,"108":0.01522,"109":0.71896,"110":0.00888,"111":0.01014,"112":0.01141,"113":0.00507,"114":0.01268,"115":0.01014,"116":0.02663,"117":0.02029,"118":0.01141,"119":0.03043,"120":0.04945,"121":0.05579,"122":0.14836,"123":4.14129,"124":1.36183,"125":0.00634,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 27 28 29 30 31 32 33 35 36 37 39 40 42 44 45 46 48 51 59 60 62 63 64 126 127"},F:{"28":0.00888,"29":0.00507,"36":0.02409,"40":0.0038,"44":0.00127,"46":0.03424,"79":0.00127,"85":0.00127,"95":0.00507,"107":0.0596,"108":0.04184,"109":0.0355,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 30 31 32 33 34 35 37 38 39 41 42 43 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00127,"14":0.00127,"16":0.00127,"17":0.00254,"18":0.0038,"84":0.00254,"86":0.00127,"89":0.00127,"90":0.00127,"92":0.00127,"100":0.00127,"105":0.00127,"107":0.00254,"108":0.00127,"109":0.00761,"110":0.00127,"111":0.00127,"113":0.00127,"114":0.00127,"115":0.00127,"116":0.00127,"117":0.00127,"118":0.00127,"119":0.00254,"120":0.00507,"121":0.0038,"122":0.02156,"123":0.44634,"124":0.18386,_:"13 15 79 80 81 83 85 87 88 91 93 94 95 96 97 98 99 101 102 103 104 106 112"},E:{"10":0.00127,"13":0.00507,"14":0.02156,"15":0.0038,_:"0 4 5 6 7 8 9 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00888,"11.1":0.0038,"12.1":0.00127,"13.1":0.01902,"14.1":0.05326,"15.1":0.01014,"15.2-15.3":0.00507,"15.4":0.01141,"15.5":0.01902,"15.6":0.11919,"16.0":0.00634,"16.1":0.01648,"16.2":0.01141,"16.3":0.03043,"16.4":0.01014,"16.5":0.01268,"16.6":0.11158,"17.0":0.00634,"17.1":0.01522,"17.2":0.02029,"17.3":0.07481,"17.4":0.16357,"17.5":0.00127},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00458,"5.0-5.1":0.00458,"6.0-6.1":0.01144,"7.0-7.1":0.01831,"8.1-8.4":0.00458,"9.0-9.2":0.01144,"9.3":0.05722,"10.0-10.2":0.01144,"10.3":0.09155,"11.0-11.2":0.07781,"11.3-11.4":0.02289,"12.0-12.1":0.01602,"12.2-12.5":0.37305,"13.0-13.1":0.00687,"13.2":0.07553,"13.3":0.01831,"13.4-13.7":0.07095,"14.0-14.4":0.13961,"14.5-14.8":0.21285,"15.0-15.1":0.09841,"15.2-15.3":0.11214,"15.4":0.12816,"15.5":0.16249,"15.6-15.8":1.41897,"16.0":0.33186,"16.1":0.69117,"16.2":0.33186,"16.3":0.5859,"16.4":0.1213,"16.5":0.25404,"16.6-16.7":2.00715,"17.0":0.24031,"17.1":0.444,"17.2":0.59047,"17.3":4.30725,"17.4":9.72222,"17.5":0.08926},P:{"4":0.52422,"20":0.04112,"21":0.13362,"22":0.1439,"23":0.29809,"24":1.95297,"5.0-5.4":0.01028,"6.2-6.4":0.02056,"7.2-7.4":0.07195,_:"8.2 10.1","9.2":0.01028,"11.1-11.2":0.03084,"12.0":0.01028,"13.0":0.02056,"14.0":0.02056,"15.0":0.01028,"16.0":0.03084,"17.0":0.04112,"18.0":0.03084,"19.0":0.05139},I:{"0":0.01739,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00004},A:{"8":0.00128,"11":0.13186,_:"6 7 9 10 5.5"},K:{"0":0.48646,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00873,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":2.51482},H:{"0":0.02},L:{"0":57.57905},R:{_:"0"},M:{"0":0.17464}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js index 3362a072f06c61..26d2c1f0735437 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/VU.js @@ -1 +1 @@ -module.exports={C:{"30":0.00491,"108":0.00491,"109":0.01962,"115":0.2567,"122":0.00164,"123":0.14061,"124":0.06213,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"61":0.00327,"65":0.00327,"69":0.00818,"79":0.00164,"81":0.01145,"83":0.00164,"87":0.00164,"88":0.11772,"89":0.00327,"94":0.00491,"96":0.00164,"97":0.00164,"99":0.00654,"101":0.00327,"102":0.00818,"103":0.00164,"104":0.00164,"105":0.00327,"109":0.21582,"110":0.00164,"111":0.01799,"112":0.13571,"113":0.00491,"114":0.04088,"115":0.01472,"116":0.03434,"117":0.03434,"118":0.00818,"119":0.02943,"120":0.05886,"121":0.14061,"122":2.73209,"123":0.57879,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 62 63 64 66 67 68 70 71 72 73 74 75 76 77 78 80 84 85 86 90 91 92 93 95 98 100 106 107 108 124 125 126"},F:{"90":0.00164,"107":0.0278,"108":0.01472,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01472,"18":0.00164,"90":0.00491,"92":0.00491,"93":0.00327,"96":0.01145,"106":0.00164,"107":0.00164,"109":0.00491,"110":0.01472,"112":0.01145,"113":0.00981,"114":0.00327,"117":0.01145,"118":0.00327,"119":0.00654,"120":0.01472,"121":0.07031,"122":0.87146,"123":0.03924,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 94 95 97 98 99 100 101 102 103 104 105 108 111 115 116"},E:{"14":0.00491,"15":0.00654,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 16.0 16.2 17.5","14.1":0.01145,"15.4":0.00164,"15.5":0.01145,"15.6":0.02453,"16.1":0.00654,"16.3":0.01962,"16.4":0.00654,"16.5":0.01635,"16.6":0.05232,"17.0":0.00818,"17.1":0.01472,"17.2":0.00818,"17.3":0.01799,"17.4":0.01308},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0.00019,"6.0-6.1":0.00112,"7.0-7.1":0.00131,"8.1-8.4":0.00037,"9.0-9.2":0.00075,"9.3":0.00466,"10.0-10.2":0.00075,"10.3":0.00784,"11.0-11.2":0.0056,"11.3-11.4":0.00187,"12.0-12.1":0.00168,"12.2-12.5":0.03228,"13.0-13.1":0.00056,"13.2":0.0056,"13.3":0.00168,"13.4-13.7":0.00634,"14.0-14.4":0.01213,"14.5-14.8":0.01903,"15.0-15.1":0.00821,"15.2-15.3":0.0097,"15.4":0.01138,"15.5":0.01455,"15.6-15.8":0.12182,"16.0":0.02966,"16.1":0.06138,"16.2":0.02966,"16.3":0.0528,"16.4":0.01119,"16.5":0.02369,"16.6-16.7":0.17947,"17.0":0.02332,"17.1":0.04664,"17.2":0.07518,"17.3":0.92535,"17.4":0.13582,"17.5":0},P:{"20":0.03057,"21":0.20379,"22":0.31587,"23":0.96799,"24":0.33625,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0","7.2-7.4":0.15284,"13.0":0.01019,"14.0":0.07133,"15.0":0.03057,"16.0":0.07133,"17.0":0.01019,"18.0":0.03057,"19.0":0.15284},I:{"0":0.025,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00006},K:{"0":0.08039,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.02616,_:"6 7 8 9 11 5.5"},S:{"2.5":0.00837,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":89.22657},R:{_:"0"},M:{"0":0.01673},Q:{_:"14.9"},O:{"0":0.18405},H:{"0":0.02}}; +module.exports={C:{"108":0.0031,"115":0.248,"117":0.00155,"122":0.00155,"123":0.0062,"124":0.1116,"125":0.0651,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 109 110 111 112 113 114 116 118 119 120 121 126 127 128 3.5 3.6"},D:{"59":0.00155,"60":0.00155,"80":0.00155,"81":0.0093,"87":0.0031,"88":0.10695,"94":0.00465,"95":0.0031,"102":0.00155,"103":0.00155,"104":0.00465,"105":0.00465,"106":0.0062,"108":0.0031,"109":0.12245,"110":0.0093,"111":0.0248,"112":0.12865,"113":0.0062,"114":0.01085,"115":0.0031,"116":0.05115,"117":0.00465,"119":0.0496,"120":0.0248,"121":0.0341,"122":0.26815,"123":2.00105,"124":0.80135,"125":0.00155,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 83 84 85 86 89 90 91 92 93 96 97 98 99 100 101 107 118 126 127"},F:{"107":0.0279,"108":0.01705,"109":0.0093,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"16":0.00155,"18":0.00775,"92":0.0031,"100":0.0031,"103":0.00155,"109":0.00155,"111":0.00155,"112":0.0031,"113":0.0062,"114":0.0062,"117":0.03875,"118":0.0186,"121":0.04805,"122":0.1054,"123":0.60295,"124":0.20615,_:"12 13 14 15 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105 106 107 108 110 115 116 119 120"},E:{"14":0.02635,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.2 17.5","14.1":0.0062,"15.5":0.0062,"15.6":0.0341,"16.1":0.00155,"16.3":0.00465,"16.4":0.0031,"16.5":0.00155,"16.6":0.00775,"17.0":0.0031,"17.1":0.1116,"17.2":0.04805,"17.3":0.0279,"17.4":0.05735},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00037,"5.0-5.1":0.00037,"6.0-6.1":0.00093,"7.0-7.1":0.00149,"8.1-8.4":0.00037,"9.0-9.2":0.00093,"9.3":0.00465,"10.0-10.2":0.00093,"10.3":0.00744,"11.0-11.2":0.00632,"11.3-11.4":0.00186,"12.0-12.1":0.0013,"12.2-12.5":0.03031,"13.0-13.1":0.00056,"13.2":0.00614,"13.3":0.00149,"13.4-13.7":0.00576,"14.0-14.4":0.01134,"14.5-14.8":0.01729,"15.0-15.1":0.00799,"15.2-15.3":0.00911,"15.4":0.01041,"15.5":0.0132,"15.6-15.8":0.11527,"16.0":0.02696,"16.1":0.05615,"16.2":0.02696,"16.3":0.0476,"16.4":0.00985,"16.5":0.02064,"16.6-16.7":0.16305,"17.0":0.01952,"17.1":0.03607,"17.2":0.04797,"17.3":0.34991,"17.4":0.7898,"17.5":0.00725},P:{"20":0.02062,"21":0.17524,"22":0.15463,"23":0.25771,"24":0.91744,_:"4 5.0-5.4 6.2-6.4 8.2 9.2 10.1 11.1-11.2 12.0 15.0 17.0","7.2-7.4":0.1237,"13.0":0.02062,"14.0":0.01031,"16.0":0.05154,"18.0":0.01031,"19.0":0.11339},I:{"0":0.03367,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"10":0.0186,_:"6 7 8 9 11 5.5"},K:{"0":0.07141,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.0169},O:{"0":0.10986},H:{"0":0.03},L:{"0":90.22826},R:{_:"0"},M:{"0":0.04226}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WF.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WF.js index f2f1f58cde115c..1add8d506ef840 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WF.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WF.js @@ -1 +1 @@ -module.exports={C:{"91":0.02313,"112":0.06169,"115":0.64772,"123":0.50893,"124":0.22362,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 113 114 116 117 118 119 120 121 122 125 126 127 3.5 3.6"},D:{"105":0.03856,"109":6.67773,"120":62.77525,"121":0.24675,"122":1.07954,"123":0.08482,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 113 114 115 116 117 118 119 124 125 126"},F:{"107":0.20049,"108":0.16193,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.02313,"119":0.10024,"121":0.10024,"122":1.30316,"123":0.06169,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 120"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.4 15.5 16.0 16.2 16.3 16.4 17.0 17.4 17.5","15.1":0.12338,"15.2-15.3":0.10024,"15.6":0.08482,"16.1":0.02313,"16.5":0.03856,"16.6":0.02313,"17.1":0.32386,"17.2":0.74797,"17.3":0.28531},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00071,"5.0-5.1":0.00035,"6.0-6.1":0.00213,"7.0-7.1":0.00248,"8.1-8.4":0.00071,"9.0-9.2":0.00142,"9.3":0.00886,"10.0-10.2":0.00142,"10.3":0.01489,"11.0-11.2":0.01063,"11.3-11.4":0.00354,"12.0-12.1":0.00319,"12.2-12.5":0.06131,"13.0-13.1":0.00106,"13.2":0.01063,"13.3":0.00319,"13.4-13.7":0.01205,"14.0-14.4":0.02304,"14.5-14.8":0.03615,"15.0-15.1":0.01559,"15.2-15.3":0.01843,"15.4":0.02162,"15.5":0.02764,"15.6-15.8":0.23143,"16.0":0.05635,"16.1":0.1166,"16.2":0.05635,"16.3":0.1003,"16.4":0.02126,"16.5":0.04501,"16.6-16.7":0.34094,"17.0":0.0443,"17.1":0.0886,"17.2":0.14283,"17.3":1.75788,"17.4":0.25801,"17.5":0},P:{"20":0.02069,"23":0.20686,"24":0.50681,_:"4 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 17.0 18.0 19.0","16.0":0.02069},I:{"0":0.04102,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.0001},K:{"0":0.04118,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":19.1079},R:{_:"0"},M:{"0":0.02059},Q:{_:"14.9"},O:{_:"0"},H:{"0":0}}; +module.exports={C:{"78":0.14578,"115":0.5866,"124":2.57548,"125":0.88163,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 122 123 126 127 128 3.5 3.6"},D:{"98":0.14578,"105":0.80874,"109":10.95795,"120":1.17667,"121":0.07289,"122":1.4717,"123":1.98541,"124":1.39881,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 99 100 101 102 103 104 106 107 108 110 111 112 113 114 115 116 117 118 119 125 126 127"},F:{"108":1.03089,"109":0.14578,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.07289,"92":0.22214,"114":0.07289,"121":0.29504,"122":0.14578,"123":2.64837,"124":1.69038,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116 117 118 119 120"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.5 15.6 16.0 16.1 16.2 16.3 16.4 16.5 17.0 17.1 17.2 17.5","15.1":1.03089,"15.2-15.3":0.66296,"15.4":0.07289,"16.6":0.51371,"17.3":0.14578,"17.4":2.42623},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00379,"5.0-5.1":0.00379,"6.0-6.1":0.00947,"7.0-7.1":0.01515,"8.1-8.4":0.00379,"9.0-9.2":0.00947,"9.3":0.04734,"10.0-10.2":0.00947,"10.3":0.07575,"11.0-11.2":0.06439,"11.3-11.4":0.01894,"12.0-12.1":0.01326,"12.2-12.5":0.30867,"13.0-13.1":0.00568,"13.2":0.06249,"13.3":0.01515,"13.4-13.7":0.0587,"14.0-14.4":0.11552,"14.5-14.8":0.17611,"15.0-15.1":0.08143,"15.2-15.3":0.09279,"15.4":0.10605,"15.5":0.13445,"15.6-15.8":1.17409,"16.0":0.27459,"16.1":0.5719,"16.2":0.27459,"16.3":0.48479,"16.4":0.10037,"16.5":0.2102,"16.6-16.7":1.66077,"17.0":0.19884,"17.1":0.36738,"17.2":0.48857,"17.3":3.56394,"17.4":8.04444,"17.5":0.07385},P:{"20":0.07148,"23":0.15317,"24":3.15527,_:"4 21 22 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.07804,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{_:"0"},H:{"0":0},L:{"0":37.48563},R:{_:"0"},M:{"0":2.4814}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js index 5811627da31eab..ea633d53e671fd 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/WS.js @@ -1 +1 @@ -module.exports={C:{"88":0.00337,"101":0.00337,"102":0.02361,"115":0.06746,"116":0.01012,"121":0.26984,"122":0.01687,"123":0.35417,"124":0.10119,"125":0.01012,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 103 104 105 106 107 108 109 110 111 112 113 114 117 118 119 120 126 127 3.5 3.6"},D:{"84":0.00675,"87":0.02361,"88":0.03036,"90":0.01012,"91":0.03036,"93":0.01012,"95":0.02361,"98":0.01012,"103":0.07421,"105":0.03036,"107":0.00337,"109":2.17559,"110":0.01687,"111":0.01687,"114":0.01687,"115":0.01349,"116":0.09107,"117":0.03036,"118":0.01349,"119":0.14504,"120":0.18214,"121":1.42341,"122":10.90154,"123":2.87042,"124":0.0371,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 85 86 89 92 94 96 97 99 100 101 102 104 106 108 112 113 125 126"},F:{"95":0.01349,"107":0.0877,"108":0.05734,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.03036,"15":0.01012,"16":0.00337,"17":0.00337,"18":0.01687,"84":0.00337,"92":0.02698,"100":0.01012,"103":0.3002,"106":0.06409,"108":0.00337,"109":0.00337,"111":0.02024,"113":0.01687,"114":0.0371,"115":0.01012,"116":0.00675,"117":0.01687,"118":0.02361,"119":0.03373,"120":0.24623,"121":0.38452,"122":5.91624,"123":0.31706,_:"12 14 79 80 81 83 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 104 105 107 110 112"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.2-15.3 15.4 16.0 17.5","14.1":0.40476,"15.1":0.02361,"15.5":0.00337,"15.6":2.13848,"16.1":0.22599,"16.2":0.00675,"16.3":0.02024,"16.4":0.02698,"16.5":0.11468,"16.6":0.18552,"17.0":0.03036,"17.1":0.02024,"17.2":0.10119,"17.3":0.1754,"17.4":0.01012},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00248,"5.0-5.1":0.00124,"6.0-6.1":0.00745,"7.0-7.1":0.00869,"8.1-8.4":0.00248,"9.0-9.2":0.00496,"9.3":0.03103,"10.0-10.2":0.00496,"10.3":0.05212,"11.0-11.2":0.03723,"11.3-11.4":0.01241,"12.0-12.1":0.01117,"12.2-12.5":0.2147,"13.0-13.1":0.00372,"13.2":0.03723,"13.3":0.01117,"13.4-13.7":0.0422,"14.0-14.4":0.08067,"14.5-14.8":0.12659,"15.0-15.1":0.05461,"15.2-15.3":0.06453,"15.4":0.0757,"15.5":0.0968,"15.6-15.8":0.81041,"16.0":0.19733,"16.1":0.40831,"16.2":0.19733,"16.3":0.35122,"16.4":0.07446,"16.5":0.15761,"16.6-16.7":1.19389,"17.0":0.15513,"17.1":0.31026,"17.2":0.50014,"17.3":6.15561,"17.4":0.90348,"17.5":0},P:{"4":0.12355,"20":0.05148,"21":0.19562,"22":1.93561,"23":1.10165,"24":0.62804,_:"5.0-5.4 8.2 9.2 17.0","6.2-6.4":0.0103,"7.2-7.4":0.32947,"10.1":0.0103,"11.1-11.2":0.0103,"12.0":0.0103,"13.0":0.0103,"14.0":0.0103,"15.0":0.0103,"16.0":0.12355,"18.0":0.0103,"19.0":0.11325},I:{"0":0.11218,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00027},K:{"0":1.28544,_:"10 11 12 11.1 11.5 12.1"},A:{"7":0.00337,"11":0.02698,_:"6 8 9 10 5.5"},S:{"2.5":0.00663,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.3823},R:{_:"0"},M:{"0":0.03976},Q:{"14.9":0.03976},O:{"0":0.6626},H:{"0":0}}; +module.exports={C:{"115":0.08135,"116":0.01252,"120":0.00313,"121":0.53506,"123":0.04381,"124":0.18461,"125":0.10326,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 117 118 119 122 126 127 128 3.5 3.6"},D:{"68":0.01877,"75":0.00626,"76":0.00626,"77":0.00313,"79":0.00313,"80":0.01252,"81":0.0219,"88":0.01565,"91":0.01565,"93":0.01252,"98":0.01565,"99":0.01565,"101":0.01877,"103":0.08448,"105":0.06571,"106":0.01877,"107":0.01877,"108":0.00626,"109":1.05134,"111":0.02503,"113":0.00313,"114":0.00626,"115":0.02503,"116":0.07197,"118":0.03755,"119":0.05632,"120":0.05945,"121":0.06258,"122":0.97938,"123":11.18618,"124":2.84113,"125":0.04381,"126":0.02503,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 69 70 71 72 73 74 78 83 84 85 86 87 89 90 92 94 95 96 97 100 102 104 110 112 117 127"},F:{"95":0.0219,"107":0.03755,"108":0.10013,"109":0.11577,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00626,"16":0.01252,"18":0.00313,"92":0.03442,"95":0.01565,"100":0.02816,"107":0.01252,"108":0.01252,"109":0.01252,"110":0.01252,"111":0.06258,"113":0.03442,"114":0.03442,"115":0.01877,"116":0.00313,"117":0.01877,"118":0.02503,"119":0.03755,"120":0.04068,"121":0.04694,"122":0.63519,"123":4.49637,"124":1.38928,_:"12 13 14 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 96 97 98 99 101 102 103 104 105 106 112"},E:{"11":0.00313,"14":0.06258,_:"0 4 5 6 7 8 9 10 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 15.4 16.0 17.0 17.5","13.1":0.01252,"14.1":0.30664,"15.1":0.01877,"15.2-15.3":0.01252,"15.5":0.00313,"15.6":1.67089,"16.1":0.01252,"16.2":0.01252,"16.3":0.06258,"16.4":0.01252,"16.5":0.00626,"16.6":0.06258,"17.1":0.10639,"17.2":0.01565,"17.3":0.30038,"17.4":0.16584},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00284,"5.0-5.1":0.00284,"6.0-6.1":0.0071,"7.0-7.1":0.01136,"8.1-8.4":0.00284,"9.0-9.2":0.0071,"9.3":0.03551,"10.0-10.2":0.0071,"10.3":0.05681,"11.0-11.2":0.04829,"11.3-11.4":0.0142,"12.0-12.1":0.00994,"12.2-12.5":0.2315,"13.0-13.1":0.00426,"13.2":0.04687,"13.3":0.01136,"13.4-13.7":0.04403,"14.0-14.4":0.08663,"14.5-14.8":0.13208,"15.0-15.1":0.06107,"15.2-15.3":0.06959,"15.4":0.07953,"15.5":0.10084,"15.6-15.8":0.88055,"16.0":0.20593,"16.1":0.42891,"16.2":0.20593,"16.3":0.36358,"16.4":0.07527,"16.5":0.15765,"16.6-16.7":1.24555,"17.0":0.14912,"17.1":0.27553,"17.2":0.36642,"17.3":2.67288,"17.4":6.03316,"17.5":0.05539},P:{"4":0.04163,"20":0.04163,"21":0.34341,"22":3.99605,"23":0.53072,"24":1.07186,"5.0-5.4":0.03122,"6.2-6.4":0.02081,"7.2-7.4":0.35382,"8.2":0.01041,"9.2":0.01041,_:"10.1 12.0","11.1-11.2":0.02081,"13.0":0.01041,"14.0":0.01041,"15.0":0.01041,"16.0":0.43707,"17.0":0.01041,"18.0":0.02081,"19.0":0.04163},I:{"0":0.08211,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00021},A:{"11":0.00626,_:"6 7 8 9 10 5.5"},K:{"0":2.98889,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.01374},O:{"0":0.11681},H:{"0":0},L:{"0":47.17053},R:{_:"0"},M:{"0":0.21987}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js index 48ed1135445a4d..6404df519710f6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YE.js @@ -1 +1 @@ -module.exports={C:{"3":0.03979,"82":0.00173,"109":0.00173,"115":0.04671,"122":0.00173,"123":0.13148,"124":0.12283,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 116 117 118 119 120 121 125 126 127 3.5 3.6"},D:{"34":0.00865,"35":0.00173,"41":0.00519,"50":0.00173,"51":0.00173,"55":0.00173,"57":0.00692,"58":0.02941,"67":0.00346,"68":0.03979,"70":0.00173,"71":0.00173,"72":0.00519,"74":0.00692,"77":0.00173,"79":0.00865,"81":0.00346,"86":0.01038,"87":0.00692,"89":0.03287,"90":0.00346,"91":0.00865,"92":0.00346,"93":0.03806,"95":0.00173,"96":0.00173,"99":0.01384,"100":0.03979,"101":0.01211,"102":0.00173,"103":0.00173,"104":0.00519,"105":0.00865,"106":0.07612,"107":0.02076,"108":0.01211,"109":0.30102,"110":0.00865,"111":0.00519,"112":0.05017,"113":0.0173,"114":0.05709,"115":0.02076,"116":0.0173,"117":0.02595,"118":0.01038,"119":0.04152,"120":0.09515,"121":0.21106,"122":1.87532,"123":0.4325,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 38 39 40 42 43 44 45 46 47 48 49 52 53 54 56 59 60 61 62 63 64 65 66 69 73 75 76 78 80 83 84 85 88 94 97 98 124 125 126"},F:{"72":0.01557,"81":0.01211,"106":0.00692,"107":0.00692,"108":0.00346,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 78 79 80 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00173,"18":0.00173,"92":0.00519,"114":0.00173,"117":0.00173,"118":0.01384,"119":0.00346,"120":0.04152,"121":0.01384,"122":0.47575,"123":0.03287,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 115 116"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 15.2-15.3 15.4 16.0 16.2 16.3 16.5 17.0 17.5","5.1":0.32005,"15.1":0.00173,"15.5":0.00692,"15.6":0.00173,"16.1":0.00173,"16.4":0.00173,"16.6":0.00692,"17.1":0.00346,"17.2":0.00173,"17.3":0.01038,"17.4":0.00346},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00035,"5.0-5.1":0.00018,"6.0-6.1":0.00106,"7.0-7.1":0.00124,"8.1-8.4":0.00035,"9.0-9.2":0.00071,"9.3":0.00442,"10.0-10.2":0.00071,"10.3":0.00743,"11.0-11.2":0.00531,"11.3-11.4":0.00177,"12.0-12.1":0.00159,"12.2-12.5":0.03062,"13.0-13.1":0.00053,"13.2":0.00531,"13.3":0.00159,"13.4-13.7":0.00602,"14.0-14.4":0.0115,"14.5-14.8":0.01805,"15.0-15.1":0.00779,"15.2-15.3":0.0092,"15.4":0.0108,"15.5":0.0138,"15.6-15.8":0.11557,"16.0":0.02814,"16.1":0.05823,"16.2":0.02814,"16.3":0.05008,"16.4":0.01062,"16.5":0.02248,"16.6-16.7":0.17025,"17.0":0.02212,"17.1":0.04424,"17.2":0.07132,"17.3":0.87781,"17.4":0.12884,"17.5":0},P:{"4":0.03073,"20":0.02049,"21":0.11267,"22":0.05121,"23":1.05499,"24":0.40971,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.01024,"9.2":0.01024,"11.1-11.2":0.05121,"13.0":0.03073,"14.0":0.0717,"15.0":0.02049,"16.0":0.26631,"17.0":0.05121,"18.0":0.01024,"19.0":0.03073},I:{"0":0.14001,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00008,"4.4":0,"4.4.3-4.4.4":0.00034},K:{"0":3.97286,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.00692,_:"6 7 8 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":74.00022},R:{_:"0"},M:{"0":0.10751},Q:{_:"14.9"},O:{"0":5.87997},H:{"0":6.1}}; +module.exports={C:{"3":0.01313,"82":0.00164,"103":0.00164,"115":0.02297,"122":0.00164,"123":0.00656,"124":0.10174,"125":0.04103,_:"2 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 114 116 117 118 119 120 121 126 127 128 3.5 3.6"},D:{"11":0.00164,"37":0.00656,"41":0.01641,"50":0.00164,"57":0.00492,"58":0.03938,"62":0.00985,"63":0.00328,"68":0.02462,"70":0.0279,"71":0.00164,"72":0.00164,"73":0.00164,"74":0.00164,"79":0.01969,"80":0.00328,"81":0.00328,"83":0.00164,"86":0.00492,"87":0.01477,"88":0.00164,"89":0.01969,"90":0.00164,"91":0.03118,"92":0.00164,"94":0.00164,"95":0.00164,"96":0.00164,"99":0.00985,"100":0.01805,"101":0.00656,"103":0.00328,"104":0.00164,"105":0.00656,"106":0.02954,"107":0.02626,"108":0.00328,"109":0.15261,"110":0.01149,"111":0.00328,"112":0.06892,"113":0.0279,"114":0.05908,"115":0.00492,"116":0.0279,"117":0.01969,"118":0.00985,"119":0.01641,"120":0.04923,"121":0.03118,"122":0.128,"123":1.22911,"124":0.62522,"125":0.03282,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 38 39 40 42 43 44 45 46 47 48 49 51 52 53 54 55 56 59 60 61 64 65 66 67 69 75 76 77 78 84 85 93 97 98 102 126 127"},F:{"48":0.00164,"80":0.00164,"81":0.00328,"82":0.00985,"105":0.00492,"107":0.00164,"108":0.00492,"109":0.00328,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00328,"15":0.00164,"18":0.00164,"90":0.00164,"92":0.00492,"118":0.00656,"119":0.00492,"120":0.00164,"121":0.00492,"122":0.04595,"123":0.1362,"124":0.11651,_:"13 14 16 17 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117"},E:{"14":0.00492,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 11.1 12.1 13.1 15.1 15.2-15.3 15.4 16.0 16.1 16.2 17.0 17.1 17.2 17.5","5.1":0.05087,"14.1":0.01313,"15.5":0.00821,"15.6":0.00164,"16.3":0.00164,"16.4":0.00164,"16.5":0.00164,"16.6":0.00164,"17.3":0.00328,"17.4":0.00656},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00029,"5.0-5.1":0.00029,"6.0-6.1":0.00072,"7.0-7.1":0.00116,"8.1-8.4":0.00029,"9.0-9.2":0.00072,"9.3":0.00362,"10.0-10.2":0.00072,"10.3":0.00578,"11.0-11.2":0.00492,"11.3-11.4":0.00145,"12.0-12.1":0.00101,"12.2-12.5":0.02357,"13.0-13.1":0.00043,"13.2":0.00477,"13.3":0.00116,"13.4-13.7":0.00448,"14.0-14.4":0.00882,"14.5-14.8":0.01345,"15.0-15.1":0.00622,"15.2-15.3":0.00709,"15.4":0.0081,"15.5":0.01027,"15.6-15.8":0.08966,"16.0":0.02097,"16.1":0.04367,"16.2":0.02097,"16.3":0.03702,"16.4":0.00766,"16.5":0.01605,"16.6-16.7":0.12682,"17.0":0.01518,"17.1":0.02805,"17.2":0.03731,"17.3":0.27216,"17.4":0.61431,"17.5":0.00564},P:{"4":0.03051,"20":0.03051,"21":0.07118,"22":0.05084,"23":0.27455,"24":0.98636,"5.0-5.4":0.01017,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.01017,"9.2":0.01017,"11.1-11.2":0.05084,"13.0":0.03051,"14.0":0.05084,"15.0":0.03051,"16.0":0.22371,"17.0":0.02034,"18.0":0.02034,"19.0":0.03051},I:{"0":0.29969,"3":0,"4":0.00003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00006,"4.2-4.3":0.00018,"4.4":0,"4.4.3-4.4.4":0.00075},A:{"11":0.00164,_:"6 7 8 9 10 5.5"},K:{"0":4.15695,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":5.40827},H:{"0":4.62},L:{"0":77.49688},R:{_:"0"},M:{"0":0.11703}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js index abcb828f279c0c..7979b9fd00c637 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/YT.js @@ -1 +1 @@ -module.exports={C:{"52":0.0081,"54":0.00405,"89":0.02025,"102":0.02025,"112":0.00405,"115":0.42919,"119":0.0162,"121":0.02025,"122":0.27938,"123":1.91923,"124":0.98796,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 90 91 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 113 114 116 117 118 120 125 126 127 3.5 3.6"},D:{"56":0.0162,"63":0.05669,"79":0.00405,"81":0.00405,"85":0.01215,"86":0.00405,"87":0.06883,"88":0.02025,"89":0.00405,"91":0.03644,"102":0.0162,"103":0.02429,"104":0.05264,"105":0.0162,"106":0.00405,"107":0.01215,"109":0.33202,"110":0.0081,"111":0.04049,"113":0.0162,"115":0.05264,"116":0.06883,"117":0.00405,"118":0.02025,"119":0.0162,"120":0.24699,"121":1.25114,"122":13.94071,"123":3.27159,"124":0.02429,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 57 58 59 60 61 62 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 90 92 93 94 95 96 97 98 99 100 101 108 112 114 125 126"},F:{"95":0.00405,"107":0.4211,"108":0.10932,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00405,"18":0.00405,"83":0.00405,"84":0.02834,"92":0.01215,"100":0.00405,"108":0.02834,"109":0.00405,"110":0.00405,"117":0.01215,"118":0.0162,"119":0.58711,"120":0.08908,"121":0.26723,"122":5.97632,"123":0.32392,_:"12 13 14 15 16 79 80 81 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 111 112 113 114 115 116"},E:{"14":0.05669,"15":0.00405,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 17.5","13.1":0.03644,"14.1":0.10932,"15.1":0.00405,"15.2-15.3":0.02429,"15.4":0.0162,"15.5":0.0162,"15.6":0.26319,"16.0":0.00405,"16.1":0.02025,"16.2":0.0081,"16.3":0.09313,"16.4":0.00405,"16.5":0.02834,"16.6":0.21055,"17.0":0.04049,"17.1":0.15791,"17.2":0.43729,"17.3":0.78956,"17.4":0.54257},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00199,"5.0-5.1":0.001,"6.0-6.1":0.00598,"7.0-7.1":0.00697,"8.1-8.4":0.00199,"9.0-9.2":0.00398,"9.3":0.0249,"10.0-10.2":0.00398,"10.3":0.04184,"11.0-11.2":0.02989,"11.3-11.4":0.00996,"12.0-12.1":0.00897,"12.2-12.5":0.17234,"13.0-13.1":0.00299,"13.2":0.02989,"13.3":0.00897,"13.4-13.7":0.03387,"14.0-14.4":0.06475,"14.5-14.8":0.10161,"15.0-15.1":0.04383,"15.2-15.3":0.0518,"15.4":0.06077,"15.5":0.0777,"15.6-15.8":0.65052,"16.0":0.1584,"16.1":0.32775,"16.2":0.1584,"16.3":0.28192,"16.4":0.05977,"16.5":0.12652,"16.6-16.7":0.95834,"17.0":0.12452,"17.1":0.24905,"17.2":0.40147,"17.3":4.94114,"17.4":0.72523,"17.5":0},P:{"4":0.04118,"20":0.0103,"21":0.06178,"22":0.08237,"23":1.71946,"24":1.03991,"5.0-5.4":0.03089,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 17.0 18.0","7.2-7.4":0.07207,"11.1-11.2":0.09267,"13.0":0.0103,"19.0":0.08237},I:{"0":0.00593,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0.00001},K:{"0":0.83694,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":49.50653},R:{_:"0"},M:{"0":0.06546},Q:{_:"14.9"},O:{"0":0.02976},H:{"0":0.02}}; +module.exports={C:{"72":0.00388,"78":0.01165,"90":0.0233,"91":0.00777,"102":0.05826,"114":0.00388,"115":0.40782,"119":0.00388,"120":0.01942,"122":0.0233,"123":0.12817,"124":1.80606,"125":1.22734,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 92 93 94 95 96 97 98 99 100 101 103 104 105 106 107 108 109 110 111 112 113 116 117 118 121 126 127 128 3.5 3.6"},D:{"35":0.06214,"50":0.01554,"56":0.01942,"67":0.01165,"69":0.00388,"79":0.04661,"81":0.0233,"83":0.00388,"86":0.00388,"87":0.00388,"89":0.00388,"92":0.00388,"93":0.01165,"94":0.01165,"96":0.00388,"99":0.00388,"103":0.03884,"106":0.06991,"108":0.01165,"109":0.24858,"110":0.00388,"111":0.04272,"114":0.01165,"115":0.04272,"116":0.08156,"117":0.01165,"118":0.01942,"119":0.03496,"120":0.08156,"121":0.17478,"122":0.6564,"123":11.96272,"124":4.89772,"125":0.01942,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 52 53 54 55 57 58 59 60 61 62 63 64 65 66 68 70 71 72 73 74 75 76 77 78 80 84 85 88 90 91 95 97 98 100 101 102 104 105 107 112 113 126 127"},F:{"36":0.00777,"96":0.00388,"99":0.00388,"107":0.39617,"108":0.24858,"109":0.05826,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 97 98 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"13":0.01165,"18":0.00388,"92":0.00388,"105":0.17866,"109":0.01942,"115":0.00388,"116":0.00777,"117":0.01165,"119":0.03107,"120":0.01942,"121":0.03884,"122":0.53988,"123":4.3462,"124":3.07224,_:"12 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 113 114 118"},E:{"14":0.00388,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 5.1 6.1 7.1 9.1 11.1 17.5","10.1":0.00388,"12.1":0.04272,"13.1":0.03107,"14.1":0.08156,"15.1":0.01165,"15.2-15.3":0.00388,"15.4":0.00388,"15.5":0.01165,"15.6":0.11264,"16.0":0.00777,"16.1":0.03107,"16.2":0.00777,"16.3":0.03496,"16.4":0.03107,"16.5":0.05438,"16.6":0.45831,"17.0":0.0233,"17.1":0.0233,"17.2":0.25246,"17.3":0.24081,"17.4":1.20792},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00217,"5.0-5.1":0.00217,"6.0-6.1":0.00544,"7.0-7.1":0.0087,"8.1-8.4":0.00217,"9.0-9.2":0.00544,"9.3":0.02718,"10.0-10.2":0.00544,"10.3":0.04349,"11.0-11.2":0.03697,"11.3-11.4":0.01087,"12.0-12.1":0.00761,"12.2-12.5":0.17722,"13.0-13.1":0.00326,"13.2":0.03588,"13.3":0.0087,"13.4-13.7":0.0337,"14.0-14.4":0.06632,"14.5-14.8":0.10111,"15.0-15.1":0.04675,"15.2-15.3":0.05328,"15.4":0.06089,"15.5":0.07719,"15.6-15.8":0.67409,"16.0":0.15765,"16.1":0.32835,"16.2":0.15765,"16.3":0.27834,"16.4":0.05762,"16.5":0.12068,"16.6-16.7":0.95352,"17.0":0.11416,"17.1":0.21093,"17.2":0.28051,"17.3":2.0462,"17.4":4.61863,"17.5":0.0424},P:{"4":0.04147,"20":0.02073,"21":0.05184,"22":0.0933,"23":0.34212,"24":2.2082,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 17.0","7.2-7.4":0.15551,"11.1-11.2":0.01037,"16.0":0.05184,"18.0":0.02073,"19.0":0.0622},I:{"0":0.03654,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00009},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0.88114,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.05504},H:{"0":0.03},L:{"0":50.09846},R:{_:"0"},M:{"0":0.17122}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js index 2a5a62b071874e..3f704e5673d47c 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZA.js @@ -1 +1 @@ -module.exports={C:{"34":0.01026,"52":0.01026,"59":0.00205,"60":0.00205,"64":0.00205,"78":0.01026,"88":0.00615,"91":0.00205,"94":0.00205,"100":0.00205,"104":0.0041,"106":0.00205,"108":0.00205,"110":0.00205,"111":0.00205,"112":0.00205,"113":0.0041,"115":0.07999,"116":0.00205,"118":0.00205,"119":0.00205,"120":0.00205,"121":0.0082,"122":0.02256,"123":0.34047,"124":0.13742,"125":0.00205,"126":0.00205,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 61 62 63 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 95 96 97 98 99 101 102 103 105 107 109 114 117 127 3.5 3.6"},D:{"11":0.00205,"34":0.00205,"38":0.00205,"49":0.00615,"50":0.0041,"52":0.0041,"55":0.00205,"56":0.00205,"63":0.00205,"65":0.00205,"66":0.01026,"67":0.00205,"69":0.00205,"70":0.0082,"72":0.00205,"73":0.00205,"74":0.00615,"75":0.00205,"78":0.0041,"79":0.01231,"80":0.00205,"81":0.0041,"83":0.0041,"84":0.00205,"85":0.00205,"86":0.01436,"87":0.01026,"88":0.02666,"90":0.00615,"91":0.0041,"92":0.0041,"93":0.04102,"94":0.0041,"95":0.00205,"96":0.00205,"97":0.00205,"98":0.0041,"99":0.05538,"100":0.01436,"101":0.02461,"102":0.01846,"103":0.03077,"104":0.01641,"105":0.00205,"106":0.0041,"107":0.0041,"108":0.0041,"109":0.56403,"110":0.00205,"111":0.01231,"112":0.00615,"113":0.01641,"114":0.03487,"115":0.00615,"116":0.06768,"117":0.01846,"118":0.01846,"119":0.04717,"120":0.12716,"121":0.50044,"122":6.2617,"123":1.96076,"124":0.00205,"125":0.00205,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 47 48 51 53 54 57 58 59 60 61 62 64 68 71 76 77 89 126"},F:{"28":0.0041,"79":0.0041,"81":0.0041,"95":0.01231,"102":0.00205,"106":0.01026,"107":0.23792,"108":0.08614,"109":0.00205,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0041,"13":0.00205,"14":0.00205,"15":0.00205,"16":0.0041,"17":0.0082,"18":0.0082,"84":0.00205,"89":0.00205,"90":0.00205,"91":0.00205,"92":0.01026,"100":0.0041,"106":0.00205,"109":0.03282,"110":0.00205,"111":0.00205,"112":0.00205,"113":0.0041,"114":0.00205,"115":0.00205,"116":0.00615,"117":0.00615,"118":0.02461,"119":0.01026,"120":0.02461,"121":0.08614,"122":2.05305,"123":0.11896,_:"79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 102 103 104 105 107 108"},E:{"13":0.00205,"14":0.01026,"15":0.00205,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.00205,"12.1":0.0041,"13.1":0.02051,"14.1":0.02666,"15.1":0.00615,"15.2-15.3":0.0082,"15.4":0.01846,"15.5":0.01026,"15.6":0.1046,"16.0":0.01641,"16.1":0.01641,"16.2":0.01231,"16.3":0.05128,"16.4":0.02256,"16.5":0.02666,"16.6":0.13332,"17.0":0.02051,"17.1":0.04922,"17.2":0.08819,"17.3":0.29534,"17.4":0.06768},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00196,"5.0-5.1":0.00098,"6.0-6.1":0.00589,"7.0-7.1":0.00687,"8.1-8.4":0.00196,"9.0-9.2":0.00393,"9.3":0.02454,"10.0-10.2":0.00393,"10.3":0.04123,"11.0-11.2":0.02945,"11.3-11.4":0.00982,"12.0-12.1":0.00884,"12.2-12.5":0.16983,"13.0-13.1":0.00295,"13.2":0.02945,"13.3":0.00884,"13.4-13.7":0.03338,"14.0-14.4":0.06381,"14.5-14.8":0.10013,"15.0-15.1":0.04319,"15.2-15.3":0.05105,"15.4":0.05988,"15.5":0.07657,"15.6-15.8":0.64105,"16.0":0.15609,"16.1":0.32298,"16.2":0.15609,"16.3":0.27782,"16.4":0.0589,"16.5":0.12468,"16.6-16.7":0.9444,"17.0":0.12271,"17.1":0.24543,"17.2":0.39563,"17.3":4.86924,"17.4":0.71468,"17.5":0},P:{"4":0.16213,"20":0.07093,"21":0.16213,"22":0.16213,"23":3.52629,"24":3.36416,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1","7.2-7.4":0.31412,"11.1-11.2":0.04053,"12.0":0.01013,"13.0":0.0304,"14.0":0.04053,"15.0":0.01013,"16.0":0.04053,"17.0":0.0608,"18.0":0.04053,"19.0":0.14186},I:{"0":0.03167,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00002,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":3.37756,_:"10 11 12 11.1 11.5 12.1"},A:{"11":0.03487,_:"6 7 8 9 10 5.5"},S:{"2.5":0.00795,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":62.63072},R:{_:"0"},M:{"0":0.4372},Q:{_:"14.9"},O:{"0":0.41335},H:{"0":0.12}}; +module.exports={C:{"34":0.01419,"52":0.00811,"59":0.00203,"60":0.00203,"64":0.00203,"68":0.00203,"78":0.00811,"88":0.00608,"91":0.00203,"94":0.00405,"99":0.00203,"100":0.00203,"102":0.00203,"103":0.00203,"104":0.00203,"106":0.00203,"107":0.00203,"110":0.00203,"112":0.00203,"113":0.00608,"115":0.07297,"116":0.00203,"121":0.00608,"122":0.03243,"123":0.01419,"124":0.3081,"125":0.16216,"126":0.00203,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 61 62 63 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 95 96 97 98 101 105 108 109 111 114 117 118 119 120 127 128 3.5 3.6"},D:{"11":0.00203,"38":0.00203,"49":0.00608,"50":0.00608,"52":0.00203,"55":0.00203,"56":0.00203,"65":0.00203,"66":0.01014,"67":0.0223,"69":0.00203,"70":0.01014,"73":0.00203,"74":0.00608,"75":0.00203,"78":0.00608,"79":0.00811,"80":0.00203,"81":0.00203,"83":0.00405,"85":0.00203,"86":0.0223,"87":0.01014,"88":0.03041,"89":0.00203,"90":0.00608,"91":0.00203,"92":0.00405,"93":0.03446,"94":0.00405,"95":0.00405,"96":0.00203,"97":0.00203,"98":0.00405,"99":0.04257,"100":0.0223,"101":0.04054,"102":0.02635,"103":0.03649,"104":0.02432,"105":0.00203,"106":0.00405,"107":0.00405,"108":0.00608,"109":0.5858,"110":0.00203,"111":0.01014,"112":0.00608,"113":0.01622,"114":0.03446,"115":0.00811,"116":0.06284,"117":0.01419,"118":0.01419,"119":0.03243,"120":0.06081,"121":0.0973,"122":0.35675,"123":6.38302,"124":2.70807,"125":0.01824,"126":0.00203,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 47 48 51 53 54 57 58 59 60 61 62 63 64 68 71 72 76 77 84 127"},F:{"28":0.00405,"79":0.00203,"95":0.01216,"102":0.00203,"106":0.00405,"107":0.12567,"108":0.14189,"109":0.05676,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00405,"13":0.00203,"14":0.00203,"15":0.00203,"16":0.00405,"17":0.00405,"18":0.00811,"84":0.00203,"89":0.00203,"90":0.00203,"91":0.00203,"92":0.00811,"100":0.00203,"108":0.00203,"109":0.03041,"110":0.00203,"111":0.00203,"112":0.00203,"113":0.00405,"114":0.00203,"115":0.00203,"116":0.00608,"117":0.00203,"118":0.03243,"119":0.00608,"120":0.01419,"121":0.01622,"122":0.14797,"123":1.54052,"124":0.69121,_:"79 80 81 83 85 86 87 88 93 94 95 96 97 98 99 101 102 103 104 105 106 107"},E:{"13":0.00203,"14":0.01216,"15":0.00203,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1","11.1":0.00203,"12.1":0.00608,"13.1":0.0223,"14.1":0.0223,"15.1":0.00405,"15.2-15.3":0.00608,"15.4":0.00608,"15.5":0.01419,"15.6":0.09122,"16.0":0.02027,"16.1":0.01419,"16.2":0.01216,"16.3":0.04054,"16.4":0.01824,"16.5":0.02027,"16.6":0.12162,"17.0":0.01216,"17.1":0.03649,"17.2":0.04865,"17.3":0.0973,"17.4":0.31824,"17.5":0.00203},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00196,"5.0-5.1":0.00196,"6.0-6.1":0.00491,"7.0-7.1":0.00786,"8.1-8.4":0.00196,"9.0-9.2":0.00491,"9.3":0.02456,"10.0-10.2":0.00491,"10.3":0.03929,"11.0-11.2":0.0334,"11.3-11.4":0.00982,"12.0-12.1":0.00688,"12.2-12.5":0.16011,"13.0-13.1":0.00295,"13.2":0.03242,"13.3":0.00786,"13.4-13.7":0.03045,"14.0-14.4":0.05992,"14.5-14.8":0.09135,"15.0-15.1":0.04224,"15.2-15.3":0.04813,"15.4":0.05501,"15.5":0.06974,"15.6-15.8":0.60901,"16.0":0.14243,"16.1":0.29665,"16.2":0.14243,"16.3":0.25146,"16.4":0.05206,"16.5":0.10903,"16.6-16.7":0.86145,"17.0":0.10314,"17.1":0.19056,"17.2":0.25343,"17.3":1.84864,"17.4":4.1727,"17.5":0.03831},P:{"4":0.15212,"20":0.05071,"21":0.13183,"22":0.15212,"23":0.61861,"24":5.89198,_:"5.0-5.4 8.2 10.1","6.2-6.4":0.01014,"7.2-7.4":0.30423,"9.2":0.01014,"11.1-11.2":0.05071,"12.0":0.02028,"13.0":0.02028,"14.0":0.03042,"15.0":0.01014,"16.0":0.03042,"17.0":0.05071,"18.0":0.03042,"19.0":0.12169},I:{"0":0.02382,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00006},A:{"8":0.00211,"11":0.04856,_:"6 7 9 10 5.5"},K:{"0":3.39799,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.35081},H:{"0":0.15},L:{"0":61.85067},R:{_:"0"},M:{"0":0.4146}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZM.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZM.js index 7bd7dd14d80b03..131cb760e8ffe3 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZM.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZM.js @@ -1 +1 @@ -module.exports={C:{"15":0.00165,"34":0.00329,"38":0.00329,"45":0.00165,"50":0.00165,"52":0.00658,"56":0.00165,"71":0.00165,"72":0.00165,"78":0.00165,"93":0.00165,"99":0.00165,"115":0.08883,"118":0.00329,"119":0.00165,"120":0.00165,"121":0.00494,"122":0.01481,"123":0.3142,"124":0.13325,"125":0.00165,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 46 47 48 49 51 53 54 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 73 74 75 76 77 79 80 81 82 83 84 85 86 87 88 89 90 91 92 94 95 96 97 98 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 116 117 126 127 3.5 3.6"},D:{"11":0.00494,"40":0.00165,"42":0.00165,"46":0.00329,"49":0.00329,"50":0.00494,"51":0.00165,"53":0.00329,"55":0.00165,"56":0.00165,"58":0.00165,"59":0.00165,"60":0.00165,"61":0.00329,"63":0.00823,"64":0.00658,"65":0.00494,"66":0.00165,"68":0.00823,"69":0.00987,"70":0.00658,"71":0.00329,"72":0.00329,"73":0.00329,"74":0.00165,"75":0.00494,"76":0.00329,"77":0.00658,"78":0.00658,"79":0.00987,"80":0.00658,"81":0.00658,"83":0.01645,"84":0.00494,"85":0.00165,"86":0.00494,"87":0.01481,"88":0.00823,"89":0.00494,"90":0.00494,"91":0.00165,"92":0.00329,"93":0.00823,"94":0.00329,"95":0.00658,"96":0.00165,"97":0.00165,"98":0.00658,"99":0.00329,"100":0.00165,"101":0.00165,"102":0.02303,"103":0.03784,"104":0.00165,"105":0.00494,"106":0.01974,"107":0.01316,"108":0.00658,"109":0.53134,"110":0.00823,"111":0.02303,"112":0.00329,"113":0.00658,"114":0.0181,"115":0.00658,"116":0.02303,"117":0.01152,"118":0.01152,"119":0.04277,"120":0.09048,"121":0.36848,"122":3.29823,"123":0.94423,"124":0.00329,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 43 44 45 47 48 52 54 57 62 67 125 126"},F:{"34":0.00329,"35":0.00165,"36":0.00494,"37":0.00165,"40":0.00165,"42":0.00165,"46":0.00329,"51":0.00165,"55":0.00165,"57":0.00329,"64":0.00165,"65":0.00165,"68":0.00494,"73":0.00165,"77":0.00165,"78":0.00329,"79":0.01481,"81":0.00329,"83":0.00658,"86":0.00165,"90":0.00165,"93":0.00165,"95":0.08225,"97":0.00165,"102":0.00165,"103":0.00165,"105":0.00165,"106":0.02139,"107":0.39809,"108":0.22208,"109":0.00329,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 38 39 41 43 44 45 47 48 49 50 52 53 54 56 58 60 62 63 66 67 69 70 71 72 74 75 76 80 82 84 85 87 88 89 91 92 94 96 98 99 100 101 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02303,"13":0.00658,"14":0.00987,"15":0.00658,"16":0.01152,"17":0.01316,"18":0.08719,"84":0.01645,"85":0.00165,"86":0.00329,"89":0.00987,"90":0.01481,"92":0.07074,"98":0.00165,"100":0.01645,"101":0.00329,"103":0.00165,"104":0.00165,"106":0.00165,"107":0.00329,"108":0.01645,"109":0.03619,"110":0.00165,"111":0.00658,"112":0.00494,"113":0.00494,"114":0.00494,"115":0.00987,"116":0.00658,"117":0.00494,"118":0.00823,"119":0.02468,"120":0.07238,"121":0.12009,"122":1.53643,"123":0.10857,_:"79 80 81 83 87 88 91 93 94 95 96 97 99 102 105"},E:{"13":0.00165,"14":0.00329,"15":0.00494,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 10.1 11.1 15.2-15.3 17.5","5.1":0.00165,"7.1":0.00165,"9.1":0.00658,"12.1":0.00329,"13.1":0.03948,"14.1":0.0329,"15.1":0.00165,"15.4":0.00329,"15.5":0.00165,"15.6":0.01645,"16.0":0.00165,"16.1":0.00329,"16.2":0.00165,"16.3":0.00658,"16.4":0.00329,"16.5":0.00494,"16.6":0.02632,"17.0":0.00329,"17.1":0.01974,"17.2":0.02797,"17.3":0.04113,"17.4":0.01316},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00116,"5.0-5.1":0.00058,"6.0-6.1":0.00347,"7.0-7.1":0.00405,"8.1-8.4":0.00116,"9.0-9.2":0.00232,"9.3":0.01448,"10.0-10.2":0.00232,"10.3":0.02432,"11.0-11.2":0.01737,"11.3-11.4":0.00579,"12.0-12.1":0.00521,"12.2-12.5":0.10017,"13.0-13.1":0.00174,"13.2":0.01737,"13.3":0.00521,"13.4-13.7":0.01969,"14.0-14.4":0.03764,"14.5-14.8":0.05906,"15.0-15.1":0.02548,"15.2-15.3":0.03011,"15.4":0.03532,"15.5":0.04516,"15.6-15.8":0.37809,"16.0":0.09206,"16.1":0.19049,"16.2":0.09206,"16.3":0.16386,"16.4":0.03474,"16.5":0.07353,"16.6-16.7":0.557,"17.0":0.07238,"17.1":0.14475,"17.2":0.23334,"17.3":2.87185,"17.4":0.42151,"17.5":0},P:{"4":0.12576,"20":0.01048,"21":0.04192,"22":0.0524,"23":0.36681,"24":0.34585,"5.0-5.4":0.02096,_:"6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.07336,"9.2":0.03144,"11.1-11.2":0.01048,"13.0":0.01048,"14.0":0.01048,"15.0":0.01048,"16.0":0.03144,"17.0":0.02096,"18.0":0.01048,"19.0":0.02096},I:{"0":0.08321,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.0002},K:{"0":15.37022,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00569,"10":0.01139,"11":0.05694,_:"6 7 9 5.5"},S:{"2.5":0.00836,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":63.38418},R:{_:"0"},M:{"0":0.0752},Q:{"14.9":0.00836},O:{"0":1.01096},H:{"0":2.71}}; +module.exports={C:{"34":0.00155,"52":0.00155,"78":0.00309,"85":0.00155,"99":0.00155,"103":0.00773,"112":0.00309,"115":0.05411,"118":0.00155,"119":0.00155,"121":0.00155,"122":0.00464,"123":0.01855,"124":0.252,"125":0.10204,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 95 96 97 98 100 101 102 104 105 106 107 108 109 110 111 113 114 116 117 120 126 127 128 3.5 3.6"},D:{"11":0.00309,"31":0.00155,"36":0.00155,"38":0.00155,"40":0.00155,"42":0.00155,"46":0.00464,"49":0.00464,"50":0.00773,"51":0.00309,"53":0.00309,"55":0.00155,"58":0.00309,"59":0.00464,"63":0.00618,"64":0.00928,"66":0.00155,"68":0.00618,"69":0.00773,"70":0.00309,"71":0.00309,"72":0.00155,"73":0.00309,"74":0.00155,"75":0.00309,"76":0.00155,"77":0.00618,"78":0.00464,"79":0.00618,"80":0.00618,"81":0.00618,"83":0.01082,"84":0.00155,"86":0.00773,"87":0.00773,"88":0.01082,"89":0.00155,"90":0.00155,"91":0.00155,"92":0.00618,"93":0.00928,"94":0.00928,"95":0.00618,"96":0.00309,"97":0.01082,"98":0.00309,"99":0.00309,"100":0.00155,"101":0.00155,"102":0.06029,"103":0.0371,"104":0.00309,"105":0.00464,"106":0.01546,"107":0.00464,"108":0.00464,"109":0.47308,"110":0.00464,"111":0.02319,"112":0.00464,"113":0.00618,"114":0.01082,"115":0.00309,"116":0.02937,"117":0.01082,"118":0.01237,"119":0.0402,"120":0.04329,"121":0.09121,"122":0.24427,"123":3.54962,"124":1.2569,"125":0.01082,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 37 39 41 43 44 45 47 48 52 54 56 57 60 61 62 65 67 85 126 127"},F:{"28":0.00155,"34":0.00464,"36":0.00155,"42":0.01082,"45":0.00155,"46":0.00155,"51":0.00155,"55":0.00309,"64":0.00155,"75":0.00155,"76":0.00309,"79":0.02164,"80":0.00155,"81":0.00309,"82":0.00773,"83":0.00155,"86":0.00309,"90":0.00464,"93":0.00618,"95":0.05102,"96":0.00155,"98":0.00155,"101":0.00155,"106":0.00773,"107":0.04483,"108":0.32002,"109":0.14378,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 35 37 38 39 40 41 43 44 47 48 49 50 52 53 54 56 57 58 60 62 63 65 66 67 68 69 70 71 72 73 74 77 78 84 85 87 88 89 91 92 94 97 99 100 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.02937,"13":0.00618,"14":0.00928,"15":0.00773,"16":0.00618,"17":0.00773,"18":0.0402,"84":0.00464,"85":0.00155,"86":0.00309,"88":0.00155,"89":0.00773,"90":0.00928,"92":0.06493,"100":0.01082,"101":0.00464,"103":0.00155,"106":0.00155,"107":0.00309,"108":0.00928,"109":0.02319,"110":0.00155,"112":0.00309,"113":0.00155,"114":0.00464,"115":0.00464,"116":0.00309,"117":0.00464,"118":0.00464,"119":0.01082,"120":0.02474,"121":0.03865,"122":0.1546,"123":1.1193,"124":0.43906,_:"79 80 81 83 87 91 93 94 95 96 97 98 99 102 104 105 111"},E:{"11":0.00155,"13":0.00309,"14":0.00155,_:"0 4 5 6 7 8 9 10 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 15.2-15.3 16.2 17.5","12.1":0.00155,"13.1":0.04638,"14.1":0.03556,"15.1":0.00155,"15.4":0.00464,"15.5":0.00309,"15.6":0.02164,"16.0":0.00155,"16.1":0.00155,"16.3":0.00773,"16.4":0.00309,"16.5":0.00309,"16.6":0.03865,"17.0":0.00155,"17.1":0.01391,"17.2":0.0201,"17.3":0.01701,"17.4":0.13914},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00117,"5.0-5.1":0.00117,"6.0-6.1":0.00292,"7.0-7.1":0.00467,"8.1-8.4":0.00117,"9.0-9.2":0.00292,"9.3":0.0146,"10.0-10.2":0.00292,"10.3":0.02336,"11.0-11.2":0.01986,"11.3-11.4":0.00584,"12.0-12.1":0.00409,"12.2-12.5":0.09521,"13.0-13.1":0.00175,"13.2":0.01928,"13.3":0.00467,"13.4-13.7":0.01811,"14.0-14.4":0.03563,"14.5-14.8":0.05432,"15.0-15.1":0.02512,"15.2-15.3":0.02862,"15.4":0.03271,"15.5":0.04147,"15.6-15.8":0.36214,"16.0":0.08469,"16.1":0.1764,"16.2":0.08469,"16.3":0.14953,"16.4":0.03096,"16.5":0.06484,"16.6-16.7":0.51226,"17.0":0.06133,"17.1":0.11332,"17.2":0.1507,"17.3":1.09928,"17.4":2.48127,"17.5":0.02278},P:{"4":0.18508,"20":0.01028,"21":0.05141,"22":0.05141,"23":0.15424,"24":0.59638,"5.0-5.4":0.05141,"6.2-6.4":0.01028,"7.2-7.4":0.06169,_:"8.2 10.1 14.0","9.2":0.03085,"11.1-11.2":0.01028,"12.0":0.01028,"13.0":0.01028,"15.0":0.01028,"16.0":0.03085,"17.0":0.02056,"18.0":0.01028,"19.0":0.03085},I:{"0":0.0926,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00023},A:{"10":0.00275,"11":0.02199,_:"6 7 8 9 5.5"},K:{"0":14.13479,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.01691,_:"3.0-3.1"},Q:{"14.9":0.01691},O:{"0":0.96364},H:{"0":2.45},L:{"0":64.61013},R:{_:"0"},M:{"0":0.07608}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js index 38e19944b89201..75260a700afe94 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/ZW.js @@ -1 +1 @@ -module.exports={C:{"52":0.00294,"58":0.00294,"72":0.00294,"78":0.00294,"82":0.00294,"87":0.00882,"88":0.04706,"94":0.00294,"97":0.00588,"99":0.00882,"100":0.03235,"102":0.00294,"106":0.02059,"111":0.00588,"112":0.00294,"113":0.02647,"114":0.00294,"115":0.12058,"116":0.00294,"117":0.00294,"118":0.01176,"119":0.00588,"120":0.00588,"121":0.01765,"122":0.03529,"123":0.8823,"124":0.27645,"125":0.00294,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 83 84 85 86 89 90 91 92 93 95 96 98 101 103 104 105 107 108 109 110 126 127 3.5 3.6"},D:{"11":0.01471,"17":0.00588,"19":0.00588,"41":0.00294,"49":0.00294,"59":0.00294,"63":0.01176,"64":0.00294,"65":0.02059,"66":0.00294,"67":0.00294,"68":0.01176,"69":0.00588,"70":0.00882,"71":0.01176,"72":0.00294,"73":0.00294,"74":0.01471,"75":0.00294,"76":0.01471,"77":0.00588,"78":0.01176,"79":0.05588,"80":0.00882,"81":0.00882,"83":0.00882,"84":0.00882,"85":0.01471,"86":0.01176,"87":0.02353,"88":0.00882,"89":0.00294,"90":0.00882,"91":0.00294,"92":0.00294,"93":0.01471,"94":0.02647,"95":0.01176,"96":0.00882,"97":0.00588,"98":0.00882,"99":0.01176,"100":0.00588,"101":0.00294,"102":0.02059,"103":0.03529,"104":0.02059,"105":0.01176,"106":0.02647,"107":0.01471,"108":0.01176,"109":0.94994,"110":0.01176,"111":0.01176,"112":0.01176,"113":0.01176,"114":0.03823,"115":0.02941,"116":0.05882,"117":0.02353,"118":0.03823,"119":0.1147,"120":0.24116,"121":0.74996,"122":7.89953,"123":1.79107,"124":0.00882,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 42 43 44 45 46 47 48 50 51 52 53 54 55 56 57 58 60 61 62 125 126"},F:{"36":0.00294,"40":0.00294,"45":0.00294,"75":0.00294,"76":0.00294,"79":0.00588,"81":0.00294,"82":0.00294,"85":0.00294,"86":0.02353,"89":0.00294,"90":0.00294,"95":0.03235,"104":0.00294,"105":0.03529,"106":0.02941,"107":0.57055,"108":0.34704,"109":0.00882,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 41 42 43 44 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 77 78 80 83 84 87 88 91 92 93 94 96 97 98 99 100 101 102 103 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.04117,"13":0.03529,"14":0.01176,"15":0.01765,"16":0.02941,"17":0.02941,"18":0.17646,"84":0.05,"85":0.00588,"89":0.05294,"90":0.08235,"92":0.23528,"95":0.00294,"99":0.00294,"100":0.10294,"101":0.00294,"102":0.00294,"103":0.00588,"104":0.00588,"105":0.00588,"106":0.00294,"107":0.01765,"108":0.01176,"109":0.06176,"110":0.02059,"111":0.01765,"112":0.03823,"113":0.06176,"114":0.03823,"115":0.03529,"116":0.03823,"117":0.04706,"118":0.04706,"119":0.10294,"120":0.31175,"121":0.48527,"122":5.3585,"123":0.23234,_:"79 80 81 83 86 87 88 91 93 94 96 97 98"},E:{"11":0.00588,"13":0.00294,"14":0.00882,"15":0.00294,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.01471,"11.1":0.00882,"12.1":0.00294,"13.1":0.01765,"14.1":0.09999,"15.1":0.00882,"15.2-15.3":0.00294,"15.4":0.00588,"15.5":0.00294,"15.6":0.05588,"16.0":0.00294,"16.1":0.01176,"16.2":0.00294,"16.3":0.02647,"16.4":0.00588,"16.5":0.00882,"16.6":0.11176,"17.0":0.00882,"17.1":0.03529,"17.2":0.03529,"17.3":0.3588,"17.4":0.09117},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00098,"5.0-5.1":0.00049,"6.0-6.1":0.00293,"7.0-7.1":0.00341,"8.1-8.4":0.00098,"9.0-9.2":0.00195,"9.3":0.01219,"10.0-10.2":0.00195,"10.3":0.02048,"11.0-11.2":0.01463,"11.3-11.4":0.00488,"12.0-12.1":0.00439,"12.2-12.5":0.08437,"13.0-13.1":0.00146,"13.2":0.01463,"13.3":0.00439,"13.4-13.7":0.01658,"14.0-14.4":0.0317,"14.5-14.8":0.04975,"15.0-15.1":0.02146,"15.2-15.3":0.02536,"15.4":0.02975,"15.5":0.03804,"15.6-15.8":0.31847,"16.0":0.07755,"16.1":0.16046,"16.2":0.07755,"16.3":0.13802,"16.4":0.02926,"16.5":0.06194,"16.6-16.7":0.46917,"17.0":0.06096,"17.1":0.12193,"17.2":0.19655,"17.3":2.41903,"17.4":0.35505,"17.5":0},P:{"4":0.0929,"20":0.02064,"21":0.11355,"22":0.10322,"23":0.98062,"24":0.67095,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.19612,"9.2":0.01032,"11.1-11.2":0.05161,"13.0":0.03097,"14.0":0.01032,"15.0":0.01032,"16.0":0.04129,"17.0":0.02064,"18.0":0.02064,"19.0":0.10322},I:{"0":0.10544,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00006,"4.4":0,"4.4.3-4.4.4":0.00025},K:{"0":7.49605,_:"10 11 12 11.1 11.5 12.1"},A:{"10":0.00637,"11":0.03186,_:"6 7 8 9 5.5"},S:{"2.5":0.00706,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":57.96412},R:{_:"0"},M:{"0":0.24703},Q:{"14.9":0.04235},O:{"0":0.94577},H:{"0":1.15}}; +module.exports={C:{"34":0.00266,"48":0.00266,"87":0.00531,"88":0.01062,"94":0.00797,"99":0.01593,"100":0.00266,"101":0.01859,"102":0.00531,"106":0.01593,"107":0.00266,"110":0.00266,"112":0.00266,"113":0.01859,"115":0.15134,"118":0.00531,"119":0.00266,"120":0.00266,"121":0.00797,"122":0.00266,"123":0.04248,"124":1.01687,"125":0.4248,"126":0.00531,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 89 90 91 92 93 95 96 97 98 103 104 105 108 109 111 114 116 117 127 128 3.5 3.6"},D:{"11":0.01062,"17":0.00266,"29":0.00266,"41":0.00266,"43":0.00266,"44":0.00266,"49":0.00531,"50":0.00266,"54":0.00266,"55":0.00266,"63":0.01062,"64":0.00531,"65":0.00266,"66":0.00531,"68":0.01062,"69":0.00797,"70":0.01062,"71":0.00266,"73":0.00531,"74":0.02124,"75":0.00266,"76":0.01062,"77":0.00531,"78":0.00266,"79":0.05841,"80":0.00531,"81":0.01062,"83":0.01062,"84":0.00797,"85":0.00531,"86":0.00531,"87":0.02124,"88":0.00797,"89":0.00266,"90":0.00797,"91":0.00531,"92":0.10355,"93":0.00797,"94":0.04248,"95":0.00531,"96":0.00531,"97":0.01593,"98":0.01328,"99":0.01328,"100":0.00531,"101":0.00266,"102":0.02124,"103":0.02655,"104":0.02124,"105":0.01328,"106":0.02124,"107":0.0239,"108":0.01062,"109":0.85757,"110":0.00797,"111":0.0239,"112":0.01062,"113":0.01859,"114":0.07169,"115":0.01859,"116":0.0531,"117":0.01593,"118":0.02124,"119":0.06107,"120":0.09558,"121":0.16196,"122":0.41418,"123":7.09151,"124":2.72403,"125":0.01859,_:"4 5 6 7 8 9 10 12 13 14 15 16 18 19 20 21 22 23 24 25 26 27 28 30 31 32 33 34 35 36 37 38 39 40 42 45 46 47 48 51 52 53 56 57 58 59 60 61 62 67 72 126 127"},F:{"34":0.00266,"36":0.00266,"40":0.00266,"42":0.00266,"47":0.00266,"71":0.00266,"74":0.00266,"75":0.00266,"77":0.00266,"79":0.01062,"82":0.00266,"83":0.01062,"84":0.00266,"85":0.00266,"86":0.00797,"95":0.02655,"99":0.01062,"102":0.00266,"105":0.02921,"106":0.00797,"107":0.15134,"108":0.61862,"109":0.1832,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 41 43 44 45 46 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 72 73 76 78 80 81 87 88 89 90 91 92 93 94 96 97 98 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.03186,"13":0.01328,"14":0.00266,"15":0.00797,"16":0.01593,"17":0.01062,"18":0.09293,"81":0.00797,"84":0.02655,"85":0.00531,"89":0.01859,"90":0.02921,"92":0.10089,"99":0.00266,"100":0.0239,"103":0.00266,"104":0.00266,"105":0.01328,"107":0.00531,"108":0.00266,"109":0.03717,"110":0.00531,"111":0.00266,"112":0.01062,"113":0.01859,"114":0.01062,"115":0.01859,"116":0.00797,"117":0.03186,"118":0.02655,"119":0.03452,"120":0.06372,"121":0.06107,"122":0.38763,"123":2.8382,"124":1.15758,_:"79 80 83 86 87 88 91 93 94 95 96 97 98 101 102 106"},E:{"11":0.00266,"13":0.00266,"14":0.00797,"15":0.01062,_:"0 4 5 6 7 8 9 10 12 3.1 3.2 5.1 6.1 7.1 10.1 11.1 17.5","9.1":0.00266,"12.1":0.00266,"13.1":0.00266,"14.1":0.077,"15.1":0.00531,"15.2-15.3":0.00266,"15.4":0.00266,"15.5":0.00266,"15.6":0.06638,"16.0":0.00266,"16.1":0.00797,"16.2":0.0239,"16.3":0.02921,"16.4":0.00266,"16.5":0.00531,"16.6":0.08496,"17.0":0.00797,"17.1":0.01593,"17.2":0.04514,"17.3":0.07434,"17.4":0.21506},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00098,"5.0-5.1":0.00098,"6.0-6.1":0.00246,"7.0-7.1":0.00393,"8.1-8.4":0.00098,"9.0-9.2":0.00246,"9.3":0.01228,"10.0-10.2":0.00246,"10.3":0.01966,"11.0-11.2":0.01671,"11.3-11.4":0.00491,"12.0-12.1":0.00344,"12.2-12.5":0.0801,"13.0-13.1":0.00147,"13.2":0.01622,"13.3":0.00393,"13.4-13.7":0.01523,"14.0-14.4":0.02997,"14.5-14.8":0.0457,"15.0-15.1":0.02113,"15.2-15.3":0.02408,"15.4":0.02752,"15.5":0.03489,"15.6-15.8":0.30466,"16.0":0.07125,"16.1":0.1484,"16.2":0.07125,"16.3":0.12579,"16.4":0.02604,"16.5":0.05454,"16.6-16.7":0.43094,"17.0":0.05159,"17.1":0.09533,"17.2":0.12678,"17.3":0.92478,"17.4":2.08738,"17.5":0.01916},P:{"4":0.11433,"20":0.02079,"21":0.11433,"22":0.11433,"23":0.39495,"24":1.34074,"5.0-5.4":0.01039,_:"6.2-6.4 8.2 9.2 10.1 15.0","7.2-7.4":0.20787,"11.1-11.2":0.01039,"12.0":0.01039,"13.0":0.02079,"14.0":0.01039,"16.0":0.04157,"17.0":0.02079,"18.0":0.02079,"19.0":0.10393},I:{"0":0.22676,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00005,"4.2-4.3":0.00014,"4.4":0,"4.4.3-4.4.4":0.00057},A:{"10":0.00531,"11":0.02124,_:"6 7 8 9 5.5"},K:{"0":7.60507,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.07345},O:{"0":0.91813},H:{"0":1.04},L:{"0":60.43927},R:{_:"0"},M:{"0":0.17628}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-af.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-af.js index b535563d0d2df5..008f2d8c883660 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-af.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-af.js @@ -1 +1 @@ -module.exports={C:{"34":0.00448,"47":0.00224,"52":0.01568,"57":0.00224,"72":0.00224,"77":0.00448,"78":0.00672,"88":0.00224,"89":0.00224,"95":0.00672,"108":0.00448,"110":0.00224,"113":0.00448,"115":0.2688,"118":0.00224,"119":0.00224,"120":0.00448,"121":0.00896,"122":0.02464,"123":0.53536,"124":0.21504,"125":0.00448,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 107 109 111 112 114 116 117 126 127 3.5 3.6"},D:{"11":0.00448,"43":0.01568,"47":0.00448,"49":0.00896,"50":0.00224,"56":0.00448,"58":0.01344,"62":0.00224,"63":0.00448,"64":0.00224,"65":0.00448,"66":0.00448,"67":0.0112,"68":0.00672,"69":0.00672,"70":0.00896,"71":0.00224,"72":0.00448,"73":0.00448,"74":0.00672,"75":0.00448,"76":0.00672,"77":0.00448,"78":0.00448,"79":0.02912,"80":0.00672,"81":0.01344,"83":0.01344,"84":0.00448,"85":0.00896,"86":0.01568,"87":0.03136,"88":0.01792,"89":0.00448,"90":0.00672,"91":0.00896,"92":0.00672,"93":0.0336,"94":0.00896,"95":0.0112,"96":0.00448,"97":0.00448,"98":0.01792,"99":0.02464,"100":0.00672,"101":0.00896,"102":0.0224,"103":0.0336,"104":0.01344,"105":0.01344,"106":0.02016,"107":0.01792,"108":0.02464,"109":1.37088,"110":0.01344,"111":0.02464,"112":0.01344,"113":0.0112,"114":0.02688,"115":0.0112,"116":0.06048,"117":0.02016,"118":0.01792,"119":0.06496,"120":0.1568,"121":0.49504,"122":6.42432,"123":1.88384,"124":0.00448,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 44 45 46 48 51 52 53 54 55 57 59 60 61 125 126"},F:{"79":0.0112,"81":0.00448,"82":0.00224,"85":0.00224,"95":0.04032,"102":0.00448,"105":0.00448,"106":0.0112,"107":0.37408,"108":0.1344,"109":0.00224,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00672,"13":0.00224,"14":0.00224,"15":0.00448,"16":0.00448,"17":0.00672,"18":0.02016,"84":0.00448,"89":0.00448,"90":0.00672,"92":0.02912,"100":0.00672,"107":0.00224,"108":0.00224,"109":0.03584,"110":0.00224,"111":0.00224,"112":0.00224,"113":0.00448,"114":0.00672,"115":0.00448,"116":0.00672,"117":0.00672,"118":0.0112,"119":0.01792,"120":0.0448,"121":0.11424,"122":2.09216,"123":0.15232,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106"},E:{"14":0.00896,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00672,"9.1":0.00672,"12.1":0.00224,"13.1":0.01792,"14.1":0.02016,"15.1":0.00896,"15.2-15.3":0.00448,"15.4":0.00672,"15.5":0.00448,"15.6":0.06272,"16.0":0.00672,"16.1":0.00896,"16.2":0.00672,"16.3":0.02016,"16.4":0.00896,"16.5":0.01344,"16.6":0.056,"17.0":0.0112,"17.1":0.0224,"17.2":0.04256,"17.3":0.11648,"17.4":0.0336},G:{"8":0.00236,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00315,"6.0-6.1":0,"7.0-7.1":0.01574,"8.1-8.4":0,"9.0-9.2":0.00079,"9.3":0.02833,"10.0-10.2":0,"10.3":0.03463,"11.0-11.2":0.01023,"11.3-11.4":0.00551,"12.0-12.1":0.01574,"12.2-12.5":0.55166,"13.0-13.1":0.00866,"13.2":0.00236,"13.3":0.01338,"13.4-13.7":0.03935,"14.0-14.4":0.12985,"14.5-14.8":0.14952,"15.0-15.1":0.13457,"15.2-15.3":0.07948,"15.4":0.06138,"15.5":0.10152,"15.6-15.8":1.13638,"16.0":0.15503,"16.1":0.23452,"16.2":0.11962,"16.3":0.22271,"16.4":0.08027,"16.5":0.15739,"16.6-16.7":0.9058,"17.0":0.19202,"17.1":0.22665,"17.2":0.32187,"17.3":2.26016,"17.4":0.46352,"17.5":0},P:{"4":0.12672,"20":0.04224,"21":0.09504,"22":0.1056,"23":1.27777,"24":1.12993,_:"5.0-5.4 6.2-6.4 8.2 10.1 12.0","7.2-7.4":0.19008,"9.2":0.01056,"11.1-11.2":0.02112,"13.0":0.02112,"14.0":0.01056,"15.0":0.01056,"16.0":0.03168,"17.0":0.04224,"18.0":0.02112,"19.0":0.08448},I:{"0":0.06129,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00002,"4.2-4.3":0.00009,"4.4":0,"4.4.3-4.4.4":0.00066},K:{"0":7.07963,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.0052,"11":0.05976,_:"6 7 9 10 5.5"},S:{"2.5":0.07761,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":62.55937},R:{_:"0"},M:{"0":0.22507},Q:{_:"14.9"},O:{"0":0.38805},H:{"0":1.83}}; +module.exports={C:{"34":0.0064,"52":0.01493,"57":0.00213,"68":0.00213,"72":0.00213,"77":0.0064,"78":0.0064,"88":0.00213,"95":0.0128,"102":0.00213,"103":0.00213,"108":0.00427,"110":0.00213,"113":0.00427,"115":0.26663,"118":0.00213,"120":0.00213,"121":0.0064,"122":0.0128,"123":0.02346,"124":0.46286,"125":0.25809,"126":0.0064,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 58 59 60 61 62 63 64 65 66 67 69 70 71 73 74 75 76 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 96 97 98 99 100 101 104 105 106 107 109 111 112 114 116 117 119 127 128 3.5 3.6"},D:{"11":0.00427,"38":0.00213,"43":0.00853,"45":0.00427,"47":0.00427,"49":0.00853,"50":0.00427,"56":0.00427,"58":0.01706,"62":0.00213,"63":0.00427,"64":0.00213,"65":0.00427,"66":0.00853,"67":0.00853,"68":0.0064,"69":0.0064,"70":0.01067,"72":0.00427,"73":0.00427,"74":0.0064,"75":0.00427,"76":0.00427,"77":0.00427,"78":0.00427,"79":0.02773,"80":0.0064,"81":0.01493,"83":0.01493,"84":0.00427,"85":0.0064,"86":0.01493,"87":0.02773,"88":0.01706,"89":0.00427,"90":0.0064,"91":0.01067,"92":0.00853,"93":0.032,"94":0.00853,"95":0.0128,"96":0.00427,"97":0.00427,"98":0.01706,"99":0.02133,"100":0.00853,"101":0.0128,"102":0.02133,"103":0.03626,"104":0.01493,"105":0.00853,"106":0.01706,"107":0.01067,"108":0.02986,"109":1.37579,"110":0.01067,"111":0.01493,"112":0.01067,"113":0.00853,"114":0.02133,"115":0.00853,"116":0.05759,"117":0.01493,"118":0.0128,"119":0.05119,"120":0.09172,"121":0.11305,"122":0.35195,"123":5.84229,"124":2.5468,"125":0.02133,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 44 46 48 51 52 53 54 55 57 59 60 61 71 126 127"},F:{"28":0.00213,"79":0.00853,"82":0.00427,"95":0.04053,"102":0.00427,"105":0.00213,"106":0.00427,"107":0.15358,"108":0.26236,"109":0.10025,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 80 81 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.0064,"13":0.00213,"14":0.00213,"15":0.00427,"16":0.00427,"17":0.00427,"18":0.0192,"84":0.00427,"89":0.00427,"90":0.00427,"92":0.02346,"100":0.00427,"109":0.03626,"110":0.00213,"113":0.00213,"114":0.0064,"115":0.00427,"116":0.00427,"117":0.00427,"118":0.01067,"119":0.01706,"120":0.02346,"121":0.02773,"122":0.21117,"123":1.43124,"124":0.69749,_:"79 80 81 83 85 86 87 88 91 93 94 95 96 97 98 99 101 102 103 104 105 106 107 108 111 112"},E:{"13":0.00213,"14":0.01067,_:"0 4 5 6 7 8 9 10 11 12 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 17.5","12.1":0.00213,"13.1":0.01706,"14.1":0.01706,"15.1":0.00853,"15.2-15.3":0.00427,"15.4":0.00427,"15.5":0.0064,"15.6":0.05333,"16.0":0.00853,"16.1":0.00853,"16.2":0.0064,"16.3":0.01706,"16.4":0.00853,"16.5":0.01067,"16.6":0.05333,"17.0":0.00853,"17.1":0.01706,"17.2":0.0256,"17.3":0.04479,"17.4":0.14078},G:{"8":0.00236,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00315,"6.0-6.1":0,"7.0-7.1":0.02048,"8.1-8.4":0.00079,"9.0-9.2":0.00158,"9.3":0.03072,"10.0-10.2":0.00079,"10.3":0.04804,"11.0-11.2":0.01024,"11.3-11.4":0.00315,"12.0-12.1":0.01418,"12.2-12.5":0.52059,"13.0-13.1":0.00709,"13.2":0.00236,"13.3":0.01339,"13.4-13.7":0.03859,"14.0-14.4":0.12129,"14.5-14.8":0.12995,"15.0-15.1":0.1331,"15.2-15.3":0.07561,"15.4":0.05356,"15.5":0.09451,"15.6-15.8":1.11286,"16.0":0.14177,"16.1":0.21186,"16.2":0.10632,"16.3":0.20871,"16.4":0.07325,"16.5":0.14177,"16.6-16.7":0.85217,"17.0":0.16933,"17.1":0.18902,"17.2":0.23549,"17.3":0.96401,"17.4":2.11782,"17.5":0.02126},P:{"4":0.13638,"20":0.03147,"21":0.08393,"22":0.1154,"23":0.32521,"24":2.03519,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0","7.2-7.4":0.18883,"11.1-11.2":0.02098,"13.0":0.02098,"14.0":0.01049,"15.0":0.01049,"16.0":0.04196,"17.0":0.04196,"18.0":0.03147,"19.0":0.08393},I:{"0":0.06998,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.0001,"4.4":0,"4.4.3-4.4.4":0.00071},A:{"8":0.00225,"11":0.03828,_:"6 7 9 10 5.5"},K:{"0":6.81972,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.08655,_:"3.0-3.1"},Q:{_:"14.9"},O:{"0":0.36193},H:{"0":1.78},L:{"0":63.00128},R:{_:"0"},M:{"0":0.20457}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js index 63021a2e079cf9..5467c07c06f6a6 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-an.js @@ -1 +1 @@ -module.exports={C:{"123":0.02035,"124":0.0651,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 125 126 127 3.5 3.6"},D:{"94":0.01221,"105":0.01221,"109":0.91959,"115":0.01221,"116":0.02035,"120":0.03255,"121":0.27669,"122":0.43131,"123":0.27669,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 83 84 85 86 87 88 89 90 91 92 93 95 96 97 98 99 100 101 102 103 104 106 107 108 110 111 112 113 114 117 118 119 124 125 126"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"118":0.01221,"119":0.01221,"120":0.6429,"121":0.02035,"122":0.21159,"123":0.01221,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1 17.5","15.1":0.21159,"15.2-15.3":0.41911,"15.4":0.05697,"15.5":0.05697,"15.6":0.84228,"16.0":0.01221,"16.1":0.56559,"16.2":1.01725,"16.3":1.15153,"16.4":0.56559,"16.5":0.77311,"16.6":5.50129,"17.0":0.6958,"17.1":2.6123,"17.2":7.69448,"17.3":10.98223,"17.4":2.6774},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0.14252,"15.2-15.3":0.80577,"15.4":0.02193,"15.5":0,"15.6-15.8":0.58103,"16.0":2.02265,"16.1":2.87227,"16.2":1.05792,"16.3":1.75406,"16.4":0.15348,"16.5":0.56459,"16.6-16.7":5.05936,"17.0":0.75096,"17.1":2.12131,"17.2":2.40635,"17.3":31.12356,"17.4":3.37656,"17.5":0},P:{"22":0.02966,"24":0.05931,_:"4 20 21 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.02372,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},A:{_:"6 7 8 9 10 11 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":4.42895},R:{_:"0"},M:{"0":0.05338},Q:{"14.9":0.02372},O:{"0":0.10083},H:{"0":0}}; +module.exports={C:{"120":0.03042,"124":0.05323,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 121 122 123 125 126 127 128 3.5 3.6"},D:{"81":0.03042,"90":0.06463,"109":0.63493,"120":0.03042,"121":0.03042,"122":0.09505,"123":2.76786,"124":0.20151,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 83 84 85 86 87 88 89 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 114 115 116 117 118 119 125 126 127"},F:{_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"122":0.01141,"123":1.16721,"124":0.06463,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121"},E:{_:"0 4 5 6 7 8 9 10 11 12 13 14 15 3.1 3.2 5.1 6.1 7.1 9.1 10.1 11.1 12.1 13.1 14.1","15.1":0.17869,"15.2-15.3":0.47525,"15.4":0.02281,"15.5":0.03042,"15.6":0.81743,"16.0":0.01141,"16.1":0.17869,"16.2":0.71097,"16.3":1.16721,"16.4":0.52087,"16.5":1.07977,"16.6":3.76398,"17.0":0.32697,"17.1":1.12539,"17.2":3.87804,"17.3":5.23535,"17.4":12.45535,"17.5":0.02281},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0,"7.0-7.1":0,"8.1-8.4":0,"9.0-9.2":0,"9.3":0,"10.0-10.2":0,"10.3":0,"11.0-11.2":0,"11.3-11.4":0,"12.0-12.1":0,"12.2-12.5":0,"13.0-13.1":0,"13.2":0,"13.3":0,"13.4-13.7":0,"14.0-14.4":0,"14.5-14.8":0,"15.0-15.1":0.12796,"15.2-15.3":0.88988,"15.4":0,"15.5":0.01163,"15.6-15.8":0.4304,"16.0":1.02365,"16.1":2.75688,"16.2":0.77937,"16.3":1.93098,"16.4":0.1803,"16.5":0.54091,"16.6-16.7":6.63047,"17.0":0.50601,"17.1":0.66305,"17.2":1.11671,"17.3":14.94183,"17.4":25.28304,"17.5":0.34897},P:{"24":0.03099,_:"4 20 21 22 23 5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 17.0 18.0 19.0"},I:{"0":0.05579,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0,"4.4":0,"4.4.3-4.4.4":0},A:{_:"6 7 8 9 10 11 5.5"},K:{"0":0,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.48344},O:{"0":0.03099},H:{"0":0},L:{"0":3.01748},R:{_:"0"},M:{"0":0.0124}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-as.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-as.js index 07cc5b85224932..6ac66063b74803 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-as.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-as.js @@ -1 +1 @@ -module.exports={C:{"34":0.0059,"36":0.00295,"43":0.01769,"52":0.05308,"54":0.00885,"56":0.03244,"72":0.00885,"78":0.00295,"88":0.0059,"103":0.00295,"108":0.00295,"110":0.00295,"113":0.01475,"115":0.27426,"117":0.00295,"118":0.00295,"119":0.00295,"120":0.0059,"121":0.00885,"122":0.03539,"123":0.51313,"124":0.21823,"125":0.00295,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 55 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 109 111 112 114 116 126 127 3.5 3.6"},D:{"25":0.00295,"34":0.00885,"35":0.00295,"38":0.02359,"47":0.0059,"48":0.00885,"49":0.02064,"50":0.02654,"53":0.00885,"55":0.0059,"56":0.0059,"57":0.00295,"61":0.00885,"63":0.0059,"65":0.00295,"66":0.00885,"67":0.00295,"68":0.0059,"69":0.06488,"70":0.03244,"71":0.00885,"72":0.0059,"73":0.01769,"74":0.0118,"75":0.00885,"76":0.0059,"77":0.03834,"78":0.01769,"79":0.1386,"80":0.01769,"81":0.01769,"83":0.02949,"84":0.0118,"85":0.01769,"86":0.04718,"87":0.10322,"88":0.0118,"89":0.01475,"90":0.02064,"91":0.01475,"92":0.02064,"93":0.0059,"94":0.02359,"95":0.0118,"96":0.00885,"97":0.02359,"98":0.15335,"99":0.03834,"100":0.02359,"101":0.03244,"102":0.02359,"103":0.05308,"104":0.02064,"105":0.02654,"106":0.02654,"107":0.03244,"108":0.05013,"109":1.908,"110":0.02359,"111":0.05603,"112":0.04129,"113":0.03539,"114":0.05308,"115":0.02654,"116":0.14745,"117":0.04718,"118":0.04129,"119":0.09437,"120":0.25067,"121":0.85226,"122":10.6046,"123":3.01978,"124":0.01475,"125":0.00295,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 51 52 54 58 59 60 62 64 126"},F:{"28":0.0059,"36":0.0059,"40":0.00295,"46":0.02654,"95":0.02359,"102":0.07373,"106":0.0059,"107":0.25656,"108":0.07078,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00295,"18":0.0118,"92":0.01769,"100":0.00295,"106":0.00295,"107":0.0059,"108":0.0118,"109":0.05898,"110":0.00885,"111":0.00885,"112":0.00885,"113":0.02359,"114":0.02064,"115":0.0118,"116":0.0118,"117":0.0118,"118":0.01475,"119":0.02359,"120":0.05898,"121":0.12681,"122":2.59807,"123":0.21823,_:"13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00885,"14":0.02949,"15":0.0059,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 10.1 11.1 17.5","5.1":0.00295,"9.1":0.02064,"12.1":0.0059,"13.1":0.02949,"14.1":0.06783,"15.1":0.0118,"15.2-15.3":0.00885,"15.4":0.02359,"15.5":0.03539,"15.6":0.15335,"16.0":0.0118,"16.1":0.03834,"16.2":0.02949,"16.3":0.07373,"16.4":0.02064,"16.5":0.04129,"16.6":0.21233,"17.0":0.02359,"17.1":0.07078,"17.2":0.12681,"17.3":0.5898,"17.4":0.08847},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00473,"5.0-5.1":0.00473,"6.0-6.1":0.00236,"7.0-7.1":0.01537,"8.1-8.4":0.00355,"9.0-9.2":0.00709,"9.3":0.03311,"10.0-10.2":0.00473,"10.3":0.07568,"11.0-11.2":0.0201,"11.3-11.4":0.01182,"12.0-12.1":0.01419,"12.2-12.5":0.29916,"13.0-13.1":0.00591,"13.2":0.0201,"13.3":0.01774,"13.4-13.7":0.07804,"14.0-14.4":0.13007,"14.5-14.8":0.19629,"15.0-15.1":0.08041,"15.2-15.3":0.09696,"15.4":0.11943,"15.5":0.14189,"15.6-15.8":1.09613,"16.0":0.2424,"16.1":0.41149,"16.2":0.22585,"16.3":0.39376,"16.4":0.1147,"16.5":0.21994,"16.6-16.7":1.23448,"17.0":0.20929,"17.1":0.37957,"17.2":0.56876,"17.3":4.57018,"17.4":0.77332,"17.5":0},P:{"4":0.23327,"20":0.03181,"21":0.07422,"22":0.09543,"23":1.06032,"24":1.02851,"5.0-5.4":0.02121,"6.2-6.4":0.0106,"7.2-7.4":0.05302,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.02121,"13.0":0.02121,"14.0":0.0106,"16.0":0.03181,"17.0":0.04241,"18.0":0.02121,"19.0":0.04241},I:{"0":0.47128,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00005,"4.4":0,"4.4.3-4.4.4":0.00076},K:{"0":1.3661,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01779,"9":0.10673,"11":0.9784,_:"6 7 10 5.5"},S:{"2.5":0.16922,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":52.75766},R:{_:"0"},M:{"0":0.17628},Q:{"14.9":0.49357},O:{"0":1.77685},H:{"0":0.03}}; +module.exports={C:{"34":0.00587,"43":0.01174,"52":0.06164,"54":0.00881,"55":0.00294,"56":0.02642,"78":0.00294,"88":0.00587,"102":0.00294,"103":0.00294,"113":0.00587,"115":0.27296,"121":0.00881,"122":0.01468,"123":0.02055,"124":0.46373,"125":0.24948,"126":0.00587,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 44 45 46 47 48 49 50 51 53 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 114 116 117 118 119 120 127 128 3.5 3.6"},D:{"11":0.00294,"25":0.00294,"26":0.00294,"34":0.01174,"38":0.02642,"47":0.00587,"48":0.00587,"49":0.02348,"50":0.02055,"53":0.00881,"55":0.00587,"56":0.00587,"57":0.00587,"61":0.00881,"63":0.00587,"65":0.00294,"66":0.00881,"67":0.00587,"68":0.00294,"69":0.06751,"70":0.02642,"71":0.00587,"72":0.00294,"73":0.01468,"74":0.00881,"75":0.00587,"76":0.00294,"77":0.02055,"78":0.01174,"79":0.13208,"80":0.01174,"81":0.01468,"83":0.02348,"84":0.00881,"85":0.01468,"86":0.04403,"87":0.09099,"88":0.00587,"89":0.00881,"90":0.01761,"91":0.01174,"92":0.02055,"93":0.00587,"94":0.03229,"95":0.01174,"96":0.00881,"97":0.02348,"98":0.14675,"99":0.04109,"100":0.02348,"101":0.04109,"102":0.02642,"103":0.07044,"104":0.02348,"105":0.02348,"106":0.02348,"107":0.02642,"108":0.04109,"109":1.8784,"110":0.01761,"111":0.0499,"112":0.03816,"113":0.02348,"114":0.04696,"115":0.03522,"116":0.14969,"117":0.03816,"118":0.03522,"119":0.07044,"120":0.13795,"121":0.18197,"122":0.57233,"123":10.04944,"124":3.97986,"125":0.02642,"126":0.00294,_:"4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 51 52 54 58 59 60 62 64 127"},F:{"28":0.00587,"36":0.00587,"40":0.00294,"46":0.02935,"95":0.02055,"102":0.07631,"107":0.14675,"108":0.13501,"109":0.0499,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"18":0.01174,"92":0.01761,"100":0.00294,"106":0.00294,"107":0.00587,"108":0.00881,"109":0.06164,"110":0.00587,"111":0.00881,"112":0.01174,"113":0.02348,"114":0.02055,"115":0.01174,"116":0.00881,"117":0.01174,"118":0.01468,"119":0.02055,"120":0.04403,"121":0.03816,"122":0.17904,"123":2.08972,"124":0.95681,_:"12 13 14 15 16 17 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 101 102 103 104 105"},E:{"13":0.00587,"14":0.02642,"15":0.00587,_:"0 4 5 6 7 8 9 10 11 12 3.1 3.2 6.1 7.1 9.1 10.1 11.1","5.1":0.00294,"12.1":0.00587,"13.1":0.02642,"14.1":0.06457,"15.1":0.01174,"15.2-15.3":0.00881,"15.4":0.02348,"15.5":0.03229,"15.6":0.14969,"16.0":0.01468,"16.1":0.03522,"16.2":0.02642,"16.3":0.06751,"16.4":0.01761,"16.5":0.03816,"16.6":0.19665,"17.0":0.01761,"17.1":0.05283,"17.2":0.07631,"17.3":0.24361,"17.4":0.5195,"17.5":0.00294},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00453,"5.0-5.1":0.00453,"6.0-6.1":0.00226,"7.0-7.1":0.01699,"8.1-8.4":0.0034,"9.0-9.2":0.00679,"9.3":0.03284,"10.0-10.2":0.00566,"10.3":0.06794,"11.0-11.2":0.02038,"11.3-11.4":0.01132,"12.0-12.1":0.01246,"12.2-12.5":0.26724,"13.0-13.1":0.00453,"13.2":0.01812,"13.3":0.01472,"13.4-13.7":0.07247,"14.0-14.4":0.1189,"14.5-14.8":0.17325,"15.0-15.1":0.07587,"15.2-15.3":0.08832,"15.4":0.10871,"15.5":0.12569,"15.6-15.8":1.01573,"16.0":0.21062,"16.1":0.36122,"16.2":0.19703,"16.3":0.34197,"16.4":0.09512,"16.5":0.18571,"16.6-16.7":1.09046,"17.0":0.16646,"17.1":0.29102,"17.2":0.36915,"17.3":1.83555,"17.4":3.87267,"17.5":0.02718},P:{"4":0.24246,"20":0.03162,"21":0.06325,"22":0.08433,"23":0.253,"24":1.72883,"5.0-5.4":0.02108,"6.2-6.4":0.01054,"7.2-7.4":0.05271,_:"8.2 9.2 10.1 12.0 15.0","11.1-11.2":0.01054,"13.0":0.02108,"14.0":0.01054,"16.0":0.01054,"17.0":0.03162,"18.0":0.02108,"19.0":0.03162},I:{"0":0.38065,"3":0,"4":0,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00004,"4.4":0,"4.4.3-4.4.4":0.00065},A:{"8":0.0304,"9":0.12161,"11":1.03372,_:"6 7 10 5.5"},K:{"0":1.34042,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.14834,_:"3.0-3.1"},Q:{"14.9":0.61457},O:{"0":1.85077},H:{"0":0.03},L:{"0":52.87456},R:{_:"0"},M:{"0":0.16954}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js index 71a9b6b33d3572..6653dad767de80 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-eu.js @@ -1 +1 @@ -module.exports={C:{"45":0.02767,"48":0.00461,"50":0.01844,"52":0.07378,"53":0.03228,"56":0.01844,"59":0.01383,"68":0.00922,"78":0.02306,"83":0.00461,"88":0.01383,"91":0.00461,"102":0.07839,"103":0.14755,"104":0.00461,"105":0.00922,"107":0.00461,"108":0.00922,"109":0.00922,"110":0.00461,"111":0.00461,"112":0.00461,"113":0.01383,"114":0.00461,"115":0.58099,"116":0.00461,"117":0.01844,"118":0.01844,"119":0.01383,"120":0.03228,"121":0.02767,"122":0.09222,"123":2.04267,"124":0.85765,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 49 51 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 106 125 126 127 3.5 3.6"},D:{"34":0.00461,"35":0.00922,"38":0.01383,"43":0.00461,"47":0.00461,"48":0.00922,"49":0.03228,"52":0.00461,"60":0.00922,"63":0.00461,"66":0.05072,"68":0.00461,"69":0.00461,"70":0.00461,"71":0.00461,"72":0.00922,"73":0.00922,"74":0.01383,"75":0.00922,"76":0.01383,"77":0.00922,"78":0.03689,"79":0.11066,"80":0.01383,"81":0.01383,"83":0.01383,"84":0.00922,"85":0.03228,"86":0.06917,"87":0.05994,"88":0.03228,"89":0.01383,"90":0.01383,"91":0.03689,"92":0.03689,"93":0.0415,"94":0.03228,"95":0.00922,"96":0.01844,"97":0.00922,"98":0.00922,"99":0.02306,"100":0.05994,"101":0.10144,"102":0.07839,"103":0.19366,"104":0.34583,"105":0.03689,"106":0.09683,"107":0.04611,"108":0.05994,"109":1.44324,"110":0.03228,"111":0.0415,"112":0.04611,"113":0.03689,"114":0.08761,"115":0.03689,"116":0.28588,"117":0.16139,"118":0.15677,"119":0.17983,"120":0.48877,"121":2.264,"122":15.54368,"123":4.45884,"124":0.00922,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 39 40 41 42 44 45 46 50 51 53 54 55 56 57 58 59 61 62 64 65 67 125 126"},F:{"31":0.01383,"40":0.00922,"46":0.01383,"85":0.00461,"89":0.00461,"95":0.09222,"102":0.00461,"106":0.0415,"107":1.60924,"108":0.32277,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00461,"17":0.01383,"90":0.01383,"92":0.00922,"104":0.00461,"107":0.00922,"108":0.00922,"109":0.083,"110":0.00922,"111":0.01383,"112":0.00461,"113":0.00461,"114":0.01844,"115":0.00922,"116":0.00922,"117":0.02306,"118":0.01383,"119":0.02306,"120":0.07839,"121":0.26283,"122":5.43176,"123":0.4196,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 105 106"},E:{"14":0.03689,"15":0.00922,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.03228,"11.1":0.01383,"12.1":0.02306,"13.1":0.06455,"14.1":0.11989,"15.1":0.01383,"15.2-15.3":0.01383,"15.4":0.02306,"15.5":0.03689,"15.6":0.29972,"16.0":0.0415,"16.1":0.05533,"16.2":0.05533,"16.3":0.1245,"16.4":0.0415,"16.5":0.07378,"16.6":0.41499,"17.0":0.06455,"17.1":0.13833,"17.2":0.32738,"17.3":1.22653,"17.4":0.2951},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01523,"7.0-7.1":0.00609,"8.1-8.4":0.00305,"9.0-9.2":0.00305,"9.3":0.04721,"10.0-10.2":0.00761,"10.3":0.05787,"11.0-11.2":0.05178,"11.3-11.4":0.0198,"12.0-12.1":0.00761,"12.2-12.5":0.19494,"13.0-13.1":0.00305,"13.2":0.14925,"13.3":0.00609,"13.4-13.7":0.01675,"14.0-14.4":0.04112,"14.5-14.8":0.09138,"15.0-15.1":0.03503,"15.2-15.3":0.04569,"15.4":0.04417,"15.5":0.07158,"15.6-15.8":0.76908,"16.0":0.23301,"16.1":0.51627,"16.2":0.21778,"16.3":0.40205,"16.4":0.05635,"16.5":0.13859,"16.6-16.7":1.42546,"17.0":0.15838,"17.1":0.32895,"17.2":0.53607,"17.3":8.25277,"17.4":1.2686,"17.5":0},P:{"4":0.05423,"20":0.03254,"21":0.06508,"22":0.06508,"23":1.64862,"24":1.49678,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","13.0":0.01085,"17.0":0.01085,"18.0":0.01085,"19.0":0.03254},I:{"0":0.06983,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00012},K:{"0":0.59818,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00961,"9":0.0048,"11":0.10087,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":34.55905},R:{_:"0"},M:{"0":0.43112},Q:{"14.9":0.00539},O:{"0":0.11856},H:{"0":0}}; +module.exports={C:{"45":0.02326,"50":0.02791,"52":0.06977,"53":0.03256,"56":0.02326,"59":0.01395,"68":0.00465,"78":0.02791,"88":0.0093,"91":0.00465,"102":0.09767,"103":0.45115,"104":0.00465,"105":0.0093,"107":0.00465,"108":0.00465,"109":0.0093,"111":0.00465,"113":0.0093,"114":0.00465,"115":0.54417,"116":0.00465,"117":0.01395,"118":0.0186,"119":0.0093,"120":0.02791,"121":0.0186,"122":0.02326,"123":0.08372,"124":1.92551,"125":1.01857,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 46 47 48 49 51 54 55 57 58 60 61 62 63 64 65 66 67 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 106 110 112 126 127 128 3.5 3.6"},D:{"34":0.00465,"38":0.0093,"43":0.00465,"45":0.00465,"47":0.00465,"48":0.0093,"49":0.02791,"52":0.0093,"63":0.00465,"66":0.05116,"72":0.00465,"73":0.0093,"74":0.0093,"75":0.00465,"76":0.0093,"77":0.0093,"78":0.03721,"79":0.11628,"80":0.0093,"81":0.01395,"83":0.01395,"84":0.0093,"85":0.01395,"86":0.10232,"87":0.05116,"88":0.0186,"89":0.0093,"90":0.0093,"91":0.02791,"92":0.0186,"93":0.03721,"94":0.03721,"95":0.0093,"96":0.0186,"97":0.0093,"98":0.0093,"99":0.02326,"100":0.09767,"101":0.18139,"102":0.11628,"103":0.23255,"104":0.24185,"105":0.02791,"106":0.07907,"107":0.03721,"108":0.04651,"109":1.39065,"110":0.02326,"111":0.03256,"112":0.03721,"113":0.04186,"114":0.07907,"115":0.10697,"116":0.25581,"117":0.13953,"118":0.14883,"119":0.13023,"120":0.26976,"121":0.60463,"122":1.69296,"123":14.98087,"124":5.93933,"125":0.02326,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 44 46 50 51 53 54 55 56 57 58 59 60 61 62 64 65 67 68 69 70 71 126 127"},F:{"31":0.01395,"40":0.0093,"46":0.01395,"85":0.00465,"95":0.08837,"102":0.00465,"106":0.02326,"107":1.10694,"108":0.59068,"109":0.2372,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.01395,"90":0.0093,"92":0.00465,"107":0.00465,"108":0.0093,"109":0.07907,"110":0.00465,"111":0.01395,"112":0.00465,"113":0.0093,"114":0.01395,"115":0.0093,"116":0.00465,"117":0.0186,"118":0.0093,"119":0.0186,"120":0.04651,"121":0.04651,"122":0.37208,"123":3.89289,"124":1.77668,_:"12 13 14 15 16 18 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"14":0.03256,"15":0.0093,_:"0 4 5 6 7 8 9 10 11 12 13 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.0093,"11.1":0.01395,"12.1":0.02326,"13.1":0.06511,"14.1":0.10697,"15.1":0.03256,"15.2-15.3":0.01395,"15.4":0.02326,"15.5":0.03256,"15.6":0.28836,"16.0":0.03721,"16.1":0.05116,"16.2":0.05116,"16.3":0.11162,"16.4":0.03256,"16.5":0.06046,"16.6":0.38603,"17.0":0.05581,"17.1":0.09767,"17.2":0.14883,"17.3":0.44185,"17.4":1.33484,"17.5":0.0093},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0,"6.0-6.1":0.01201,"7.0-7.1":0.0045,"8.1-8.4":0.0045,"9.0-9.2":0.003,"9.3":0.04502,"10.0-10.2":0.0105,"10.3":0.05703,"11.0-11.2":0.05703,"11.3-11.4":0.02251,"12.0-12.1":0.0075,"12.2-12.5":0.18458,"13.0-13.1":0.003,"13.2":0.16657,"13.3":0.006,"13.4-13.7":0.01501,"14.0-14.4":0.03602,"14.5-14.8":0.08404,"15.0-15.1":0.03452,"15.2-15.3":0.04052,"15.4":0.04052,"15.5":0.06303,"15.6-15.8":0.72032,"16.0":0.20709,"16.1":0.46371,"16.2":0.19509,"16.3":0.36166,"16.4":0.04952,"16.5":0.12155,"16.6-16.7":1.28608,"17.0":0.13206,"17.1":0.24011,"17.2":0.33615,"17.3":2.92632,"17.4":6.99915,"17.5":0.06003},P:{"4":0.03257,"20":0.03257,"21":0.06513,"22":0.06513,"23":0.24967,"24":2.65955,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","13.0":0.01086,"17.0":0.01086,"18.0":0.01086,"19.0":0.02171},I:{"0":0.06399,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00001,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00011},A:{"8":0.00972,"9":0.00486,"11":0.09239,_:"6 7 10 5.5"},K:{"0":0.60455,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00535},O:{"0":0.11235},H:{"0":0},L:{"0":34.18532},R:{_:"0"},M:{"0":0.43335}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-na.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-na.js index 280351018795f0..b451e8125549a5 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-na.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-na.js @@ -1 +1 @@ -module.exports={C:{"4":0.00496,"11":0.06448,"38":0.00992,"43":0.00496,"44":0.02976,"45":0.00992,"52":0.0248,"59":0.00496,"72":0.00496,"77":0.00992,"78":0.03472,"83":0.00496,"88":0.00992,"91":0.00992,"94":0.01984,"102":0.01984,"103":0.00992,"104":0.01984,"107":0.00496,"112":0.00496,"113":0.00992,"114":0.00496,"115":0.40176,"117":0.00992,"118":0.3472,"119":0.00992,"120":0.01488,"121":0.02976,"122":0.0992,"123":1.5376,"124":0.60512,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 79 80 81 82 84 85 86 87 89 90 92 93 95 96 97 98 99 100 101 105 106 108 109 110 111 116 125 126 127 3.5 3.6"},D:{"47":0.00992,"48":0.08432,"49":0.03472,"51":0.00992,"53":0.00496,"56":0.03968,"65":0.00496,"66":0.0248,"67":0.00496,"68":0.01488,"69":0.01984,"70":0.01488,"71":0.01488,"72":0.01984,"73":0.00496,"74":0.0248,"75":0.01984,"76":0.02976,"77":0.01488,"78":0.01984,"79":0.1736,"80":0.03968,"81":0.07936,"83":0.11904,"84":0.01984,"85":0.02976,"86":0.31744,"87":0.08432,"88":0.04464,"89":0.02976,"90":0.0248,"91":0.0744,"92":0.00992,"93":0.06448,"94":0.03472,"95":0.00992,"96":0.01488,"97":0.01488,"98":0.00992,"99":0.02976,"100":0.31248,"101":0.57536,"102":0.29264,"103":0.67456,"104":0.35712,"105":0.08928,"106":0.02976,"107":0.02976,"108":0.06448,"109":0.7936,"110":0.13392,"111":0.03968,"112":0.04464,"113":0.10416,"114":0.20832,"115":0.06448,"116":0.36208,"117":0.30256,"118":0.2232,"119":0.3968,"120":0.90768,"121":3.26368,"122":14.36912,"123":3.68528,"124":0.03968,"125":0.01488,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 50 52 54 55 57 58 59 60 61 62 63 64 126"},F:{"95":0.03472,"102":0.04464,"106":0.01984,"107":0.72416,"108":0.10912,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00496,"17":0.00496,"18":0.00496,"87":0.00992,"92":0.00496,"107":0.00496,"108":0.00496,"109":0.08928,"110":0.00992,"113":0.00496,"114":0.00992,"115":0.00496,"116":0.00992,"117":0.00992,"118":0.00992,"119":0.01984,"120":0.07936,"121":0.31744,"122":5.96192,"123":0.45136,_:"13 14 15 16 79 80 81 83 84 85 86 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 111 112"},E:{"8":0.00496,"9":0.01488,"13":0.00992,"14":0.0744,"15":0.01488,_:"0 4 5 6 7 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1 17.5","9.1":0.08432,"11.1":0.00992,"12.1":0.02976,"13.1":0.17856,"14.1":0.18848,"15.1":0.08928,"15.2-15.3":0.0248,"15.4":0.04464,"15.5":0.05952,"15.6":0.496,"16.0":0.06448,"16.1":0.0992,"16.2":0.0992,"16.3":0.2232,"16.4":0.08432,"16.5":0.15872,"16.6":0.83824,"17.0":0.09424,"17.1":0.26784,"17.2":0.65472,"17.3":2.49984,"17.4":0.48608},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00256,"5.0-5.1":0,"6.0-6.1":0.02306,"7.0-7.1":0.00256,"8.1-8.4":0.00256,"9.0-9.2":0.01025,"9.3":0.04099,"10.0-10.2":0.00512,"10.3":0.0538,"11.0-11.2":0.06917,"11.3-11.4":0.01793,"12.0-12.1":0.01537,"12.2-12.5":0.1742,"13.0-13.1":0.00512,"13.2":0.01537,"13.3":0.01025,"13.4-13.7":0.0333,"14.0-14.4":0.0871,"14.5-14.8":0.1409,"15.0-15.1":0.05892,"15.2-15.3":0.07686,"15.4":0.08966,"15.5":0.12297,"15.6-15.8":0.94788,"16.0":0.27412,"16.1":0.78648,"16.2":0.35097,"16.3":0.60459,"16.4":0.08454,"16.5":0.20495,"16.6-16.7":2.20318,"17.0":0.18701,"17.1":0.48675,"17.2":0.89664,"17.3":15.56315,"17.4":1.94956,"17.5":0},P:{"4":0.02268,"20":0.01134,"21":0.04537,"22":0.04537,"23":0.47637,"24":1.22496,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0","17.0":0.01134,"18.0":0.01134,"19.0":0.01134},I:{"0":0.11994,"3":0.00005,"4":0.00007,"2.1":0.00002,"2.2":0.00008,"2.3":0.00002,"4.1":0.00004,"4.2-4.3":0.00036,"4.4":0,"4.4.3-4.4.4":0.00031},K:{"0":0.34279,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.01124,"9":0.02811,"11":0.12929,_:"6 7 10 5.5"},S:{"2.5":0.00504,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":23.01819},R:{_:"0"},M:{"0":0.49906},Q:{"14.9":0.03025},O:{"0":0.0857},H:{"0":0}}; +module.exports={C:{"11":0.0505,"38":0.0101,"43":0.0101,"44":0.0303,"45":0.0101,"52":0.0202,"78":0.0303,"88":0.0101,"94":0.01515,"102":0.0101,"103":0.0101,"104":0.0202,"112":0.00505,"113":0.0101,"115":0.3636,"117":0.0101,"118":0.4343,"119":0.00505,"120":0.0101,"121":0.0202,"122":0.0202,"123":0.0808,"124":1.52005,"125":0.6868,_:"2 3 4 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 46 47 48 49 50 51 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 105 106 107 108 109 110 111 114 116 126 127 128 3.5 3.6"},D:{"47":0.0101,"48":0.0808,"49":0.03535,"53":0.00505,"56":0.03535,"66":0.02525,"67":0.00505,"69":0.0101,"72":0.00505,"74":0.0101,"75":0.00505,"76":0.0202,"77":0.00505,"78":0.0101,"79":0.1616,"80":0.0202,"81":0.0505,"83":0.101,"84":0.0101,"85":0.05555,"86":0.48985,"87":0.0606,"88":0.02525,"89":0.0202,"90":0.0101,"91":0.07575,"92":0.0101,"93":0.0505,"94":0.0303,"95":0.0101,"96":0.0202,"97":0.01515,"98":0.0101,"99":0.0202,"100":0.51005,"101":0.9595,"102":0.4848,"103":0.8787,"104":0.5252,"105":0.0909,"106":0.0303,"107":0.02525,"108":0.0505,"109":0.76255,"110":0.0404,"111":0.0303,"112":0.03535,"113":0.12625,"114":0.2121,"115":0.05555,"116":0.29795,"117":0.303,"118":0.2121,"119":0.2727,"120":0.53025,"121":0.98475,"122":2.44925,"123":13.8774,"124":4.9187,"125":0.0505,"126":0.0202,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 50 51 52 54 55 57 58 59 60 61 62 63 64 65 68 70 71 73 127"},F:{"95":0.03535,"102":0.00505,"107":0.5757,"108":0.22725,"109":0.0909,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"109":0.0808,"110":0.00505,"113":0.00505,"114":0.0101,"115":0.00505,"116":0.00505,"117":0.0101,"118":0.00505,"119":0.01515,"120":0.0404,"121":0.0505,"122":0.41915,"123":4.45915,"124":1.8988,_:"12 13 14 15 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 111 112"},E:{"9":0.01515,"13":0.0101,"14":0.07575,"15":0.0101,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.01515,"11.1":0.00505,"12.1":0.02525,"13.1":0.1616,"14.1":0.17675,"15.1":0.0909,"15.2-15.3":0.0202,"15.4":0.0404,"15.5":0.05555,"15.6":0.4747,"16.0":0.0707,"16.1":0.0909,"16.2":0.0909,"16.3":0.2121,"16.4":0.0808,"16.5":0.14645,"16.6":0.78275,"17.0":0.0808,"17.1":0.1919,"17.2":0.30805,"17.3":0.8888,"17.4":2.62095,"17.5":0.0202},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00242,"5.0-5.1":0,"6.0-6.1":0.01454,"7.0-7.1":0.00242,"8.1-8.4":0,"9.0-9.2":0.01454,"9.3":0.03635,"10.0-10.2":0.00485,"10.3":0.04362,"11.0-11.2":0.07271,"11.3-11.4":0.01696,"12.0-12.1":0.01454,"12.2-12.5":0.15995,"13.0-13.1":0.00485,"13.2":0.01212,"13.3":0.00969,"13.4-13.7":0.03151,"14.0-14.4":0.07513,"14.5-14.8":0.1236,"15.0-15.1":0.05332,"15.2-15.3":0.06544,"15.4":0.08482,"15.5":0.10663,"15.6-15.8":0.84338,"16.0":0.24962,"16.1":0.68586,"16.2":0.30536,"16.3":0.5259,"16.4":0.07513,"16.5":0.17449,"16.6-16.7":1.87338,"17.0":0.15511,"17.1":0.35868,"17.2":0.50652,"17.3":5.26146,"17.4":12.10791,"17.5":0.13814},P:{"4":0.02279,"20":0.01139,"21":0.04558,"22":0.03418,"23":0.11394,"24":1.44708,_:"5.0-5.4 6.2-6.4 7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 13.0 14.0 15.0 16.0 18.0 19.0","17.0":0.01139},I:{"0":0.10803,"3":0.00003,"4":0.00007,"2.1":0.00002,"2.2":0.00007,"2.3":0.00002,"4.1":0.00003,"4.2-4.3":0.00032,"4.4":0,"4.4.3-4.4.4":0.00026},A:{"8":0.01074,"9":0.02685,"11":0.30076,_:"6 7 10 5.5"},K:{"0":0.31185,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.00495,_:"3.0-3.1"},Q:{"14.9":0.03465},O:{"0":0.0792},H:{"0":0},L:{"0":23.2484},R:{_:"0"},M:{"0":0.5049}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-oc.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-oc.js index 452066a20ea5dc..ea74b47c02a887 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-oc.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-oc.js @@ -1 +1 @@ -module.exports={C:{"34":0.00524,"52":0.02621,"54":0.00524,"59":0.00524,"78":0.03145,"83":0.00524,"88":0.02096,"103":0.01048,"104":0.01048,"113":0.01048,"114":0.01048,"115":0.25157,"117":0.02621,"118":0.01048,"119":0.00524,"120":0.01048,"121":0.02096,"122":0.06813,"123":1.40983,"124":0.57651,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 105 106 107 108 109 110 111 112 116 125 126 127 3.5 3.6"},D:{"25":0.02096,"26":0.00524,"34":0.02096,"35":0.11006,"38":0.0891,"49":0.01572,"51":0.00524,"52":0.00524,"59":0.01572,"65":0.00524,"66":0.04193,"74":0.00524,"76":0.00524,"79":0.08386,"80":0.01048,"81":0.01572,"83":0.00524,"85":0.01048,"86":0.06289,"87":0.07862,"88":0.03669,"89":0.01048,"90":0.02096,"91":0.00524,"92":0.00524,"93":0.02096,"94":0.02621,"96":0.01048,"97":0.01048,"98":0.01048,"99":0.02621,"100":0.06289,"101":0.1153,"102":0.06813,"103":0.24109,"104":0.07862,"105":0.02621,"106":0.01572,"107":0.02096,"108":0.03669,"109":0.8438,"110":0.02096,"111":0.02621,"112":0.03145,"113":0.09958,"114":0.13103,"115":0.03669,"116":0.40356,"117":0.0891,"118":0.09958,"119":0.26729,"120":0.7285,"121":2.75677,"122":18.36971,"123":5.2148,"124":0.01572,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 47 48 50 53 54 55 56 57 58 60 61 62 63 64 67 68 69 70 71 72 73 75 77 78 84 95 125 126"},F:{"46":0.02621,"95":0.01572,"105":0.00524,"106":0.03145,"107":0.82808,"108":0.09434,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00524,"92":0.00524,"109":0.07337,"110":0.00524,"111":0.00524,"112":0.00524,"113":0.01572,"114":0.01572,"115":0.01048,"116":0.01048,"117":0.01572,"118":0.02096,"119":0.03145,"120":0.0891,"121":0.35639,"122":6.86571,"123":0.52934,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108"},E:{"9":0.01048,"13":0.02096,"14":0.10482,"15":0.02096,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 9.1 10.1 17.5","11.1":0.01048,"12.1":0.03669,"13.1":0.15723,"14.1":0.27253,"15.1":0.04193,"15.2-15.3":0.04193,"15.4":0.06813,"15.5":0.1153,"15.6":0.74946,"16.0":0.07862,"16.1":0.16771,"16.2":0.14675,"16.3":0.3197,"16.4":0.10482,"16.5":0.19392,"16.6":1.06916,"17.0":0.09434,"17.1":0.31446,"17.2":0.66037,"17.3":3.04502,"17.4":0.50314},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00863,"6.0-6.1":0.01079,"7.0-7.1":0.01079,"8.1-8.4":0.00647,"9.0-9.2":0.00647,"9.3":0.07338,"10.0-10.2":0.01079,"10.3":0.11654,"11.0-11.2":0.65825,"11.3-11.4":0.04101,"12.0-12.1":0.01942,"12.2-12.5":0.40143,"13.0-13.1":0.00432,"13.2":0.00432,"13.3":0.01079,"13.4-13.7":0.03021,"14.0-14.4":0.08201,"14.5-14.8":0.12733,"15.0-15.1":0.05611,"15.2-15.3":0.0777,"15.4":0.08417,"15.5":0.12518,"15.6-15.8":1.07479,"16.0":0.28704,"16.1":0.72947,"16.2":0.31726,"16.3":0.59566,"16.4":0.09064,"16.5":0.19208,"16.6-16.7":2.03303,"17.0":0.12733,"17.1":0.41653,"17.2":0.74026,"17.3":11.7687,"17.4":1.23665,"17.5":0},P:{"4":0.21514,"20":0.02265,"21":0.07926,"22":0.05662,"23":1.30216,"24":1.49465,"5.0-5.4":0.02265,"6.2-6.4":0.01132,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0","13.0":0.01132,"17.0":0.02265,"18.0":0.01132,"19.0":0.03397},I:{"0":0.0804,"3":0.00001,"4":0.00006,"2.1":0.00001,"2.2":0.00003,"2.3":0.00004,"4.1":0.00003,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00019},K:{"0":0.17132,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.05289,"11":0.14103,_:"6 7 9 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":22.80779},R:{_:"0"},M:{"0":0.3712},Q:{"14.9":0.00952},O:{"0":0.06187},H:{"0":0}}; +module.exports={C:{"34":0.00554,"52":0.01661,"54":0.00554,"59":0.00554,"78":0.02769,"83":0.00554,"88":0.01107,"103":0.01661,"114":0.00554,"115":0.22702,"117":0.01107,"118":0.00554,"119":0.00554,"120":0.01107,"121":0.01107,"122":0.01661,"123":0.05537,"124":1.21814,"125":0.598,_:"2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 84 85 86 87 89 90 91 92 93 94 95 96 97 98 99 100 101 102 104 105 106 107 108 109 110 111 112 113 116 126 127 128 3.5 3.6"},D:{"25":0.02215,"34":0.01107,"35":0.03876,"38":0.08306,"49":0.02215,"51":0.00554,"52":0.01107,"59":0.01661,"63":0.01107,"66":0.03322,"68":0.00554,"69":0.00554,"70":0.00554,"72":0.00554,"74":0.01107,"76":0.00554,"77":0.00554,"78":0.00554,"79":0.07198,"80":0.02769,"81":0.01661,"83":0.01107,"85":0.01107,"86":0.1052,"87":0.06644,"88":0.0443,"89":0.01107,"90":0.02215,"91":0.00554,"92":0.00554,"93":0.01661,"94":0.02215,"96":0.00554,"97":0.01107,"98":0.01661,"99":0.02215,"100":0.09967,"101":0.18826,"102":0.11074,"103":0.28792,"104":0.12735,"105":0.02769,"106":0.01107,"107":0.01661,"108":0.02769,"109":0.92468,"110":0.02215,"111":0.02215,"112":0.02769,"113":0.11074,"114":0.14396,"115":0.02769,"116":0.48726,"117":0.06644,"118":0.07198,"119":0.18272,"120":0.37652,"121":0.64783,"122":3.34435,"123":19.41826,"124":7.40851,"125":0.02769,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 47 48 50 53 54 55 56 57 58 60 61 62 64 65 67 71 73 75 84 95 126 127"},F:{"46":0.02215,"95":0.01107,"107":0.63676,"108":0.1938,"109":0.06644,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 106 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.00554,"108":0.01107,"109":0.09413,"113":0.01661,"114":0.01107,"115":0.00554,"116":0.00554,"117":0.01107,"118":0.01107,"119":0.02769,"120":0.06091,"121":0.05537,"122":0.54263,"123":5.03867,"124":2.14836,_:"12 13 14 16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112"},E:{"9":0.01107,"13":0.01661,"14":0.08859,"15":0.01661,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.02215,"11.1":0.00554,"12.1":0.02769,"13.1":0.14396,"14.1":0.23255,"15.1":0.03322,"15.2-15.3":0.03876,"15.4":0.05537,"15.5":0.09967,"15.6":0.64783,"16.0":0.06644,"16.1":0.1495,"16.2":0.11628,"16.3":0.26578,"16.4":0.08306,"16.5":0.1495,"16.6":0.89146,"17.0":0.06644,"17.1":0.22148,"17.2":0.28792,"17.3":1.03542,"17.4":2.65776,"17.5":0.01661},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00793,"6.0-6.1":0.00992,"7.0-7.1":0.00793,"8.1-8.4":0.00793,"9.0-9.2":0.00793,"9.3":0.06545,"10.0-10.2":0.01587,"10.3":0.119,"11.0-11.2":0.66839,"11.3-11.4":0.0357,"12.0-12.1":0.02578,"12.2-12.5":0.3808,"13.0-13.1":0.00992,"13.2":0.00793,"13.3":0.0119,"13.4-13.7":0.0357,"14.0-14.4":0.08528,"14.5-14.8":0.11503,"15.0-15.1":0.05752,"15.2-15.3":0.06743,"15.4":0.06545,"15.5":0.1071,"15.6-15.8":0.95003,"16.0":0.24197,"16.1":0.62872,"16.2":0.2618,"16.3":0.49782,"16.4":0.07338,"16.5":0.15074,"16.6-16.7":1.64619,"17.0":0.10115,"17.1":0.28759,"17.2":0.40659,"17.3":3.8378,"17.4":8.75652,"17.5":0.06347},P:{"4":0.18059,"20":0.02257,"21":0.06772,"22":0.05643,"23":0.18059,"24":2.16705,"5.0-5.4":0.02257,"6.2-6.4":0.01129,_:"7.2-7.4 8.2 9.2 10.1 11.1-11.2 12.0 14.0 15.0 16.0 18.0","13.0":0.01129,"17.0":0.02257,"19.0":0.02257},I:{"0":0.06654,"3":0.00001,"4":0.00005,"2.1":0.00001,"2.2":0.00003,"2.3":0.00003,"4.1":0.00003,"4.2-4.3":0.00007,"4.4":0,"4.4.3-4.4.4":0.00016},A:{"8":0.046,"11":0.15333,_:"6 7 9 10 5.5"},K:{"0":0.14728,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{"14.9":0.00893},O:{"0":0.05356},H:{"0":0},L:{"0":21.78508},R:{_:"0"},M:{"0":0.39274}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js index 5e8e42cad21c4e..db9267645916ca 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-sa.js @@ -1 +1 @@ -module.exports={C:{"4":0.05342,"7":0.00411,"50":0.01233,"52":0.02876,"54":0.01644,"59":0.00822,"78":0.01644,"88":0.01233,"91":0.01644,"102":0.00822,"103":0.01233,"105":0.00411,"113":0.00822,"115":0.23832,"117":0.00822,"118":0.00411,"119":0.00411,"120":0.00822,"121":0.01644,"122":0.02876,"123":0.78893,"124":0.34105,_:"2 3 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 51 53 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 106 107 108 109 110 111 112 114 116 125 126 127 3.5 3.6"},D:{"38":0.01233,"47":0.01233,"49":0.02055,"55":0.01644,"57":0.01233,"60":0.04109,"65":0.00411,"66":0.02876,"68":0.00411,"69":0.00411,"70":0.00411,"71":0.00822,"72":0.00822,"73":0.00411,"74":0.00822,"75":0.01233,"76":0.00411,"77":0.01233,"78":0.00822,"79":0.06985,"80":0.01233,"81":0.01233,"83":0.00822,"84":0.00822,"85":0.01233,"86":0.01644,"87":0.06164,"88":0.01644,"89":0.01233,"90":0.01233,"91":0.31228,"92":0.01233,"93":0.07396,"94":0.01233,"95":0.00411,"96":0.00822,"97":0.00822,"98":0.00822,"99":0.00822,"100":0.01233,"101":0.00822,"102":0.01233,"103":0.05753,"104":0.01644,"105":0.02055,"106":0.02465,"107":0.03698,"108":0.04109,"109":3.13106,"110":0.02465,"111":0.02876,"112":0.02876,"113":0.01644,"114":0.0452,"115":0.02055,"116":0.11916,"117":0.03698,"118":0.04109,"119":0.11916,"120":0.30407,"121":1.02725,"122":17.93579,"123":5.18556,"124":0.01233,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 56 58 59 61 62 63 64 67 125 126"},F:{"36":0.00411,"95":0.05342,"102":0.00411,"106":0.02055,"107":2.77768,"108":0.226,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"12":0.00822,"13":0.01233,"14":0.01233,"15":0.02465,"92":0.01644,"108":0.00411,"109":0.04109,"114":0.00411,"117":0.00411,"118":0.00411,"119":0.01233,"120":0.03287,"121":0.09862,"122":3.14339,"123":0.25476,_:"16 17 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 110 111 112 113 115 116"},E:{"14":0.00822,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 10.1 12.1 15.2-15.3 17.5","5.1":0.02055,"9.1":0.02465,"11.1":0.00822,"13.1":0.01644,"14.1":0.02465,"15.1":0.00411,"15.4":0.00822,"15.5":0.00822,"15.6":0.05342,"16.0":0.00411,"16.1":0.01233,"16.2":0.00822,"16.3":0.02465,"16.4":0.00822,"16.5":0.01644,"16.6":0.06985,"17.0":0.01644,"17.1":0.03698,"17.2":0.08218,"17.3":0.20134,"17.4":0.06985},G:{"8":0,"3.2":0.00069,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00278,"6.0-6.1":0,"7.0-7.1":0.00278,"8.1-8.4":0,"9.0-9.2":0,"9.3":0.01389,"10.0-10.2":0,"10.3":0.0132,"11.0-11.2":0.01667,"11.3-11.4":0.00764,"12.0-12.1":0.00556,"12.2-12.5":0.06112,"13.0-13.1":0.00139,"13.2":0,"13.3":0.00208,"13.4-13.7":0.00556,"14.0-14.4":0.01389,"14.5-14.8":0.03403,"15.0-15.1":0.00903,"15.2-15.3":0.0132,"15.4":0.01459,"15.5":0.02639,"15.6-15.8":0.43409,"16.0":0.10418,"16.1":0.20211,"16.2":0.08404,"16.3":0.17225,"16.4":0.01945,"16.5":0.05695,"16.6-16.7":0.76123,"17.0":0.06737,"17.1":0.15975,"17.2":0.25559,"17.3":3.77974,"17.4":0.59592,"17.5":0},P:{"4":0.07601,"20":0.02172,"21":0.05429,"22":0.04344,"23":1.05332,"24":0.89044,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0 18.0","7.2-7.4":0.13031,"11.1-11.2":0.01086,"13.0":0.01086,"17.0":0.04344,"19.0":0.02172},I:{"0":0.04112,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00008},K:{"0":0.27099,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.00877,"9":0.01315,"11":0.24106,_:"6 7 10 5.5"},S:{_:"2.5 3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":50.26068},R:{_:"0"},M:{"0":0.12371},Q:{_:"14.9"},O:{"0":0.04713},H:{"0":0}}; +module.exports={C:{"4":0.09309,"52":0.01773,"59":0.0133,"78":0.0133,"88":0.0133,"91":0.01773,"102":0.00887,"103":0.00887,"113":0.00443,"115":0.26598,"117":0.00887,"119":0.00443,"120":0.00887,"121":0.0133,"122":0.01773,"123":0.0399,"124":0.8334,"125":0.43,_:"2 3 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 53 54 55 56 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 94 95 96 97 98 99 100 101 104 105 106 107 108 109 110 111 112 114 116 118 126 127 128 3.5 3.6"},D:{"38":0.0133,"47":0.00887,"49":0.02217,"55":0.00443,"65":0.00443,"66":0.0532,"71":0.00443,"75":0.0133,"77":0.00887,"78":0.00443,"79":0.05763,"80":0.00443,"81":0.0133,"83":0.00443,"85":0.00887,"86":0.00887,"87":0.0532,"88":0.0133,"89":0.00887,"90":0.00443,"91":0.28371,"92":0.0133,"93":0.05763,"94":0.01773,"95":0.00443,"96":0.00887,"97":0.00887,"98":0.00887,"99":0.00887,"100":0.00887,"101":0.00887,"102":0.0133,"103":0.06206,"104":0.01773,"105":0.01773,"106":0.02217,"107":0.0266,"108":0.03546,"109":3.19619,"110":0.02217,"111":0.0266,"112":0.0266,"113":0.01773,"114":0.04876,"115":0.01773,"116":0.11083,"117":0.0266,"118":0.0399,"119":0.09753,"120":0.17289,"121":0.23495,"122":1.00629,"123":18.30829,"124":7.89074,"125":0.0399,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 39 40 41 42 43 44 45 46 48 50 51 52 53 54 56 57 58 59 60 61 62 63 64 67 68 69 70 72 73 74 76 84 126 127"},F:{"36":0.00443,"95":0.0532,"106":0.00443,"107":2.57114,"108":0.4433,"109":0.23938,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 102 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"15":0.01773,"17":0.00887,"92":0.01773,"109":0.04433,"114":0.00443,"118":0.00443,"119":0.00887,"120":0.02217,"121":0.02217,"122":0.17289,"123":2.59774,"124":1.25454,_:"12 13 14 16 18 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 110 111 112 113 115 116 117"},E:{"14":0.00887,_:"0 4 5 6 7 8 9 10 11 12 13 15 3.1 3.2 6.1 7.1 9.1 10.1 12.1 15.1 15.2-15.3 16.0 17.5","5.1":0.01773,"11.1":0.0133,"13.1":0.0133,"14.1":0.02217,"15.4":0.00443,"15.5":0.00887,"15.6":0.0532,"16.1":0.0133,"16.2":0.00887,"16.3":0.02217,"16.4":0.00887,"16.5":0.0133,"16.6":0.06206,"17.0":0.01773,"17.1":0.0266,"17.2":0.04433,"17.3":0.07979,"17.4":0.27928},G:{"8":0,"3.2":0.00072,"4.0-4.1":0,"4.2-4.3":0,"5.0-5.1":0.00215,"6.0-6.1":0,"7.0-7.1":0.00287,"8.1-8.4":0,"9.0-9.2":0.00072,"9.3":0.01651,"10.0-10.2":0,"10.3":0.01149,"11.0-11.2":0.02082,"11.3-11.4":0.00862,"12.0-12.1":0.00718,"12.2-12.5":0.05888,"13.0-13.1":0.00144,"13.2":0,"13.3":0.00144,"13.4-13.7":0.00431,"14.0-14.4":0.01436,"14.5-14.8":0.03231,"15.0-15.1":0.0079,"15.2-15.3":0.01364,"15.4":0.01508,"15.5":0.02369,"15.6-15.8":0.42865,"16.0":0.09693,"16.1":0.19458,"16.2":0.08042,"16.3":0.16012,"16.4":0.01795,"16.5":0.05242,"16.6-16.7":0.72591,"17.0":0.05816,"17.1":0.12134,"17.2":0.16012,"17.3":1.4906,"17.4":3.31292,"17.5":0.03016},P:{"4":0.07389,"20":0.02111,"21":0.04222,"22":0.04222,"23":0.14777,"24":1.68885,_:"5.0-5.4 6.2-6.4 8.2 9.2 10.1 12.0 13.0 14.0 15.0 16.0 18.0","7.2-7.4":0.12666,"11.1-11.2":0.01056,"17.0":0.04222,"19.0":0.02111},I:{"0":0.03885,"3":0,"4":0.00001,"2.1":0,"2.2":0,"2.3":0,"4.1":0,"4.2-4.3":0.00001,"4.4":0,"4.4.3-4.4.4":0.00008},A:{"8":0.00946,"11":0.1324,_:"6 7 9 10 5.5"},K:{"0":0.2616,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{_:"2.5 3.0-3.1"},Q:{_:"14.9"},O:{"0":0.04453},H:{"0":0},L:{"0":46.44509},R:{_:"0"},M:{"0":0.12802}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-ww.js b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-ww.js index 689d4a0bef9782..123aa033b6683e 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-ww.js +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/data/regions/alt-ww.js @@ -1 +1 @@ -module.exports={C:{"4":0.00378,"11":0.01512,"43":0.01134,"44":0.00756,"45":0.00756,"50":0.00378,"52":0.04915,"53":0.00756,"54":0.00756,"56":0.01891,"59":0.00378,"72":0.00756,"78":0.01512,"88":0.00756,"91":0.00378,"94":0.00378,"102":0.02269,"103":0.03781,"104":0.00756,"105":0.00378,"108":0.00378,"109":0.00378,"110":0.00378,"112":0.00378,"113":0.01134,"115":0.39701,"117":0.00756,"118":0.0794,"119":0.00756,"120":0.01512,"121":0.01891,"122":0.0605,"123":1.08893,"124":0.44994,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 46 47 48 49 51 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 92 93 95 96 97 98 99 100 101 106 107 111 114 116 125 126 127 3.5 3.6"},D:{"34":0.00378,"35":0.00378,"38":0.01512,"47":0.00756,"48":0.02269,"49":0.02647,"50":0.01134,"53":0.00756,"55":0.00378,"56":0.01134,"60":0.00756,"61":0.00378,"63":0.00378,"65":0.00378,"66":0.02269,"67":0.00378,"68":0.00756,"69":0.03403,"70":0.01891,"71":0.00756,"72":0.00756,"73":0.01134,"74":0.01512,"75":0.01134,"76":0.01134,"77":0.02269,"78":0.01891,"79":0.12855,"80":0.01891,"81":0.03025,"83":0.04159,"84":0.01134,"85":0.02269,"86":0.10587,"87":0.08318,"88":0.02269,"89":0.01512,"90":0.01891,"91":0.04537,"92":0.02269,"93":0.03025,"94":0.02647,"95":0.01134,"96":0.01134,"97":0.01891,"98":0.07562,"99":0.03025,"100":0.09074,"101":0.16258,"102":0.09074,"103":0.21552,"104":0.16258,"105":0.04159,"106":0.04159,"107":0.03403,"108":0.05293,"109":1.57668,"110":0.04915,"111":0.04537,"112":0.04159,"113":0.04915,"114":0.09074,"115":0.03781,"116":0.2193,"117":0.12477,"118":0.10587,"119":0.18149,"120":0.44616,"121":1.67876,"122":12.65123,"123":3.52767,"124":0.01891,"125":0.00378,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 36 37 39 40 41 42 43 44 45 46 51 52 54 57 58 59 62 64 126"},F:{"28":0.00378,"36":0.00378,"46":0.01512,"95":0.04915,"102":0.04537,"106":0.01891,"107":0.79401,"108":0.15502,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 29 30 31 32 33 34 35 37 38 39 40 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 109 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00756,"18":0.00756,"90":0.00378,"92":0.01134,"107":0.00756,"108":0.00756,"109":0.06806,"110":0.00756,"111":0.00756,"112":0.00756,"113":0.01512,"114":0.01512,"115":0.01134,"116":0.00756,"117":0.01512,"118":0.01134,"119":0.02269,"120":0.06806,"121":0.19661,"122":3.97761,"123":0.31382,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"9":0.00378,"13":0.00756,"14":0.03781,"15":0.00756,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 6.1 7.1 10.1 17.5","5.1":0.00378,"9.1":0.03403,"11.1":0.00756,"12.1":0.01512,"13.1":0.06806,"14.1":0.10209,"15.1":0.03025,"15.2-15.3":0.01134,"15.4":0.02647,"15.5":0.03781,"15.6":0.25711,"16.0":0.03025,"16.1":0.05293,"16.2":0.04915,"16.3":0.11343,"16.4":0.03781,"16.5":0.07184,"16.6":0.38566,"17.0":0.04915,"17.1":0.12477,"17.2":0.28358,"17.3":1.12296,"17.4":0.2193},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00302,"5.0-5.1":0.00151,"6.0-6.1":0.00905,"7.0-7.1":0.01056,"8.1-8.4":0.00302,"9.0-9.2":0.00603,"9.3":0.03771,"10.0-10.2":0.00603,"10.3":0.06336,"11.0-11.2":0.04525,"11.3-11.4":0.01508,"12.0-12.1":0.01358,"12.2-12.5":0.26097,"13.0-13.1":0.00453,"13.2":0.04525,"13.3":0.01358,"13.4-13.7":0.05129,"14.0-14.4":0.09805,"14.5-14.8":0.15387,"15.0-15.1":0.06637,"15.2-15.3":0.07844,"15.4":0.09202,"15.5":0.11766,"15.6-15.8":0.98504,"16.0":0.23985,"16.1":0.49629,"16.2":0.23985,"16.3":0.4269,"16.4":0.09051,"16.5":0.19158,"16.6-16.7":1.45116,"17.0":0.18856,"17.1":0.37712,"17.2":0.60792,"17.3":7.48209,"17.4":1.09818,"17.5":0},P:{"4":0.1409,"20":0.03252,"21":0.06503,"22":0.07587,"23":1.08385,"24":1.15972,"5.0-5.4":0.01084,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0","7.2-7.4":0.05419,"11.1-11.2":0.01084,"13.0":0.01084,"16.0":0.01084,"17.0":0.03252,"18.0":0.02168,"19.0":0.03252},I:{"0":0.26628,"3":0,"4":0.00003,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00003,"4.2-4.3":0.00016,"4.4":0,"4.4.3-4.4.4":0.00064},K:{"0":1.27796,_:"10 11 12 11.1 11.5 12.1"},A:{"8":0.02877,"9":0.05754,"11":0.50352,_:"6 7 10 5.5"},S:{"2.5":0.08083,_:"3.0-3.1"},J:{_:"7 10"},N:{_:"10 11"},L:{"0":42.54076},R:{_:"0"},M:{"0":0.29846},Q:{"14.9":0.23628},O:{"0":0.89539},H:{"0":0.09}}; +module.exports={C:{"4":0.00769,"11":0.01153,"43":0.00769,"44":0.00769,"45":0.00769,"50":0.00769,"52":0.04996,"53":0.00769,"54":0.00769,"56":0.01922,"59":0.00384,"78":0.01537,"88":0.00769,"94":0.00384,"102":0.0269,"103":0.1076,"104":0.00769,"109":0.00384,"113":0.00769,"115":0.3843,"117":0.00769,"118":0.09992,"119":0.00384,"120":0.01153,"121":0.01153,"122":0.01922,"123":0.04996,"124":1.04914,"125":0.53033,"126":0.00384,_:"2 3 5 6 7 8 9 10 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 46 47 48 49 51 55 57 58 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 79 80 81 82 83 84 85 86 87 89 90 91 92 93 95 96 97 98 99 100 101 105 106 107 108 110 111 112 114 116 127 128 3.5 3.6"},D:{"34":0.00769,"38":0.01922,"47":0.00769,"48":0.02306,"49":0.0269,"50":0.00769,"53":0.00769,"56":0.01153,"61":0.00384,"63":0.00384,"66":0.02306,"67":0.00384,"69":0.03074,"70":0.01537,"71":0.00384,"72":0.00384,"73":0.01153,"74":0.00769,"75":0.00769,"76":0.00769,"77":0.01153,"78":0.01537,"79":0.12682,"80":0.01153,"81":0.02306,"83":0.03843,"84":0.00769,"85":0.02306,"86":0.14988,"87":0.06917,"88":0.01537,"89":0.01153,"90":0.01153,"91":0.03843,"92":0.01537,"93":0.0269,"94":0.03074,"95":0.00769,"96":0.01153,"97":0.01537,"98":0.07302,"99":0.03074,"100":0.14603,"101":0.27285,"102":0.14603,"103":0.28438,"104":0.18062,"105":0.03843,"106":0.03843,"107":0.0269,"108":0.04227,"109":1.53336,"110":0.02306,"111":0.03843,"112":0.03459,"113":0.04996,"114":0.08839,"115":0.0538,"116":0.20368,"117":0.11913,"118":0.09992,"119":0.13066,"120":0.25748,"121":0.45732,"122":1.27972,"123":12.22843,"124":4.75379,"125":0.03074,"126":0.00769,_:"4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 35 36 37 39 40 41 42 43 44 45 46 51 52 54 55 57 58 59 60 62 64 65 68 127"},F:{"40":0.00384,"46":0.01537,"95":0.04612,"102":0.03843,"106":0.00769,"107":0.56876,"108":0.29975,"109":0.11913,_:"9 11 12 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 41 42 43 44 45 47 48 49 50 51 52 53 54 55 56 57 58 60 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 96 97 98 99 100 101 103 104 105 9.5-9.6 10.0-10.1 10.5 10.6 11.1 11.5 11.6 12.1"},B:{"17":0.00384,"18":0.00769,"92":0.01153,"107":0.00384,"108":0.00769,"109":0.06917,"110":0.00769,"111":0.00769,"112":0.00769,"113":0.01537,"114":0.01537,"115":0.00769,"116":0.00769,"117":0.01153,"118":0.01153,"119":0.01922,"120":0.04227,"121":0.04227,"122":0.28054,"123":3.03981,"124":1.36427,_:"12 13 14 15 16 79 80 81 83 84 85 86 87 88 89 90 91 93 94 95 96 97 98 99 100 101 102 103 104 105 106"},E:{"9":0.00384,"13":0.00769,"14":0.03843,"15":0.00769,_:"0 4 5 6 7 8 10 11 12 3.1 3.2 5.1 6.1 7.1 10.1","9.1":0.00769,"11.1":0.00769,"12.1":0.01537,"13.1":0.06533,"14.1":0.09608,"15.1":0.03459,"15.2-15.3":0.01153,"15.4":0.0269,"15.5":0.03459,"15.6":0.2498,"16.0":0.03074,"16.1":0.04996,"16.2":0.04612,"16.3":0.1076,"16.4":0.03459,"16.5":0.06533,"16.6":0.36509,"17.0":0.04227,"17.1":0.09223,"17.2":0.14219,"17.3":0.42273,"17.4":1.16443,"17.5":0.00769},G:{"8":0,"3.2":0,"4.0-4.1":0,"4.2-4.3":0.00293,"5.0-5.1":0.00293,"6.0-6.1":0.00732,"7.0-7.1":0.01171,"8.1-8.4":0.00293,"9.0-9.2":0.00732,"9.3":0.03659,"10.0-10.2":0.00732,"10.3":0.05854,"11.0-11.2":0.04976,"11.3-11.4":0.01464,"12.0-12.1":0.01024,"12.2-12.5":0.23855,"13.0-13.1":0.00439,"13.2":0.0483,"13.3":0.01171,"13.4-13.7":0.04537,"14.0-14.4":0.08927,"14.5-14.8":0.13611,"15.0-15.1":0.06293,"15.2-15.3":0.07171,"15.4":0.08196,"15.5":0.10391,"15.6-15.8":0.90738,"16.0":0.21221,"16.1":0.44198,"16.2":0.21221,"16.3":0.37466,"16.4":0.07757,"16.5":0.16245,"16.6-16.7":1.28351,"17.0":0.15367,"17.1":0.28392,"17.2":0.37759,"17.3":2.75434,"17.4":6.21703,"17.5":0.05708},P:{"4":0.14047,"20":0.02161,"21":0.06483,"22":0.06483,"23":0.22692,"24":1.89099,"5.0-5.4":0.01081,_:"6.2-6.4 8.2 9.2 10.1 12.0 14.0 15.0 16.0","7.2-7.4":0.04322,"11.1-11.2":0.01081,"13.0":0.01081,"17.0":0.02161,"18.0":0.01081,"19.0":0.03242},I:{"0":0.21461,"3":0,"4":0.00002,"2.1":0,"2.2":0,"2.3":0,"4.1":0.00004,"4.2-4.3":0.00013,"4.4":0,"4.4.3-4.4.4":0.00054},A:{"8":0.02407,"9":0.06018,"11":0.55368,_:"6 7 10 5.5"},K:{"0":1.25223,_:"10 11 12 11.1 11.5 12.1"},J:{_:"7 10"},N:{_:"10 11"},S:{"2.5":0.07388,_:"3.0-3.1"},Q:{"14.9":0.28322},O:{"0":0.89277},H:{"0":0.09},L:{"0":42.05406},R:{_:"0"},M:{"0":0.30169}}; diff --git a/tools/node_modules/eslint/node_modules/caniuse-lite/package.json b/tools/node_modules/eslint/node_modules/caniuse-lite/package.json index 996c0114ac9afc..e917a4dc7e5c77 100644 --- a/tools/node_modules/eslint/node_modules/caniuse-lite/package.json +++ b/tools/node_modules/eslint/node_modules/caniuse-lite/package.json @@ -1,6 +1,6 @@ { "name": "caniuse-lite", - "version": "1.0.30001609", + "version": "1.0.30001621", "description": "A smaller version of caniuse-db, with only the essentials!", "main": "dist/unpacker/index.js", "files": [ diff --git a/tools/node_modules/eslint/node_modules/doctrine/LICENSE b/tools/node_modules/eslint/node_modules/doctrine/LICENSE deleted file mode 100644 index 3e8ba72f69be57..00000000000000 --- a/tools/node_modules/eslint/node_modules/doctrine/LICENSE +++ /dev/null @@ -1,177 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - -TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - -1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - -2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - -3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - -4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - -5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - -6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - -7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - -8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - -9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - -END OF TERMS AND CONDITIONS diff --git a/tools/node_modules/eslint/node_modules/doctrine/LICENSE.esprima b/tools/node_modules/eslint/node_modules/doctrine/LICENSE.esprima deleted file mode 100644 index 3e580c355a96e5..00000000000000 --- a/tools/node_modules/eslint/node_modules/doctrine/LICENSE.esprima +++ /dev/null @@ -1,19 +0,0 @@ -Redistribution and use in source and binary forms, with or without -modification, are permitted provided that the following conditions are met: - - * Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - * Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in the - documentation and/or other materials provided with the distribution. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" -AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE -ARE DISCLAIMED. IN NO EVENT SHALL BE LIABLE FOR ANY -DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES -(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; -LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND -ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF -THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/tools/node_modules/eslint/node_modules/doctrine/lib/doctrine.js b/tools/node_modules/eslint/node_modules/doctrine/lib/doctrine.js deleted file mode 100644 index d246e33f32b4f9..00000000000000 --- a/tools/node_modules/eslint/node_modules/doctrine/lib/doctrine.js +++ /dev/null @@ -1,898 +0,0 @@ -/* - * @fileoverview Main Doctrine object - * @author Yusuke Suzuki - * @author Dan Tao - * @author Andrew Eisenberg - */ - -(function () { - 'use strict'; - - var typed, - utility, - jsdoc, - esutils, - hasOwnProperty; - - esutils = require('esutils'); - typed = require('./typed'); - utility = require('./utility'); - - function sliceSource(source, index, last) { - return source.slice(index, last); - } - - hasOwnProperty = (function () { - var func = Object.prototype.hasOwnProperty; - return function hasOwnProperty(obj, name) { - return func.call(obj, name); - }; - }()); - function shallowCopy(obj) { - var ret = {}, key; - for (key in obj) { - if (obj.hasOwnProperty(key)) { - ret[key] = obj[key]; - } - } - return ret; - } - - function isASCIIAlphanumeric(ch) { - return (ch >= 0x61 /* 'a' */ && ch <= 0x7A /* 'z' */) || - (ch >= 0x41 /* 'A' */ && ch <= 0x5A /* 'Z' */) || - (ch >= 0x30 /* '0' */ && ch <= 0x39 /* '9' */); - } - - function isParamTitle(title) { - return title === 'param' || title === 'argument' || title === 'arg'; - } - - function isReturnTitle(title) { - return title === 'return' || title === 'returns'; - } - - function isProperty(title) { - return title === 'property' || title === 'prop'; - } - - function isNameParameterRequired(title) { - return isParamTitle(title) || isProperty(title) || - title === 'alias' || title === 'this' || title === 'mixes' || title === 'requires'; - } - - function isAllowedName(title) { - return isNameParameterRequired(title) || title === 'const' || title === 'constant'; - } - - function isAllowedNested(title) { - return isProperty(title) || isParamTitle(title); - } - - function isAllowedOptional(title) { - return isProperty(title) || isParamTitle(title); - } - - function isTypeParameterRequired(title) { - return isParamTitle(title) || isReturnTitle(title) || - title === 'define' || title === 'enum' || - title === 'implements' || title === 'this' || - title === 'type' || title === 'typedef' || isProperty(title); - } - - // Consider deprecation instead using 'isTypeParameterRequired' and 'Rules' declaration to pick when a type is optional/required - // This would require changes to 'parseType' - function isAllowedType(title) { - return isTypeParameterRequired(title) || title === 'throws' || title === 'const' || title === 'constant' || - title === 'namespace' || title === 'member' || title === 'var' || title === 'module' || - title === 'constructor' || title === 'class' || title === 'extends' || title === 'augments' || - title === 'public' || title === 'private' || title === 'protected'; - } - - // A regex character class that contains all whitespace except linebreak characters (\r, \n, \u2028, \u2029) - var WHITESPACE = '[ \\f\\t\\v\\u00a0\\u1680\\u180e\\u2000-\\u200a\\u202f\\u205f\\u3000\\ufeff]'; - - var STAR_MATCHER = '(' + WHITESPACE + '*(?:\\*' + WHITESPACE + '?)?)(.+|[\r\n\u2028\u2029])'; - - function unwrapComment(doc) { - // JSDoc comment is following form - // /** - // * ....... - // */ - - return doc. - // remove /** - replace(/^\/\*\*?/, ''). - // remove */ - replace(/\*\/$/, ''). - // remove ' * ' at the beginning of a line - replace(new RegExp(STAR_MATCHER, 'g'), '$2'). - // remove trailing whitespace - replace(/\s*$/, ''); - } - - /** - * Converts an index in an "unwrapped" JSDoc comment to the corresponding index in the original "wrapped" version - * @param {string} originalSource The original wrapped comment - * @param {number} unwrappedIndex The index of a character in the unwrapped string - * @returns {number} The index of the corresponding character in the original wrapped string - */ - function convertUnwrappedCommentIndex(originalSource, unwrappedIndex) { - var replacedSource = originalSource.replace(/^\/\*\*?/, ''); - var numSkippedChars = 0; - var matcher = new RegExp(STAR_MATCHER, 'g'); - var match; - - while ((match = matcher.exec(replacedSource))) { - numSkippedChars += match[1].length; - - if (match.index + match[0].length > unwrappedIndex + numSkippedChars) { - return unwrappedIndex + numSkippedChars + originalSource.length - replacedSource.length; - } - } - - return originalSource.replace(/\*\/$/, '').replace(/\s*$/, '').length; - } - - // JSDoc Tag Parser - - (function (exports) { - var Rules, - index, - lineNumber, - length, - source, - originalSource, - recoverable, - sloppy, - strict; - - function advance() { - var ch = source.charCodeAt(index); - index += 1; - if (esutils.code.isLineTerminator(ch) && !(ch === 0x0D /* '\r' */ && source.charCodeAt(index) === 0x0A /* '\n' */)) { - lineNumber += 1; - } - return String.fromCharCode(ch); - } - - function scanTitle() { - var title = ''; - // waste '@' - advance(); - - while (index < length && isASCIIAlphanumeric(source.charCodeAt(index))) { - title += advance(); - } - - return title; - } - - function seekContent() { - var ch, waiting, last = index; - - waiting = false; - while (last < length) { - ch = source.charCodeAt(last); - if (esutils.code.isLineTerminator(ch) && !(ch === 0x0D /* '\r' */ && source.charCodeAt(last + 1) === 0x0A /* '\n' */)) { - waiting = true; - } else if (waiting) { - if (ch === 0x40 /* '@' */) { - break; - } - if (!esutils.code.isWhiteSpace(ch)) { - waiting = false; - } - } - last += 1; - } - return last; - } - - // type expression may have nest brace, such as, - // { { ok: string } } - // - // therefore, scanning type expression with balancing braces. - function parseType(title, last, addRange) { - var ch, brace, type, startIndex, direct = false; - - - // search '{' - while (index < last) { - ch = source.charCodeAt(index); - if (esutils.code.isWhiteSpace(ch)) { - advance(); - } else if (ch === 0x7B /* '{' */) { - advance(); - break; - } else { - // this is direct pattern - direct = true; - break; - } - } - - - if (direct) { - return null; - } - - // type expression { is found - brace = 1; - type = ''; - while (index < last) { - ch = source.charCodeAt(index); - if (esutils.code.isLineTerminator(ch)) { - advance(); - } else { - if (ch === 0x7D /* '}' */) { - brace -= 1; - if (brace === 0) { - advance(); - break; - } - } else if (ch === 0x7B /* '{' */) { - brace += 1; - } - if (type === '') { - startIndex = index; - } - type += advance(); - } - } - - if (brace !== 0) { - // braces is not balanced - return utility.throwError('Braces are not balanced'); - } - - if (isAllowedOptional(title)) { - return typed.parseParamType(type, {startIndex: convertIndex(startIndex), range: addRange}); - } - - return typed.parseType(type, {startIndex: convertIndex(startIndex), range: addRange}); - } - - function scanIdentifier(last) { - var identifier; - if (!esutils.code.isIdentifierStartES5(source.charCodeAt(index)) && !source[index].match(/[0-9]/)) { - return null; - } - identifier = advance(); - while (index < last && esutils.code.isIdentifierPartES5(source.charCodeAt(index))) { - identifier += advance(); - } - return identifier; - } - - function skipWhiteSpace(last) { - while (index < last && (esutils.code.isWhiteSpace(source.charCodeAt(index)) || esutils.code.isLineTerminator(source.charCodeAt(index)))) { - advance(); - } - } - - function parseName(last, allowBrackets, allowNestedParams) { - var name = '', - useBrackets, - insideString; - - - skipWhiteSpace(last); - - if (index >= last) { - return null; - } - - if (source.charCodeAt(index) === 0x5B /* '[' */) { - if (allowBrackets) { - useBrackets = true; - name = advance(); - } else { - return null; - } - } - - name += scanIdentifier(last); - - if (allowNestedParams) { - if (source.charCodeAt(index) === 0x3A /* ':' */ && ( - name === 'module' || - name === 'external' || - name === 'event')) { - name += advance(); - name += scanIdentifier(last); - - } - if(source.charCodeAt(index) === 0x5B /* '[' */ && source.charCodeAt(index + 1) === 0x5D /* ']' */){ - name += advance(); - name += advance(); - } - while (source.charCodeAt(index) === 0x2E /* '.' */ || - source.charCodeAt(index) === 0x2F /* '/' */ || - source.charCodeAt(index) === 0x23 /* '#' */ || - source.charCodeAt(index) === 0x2D /* '-' */ || - source.charCodeAt(index) === 0x7E /* '~' */) { - name += advance(); - name += scanIdentifier(last); - } - } - - if (useBrackets) { - skipWhiteSpace(last); - // do we have a default value for this? - if (source.charCodeAt(index) === 0x3D /* '=' */) { - // consume the '='' symbol - name += advance(); - skipWhiteSpace(last); - - var ch; - var bracketDepth = 1; - - // scan in the default value - while (index < last) { - ch = source.charCodeAt(index); - - if (esutils.code.isWhiteSpace(ch)) { - if (!insideString) { - skipWhiteSpace(last); - ch = source.charCodeAt(index); - } - } - - if (ch === 0x27 /* ''' */) { - if (!insideString) { - insideString = '\''; - } else { - if (insideString === '\'') { - insideString = ''; - } - } - } - - if (ch === 0x22 /* '"' */) { - if (!insideString) { - insideString = '"'; - } else { - if (insideString === '"') { - insideString = ''; - } - } - } - - if (ch === 0x5B /* '[' */) { - bracketDepth++; - } else if (ch === 0x5D /* ']' */ && - --bracketDepth === 0) { - break; - } - - name += advance(); - } - } - - skipWhiteSpace(last); - - if (index >= last || source.charCodeAt(index) !== 0x5D /* ']' */) { - // we never found a closing ']' - return null; - } - - // collect the last ']' - name += advance(); - } - - return name; - } - - function skipToTag() { - while (index < length && source.charCodeAt(index) !== 0x40 /* '@' */) { - advance(); - } - if (index >= length) { - return false; - } - utility.assert(source.charCodeAt(index) === 0x40 /* '@' */); - return true; - } - - function convertIndex(rangeIndex) { - if (source === originalSource) { - return rangeIndex; - } - return convertUnwrappedCommentIndex(originalSource, rangeIndex); - } - - function TagParser(options, title) { - this._options = options; - this._title = title.toLowerCase(); - this._tag = { - title: title, - description: null - }; - if (this._options.lineNumbers) { - this._tag.lineNumber = lineNumber; - } - this._first = index - title.length - 1; - this._last = 0; - // space to save special information for title parsers. - this._extra = { }; - } - - // addError(err, ...) - TagParser.prototype.addError = function addError(errorText) { - var args = Array.prototype.slice.call(arguments, 1), - msg = errorText.replace( - /%(\d)/g, - function (whole, index) { - utility.assert(index < args.length, 'Message reference must be in range'); - return args[index]; - } - ); - - if (!this._tag.errors) { - this._tag.errors = []; - } - if (strict) { - utility.throwError(msg); - } - this._tag.errors.push(msg); - return recoverable; - }; - - TagParser.prototype.parseType = function () { - // type required titles - if (isTypeParameterRequired(this._title)) { - try { - this._tag.type = parseType(this._title, this._last, this._options.range); - if (!this._tag.type) { - if (!isParamTitle(this._title) && !isReturnTitle(this._title)) { - if (!this.addError('Missing or invalid tag type')) { - return false; - } - } - } - } catch (error) { - this._tag.type = null; - if (!this.addError(error.message)) { - return false; - } - } - } else if (isAllowedType(this._title)) { - // optional types - try { - this._tag.type = parseType(this._title, this._last, this._options.range); - } catch (e) { - //For optional types, lets drop the thrown error when we hit the end of the file - } - } - return true; - }; - - TagParser.prototype._parseNamePath = function (optional) { - var name; - name = parseName(this._last, sloppy && isAllowedOptional(this._title), true); - if (!name) { - if (!optional) { - if (!this.addError('Missing or invalid tag name')) { - return false; - } - } - } - this._tag.name = name; - return true; - }; - - TagParser.prototype.parseNamePath = function () { - return this._parseNamePath(false); - }; - - TagParser.prototype.parseNamePathOptional = function () { - return this._parseNamePath(true); - }; - - - TagParser.prototype.parseName = function () { - var assign, name; - - // param, property requires name - if (isAllowedName(this._title)) { - this._tag.name = parseName(this._last, sloppy && isAllowedOptional(this._title), isAllowedNested(this._title)); - if (!this._tag.name) { - if (!isNameParameterRequired(this._title)) { - return true; - } - - // it's possible the name has already been parsed but interpreted as a type - // it's also possible this is a sloppy declaration, in which case it will be - // fixed at the end - if (isParamTitle(this._title) && this._tag.type && this._tag.type.name) { - this._extra.name = this._tag.type; - this._tag.name = this._tag.type.name; - this._tag.type = null; - } else { - if (!this.addError('Missing or invalid tag name')) { - return false; - } - } - } else { - name = this._tag.name; - if (name.charAt(0) === '[' && name.charAt(name.length - 1) === ']') { - // extract the default value if there is one - // example: @param {string} [somebody=John Doe] description - assign = name.substring(1, name.length - 1).split('='); - if (assign.length > 1) { - this._tag['default'] = assign.slice(1).join('='); - } - this._tag.name = assign[0]; - - // convert to an optional type - if (this._tag.type && this._tag.type.type !== 'OptionalType') { - this._tag.type = { - type: 'OptionalType', - expression: this._tag.type - }; - } - } - } - } - - - return true; - }; - - TagParser.prototype.parseDescription = function parseDescription() { - var description = sliceSource(source, index, this._last).trim(); - if (description) { - if ((/^-\s+/).test(description)) { - description = description.substring(2); - } - this._tag.description = description; - } - return true; - }; - - TagParser.prototype.parseCaption = function parseDescription() { - var description = sliceSource(source, index, this._last).trim(); - var captionStartTag = ''; - var captionEndTag = ''; - var captionStart = description.indexOf(captionStartTag); - var captionEnd = description.indexOf(captionEndTag); - if (captionStart >= 0 && captionEnd >= 0) { - this._tag.caption = description.substring( - captionStart + captionStartTag.length, captionEnd).trim(); - this._tag.description = description.substring(captionEnd + captionEndTag.length).trim(); - } else { - this._tag.description = description; - } - return true; - }; - - TagParser.prototype.parseKind = function parseKind() { - var kind, kinds; - kinds = { - 'class': true, - 'constant': true, - 'event': true, - 'external': true, - 'file': true, - 'function': true, - 'member': true, - 'mixin': true, - 'module': true, - 'namespace': true, - 'typedef': true - }; - kind = sliceSource(source, index, this._last).trim(); - this._tag.kind = kind; - if (!hasOwnProperty(kinds, kind)) { - if (!this.addError('Invalid kind name \'%0\'', kind)) { - return false; - } - } - return true; - }; - - TagParser.prototype.parseAccess = function parseAccess() { - var access; - access = sliceSource(source, index, this._last).trim(); - this._tag.access = access; - if (access !== 'private' && access !== 'protected' && access !== 'public') { - if (!this.addError('Invalid access name \'%0\'', access)) { - return false; - } - } - return true; - }; - - TagParser.prototype.parseThis = function parseThis() { - // this name may be a name expression (e.g. {foo.bar}), - // an union (e.g. {foo.bar|foo.baz}) or a name path (e.g. foo.bar) - var value = sliceSource(source, index, this._last).trim(); - if (value && value.charAt(0) === '{') { - var gotType = this.parseType(); - if (gotType && this._tag.type.type === 'NameExpression' || this._tag.type.type === 'UnionType') { - this._tag.name = this._tag.type.name; - return true; - } else { - return this.addError('Invalid name for this'); - } - } else { - return this.parseNamePath(); - } - }; - - TagParser.prototype.parseVariation = function parseVariation() { - var variation, text; - text = sliceSource(source, index, this._last).trim(); - variation = parseFloat(text, 10); - this._tag.variation = variation; - if (isNaN(variation)) { - if (!this.addError('Invalid variation \'%0\'', text)) { - return false; - } - } - return true; - }; - - TagParser.prototype.ensureEnd = function () { - var shouldBeEmpty = sliceSource(source, index, this._last).trim(); - if (shouldBeEmpty) { - if (!this.addError('Unknown content \'%0\'', shouldBeEmpty)) { - return false; - } - } - return true; - }; - - TagParser.prototype.epilogue = function epilogue() { - var description; - - description = this._tag.description; - // un-fix potentially sloppy declaration - if (isAllowedOptional(this._title) && !this._tag.type && description && description.charAt(0) === '[') { - this._tag.type = this._extra.name; - if (!this._tag.name) { - this._tag.name = undefined; - } - - if (!sloppy) { - if (!this.addError('Missing or invalid tag name')) { - return false; - } - } - } - - return true; - }; - - Rules = { - // http://usejsdoc.org/tags-access.html - 'access': ['parseAccess'], - // http://usejsdoc.org/tags-alias.html - 'alias': ['parseNamePath', 'ensureEnd'], - // http://usejsdoc.org/tags-augments.html - 'augments': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-constructor.html - 'constructor': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // Synonym: http://usejsdoc.org/tags-constructor.html - 'class': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // Synonym: http://usejsdoc.org/tags-extends.html - 'extends': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-example.html - 'example': ['parseCaption'], - // http://usejsdoc.org/tags-deprecated.html - 'deprecated': ['parseDescription'], - // http://usejsdoc.org/tags-global.html - 'global': ['ensureEnd'], - // http://usejsdoc.org/tags-inner.html - 'inner': ['ensureEnd'], - // http://usejsdoc.org/tags-instance.html - 'instance': ['ensureEnd'], - // http://usejsdoc.org/tags-kind.html - 'kind': ['parseKind'], - // http://usejsdoc.org/tags-mixes.html - 'mixes': ['parseNamePath', 'ensureEnd'], - // http://usejsdoc.org/tags-mixin.html - 'mixin': ['parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-member.html - 'member': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-method.html - 'method': ['parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-module.html - 'module': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // Synonym: http://usejsdoc.org/tags-method.html - 'func': ['parseNamePathOptional', 'ensureEnd'], - // Synonym: http://usejsdoc.org/tags-method.html - 'function': ['parseNamePathOptional', 'ensureEnd'], - // Synonym: http://usejsdoc.org/tags-member.html - 'var': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-name.html - 'name': ['parseNamePath', 'ensureEnd'], - // http://usejsdoc.org/tags-namespace.html - 'namespace': ['parseType', 'parseNamePathOptional', 'ensureEnd'], - // http://usejsdoc.org/tags-private.html - 'private': ['parseType', 'parseDescription'], - // http://usejsdoc.org/tags-protected.html - 'protected': ['parseType', 'parseDescription'], - // http://usejsdoc.org/tags-public.html - 'public': ['parseType', 'parseDescription'], - // http://usejsdoc.org/tags-readonly.html - 'readonly': ['ensureEnd'], - // http://usejsdoc.org/tags-requires.html - 'requires': ['parseNamePath', 'ensureEnd'], - // http://usejsdoc.org/tags-since.html - 'since': ['parseDescription'], - // http://usejsdoc.org/tags-static.html - 'static': ['ensureEnd'], - // http://usejsdoc.org/tags-summary.html - 'summary': ['parseDescription'], - // http://usejsdoc.org/tags-this.html - 'this': ['parseThis', 'ensureEnd'], - // http://usejsdoc.org/tags-todo.html - 'todo': ['parseDescription'], - // http://usejsdoc.org/tags-typedef.html - 'typedef': ['parseType', 'parseNamePathOptional'], - // http://usejsdoc.org/tags-variation.html - 'variation': ['parseVariation'], - // http://usejsdoc.org/tags-version.html - 'version': ['parseDescription'] - }; - - TagParser.prototype.parse = function parse() { - var i, iz, sequences, method; - - - // empty title - if (!this._title) { - if (!this.addError('Missing or invalid title')) { - return null; - } - } - - // Seek to content last index. - this._last = seekContent(this._title); - - if (this._options.range) { - this._tag.range = [this._first, source.slice(0, this._last).replace(/\s*$/, '').length].map(convertIndex); - } - - if (hasOwnProperty(Rules, this._title)) { - sequences = Rules[this._title]; - } else { - // default sequences - sequences = ['parseType', 'parseName', 'parseDescription', 'epilogue']; - } - - for (i = 0, iz = sequences.length; i < iz; ++i) { - method = sequences[i]; - if (!this[method]()) { - return null; - } - } - - return this._tag; - }; - - function parseTag(options) { - var title, parser, tag; - - // skip to tag - if (!skipToTag()) { - return null; - } - - // scan title - title = scanTitle(); - - // construct tag parser - parser = new TagParser(options, title); - tag = parser.parse(); - - // Seek global index to end of this tag. - while (index < parser._last) { - advance(); - } - - return tag; - } - - // - // Parse JSDoc - // - - function scanJSDocDescription(preserveWhitespace) { - var description = '', ch, atAllowed; - - atAllowed = true; - while (index < length) { - ch = source.charCodeAt(index); - - if (atAllowed && ch === 0x40 /* '@' */) { - break; - } - - if (esutils.code.isLineTerminator(ch)) { - atAllowed = true; - } else if (atAllowed && !esutils.code.isWhiteSpace(ch)) { - atAllowed = false; - } - - description += advance(); - } - - return preserveWhitespace ? description : description.trim(); - } - - function parse(comment, options) { - var tags = [], tag, description, interestingTags, i, iz; - - if (options === undefined) { - options = {}; - } - - if (typeof options.unwrap === 'boolean' && options.unwrap) { - source = unwrapComment(comment); - } else { - source = comment; - } - - originalSource = comment; - - // array of relevant tags - if (options.tags) { - if (Array.isArray(options.tags)) { - interestingTags = { }; - for (i = 0, iz = options.tags.length; i < iz; i++) { - if (typeof options.tags[i] === 'string') { - interestingTags[options.tags[i]] = true; - } else { - utility.throwError('Invalid "tags" parameter: ' + options.tags); - } - } - } else { - utility.throwError('Invalid "tags" parameter: ' + options.tags); - } - } - - length = source.length; - index = 0; - lineNumber = 0; - recoverable = options.recoverable; - sloppy = options.sloppy; - strict = options.strict; - - description = scanJSDocDescription(options.preserveWhitespace); - - while (true) { - tag = parseTag(options); - if (!tag) { - break; - } - if (!interestingTags || interestingTags.hasOwnProperty(tag.title)) { - tags.push(tag); - } - } - - return { - description: description, - tags: tags - }; - } - exports.parse = parse; - }(jsdoc = {})); - - exports.version = utility.VERSION; - exports.parse = jsdoc.parse; - exports.parseType = typed.parseType; - exports.parseParamType = typed.parseParamType; - exports.unwrapComment = unwrapComment; - exports.Syntax = shallowCopy(typed.Syntax); - exports.Error = utility.DoctrineError; - exports.type = { - Syntax: exports.Syntax, - parseType: typed.parseType, - parseParamType: typed.parseParamType, - stringify: typed.stringify - }; -}()); -/* vim: set sw=4 ts=4 et tw=80 : */ diff --git a/tools/node_modules/eslint/node_modules/doctrine/lib/typed.js b/tools/node_modules/eslint/node_modules/doctrine/lib/typed.js deleted file mode 100644 index bdd3c394fc7d1f..00000000000000 --- a/tools/node_modules/eslint/node_modules/doctrine/lib/typed.js +++ /dev/null @@ -1,1305 +0,0 @@ -/* - * @fileoverview Type expression parser. - * @author Yusuke Suzuki - * @author Dan Tao - * @author Andrew Eisenberg - */ - -// "typed", the Type Expression Parser for doctrine. - -(function () { - 'use strict'; - - var Syntax, - Token, - source, - length, - index, - previous, - token, - value, - esutils, - utility, - rangeOffset, - addRange; - - esutils = require('esutils'); - utility = require('./utility'); - - Syntax = { - NullableLiteral: 'NullableLiteral', - AllLiteral: 'AllLiteral', - NullLiteral: 'NullLiteral', - UndefinedLiteral: 'UndefinedLiteral', - VoidLiteral: 'VoidLiteral', - UnionType: 'UnionType', - ArrayType: 'ArrayType', - RecordType: 'RecordType', - FieldType: 'FieldType', - FunctionType: 'FunctionType', - ParameterType: 'ParameterType', - RestType: 'RestType', - NonNullableType: 'NonNullableType', - OptionalType: 'OptionalType', - NullableType: 'NullableType', - NameExpression: 'NameExpression', - TypeApplication: 'TypeApplication', - StringLiteralType: 'StringLiteralType', - NumericLiteralType: 'NumericLiteralType', - BooleanLiteralType: 'BooleanLiteralType' - }; - - Token = { - ILLEGAL: 0, // ILLEGAL - DOT_LT: 1, // .< - REST: 2, // ... - LT: 3, // < - GT: 4, // > - LPAREN: 5, // ( - RPAREN: 6, // ) - LBRACE: 7, // { - RBRACE: 8, // } - LBRACK: 9, // [ - RBRACK: 10, // ] - COMMA: 11, // , - COLON: 12, // : - STAR: 13, // * - PIPE: 14, // | - QUESTION: 15, // ? - BANG: 16, // ! - EQUAL: 17, // = - NAME: 18, // name token - STRING: 19, // string - NUMBER: 20, // number - EOF: 21 - }; - - function isTypeName(ch) { - return '><(){}[],:*|?!='.indexOf(String.fromCharCode(ch)) === -1 && !esutils.code.isWhiteSpace(ch) && !esutils.code.isLineTerminator(ch); - } - - function Context(previous, index, token, value) { - this._previous = previous; - this._index = index; - this._token = token; - this._value = value; - } - - Context.prototype.restore = function () { - previous = this._previous; - index = this._index; - token = this._token; - value = this._value; - }; - - Context.save = function () { - return new Context(previous, index, token, value); - }; - - function maybeAddRange(node, range) { - if (addRange) { - node.range = [range[0] + rangeOffset, range[1] + rangeOffset]; - } - return node; - } - - function advance() { - var ch = source.charAt(index); - index += 1; - return ch; - } - - function scanHexEscape(prefix) { - var i, len, ch, code = 0; - - len = (prefix === 'u') ? 4 : 2; - for (i = 0; i < len; ++i) { - if (index < length && esutils.code.isHexDigit(source.charCodeAt(index))) { - ch = advance(); - code = code * 16 + '0123456789abcdef'.indexOf(ch.toLowerCase()); - } else { - return ''; - } - } - return String.fromCharCode(code); - } - - function scanString() { - var str = '', quote, ch, code, unescaped, restore; //TODO review removal octal = false - quote = source.charAt(index); - ++index; - - while (index < length) { - ch = advance(); - - if (ch === quote) { - quote = ''; - break; - } else if (ch === '\\') { - ch = advance(); - if (!esutils.code.isLineTerminator(ch.charCodeAt(0))) { - switch (ch) { - case 'n': - str += '\n'; - break; - case 'r': - str += '\r'; - break; - case 't': - str += '\t'; - break; - case 'u': - case 'x': - restore = index; - unescaped = scanHexEscape(ch); - if (unescaped) { - str += unescaped; - } else { - index = restore; - str += ch; - } - break; - case 'b': - str += '\b'; - break; - case 'f': - str += '\f'; - break; - case 'v': - str += '\v'; - break; - - default: - if (esutils.code.isOctalDigit(ch.charCodeAt(0))) { - code = '01234567'.indexOf(ch); - - // \0 is not octal escape sequence - // Deprecating unused code. TODO review removal - //if (code !== 0) { - // octal = true; - //} - - if (index < length && esutils.code.isOctalDigit(source.charCodeAt(index))) { - //TODO Review Removal octal = true; - code = code * 8 + '01234567'.indexOf(advance()); - - // 3 digits are only allowed when string starts - // with 0, 1, 2, 3 - if ('0123'.indexOf(ch) >= 0 && - index < length && - esutils.code.isOctalDigit(source.charCodeAt(index))) { - code = code * 8 + '01234567'.indexOf(advance()); - } - } - str += String.fromCharCode(code); - } else { - str += ch; - } - break; - } - } else { - if (ch === '\r' && source.charCodeAt(index) === 0x0A /* '\n' */) { - ++index; - } - } - } else if (esutils.code.isLineTerminator(ch.charCodeAt(0))) { - break; - } else { - str += ch; - } - } - - if (quote !== '') { - utility.throwError('unexpected quote'); - } - - value = str; - return Token.STRING; - } - - function scanNumber() { - var number, ch; - - number = ''; - ch = source.charCodeAt(index); - - if (ch !== 0x2E /* '.' */) { - number = advance(); - ch = source.charCodeAt(index); - - if (number === '0') { - if (ch === 0x78 /* 'x' */ || ch === 0x58 /* 'X' */) { - number += advance(); - while (index < length) { - ch = source.charCodeAt(index); - if (!esutils.code.isHexDigit(ch)) { - break; - } - number += advance(); - } - - if (number.length <= 2) { - // only 0x - utility.throwError('unexpected token'); - } - - if (index < length) { - ch = source.charCodeAt(index); - if (esutils.code.isIdentifierStartES5(ch)) { - utility.throwError('unexpected token'); - } - } - value = parseInt(number, 16); - return Token.NUMBER; - } - - if (esutils.code.isOctalDigit(ch)) { - number += advance(); - while (index < length) { - ch = source.charCodeAt(index); - if (!esutils.code.isOctalDigit(ch)) { - break; - } - number += advance(); - } - - if (index < length) { - ch = source.charCodeAt(index); - if (esutils.code.isIdentifierStartES5(ch) || esutils.code.isDecimalDigit(ch)) { - utility.throwError('unexpected token'); - } - } - value = parseInt(number, 8); - return Token.NUMBER; - } - - if (esutils.code.isDecimalDigit(ch)) { - utility.throwError('unexpected token'); - } - } - - while (index < length) { - ch = source.charCodeAt(index); - if (!esutils.code.isDecimalDigit(ch)) { - break; - } - number += advance(); - } - } - - if (ch === 0x2E /* '.' */) { - number += advance(); - while (index < length) { - ch = source.charCodeAt(index); - if (!esutils.code.isDecimalDigit(ch)) { - break; - } - number += advance(); - } - } - - if (ch === 0x65 /* 'e' */ || ch === 0x45 /* 'E' */) { - number += advance(); - - ch = source.charCodeAt(index); - if (ch === 0x2B /* '+' */ || ch === 0x2D /* '-' */) { - number += advance(); - } - - ch = source.charCodeAt(index); - if (esutils.code.isDecimalDigit(ch)) { - number += advance(); - while (index < length) { - ch = source.charCodeAt(index); - if (!esutils.code.isDecimalDigit(ch)) { - break; - } - number += advance(); - } - } else { - utility.throwError('unexpected token'); - } - } - - if (index < length) { - ch = source.charCodeAt(index); - if (esutils.code.isIdentifierStartES5(ch)) { - utility.throwError('unexpected token'); - } - } - - value = parseFloat(number); - return Token.NUMBER; - } - - - function scanTypeName() { - var ch, ch2; - - value = advance(); - while (index < length && isTypeName(source.charCodeAt(index))) { - ch = source.charCodeAt(index); - if (ch === 0x2E /* '.' */) { - if ((index + 1) >= length) { - return Token.ILLEGAL; - } - ch2 = source.charCodeAt(index + 1); - if (ch2 === 0x3C /* '<' */) { - break; - } - } - value += advance(); - } - return Token.NAME; - } - - function next() { - var ch; - - previous = index; - - while (index < length && esutils.code.isWhiteSpace(source.charCodeAt(index))) { - advance(); - } - if (index >= length) { - token = Token.EOF; - return token; - } - - ch = source.charCodeAt(index); - switch (ch) { - case 0x27: /* ''' */ - case 0x22: /* '"' */ - token = scanString(); - return token; - - case 0x3A: /* ':' */ - advance(); - token = Token.COLON; - return token; - - case 0x2C: /* ',' */ - advance(); - token = Token.COMMA; - return token; - - case 0x28: /* '(' */ - advance(); - token = Token.LPAREN; - return token; - - case 0x29: /* ')' */ - advance(); - token = Token.RPAREN; - return token; - - case 0x5B: /* '[' */ - advance(); - token = Token.LBRACK; - return token; - - case 0x5D: /* ']' */ - advance(); - token = Token.RBRACK; - return token; - - case 0x7B: /* '{' */ - advance(); - token = Token.LBRACE; - return token; - - case 0x7D: /* '}' */ - advance(); - token = Token.RBRACE; - return token; - - case 0x2E: /* '.' */ - if (index + 1 < length) { - ch = source.charCodeAt(index + 1); - if (ch === 0x3C /* '<' */) { - advance(); // '.' - advance(); // '<' - token = Token.DOT_LT; - return token; - } - - if (ch === 0x2E /* '.' */ && index + 2 < length && source.charCodeAt(index + 2) === 0x2E /* '.' */) { - advance(); // '.' - advance(); // '.' - advance(); // '.' - token = Token.REST; - return token; - } - - if (esutils.code.isDecimalDigit(ch)) { - token = scanNumber(); - return token; - } - } - token = Token.ILLEGAL; - return token; - - case 0x3C: /* '<' */ - advance(); - token = Token.LT; - return token; - - case 0x3E: /* '>' */ - advance(); - token = Token.GT; - return token; - - case 0x2A: /* '*' */ - advance(); - token = Token.STAR; - return token; - - case 0x7C: /* '|' */ - advance(); - token = Token.PIPE; - return token; - - case 0x3F: /* '?' */ - advance(); - token = Token.QUESTION; - return token; - - case 0x21: /* '!' */ - advance(); - token = Token.BANG; - return token; - - case 0x3D: /* '=' */ - advance(); - token = Token.EQUAL; - return token; - - case 0x2D: /* '-' */ - token = scanNumber(); - return token; - - default: - if (esutils.code.isDecimalDigit(ch)) { - token = scanNumber(); - return token; - } - - // type string permits following case, - // - // namespace.module.MyClass - // - // this reduced 1 token TK_NAME - utility.assert(isTypeName(ch)); - token = scanTypeName(); - return token; - } - } - - function consume(target, text) { - utility.assert(token === target, text || 'consumed token not matched'); - next(); - } - - function expect(target, message) { - if (token !== target) { - utility.throwError(message || 'unexpected token'); - } - next(); - } - - // UnionType := '(' TypeUnionList ')' - // - // TypeUnionList := - // <> - // | NonemptyTypeUnionList - // - // NonemptyTypeUnionList := - // TypeExpression - // | TypeExpression '|' NonemptyTypeUnionList - function parseUnionType() { - var elements, startIndex = index - 1; - consume(Token.LPAREN, 'UnionType should start with ('); - elements = []; - if (token !== Token.RPAREN) { - while (true) { - elements.push(parseTypeExpression()); - if (token === Token.RPAREN) { - break; - } - expect(Token.PIPE); - } - } - consume(Token.RPAREN, 'UnionType should end with )'); - return maybeAddRange({ - type: Syntax.UnionType, - elements: elements - }, [startIndex, previous]); - } - - // ArrayType := '[' ElementTypeList ']' - // - // ElementTypeList := - // <> - // | TypeExpression - // | '...' TypeExpression - // | TypeExpression ',' ElementTypeList - function parseArrayType() { - var elements, startIndex = index - 1, restStartIndex; - consume(Token.LBRACK, 'ArrayType should start with ['); - elements = []; - while (token !== Token.RBRACK) { - if (token === Token.REST) { - restStartIndex = index - 3; - consume(Token.REST); - elements.push(maybeAddRange({ - type: Syntax.RestType, - expression: parseTypeExpression() - }, [restStartIndex, previous])); - break; - } else { - elements.push(parseTypeExpression()); - } - if (token !== Token.RBRACK) { - expect(Token.COMMA); - } - } - expect(Token.RBRACK); - return maybeAddRange({ - type: Syntax.ArrayType, - elements: elements - }, [startIndex, previous]); - } - - function parseFieldName() { - var v = value; - if (token === Token.NAME || token === Token.STRING) { - next(); - return v; - } - - if (token === Token.NUMBER) { - consume(Token.NUMBER); - return String(v); - } - - utility.throwError('unexpected token'); - } - - // FieldType := - // FieldName - // | FieldName ':' TypeExpression - // - // FieldName := - // NameExpression - // | StringLiteral - // | NumberLiteral - // | ReservedIdentifier - function parseFieldType() { - var key, rangeStart = previous; - - key = parseFieldName(); - if (token === Token.COLON) { - consume(Token.COLON); - return maybeAddRange({ - type: Syntax.FieldType, - key: key, - value: parseTypeExpression() - }, [rangeStart, previous]); - } - return maybeAddRange({ - type: Syntax.FieldType, - key: key, - value: null - }, [rangeStart, previous]); - } - - // RecordType := '{' FieldTypeList '}' - // - // FieldTypeList := - // <> - // | FieldType - // | FieldType ',' FieldTypeList - function parseRecordType() { - var fields, rangeStart = index - 1, rangeEnd; - - consume(Token.LBRACE, 'RecordType should start with {'); - fields = []; - if (token === Token.COMMA) { - consume(Token.COMMA); - } else { - while (token !== Token.RBRACE) { - fields.push(parseFieldType()); - if (token !== Token.RBRACE) { - expect(Token.COMMA); - } - } - } - rangeEnd = index; - expect(Token.RBRACE); - return maybeAddRange({ - type: Syntax.RecordType, - fields: fields - }, [rangeStart, rangeEnd]); - } - - // NameExpression := - // Identifier - // | TagIdentifier ':' Identifier - // - // Tag identifier is one of "module", "external" or "event" - // Identifier is the same as Token.NAME, including any dots, something like - // namespace.module.MyClass - function parseNameExpression() { - var name = value, rangeStart = index - name.length; - expect(Token.NAME); - - if (token === Token.COLON && ( - name === 'module' || - name === 'external' || - name === 'event')) { - consume(Token.COLON); - name += ':' + value; - expect(Token.NAME); - } - - return maybeAddRange({ - type: Syntax.NameExpression, - name: name - }, [rangeStart, previous]); - } - - // TypeExpressionList := - // TopLevelTypeExpression - // | TopLevelTypeExpression ',' TypeExpressionList - function parseTypeExpressionList() { - var elements = []; - - elements.push(parseTop()); - while (token === Token.COMMA) { - consume(Token.COMMA); - elements.push(parseTop()); - } - return elements; - } - - // TypeName := - // NameExpression - // | NameExpression TypeApplication - // - // TypeApplication := - // '.<' TypeExpressionList '>' - // | '<' TypeExpressionList '>' // this is extension of doctrine - function parseTypeName() { - var expr, applications, startIndex = index - value.length; - - expr = parseNameExpression(); - if (token === Token.DOT_LT || token === Token.LT) { - next(); - applications = parseTypeExpressionList(); - expect(Token.GT); - return maybeAddRange({ - type: Syntax.TypeApplication, - expression: expr, - applications: applications - }, [startIndex, previous]); - } - return expr; - } - - // ResultType := - // <> - // | ':' void - // | ':' TypeExpression - // - // BNF is above - // but, we remove <> pattern, so token is always TypeToken::COLON - function parseResultType() { - consume(Token.COLON, 'ResultType should start with :'); - if (token === Token.NAME && value === 'void') { - consume(Token.NAME); - return { - type: Syntax.VoidLiteral - }; - } - return parseTypeExpression(); - } - - // ParametersType := - // RestParameterType - // | NonRestParametersType - // | NonRestParametersType ',' RestParameterType - // - // RestParameterType := - // '...' - // '...' Identifier - // - // NonRestParametersType := - // ParameterType ',' NonRestParametersType - // | ParameterType - // | OptionalParametersType - // - // OptionalParametersType := - // OptionalParameterType - // | OptionalParameterType, OptionalParametersType - // - // OptionalParameterType := ParameterType= - // - // ParameterType := TypeExpression | Identifier ':' TypeExpression - // - // Identifier is "new" or "this" - function parseParametersType() { - var params = [], optionalSequence = false, expr, rest = false, startIndex, restStartIndex = index - 3, nameStartIndex; - - while (token !== Token.RPAREN) { - if (token === Token.REST) { - // RestParameterType - consume(Token.REST); - rest = true; - } - - startIndex = previous; - - expr = parseTypeExpression(); - if (expr.type === Syntax.NameExpression && token === Token.COLON) { - nameStartIndex = previous - expr.name.length; - // Identifier ':' TypeExpression - consume(Token.COLON); - expr = maybeAddRange({ - type: Syntax.ParameterType, - name: expr.name, - expression: parseTypeExpression() - }, [nameStartIndex, previous]); - } - if (token === Token.EQUAL) { - consume(Token.EQUAL); - expr = maybeAddRange({ - type: Syntax.OptionalType, - expression: expr - }, [startIndex, previous]); - optionalSequence = true; - } else { - if (optionalSequence) { - utility.throwError('unexpected token'); - } - } - if (rest) { - expr = maybeAddRange({ - type: Syntax.RestType, - expression: expr - }, [restStartIndex, previous]); - } - params.push(expr); - if (token !== Token.RPAREN) { - expect(Token.COMMA); - } - } - return params; - } - - // FunctionType := 'function' FunctionSignatureType - // - // FunctionSignatureType := - // | TypeParameters '(' ')' ResultType - // | TypeParameters '(' ParametersType ')' ResultType - // | TypeParameters '(' 'this' ':' TypeName ')' ResultType - // | TypeParameters '(' 'this' ':' TypeName ',' ParametersType ')' ResultType - function parseFunctionType() { - var isNew, thisBinding, params, result, fnType, startIndex = index - value.length; - utility.assert(token === Token.NAME && value === 'function', 'FunctionType should start with \'function\''); - consume(Token.NAME); - - // Google Closure Compiler is not implementing TypeParameters. - // So we do not. if we don't get '(', we see it as error. - expect(Token.LPAREN); - - isNew = false; - params = []; - thisBinding = null; - if (token !== Token.RPAREN) { - // ParametersType or 'this' - if (token === Token.NAME && - (value === 'this' || value === 'new')) { - // 'this' or 'new' - // 'new' is Closure Compiler extension - isNew = value === 'new'; - consume(Token.NAME); - expect(Token.COLON); - thisBinding = parseTypeName(); - if (token === Token.COMMA) { - consume(Token.COMMA); - params = parseParametersType(); - } - } else { - params = parseParametersType(); - } - } - - expect(Token.RPAREN); - - result = null; - if (token === Token.COLON) { - result = parseResultType(); - } - - fnType = maybeAddRange({ - type: Syntax.FunctionType, - params: params, - result: result - }, [startIndex, previous]); - if (thisBinding) { - // avoid adding null 'new' and 'this' properties - fnType['this'] = thisBinding; - if (isNew) { - fnType['new'] = true; - } - } - return fnType; - } - - // BasicTypeExpression := - // '*' - // | 'null' - // | 'undefined' - // | TypeName - // | FunctionType - // | UnionType - // | RecordType - // | ArrayType - function parseBasicTypeExpression() { - var context, startIndex; - switch (token) { - case Token.STAR: - consume(Token.STAR); - return maybeAddRange({ - type: Syntax.AllLiteral - }, [previous - 1, previous]); - - case Token.LPAREN: - return parseUnionType(); - - case Token.LBRACK: - return parseArrayType(); - - case Token.LBRACE: - return parseRecordType(); - - case Token.NAME: - startIndex = index - value.length; - - if (value === 'null') { - consume(Token.NAME); - return maybeAddRange({ - type: Syntax.NullLiteral - }, [startIndex, previous]); - } - - if (value === 'undefined') { - consume(Token.NAME); - return maybeAddRange({ - type: Syntax.UndefinedLiteral - }, [startIndex, previous]); - } - - if (value === 'true' || value === 'false') { - consume(Token.NAME); - return maybeAddRange({ - type: Syntax.BooleanLiteralType, - value: value === 'true' - }, [startIndex, previous]); - } - - context = Context.save(); - if (value === 'function') { - try { - return parseFunctionType(); - } catch (e) { - context.restore(); - } - } - - return parseTypeName(); - - case Token.STRING: - next(); - return maybeAddRange({ - type: Syntax.StringLiteralType, - value: value - }, [previous - value.length - 2, previous]); - - case Token.NUMBER: - next(); - return maybeAddRange({ - type: Syntax.NumericLiteralType, - value: value - }, [previous - String(value).length, previous]); - - default: - utility.throwError('unexpected token'); - } - } - - // TypeExpression := - // BasicTypeExpression - // | '?' BasicTypeExpression - // | '!' BasicTypeExpression - // | BasicTypeExpression '?' - // | BasicTypeExpression '!' - // | '?' - // | BasicTypeExpression '[]' - function parseTypeExpression() { - var expr, rangeStart; - - if (token === Token.QUESTION) { - rangeStart = index - 1; - consume(Token.QUESTION); - if (token === Token.COMMA || token === Token.EQUAL || token === Token.RBRACE || - token === Token.RPAREN || token === Token.PIPE || token === Token.EOF || - token === Token.RBRACK || token === Token.GT) { - return maybeAddRange({ - type: Syntax.NullableLiteral - }, [rangeStart, previous]); - } - return maybeAddRange({ - type: Syntax.NullableType, - expression: parseBasicTypeExpression(), - prefix: true - }, [rangeStart, previous]); - } else if (token === Token.BANG) { - rangeStart = index - 1; - consume(Token.BANG); - return maybeAddRange({ - type: Syntax.NonNullableType, - expression: parseBasicTypeExpression(), - prefix: true - }, [rangeStart, previous]); - } else { - rangeStart = previous; - } - - expr = parseBasicTypeExpression(); - if (token === Token.BANG) { - consume(Token.BANG); - return maybeAddRange({ - type: Syntax.NonNullableType, - expression: expr, - prefix: false - }, [rangeStart, previous]); - } - - if (token === Token.QUESTION) { - consume(Token.QUESTION); - return maybeAddRange({ - type: Syntax.NullableType, - expression: expr, - prefix: false - }, [rangeStart, previous]); - } - - if (token === Token.LBRACK) { - consume(Token.LBRACK); - expect(Token.RBRACK, 'expected an array-style type declaration (' + value + '[])'); - return maybeAddRange({ - type: Syntax.TypeApplication, - expression: maybeAddRange({ - type: Syntax.NameExpression, - name: 'Array' - }, [rangeStart, previous]), - applications: [expr] - }, [rangeStart, previous]); - } - - return expr; - } - - // TopLevelTypeExpression := - // TypeExpression - // | TypeUnionList - // - // This rule is Google Closure Compiler extension, not ES4 - // like, - // { number | string } - // If strict to ES4, we should write it as - // { (number|string) } - function parseTop() { - var expr, elements; - - expr = parseTypeExpression(); - if (token !== Token.PIPE) { - return expr; - } - - elements = [expr]; - consume(Token.PIPE); - while (true) { - elements.push(parseTypeExpression()); - if (token !== Token.PIPE) { - break; - } - consume(Token.PIPE); - } - - return maybeAddRange({ - type: Syntax.UnionType, - elements: elements - }, [0, index]); - } - - function parseTopParamType() { - var expr; - - if (token === Token.REST) { - consume(Token.REST); - return maybeAddRange({ - type: Syntax.RestType, - expression: parseTop() - }, [0, index]); - } - - expr = parseTop(); - if (token === Token.EQUAL) { - consume(Token.EQUAL); - return maybeAddRange({ - type: Syntax.OptionalType, - expression: expr - }, [0, index]); - } - - return expr; - } - - function parseType(src, opt) { - var expr; - - source = src; - length = source.length; - index = 0; - previous = 0; - addRange = opt && opt.range; - rangeOffset = opt && opt.startIndex || 0; - - next(); - expr = parseTop(); - - if (opt && opt.midstream) { - return { - expression: expr, - index: previous - }; - } - - if (token !== Token.EOF) { - utility.throwError('not reach to EOF'); - } - - return expr; - } - - function parseParamType(src, opt) { - var expr; - - source = src; - length = source.length; - index = 0; - previous = 0; - addRange = opt && opt.range; - rangeOffset = opt && opt.startIndex || 0; - - next(); - expr = parseTopParamType(); - - if (opt && opt.midstream) { - return { - expression: expr, - index: previous - }; - } - - if (token !== Token.EOF) { - utility.throwError('not reach to EOF'); - } - - return expr; - } - - function stringifyImpl(node, compact, topLevel) { - var result, i, iz; - - switch (node.type) { - case Syntax.NullableLiteral: - result = '?'; - break; - - case Syntax.AllLiteral: - result = '*'; - break; - - case Syntax.NullLiteral: - result = 'null'; - break; - - case Syntax.UndefinedLiteral: - result = 'undefined'; - break; - - case Syntax.VoidLiteral: - result = 'void'; - break; - - case Syntax.UnionType: - if (!topLevel) { - result = '('; - } else { - result = ''; - } - - for (i = 0, iz = node.elements.length; i < iz; ++i) { - result += stringifyImpl(node.elements[i], compact); - if ((i + 1) !== iz) { - result += compact ? '|' : ' | '; - } - } - - if (!topLevel) { - result += ')'; - } - break; - - case Syntax.ArrayType: - result = '['; - for (i = 0, iz = node.elements.length; i < iz; ++i) { - result += stringifyImpl(node.elements[i], compact); - if ((i + 1) !== iz) { - result += compact ? ',' : ', '; - } - } - result += ']'; - break; - - case Syntax.RecordType: - result = '{'; - for (i = 0, iz = node.fields.length; i < iz; ++i) { - result += stringifyImpl(node.fields[i], compact); - if ((i + 1) !== iz) { - result += compact ? ',' : ', '; - } - } - result += '}'; - break; - - case Syntax.FieldType: - if (node.value) { - result = node.key + (compact ? ':' : ': ') + stringifyImpl(node.value, compact); - } else { - result = node.key; - } - break; - - case Syntax.FunctionType: - result = compact ? 'function(' : 'function ('; - - if (node['this']) { - if (node['new']) { - result += (compact ? 'new:' : 'new: '); - } else { - result += (compact ? 'this:' : 'this: '); - } - - result += stringifyImpl(node['this'], compact); - - if (node.params.length !== 0) { - result += compact ? ',' : ', '; - } - } - - for (i = 0, iz = node.params.length; i < iz; ++i) { - result += stringifyImpl(node.params[i], compact); - if ((i + 1) !== iz) { - result += compact ? ',' : ', '; - } - } - - result += ')'; - - if (node.result) { - result += (compact ? ':' : ': ') + stringifyImpl(node.result, compact); - } - break; - - case Syntax.ParameterType: - result = node.name + (compact ? ':' : ': ') + stringifyImpl(node.expression, compact); - break; - - case Syntax.RestType: - result = '...'; - if (node.expression) { - result += stringifyImpl(node.expression, compact); - } - break; - - case Syntax.NonNullableType: - if (node.prefix) { - result = '!' + stringifyImpl(node.expression, compact); - } else { - result = stringifyImpl(node.expression, compact) + '!'; - } - break; - - case Syntax.OptionalType: - result = stringifyImpl(node.expression, compact) + '='; - break; - - case Syntax.NullableType: - if (node.prefix) { - result = '?' + stringifyImpl(node.expression, compact); - } else { - result = stringifyImpl(node.expression, compact) + '?'; - } - break; - - case Syntax.NameExpression: - result = node.name; - break; - - case Syntax.TypeApplication: - result = stringifyImpl(node.expression, compact) + '.<'; - for (i = 0, iz = node.applications.length; i < iz; ++i) { - result += stringifyImpl(node.applications[i], compact); - if ((i + 1) !== iz) { - result += compact ? ',' : ', '; - } - } - result += '>'; - break; - - case Syntax.StringLiteralType: - result = '"' + node.value + '"'; - break; - - case Syntax.NumericLiteralType: - result = String(node.value); - break; - - case Syntax.BooleanLiteralType: - result = String(node.value); - break; - - default: - utility.throwError('Unknown type ' + node.type); - } - - return result; - } - - function stringify(node, options) { - if (options == null) { - options = {}; - } - return stringifyImpl(node, options.compact, options.topLevel); - } - - exports.parseType = parseType; - exports.parseParamType = parseParamType; - exports.stringify = stringify; - exports.Syntax = Syntax; -}()); -/* vim: set sw=4 ts=4 et tw=80 : */ diff --git a/tools/node_modules/eslint/node_modules/doctrine/lib/utility.js b/tools/node_modules/eslint/node_modules/doctrine/lib/utility.js deleted file mode 100644 index 381580ebe2534a..00000000000000 --- a/tools/node_modules/eslint/node_modules/doctrine/lib/utility.js +++ /dev/null @@ -1,35 +0,0 @@ -/* - * @fileoverview Utilities for Doctrine - * @author Yusuke Suzuki - */ - - -(function () { - 'use strict'; - - var VERSION; - - VERSION = require('../package.json').version; - exports.VERSION = VERSION; - - function DoctrineError(message) { - this.name = 'DoctrineError'; - this.message = message; - } - DoctrineError.prototype = (function () { - var Middle = function () { }; - Middle.prototype = Error.prototype; - return new Middle(); - }()); - DoctrineError.prototype.constructor = DoctrineError; - exports.DoctrineError = DoctrineError; - - function throwError(message) { - throw new DoctrineError(message); - } - exports.throwError = throwError; - - exports.assert = require('assert'); -}()); - -/* vim: set sw=4 ts=4 et tw=80 : */ diff --git a/tools/node_modules/eslint/node_modules/doctrine/package.json b/tools/node_modules/eslint/node_modules/doctrine/package.json deleted file mode 100644 index b66099863d4479..00000000000000 --- a/tools/node_modules/eslint/node_modules/doctrine/package.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "doctrine", - "description": "JSDoc parser", - "homepage": "https://github.com/eslint/doctrine", - "main": "lib/doctrine.js", - "version": "3.0.0", - "engines": { - "node": ">=6.0.0" - }, - "directories": { - "lib": "./lib" - }, - "files": [ - "lib" - ], - "maintainers": [ - { - "name": "Nicholas C. Zakas", - "email": "nicholas+npm@nczconsulting.com", - "web": "https://www.nczonline.net" - }, - { - "name": "Yusuke Suzuki", - "email": "utatane.tea@gmail.com", - "web": "https://github.com/Constellation" - } - ], - "repository": "eslint/doctrine", - "devDependencies": { - "coveralls": "^3.0.1", - "dateformat": "^1.0.11", - "eslint": "^1.10.3", - "eslint-release": "^1.0.0", - "linefix": "^0.1.1", - "mocha": "^3.4.2", - "npm-license": "^0.3.1", - "nyc": "^10.3.2", - "semver": "^5.0.3", - "shelljs": "^0.5.3", - "shelljs-nodecli": "^0.1.1", - "should": "^5.0.1" - }, - "license": "Apache-2.0", - "scripts": { - "pretest": "npm run lint", - "test": "nyc mocha", - "coveralls": "nyc report --reporter=text-lcov | coveralls", - "lint": "eslint lib/", - "generate-release": "eslint-generate-release", - "generate-alpharelease": "eslint-generate-prerelease alpha", - "generate-betarelease": "eslint-generate-prerelease beta", - "generate-rcrelease": "eslint-generate-prerelease rc", - "publish-release": "eslint-publish-release" - }, - "dependencies": { - "esutils": "^2.0.2" - } -} diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js index 272e1d2ecf91bc..2137aea8ba5bc8 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.js @@ -60,5 +60,7 @@ module.exports = { "121": "29.0", "122": "29.0", "123": "30.0", - "124": "30.0" + "124": "30.0", + "125": "31.0", + "126": "31.0" }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json index 8d50546234a2ae..0bd8b03a6266ec 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/chromium-versions.json @@ -1 +1 @@ -{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0","119":"28.0","120":"28.0","121":"29.0","122":"29.0","123":"30.0","124":"30.0"} \ No newline at end of file +{"39":"0.20","40":"0.21","41":"0.21","42":"0.25","43":"0.27","44":"0.30","45":"0.31","47":"0.36","49":"0.37","50":"1.1","51":"1.2","52":"1.3","53":"1.4","54":"1.4","56":"1.6","58":"1.7","59":"1.8","61":"2.0","66":"3.0","69":"4.0","72":"5.0","73":"5.0","76":"6.0","78":"7.0","79":"8.0","80":"8.0","82":"9.0","83":"9.0","84":"10.0","85":"10.0","86":"11.0","87":"11.0","89":"12.0","90":"13.0","91":"13.0","92":"14.0","93":"14.0","94":"15.0","95":"16.0","96":"16.0","98":"17.0","99":"18.0","100":"18.0","102":"19.0","103":"20.0","104":"20.0","105":"21.0","106":"21.0","107":"22.0","108":"22.0","110":"23.0","111":"24.0","112":"24.0","114":"25.0","116":"26.0","118":"27.0","119":"28.0","120":"28.0","121":"29.0","122":"29.0","123":"30.0","124":"30.0","125":"31.0","126":"31.0"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js index ce3c99eac8b8c3..fcde28070b2206 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.js @@ -2873,7 +2873,8 @@ module.exports = { "27.3.7", "27.3.8", "27.3.9", - "27.3.10" + "27.3.10", + "27.3.11" ], "119.0.6045.0": [ "28.0.0-alpha.1", @@ -2988,7 +2989,8 @@ module.exports = { "28.2.8", "28.2.9", "28.2.10", - "28.3.0" + "28.3.0", + "28.3.1" ], "121.0.6147.0": [ "29.0.0-alpha.1", @@ -3121,7 +3123,11 @@ module.exports = { ], "122.0.6261.156": [ "29.2.0", - "29.3.0" + "29.3.0", + "29.3.1", + "29.3.2", + "29.3.3", + "29.4.0" ], "123.0.6296.0": [ "30.0.0-alpha.1", @@ -3212,6 +3218,62 @@ module.exports = { "30.0.0-nightly.20240213", "30.0.0-nightly.20240214" ], + "124.0.6367.49": [ + "30.0.0" + ], + "124.0.6367.60": [ + "30.0.1" + ], + "124.0.6367.91": [ + "30.0.2" + ], + "124.0.6367.119": [ + "30.0.3" + ], + "124.0.6367.201": [ + "30.0.4" + ], + "124.0.6367.207": [ + "30.0.5", + "30.0.6" + ], + "125.0.6412.0": [ + "31.0.0-alpha.1", + "31.0.0-alpha.2", + "31.0.0-alpha.3", + "31.0.0-alpha.4", + "31.0.0-alpha.5", + "32.0.0-nightly.20240418", + "32.0.0-nightly.20240419", + "32.0.0-nightly.20240422", + "32.0.0-nightly.20240423", + "32.0.0-nightly.20240424", + "32.0.0-nightly.20240425", + "32.0.0-nightly.20240426", + "32.0.0-nightly.20240429", + "32.0.0-nightly.20240430", + "32.0.0-nightly.20240501", + "32.0.0-nightly.20240503", + "32.0.0-nightly.20240506", + "32.0.0-nightly.20240507", + "32.0.0-nightly.20240508", + "32.0.0-nightly.20240509", + "32.0.0-nightly.20240510" + ], + "126.0.6445.0": [ + "31.0.0-beta.1", + "31.0.0-beta.2", + "31.0.0-beta.3", + "31.0.0-beta.4", + "31.0.0-beta.5", + "32.0.0-nightly.20240513", + "32.0.0-nightly.20240514", + "32.0.0-nightly.20240515", + "32.0.0-nightly.20240516", + "32.0.0-nightly.20240517", + "32.0.0-nightly.20240520", + "32.0.0-nightly.20240521" + ], "124.0.6351.0": [ "31.0.0-nightly.20240312" ] diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json index d4aec883530de2..8c7cd6e02f8f79 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-chromium-versions.json @@ -1 +1 @@ -{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2","6.0.0-nightly.20190123"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190912","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190922","8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190928","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191103","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191126","9.0.0-nightly.20191128","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191205","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201002","12.0.0-nightly.20201007","12.0.0-nightly.20201009","12.0.0-nightly.20201012","12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802","22.0.0-nightly.20220808","22.0.0-nightly.20220809","22.0.0-nightly.20220810","22.0.0-nightly.20220811","22.0.0-nightly.20220812","22.0.0-nightly.20220815","22.0.0-nightly.20220816","22.0.0-nightly.20220817"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5","22.0.0-nightly.20220822","22.0.0-nightly.20220823","22.0.0-nightly.20220824","22.0.0-nightly.20220825","22.0.0-nightly.20220829","22.0.0-nightly.20220830","22.0.0-nightly.20220831","22.0.0-nightly.20220901","22.0.0-nightly.20220902","22.0.0-nightly.20220905"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1","22.0.0-nightly.20220909","22.0.0-nightly.20220912","22.0.0-nightly.20220913","22.0.0-nightly.20220914","22.0.0-nightly.20220915","22.0.0-nightly.20220916","22.0.0-nightly.20220919","22.0.0-nightly.20220920","22.0.0-nightly.20220921","22.0.0-nightly.20220922","22.0.0-nightly.20220923","22.0.0-nightly.20220926","22.0.0-nightly.20220927","22.0.0-nightly.20220928","23.0.0-nightly.20220929","23.0.0-nightly.20220930","23.0.0-nightly.20221003"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6","23.0.0-nightly.20221004","23.0.0-nightly.20221005","23.0.0-nightly.20221006","23.0.0-nightly.20221007","23.0.0-nightly.20221010","23.0.0-nightly.20221011","23.0.0-nightly.20221012","23.0.0-nightly.20221013","23.0.0-nightly.20221014","23.0.0-nightly.20221017"],"108.0.5355.0":["22.0.0-alpha.7","23.0.0-nightly.20221018","23.0.0-nightly.20221019","23.0.0-nightly.20221020","23.0.0-nightly.20221021","23.0.0-nightly.20221024","23.0.0-nightly.20221026"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"107.0.5274.0":["22.0.0-nightly.20220908"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11","22.3.12","22.3.13","22.3.14","22.3.15","22.3.16","22.3.17","22.3.18","22.3.20","22.3.21","22.3.22","22.3.23","22.3.24","22.3.25","22.3.26","22.3.27"],"110.0.5415.0":["23.0.0-alpha.1","23.0.0-nightly.20221118","23.0.0-nightly.20221121","23.0.0-nightly.20221122","23.0.0-nightly.20221123","23.0.0-nightly.20221124","23.0.0-nightly.20221125","23.0.0-nightly.20221128","23.0.0-nightly.20221129","23.0.0-nightly.20221130","24.0.0-nightly.20221201","24.0.0-nightly.20221202","24.0.0-nightly.20221205"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3","24.0.0-nightly.20221206","24.0.0-nightly.20221207","24.0.0-nightly.20221208","24.0.0-nightly.20221213","24.0.0-nightly.20221214","24.0.0-nightly.20221215","24.0.0-nightly.20221216"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"109.0.5382.0":["23.0.0-nightly.20221027","23.0.0-nightly.20221028","23.0.0-nightly.20221031","23.0.0-nightly.20221101","23.0.0-nightly.20221102","23.0.0-nightly.20221103","23.0.0-nightly.20221104","23.0.0-nightly.20221107","23.0.0-nightly.20221108","23.0.0-nightly.20221109","23.0.0-nightly.20221110","23.0.0-nightly.20221111","23.0.0-nightly.20221114","23.0.0-nightly.20221115","23.0.0-nightly.20221116","23.0.0-nightly.20221117"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4","23.3.5","23.3.6","23.3.7","23.3.8","23.3.9","23.3.10","23.3.11","23.3.12","23.3.13"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7","24.0.0-nightly.20230203","24.0.0-nightly.20230206","24.0.0-nightly.20230207","24.0.0-nightly.20230208","24.0.0-nightly.20230209","25.0.0-nightly.20230210","25.0.0-nightly.20230214","25.0.0-nightly.20230215","25.0.0-nightly.20230216","25.0.0-nightly.20230217","25.0.0-nightly.20230220","25.0.0-nightly.20230221","25.0.0-nightly.20230222","25.0.0-nightly.20230223","25.0.0-nightly.20230224","25.0.0-nightly.20230227","25.0.0-nightly.20230228","25.0.0-nightly.20230301","25.0.0-nightly.20230302","25.0.0-nightly.20230303","25.0.0-nightly.20230306","25.0.0-nightly.20230307","25.0.0-nightly.20230308","25.0.0-nightly.20230309","25.0.0-nightly.20230310"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"111.0.5518.0":["24.0.0-nightly.20230109","24.0.0-nightly.20230110","24.0.0-nightly.20230111","24.0.0-nightly.20230112","24.0.0-nightly.20230113","24.0.0-nightly.20230116","24.0.0-nightly.20230117","24.0.0-nightly.20230118","24.0.0-nightly.20230119","24.0.0-nightly.20230120","24.0.0-nightly.20230123","24.0.0-nightly.20230124","24.0.0-nightly.20230125","24.0.0-nightly.20230126","24.0.0-nightly.20230127","24.0.0-nightly.20230131","24.0.0-nightly.20230201","24.0.0-nightly.20230202"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1","24.5.0","24.5.1","24.6.0","24.6.1","24.6.2","24.6.3","24.6.4","24.6.5","24.7.0","24.7.1","24.8.0","24.8.1","24.8.2","24.8.3","24.8.4","24.8.5","24.8.6","24.8.7","24.8.8"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2","25.0.0-nightly.20230405","26.0.0-nightly.20230406","26.0.0-nightly.20230407","26.0.0-nightly.20230410","26.0.0-nightly.20230411"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4","26.0.0-nightly.20230413","26.0.0-nightly.20230414","26.0.0-nightly.20230417"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3","26.0.0-nightly.20230421","26.0.0-nightly.20230424","26.0.0-nightly.20230425","26.0.0-nightly.20230426","26.0.0-nightly.20230427","26.0.0-nightly.20230428","26.0.0-nightly.20230501","26.0.0-nightly.20230502","26.0.0-nightly.20230503","26.0.0-nightly.20230504","26.0.0-nightly.20230505","26.0.0-nightly.20230508","26.0.0-nightly.20230509","26.0.0-nightly.20230510"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0","25.0.1"],"113.0.5636.0":["25.0.0-nightly.20230314"],"113.0.5651.0":["25.0.0-nightly.20230315"],"113.0.5653.0":["25.0.0-nightly.20230317"],"113.0.5660.0":["25.0.0-nightly.20230320"],"113.0.5664.0":["25.0.0-nightly.20230321"],"113.0.5666.0":["25.0.0-nightly.20230322"],"113.0.5668.0":["25.0.0-nightly.20230323"],"113.0.5670.0":["25.0.0-nightly.20230324","25.0.0-nightly.20230327","25.0.0-nightly.20230328","25.0.0-nightly.20230329","25.0.0-nightly.20230330"],"114.0.5684.0":["25.0.0-nightly.20230331","25.0.0-nightly.20230403"],"114.0.5692.0":["25.0.0-nightly.20230404"],"114.0.5735.106":["25.1.0","25.1.1"],"114.0.5735.134":["25.2.0"],"114.0.5735.199":["25.3.0"],"114.0.5735.243":["25.3.1"],"114.0.5735.248":["25.3.2","25.4.0"],"114.0.5735.289":["25.5.0","25.6.0","25.7.0","25.8.0","25.8.1","25.8.2","25.8.3","25.8.4","25.9.0","25.9.1","25.9.2","25.9.3","25.9.4","25.9.5","25.9.6","25.9.7","25.9.8"],"116.0.5791.0":["26.0.0-alpha.1","26.0.0-alpha.2","26.0.0-alpha.3","26.0.0-alpha.4","26.0.0-alpha.5","26.0.0-nightly.20230526","26.0.0-nightly.20230529","26.0.0-nightly.20230530","26.0.0-nightly.20230531","27.0.0-nightly.20230601","27.0.0-nightly.20230602","27.0.0-nightly.20230605","27.0.0-nightly.20230606","27.0.0-nightly.20230607","27.0.0-nightly.20230609"],"116.0.5815.0":["26.0.0-alpha.6","27.0.0-nightly.20230612","27.0.0-nightly.20230613"],"116.0.5831.0":["26.0.0-alpha.7","27.0.0-nightly.20230615"],"116.0.5845.0":["26.0.0-alpha.8","26.0.0-beta.1","27.0.0-nightly.20230622","27.0.0-nightly.20230623","27.0.0-nightly.20230626","27.0.0-nightly.20230627","27.0.0-nightly.20230628","27.0.0-nightly.20230629","27.0.0-nightly.20230630"],"116.0.5845.14":["26.0.0-beta.2","26.0.0-beta.3","26.0.0-beta.4","26.0.0-beta.5","26.0.0-beta.6","26.0.0-beta.7"],"116.0.5845.42":["26.0.0-beta.8","26.0.0-beta.9"],"116.0.5845.49":["26.0.0-beta.10","26.0.0-beta.11"],"116.0.5845.62":["26.0.0-beta.12"],"114.0.5708.0":["26.0.0-nightly.20230412"],"114.0.5715.0":["26.0.0-nightly.20230418"],"115.0.5760.0":["26.0.0-nightly.20230511","26.0.0-nightly.20230512","26.0.0-nightly.20230515","26.0.0-nightly.20230516","26.0.0-nightly.20230517","26.0.0-nightly.20230518","26.0.0-nightly.20230519","26.0.0-nightly.20230522","26.0.0-nightly.20230523"],"115.0.5786.0":["26.0.0-nightly.20230524"],"115.0.5790.0":["26.0.0-nightly.20230525"],"116.0.5845.82":["26.0.0"],"116.0.5845.97":["26.1.0"],"116.0.5845.179":["26.2.0"],"116.0.5845.188":["26.2.1"],"116.0.5845.190":["26.2.2","26.2.3","26.2.4"],"116.0.5845.228":["26.3.0","26.4.0","26.4.1","26.4.2","26.4.3","26.5.0","26.6.0","26.6.1","26.6.2","26.6.3","26.6.4","26.6.5","26.6.6","26.6.7","26.6.8","26.6.9","26.6.10"],"118.0.5949.0":["27.0.0-alpha.1","27.0.0-alpha.2","27.0.0-alpha.3","27.0.0-alpha.4","27.0.0-alpha.5","27.0.0-alpha.6","27.0.0-nightly.20230816","28.0.0-nightly.20230817","28.0.0-nightly.20230818","28.0.0-nightly.20230821","28.0.0-nightly.20230822","28.0.0-nightly.20230823","28.0.0-nightly.20230824","28.0.0-nightly.20230825","28.0.0-nightly.20230828","28.0.0-nightly.20230829","28.0.0-nightly.20230830","28.0.0-nightly.20230831"],"118.0.5993.5":["27.0.0-beta.1","27.0.0-beta.2","27.0.0-beta.3"],"118.0.5993.11":["27.0.0-beta.4"],"118.0.5993.18":["27.0.0-beta.5","27.0.0-beta.6","27.0.0-beta.7","27.0.0-beta.8","27.0.0-beta.9"],"116.0.5829.0":["27.0.0-nightly.20230614"],"116.0.5833.0":["27.0.0-nightly.20230616","27.0.0-nightly.20230619","27.0.0-nightly.20230620","27.0.0-nightly.20230621"],"117.0.5852.0":["27.0.0-nightly.20230703","27.0.0-nightly.20230704","27.0.0-nightly.20230705","27.0.0-nightly.20230706","27.0.0-nightly.20230707","27.0.0-nightly.20230710","27.0.0-nightly.20230711","27.0.0-nightly.20230712","27.0.0-nightly.20230713","27.0.0-nightly.20230714"],"117.0.5884.1":["27.0.0-nightly.20230717","27.0.0-nightly.20230718"],"117.0.5892.0":["27.0.0-nightly.20230719"],"117.0.5897.0":["27.0.0-nightly.20230720","27.0.0-nightly.20230721","27.0.0-nightly.20230724","27.0.0-nightly.20230725","27.0.0-nightly.20230726","27.0.0-nightly.20230727","27.0.0-nightly.20230728","27.0.0-nightly.20230731"],"117.0.5911.0":["27.0.0-nightly.20230801","27.0.0-nightly.20230802","27.0.0-nightly.20230803"],"117.0.5921.0":["27.0.0-nightly.20230804","27.0.0-nightly.20230807","27.0.0-nightly.20230808","27.0.0-nightly.20230814","27.0.0-nightly.20230815"],"118.0.5993.54":["27.0.0"],"118.0.5993.89":["27.0.1","27.0.2"],"118.0.5993.120":["27.0.3"],"118.0.5993.129":["27.0.4"],"118.0.5993.144":["27.1.0","27.1.2"],"118.0.5993.159":["27.1.3","27.2.0","27.2.1","27.2.2","27.2.3","27.2.4","27.3.0","27.3.1","27.3.2","27.3.3","27.3.4","27.3.5","27.3.6","27.3.7","27.3.8","27.3.9","27.3.10"],"119.0.6045.0":["28.0.0-alpha.1","28.0.0-alpha.2","28.0.0-nightly.20231006","28.0.0-nightly.20231009","28.0.0-nightly.20231010","28.0.0-nightly.20231011","29.0.0-nightly.20231012","29.0.0-nightly.20231013","29.0.0-nightly.20231016","29.0.0-nightly.20231017","29.0.0-nightly.20231018","29.0.0-nightly.20231019","29.0.0-nightly.20231020","29.0.0-nightly.20231023","29.0.0-nightly.20231024"],"119.0.6045.21":["28.0.0-alpha.3","28.0.0-alpha.4"],"119.0.6045.33":["28.0.0-alpha.5","28.0.0-alpha.6","28.0.0-alpha.7","28.0.0-beta.1"],"120.0.6099.0":["28.0.0-beta.2"],"120.0.6099.5":["28.0.0-beta.3","28.0.0-beta.4"],"120.0.6099.18":["28.0.0-beta.5","28.0.0-beta.6","28.0.0-beta.7","28.0.0-beta.8","28.0.0-beta.9","28.0.0-beta.10"],"120.0.6099.35":["28.0.0-beta.11"],"118.0.5991.0":["28.0.0-nightly.20230906"],"118.0.5993.0":["28.0.0-nightly.20230907","28.0.0-nightly.20230908","28.0.0-nightly.20230911","28.0.0-nightly.20230912","28.0.0-nightly.20230913","28.0.0-nightly.20230914","28.0.0-nightly.20230915"],"119.0.6006.0":["28.0.0-nightly.20230919"],"119.0.6017.0":["28.0.0-nightly.20230920"],"119.0.6019.2":["28.0.0-nightly.20230921","28.0.0-nightly.20230925","28.0.0-nightly.20230926","28.0.0-nightly.20230927","28.0.0-nightly.20230928"],"119.0.6029.0":["28.0.0-nightly.20230929","28.0.0-nightly.20231002"],"119.0.6043.0":["28.0.0-nightly.20231003","28.0.0-nightly.20231004","28.0.0-nightly.20231005"],"120.0.6099.56":["28.0.0"],"120.0.6099.109":["28.1.0","28.1.1"],"120.0.6099.199":["28.1.2","28.1.3"],"120.0.6099.216":["28.1.4"],"120.0.6099.227":["28.2.0"],"120.0.6099.268":["28.2.1"],"120.0.6099.276":["28.2.2"],"120.0.6099.283":["28.2.3"],"120.0.6099.291":["28.2.4","28.2.5","28.2.6","28.2.7","28.2.8","28.2.9","28.2.10","28.3.0"],"121.0.6147.0":["29.0.0-alpha.1","29.0.0-alpha.2","29.0.0-alpha.3","29.0.0-nightly.20231129","29.0.0-nightly.20231130","29.0.0-nightly.20231201","29.0.0-nightly.20231204","29.0.0-nightly.20231205","29.0.0-nightly.20231206","30.0.0-nightly.20231207","30.0.0-nightly.20231208","30.0.0-nightly.20231211"],"121.0.6159.0":["29.0.0-alpha.4","29.0.0-alpha.5","29.0.0-alpha.6","29.0.0-alpha.7","30.0.0-nightly.20231212","30.0.0-nightly.20231213","30.0.0-nightly.20231214","30.0.0-nightly.20231215","30.0.0-nightly.20231218","30.0.0-nightly.20240102"],"122.0.6194.0":["29.0.0-alpha.8","30.0.0-nightly.20240103","30.0.0-nightly.20240104","30.0.0-nightly.20240105","30.0.0-nightly.20240108","30.0.0-nightly.20240109","30.0.0-nightly.20240110"],"122.0.6236.2":["29.0.0-alpha.9","29.0.0-alpha.10","29.0.0-alpha.11","29.0.0-beta.1","29.0.0-beta.2","30.0.0-nightly.20240111","30.0.0-nightly.20240112","30.0.0-nightly.20240115","30.0.0-nightly.20240116","30.0.0-nightly.20240117","30.0.0-nightly.20240118","30.0.0-nightly.20240119","30.0.0-nightly.20240122","30.0.0-nightly.20240123","30.0.0-nightly.20240124","30.0.0-nightly.20240125"],"122.0.6261.6":["29.0.0-beta.3","29.0.0-beta.4"],"122.0.6261.18":["29.0.0-beta.5","29.0.0-beta.6","29.0.0-beta.7","29.0.0-beta.8","29.0.0-beta.9","29.0.0-beta.10","29.0.0-beta.11"],"122.0.6261.29":["29.0.0-beta.12"],"120.0.6078.0":["29.0.0-nightly.20231025","29.0.0-nightly.20231026","29.0.0-nightly.20231027","29.0.0-nightly.20231030","29.0.0-nightly.20231031","29.0.0-nightly.20231101"],"121.0.6100.0":["29.0.0-nightly.20231102","29.0.0-nightly.20231103"],"121.0.6104.0":["29.0.0-nightly.20231106"],"121.0.6110.0":["29.0.0-nightly.20231107","29.0.0-nightly.20231108","29.0.0-nightly.20231109","29.0.0-nightly.20231110","29.0.0-nightly.20231113","29.0.0-nightly.20231114"],"121.0.6116.0":["29.0.0-nightly.20231115","29.0.0-nightly.20231116","29.0.0-nightly.20231117","29.0.0-nightly.20231120","29.0.0-nightly.20231121","29.0.0-nightly.20231122","29.0.0-nightly.20231123","29.0.0-nightly.20231124","29.0.0-nightly.20231127","29.0.0-nightly.20231128"],"122.0.6261.39":["29.0.0"],"122.0.6261.57":["29.0.1"],"122.0.6261.70":["29.1.0"],"122.0.6261.111":["29.1.1"],"122.0.6261.112":["29.1.2","29.1.3"],"122.0.6261.129":["29.1.4"],"122.0.6261.130":["29.1.5"],"122.0.6261.139":["29.1.6"],"122.0.6261.156":["29.2.0","29.3.0"],"123.0.6296.0":["30.0.0-alpha.1","30.0.0-nightly.20240215","30.0.0-nightly.20240216","30.0.0-nightly.20240219","30.0.0-nightly.20240220","30.0.0-nightly.20240221"],"123.0.6312.5":["30.0.0-alpha.2","31.0.0-nightly.20240222","31.0.0-nightly.20240223","31.0.0-nightly.20240226","31.0.0-nightly.20240227","31.0.0-nightly.20240228"],"124.0.6323.0":["30.0.0-alpha.3","30.0.0-alpha.4","31.0.0-nightly.20240229","31.0.0-nightly.20240301","31.0.0-nightly.20240304","31.0.0-nightly.20240305"],"124.0.6331.0":["30.0.0-alpha.5","30.0.0-alpha.6","31.0.0-nightly.20240306","31.0.0-nightly.20240307","31.0.0-nightly.20240308","31.0.0-nightly.20240311"],"124.0.6353.0":["30.0.0-alpha.7","31.0.0-nightly.20240313","31.0.0-nightly.20240314","31.0.0-nightly.20240315"],"124.0.6359.0":["30.0.0-beta.1","30.0.0-beta.2","31.0.0-nightly.20240318","31.0.0-nightly.20240319","31.0.0-nightly.20240320","31.0.0-nightly.20240321","31.0.0-nightly.20240325","31.0.0-nightly.20240327","31.0.0-nightly.20240328","31.0.0-nightly.20240329","31.0.0-nightly.20240401","31.0.0-nightly.20240402","31.0.0-nightly.20240404","31.0.0-nightly.20240405","31.0.0-nightly.20240408","31.0.0-nightly.20240409","31.0.0-nightly.20240410","31.0.0-nightly.20240411","31.0.0-nightly.20240412"],"124.0.6367.9":["30.0.0-beta.3","30.0.0-beta.4","30.0.0-beta.5"],"124.0.6367.18":["30.0.0-beta.6"],"124.0.6367.29":["30.0.0-beta.7","30.0.0-beta.8"],"123.0.6264.0":["30.0.0-nightly.20240126","30.0.0-nightly.20240129","30.0.0-nightly.20240130","30.0.0-nightly.20240131"],"123.0.6272.0":["30.0.0-nightly.20240201","30.0.0-nightly.20240202","30.0.0-nightly.20240205","30.0.0-nightly.20240206","30.0.0-nightly.20240207","30.0.0-nightly.20240208","30.0.0-nightly.20240209","30.0.0-nightly.20240212","30.0.0-nightly.20240213","30.0.0-nightly.20240214"],"124.0.6351.0":["31.0.0-nightly.20240312"]} \ No newline at end of file +{"39.0.2171.65":["0.20.0","0.20.1","0.20.2","0.20.3","0.20.4","0.20.5","0.20.6","0.20.7","0.20.8"],"40.0.2214.91":["0.21.0","0.21.1","0.21.2"],"41.0.2272.76":["0.21.3","0.22.1","0.22.2","0.22.3","0.23.0","0.24.0"],"42.0.2311.107":["0.25.0","0.25.1","0.25.2","0.25.3","0.26.0","0.26.1","0.27.0","0.27.1"],"43.0.2357.65":["0.27.2","0.27.3","0.28.0","0.28.1","0.28.2","0.28.3","0.29.1","0.29.2"],"44.0.2403.125":["0.30.4","0.31.0"],"45.0.2454.85":["0.31.2","0.32.2","0.32.3","0.33.0","0.33.1","0.33.2","0.33.3","0.33.4","0.33.6","0.33.7","0.33.8","0.33.9","0.34.0","0.34.1","0.34.2","0.34.3","0.34.4","0.35.1","0.35.2","0.35.3","0.35.4","0.35.5"],"47.0.2526.73":["0.36.0","0.36.2","0.36.3","0.36.4"],"47.0.2526.110":["0.36.5","0.36.6","0.36.7","0.36.8","0.36.9","0.36.10","0.36.11","0.36.12"],"49.0.2623.75":["0.37.0","0.37.1","0.37.3","0.37.4","0.37.5","0.37.6","0.37.7","0.37.8","1.0.0","1.0.1","1.0.2"],"50.0.2661.102":["1.1.0","1.1.1","1.1.2","1.1.3"],"51.0.2704.63":["1.2.0","1.2.1"],"51.0.2704.84":["1.2.2","1.2.3"],"51.0.2704.103":["1.2.4","1.2.5"],"51.0.2704.106":["1.2.6","1.2.7","1.2.8"],"52.0.2743.82":["1.3.0","1.3.1","1.3.2","1.3.3","1.3.4","1.3.5","1.3.6","1.3.7","1.3.9","1.3.10","1.3.13","1.3.14","1.3.15"],"53.0.2785.113":["1.4.0","1.4.1","1.4.2","1.4.3","1.4.4","1.4.5"],"53.0.2785.143":["1.4.6","1.4.7","1.4.8","1.4.10","1.4.11","1.4.13","1.4.14","1.4.15","1.4.16"],"54.0.2840.51":["1.4.12"],"54.0.2840.101":["1.5.0","1.5.1"],"56.0.2924.87":["1.6.0","1.6.1","1.6.2","1.6.3","1.6.4","1.6.5","1.6.6","1.6.7","1.6.8","1.6.9","1.6.10","1.6.11","1.6.12","1.6.13","1.6.14","1.6.15","1.6.16","1.6.17","1.6.18"],"58.0.3029.110":["1.7.0","1.7.1","1.7.2","1.7.3","1.7.4","1.7.5","1.7.6","1.7.7","1.7.8","1.7.9","1.7.10","1.7.11","1.7.12","1.7.13","1.7.14","1.7.15","1.7.16"],"59.0.3071.115":["1.8.0","1.8.1","1.8.2-beta.1","1.8.2-beta.2","1.8.2-beta.3","1.8.2-beta.4","1.8.2-beta.5","1.8.2","1.8.3","1.8.4","1.8.5","1.8.6","1.8.7","1.8.8"],"61.0.3163.100":["2.0.0-beta.1","2.0.0-beta.2","2.0.0-beta.3","2.0.0-beta.4","2.0.0-beta.5","2.0.0-beta.6","2.0.0-beta.7","2.0.0-beta.8","2.0.0","2.0.1","2.0.2","2.0.3","2.0.4","2.0.5","2.0.6","2.0.7","2.0.8-nightly.20180819","2.0.8-nightly.20180820","2.0.8","2.0.9","2.0.10","2.0.11","2.0.12","2.0.13","2.0.14","2.0.15","2.0.16","2.0.17","2.0.18","2.1.0-unsupported.20180809"],"66.0.3359.181":["3.0.0-beta.1","3.0.0-beta.2","3.0.0-beta.3","3.0.0-beta.4","3.0.0-beta.5","3.0.0-beta.6","3.0.0-beta.7","3.0.0-beta.8","3.0.0-beta.9","3.0.0-beta.10","3.0.0-beta.11","3.0.0-beta.12","3.0.0-beta.13","3.0.0-nightly.20180818","3.0.0-nightly.20180821","3.0.0-nightly.20180823","3.0.0-nightly.20180904","3.0.0","3.0.1","3.0.2","3.0.3","3.0.4","3.0.5","3.0.6","3.0.7","3.0.8","3.0.9","3.0.10","3.0.11","3.0.12","3.0.13","3.0.14","3.0.15","3.0.16","3.1.0-beta.1","3.1.0-beta.2","3.1.0-beta.3","3.1.0-beta.4","3.1.0-beta.5","3.1.0","3.1.1","3.1.2","3.1.3","3.1.4","3.1.5","3.1.6","3.1.7","3.1.8","3.1.9","3.1.10","3.1.11","3.1.12","3.1.13","4.0.0-nightly.20180817","4.0.0-nightly.20180819","4.0.0-nightly.20180821"],"69.0.3497.106":["4.0.0-beta.1","4.0.0-beta.2","4.0.0-beta.3","4.0.0-beta.4","4.0.0-beta.5","4.0.0-beta.6","4.0.0-beta.7","4.0.0-beta.8","4.0.0-beta.9","4.0.0-beta.10","4.0.0-beta.11","4.0.0-nightly.20181010","4.0.0","4.0.1","4.0.2","4.0.3","4.0.4","4.0.5","4.0.6"],"67.0.3396.99":["4.0.0-nightly.20180929"],"68.0.3440.128":["4.0.0-nightly.20181006"],"69.0.3497.128":["4.0.7","4.0.8","4.1.0","4.1.1","4.1.2","4.1.3","4.1.4","4.1.5","4.2.0","4.2.1","4.2.2","4.2.3","4.2.4","4.2.5","4.2.6","4.2.7","4.2.8","4.2.9","4.2.10","4.2.11","4.2.12"],"72.0.3626.52":["5.0.0-beta.1","5.0.0-beta.2","6.0.0-nightly.20190123"],"73.0.3683.27":["5.0.0-beta.3"],"73.0.3683.54":["5.0.0-beta.4"],"73.0.3683.61":["5.0.0-beta.5"],"73.0.3683.84":["5.0.0-beta.6"],"73.0.3683.94":["5.0.0-beta.7"],"73.0.3683.104":["5.0.0-beta.8"],"73.0.3683.117":["5.0.0-beta.9"],"70.0.3538.110":["5.0.0-nightly.20190107"],"71.0.3578.98":["5.0.0-nightly.20190121","5.0.0-nightly.20190122"],"73.0.3683.119":["5.0.0"],"73.0.3683.121":["5.0.1","5.0.2","5.0.3","5.0.4","5.0.5","5.0.6","5.0.7","5.0.8","5.0.9","5.0.10","5.0.11","5.0.12","5.0.13"],"76.0.3774.1":["6.0.0-beta.1"],"76.0.3783.1":["6.0.0-beta.2","6.0.0-beta.3","6.0.0-beta.4"],"76.0.3805.4":["6.0.0-beta.5"],"76.0.3809.3":["6.0.0-beta.6"],"76.0.3809.22":["6.0.0-beta.7"],"76.0.3809.26":["6.0.0-beta.8","6.0.0-beta.9"],"76.0.3809.37":["6.0.0-beta.10"],"76.0.3809.42":["6.0.0-beta.11"],"76.0.3809.54":["6.0.0-beta.12"],"76.0.3809.60":["6.0.0-beta.13"],"76.0.3809.68":["6.0.0-beta.14"],"76.0.3809.74":["6.0.0-beta.15"],"72.0.3626.107":["6.0.0-nightly.20190212"],"72.0.3626.110":["6.0.0-nightly.20190213"],"74.0.3724.8":["6.0.0-nightly.20190311"],"76.0.3809.88":["6.0.0"],"76.0.3809.102":["6.0.1"],"76.0.3809.110":["6.0.2"],"76.0.3809.126":["6.0.3"],"76.0.3809.131":["6.0.4"],"76.0.3809.136":["6.0.5"],"76.0.3809.138":["6.0.6"],"76.0.3809.139":["6.0.7"],"76.0.3809.146":["6.0.8","6.0.9","6.0.10","6.0.11","6.0.12","6.1.0","6.1.1","6.1.2","6.1.3","6.1.4","6.1.5","6.1.6","6.1.7","6.1.8","6.1.9","6.1.10","6.1.11","6.1.12"],"78.0.3866.0":["7.0.0-beta.1","7.0.0-beta.2","7.0.0-beta.3","7.0.0-nightly.20190727","7.0.0-nightly.20190728","7.0.0-nightly.20190729","7.0.0-nightly.20190730","7.0.0-nightly.20190731","8.0.0-nightly.20190801","8.0.0-nightly.20190802"],"78.0.3896.6":["7.0.0-beta.4"],"78.0.3905.1":["7.0.0-beta.5","7.0.0-beta.6","7.0.0-beta.7","7.0.0"],"76.0.3784.0":["7.0.0-nightly.20190521"],"76.0.3806.0":["7.0.0-nightly.20190529","7.0.0-nightly.20190530","7.0.0-nightly.20190531","7.0.0-nightly.20190602","7.0.0-nightly.20190603"],"77.0.3814.0":["7.0.0-nightly.20190604"],"77.0.3815.0":["7.0.0-nightly.20190605","7.0.0-nightly.20190606","7.0.0-nightly.20190607","7.0.0-nightly.20190608","7.0.0-nightly.20190609","7.0.0-nightly.20190611","7.0.0-nightly.20190612","7.0.0-nightly.20190613","7.0.0-nightly.20190615","7.0.0-nightly.20190616","7.0.0-nightly.20190618","7.0.0-nightly.20190619","7.0.0-nightly.20190622","7.0.0-nightly.20190623","7.0.0-nightly.20190624","7.0.0-nightly.20190627","7.0.0-nightly.20190629","7.0.0-nightly.20190630","7.0.0-nightly.20190701","7.0.0-nightly.20190702"],"77.0.3843.0":["7.0.0-nightly.20190704","7.0.0-nightly.20190705"],"77.0.3848.0":["7.0.0-nightly.20190719","7.0.0-nightly.20190720","7.0.0-nightly.20190721"],"77.0.3864.0":["7.0.0-nightly.20190726"],"78.0.3904.92":["7.0.1"],"78.0.3904.94":["7.1.0"],"78.0.3904.99":["7.1.1"],"78.0.3904.113":["7.1.2"],"78.0.3904.126":["7.1.3"],"78.0.3904.130":["7.1.4","7.1.5","7.1.6","7.1.7","7.1.8","7.1.9","7.1.10","7.1.11","7.1.12","7.1.13","7.1.14","7.2.0","7.2.1","7.2.2","7.2.3","7.2.4","7.3.0","7.3.1","7.3.2","7.3.3"],"79.0.3931.0":["8.0.0-beta.1","8.0.0-beta.2","8.0.0-nightly.20191019","8.0.0-nightly.20191020","8.0.0-nightly.20191021","8.0.0-nightly.20191023"],"80.0.3955.0":["8.0.0-beta.3","8.0.0-beta.4"],"80.0.3987.14":["8.0.0-beta.5"],"80.0.3987.51":["8.0.0-beta.6"],"80.0.3987.59":["8.0.0-beta.7"],"80.0.3987.75":["8.0.0-beta.8","8.0.0-beta.9"],"78.0.3871.0":["8.0.0-nightly.20190803","8.0.0-nightly.20190806","8.0.0-nightly.20190807","8.0.0-nightly.20190808","8.0.0-nightly.20190809","8.0.0-nightly.20190810","8.0.0-nightly.20190811","8.0.0-nightly.20190812","8.0.0-nightly.20190813","8.0.0-nightly.20190814","8.0.0-nightly.20190815"],"78.0.3881.0":["8.0.0-nightly.20190816","8.0.0-nightly.20190817","8.0.0-nightly.20190818","8.0.0-nightly.20190819","8.0.0-nightly.20190820"],"78.0.3892.0":["8.0.0-nightly.20190824","8.0.0-nightly.20190825","8.0.0-nightly.20190827","8.0.0-nightly.20190828","8.0.0-nightly.20190830","8.0.0-nightly.20190901","8.0.0-nightly.20190902","8.0.0-nightly.20190907","8.0.0-nightly.20190909","8.0.0-nightly.20190910","8.0.0-nightly.20190911","8.0.0-nightly.20190912","8.0.0-nightly.20190913","8.0.0-nightly.20190914","8.0.0-nightly.20190915","8.0.0-nightly.20190917"],"79.0.3915.0":["8.0.0-nightly.20190919","8.0.0-nightly.20190920"],"79.0.3919.0":["8.0.0-nightly.20190922","8.0.0-nightly.20190923","8.0.0-nightly.20190924","8.0.0-nightly.20190926","8.0.0-nightly.20190928","8.0.0-nightly.20190929","8.0.0-nightly.20190930","8.0.0-nightly.20191001","8.0.0-nightly.20191004","8.0.0-nightly.20191005","8.0.0-nightly.20191006","8.0.0-nightly.20191009","8.0.0-nightly.20191011","8.0.0-nightly.20191012","8.0.0-nightly.20191017"],"80.0.3952.0":["8.0.0-nightly.20191101","8.0.0-nightly.20191103","8.0.0-nightly.20191105"],"80.0.3987.86":["8.0.0","8.0.1","8.0.2"],"80.0.3987.134":["8.0.3"],"80.0.3987.137":["8.1.0"],"80.0.3987.141":["8.1.1"],"80.0.3987.158":["8.2.0"],"80.0.3987.163":["8.2.1","8.2.2","8.2.3","8.5.3","8.5.4","8.5.5"],"80.0.3987.165":["8.2.4","8.2.5","8.3.0","8.3.1","8.3.2","8.3.3","8.3.4","8.4.0","8.4.1","8.5.0","8.5.1","8.5.2"],"82.0.4048.0":["9.0.0-beta.1","9.0.0-beta.2","9.0.0-beta.3","9.0.0-beta.4","9.0.0-beta.5"],"82.0.4058.2":["9.0.0-beta.6","9.0.0-beta.7","9.0.0-beta.9"],"82.0.4085.10":["9.0.0-beta.10"],"82.0.4085.14":["9.0.0-beta.11","9.0.0-beta.12","9.0.0-beta.13"],"82.0.4085.27":["9.0.0-beta.14"],"83.0.4102.3":["9.0.0-beta.15","9.0.0-beta.16"],"83.0.4103.14":["9.0.0-beta.17"],"83.0.4103.16":["9.0.0-beta.18"],"83.0.4103.24":["9.0.0-beta.19"],"83.0.4103.26":["9.0.0-beta.20","9.0.0-beta.21"],"83.0.4103.34":["9.0.0-beta.22"],"83.0.4103.44":["9.0.0-beta.23"],"83.0.4103.45":["9.0.0-beta.24"],"80.0.3954.0":["9.0.0-nightly.20191121","9.0.0-nightly.20191122","9.0.0-nightly.20191123","9.0.0-nightly.20191124","9.0.0-nightly.20191126","9.0.0-nightly.20191128","9.0.0-nightly.20191129","9.0.0-nightly.20191130","9.0.0-nightly.20191201","9.0.0-nightly.20191202","9.0.0-nightly.20191203","9.0.0-nightly.20191204","9.0.0-nightly.20191205","9.0.0-nightly.20191210"],"81.0.3994.0":["9.0.0-nightly.20191220","9.0.0-nightly.20191221","9.0.0-nightly.20191222","9.0.0-nightly.20191223","9.0.0-nightly.20191224","9.0.0-nightly.20191225","9.0.0-nightly.20191226","9.0.0-nightly.20191228","9.0.0-nightly.20191229","9.0.0-nightly.20191230","9.0.0-nightly.20191231","9.0.0-nightly.20200101","9.0.0-nightly.20200103","9.0.0-nightly.20200104","9.0.0-nightly.20200105","9.0.0-nightly.20200106","9.0.0-nightly.20200108","9.0.0-nightly.20200109","9.0.0-nightly.20200110","9.0.0-nightly.20200111","9.0.0-nightly.20200113","9.0.0-nightly.20200115","9.0.0-nightly.20200116","9.0.0-nightly.20200117"],"81.0.4030.0":["9.0.0-nightly.20200119","9.0.0-nightly.20200121"],"83.0.4103.64":["9.0.0"],"83.0.4103.94":["9.0.1","9.0.2"],"83.0.4103.100":["9.0.3"],"83.0.4103.104":["9.0.4"],"83.0.4103.119":["9.0.5"],"83.0.4103.122":["9.1.0","9.1.1","9.1.2","9.2.0","9.2.1","9.3.0","9.3.1","9.3.2","9.3.3","9.3.4","9.3.5","9.4.0","9.4.1","9.4.2","9.4.3","9.4.4"],"84.0.4129.0":["10.0.0-beta.1","10.0.0-beta.2","10.0.0-nightly.20200501","10.0.0-nightly.20200504","10.0.0-nightly.20200505","10.0.0-nightly.20200506","10.0.0-nightly.20200507","10.0.0-nightly.20200508","10.0.0-nightly.20200511","10.0.0-nightly.20200512","10.0.0-nightly.20200513","10.0.0-nightly.20200514","10.0.0-nightly.20200515","10.0.0-nightly.20200518","10.0.0-nightly.20200519","10.0.0-nightly.20200520","10.0.0-nightly.20200521","11.0.0-nightly.20200525","11.0.0-nightly.20200526"],"85.0.4161.2":["10.0.0-beta.3","10.0.0-beta.4"],"85.0.4181.1":["10.0.0-beta.8","10.0.0-beta.9"],"85.0.4183.19":["10.0.0-beta.10"],"85.0.4183.20":["10.0.0-beta.11"],"85.0.4183.26":["10.0.0-beta.12"],"85.0.4183.39":["10.0.0-beta.13","10.0.0-beta.14","10.0.0-beta.15","10.0.0-beta.17","10.0.0-beta.19","10.0.0-beta.20","10.0.0-beta.21"],"85.0.4183.70":["10.0.0-beta.23"],"85.0.4183.78":["10.0.0-beta.24"],"85.0.4183.80":["10.0.0-beta.25"],"82.0.4050.0":["10.0.0-nightly.20200209","10.0.0-nightly.20200210","10.0.0-nightly.20200211","10.0.0-nightly.20200216","10.0.0-nightly.20200217","10.0.0-nightly.20200218","10.0.0-nightly.20200221","10.0.0-nightly.20200222","10.0.0-nightly.20200223","10.0.0-nightly.20200226","10.0.0-nightly.20200303"],"82.0.4076.0":["10.0.0-nightly.20200304","10.0.0-nightly.20200305","10.0.0-nightly.20200306","10.0.0-nightly.20200309","10.0.0-nightly.20200310"],"82.0.4083.0":["10.0.0-nightly.20200311"],"83.0.4086.0":["10.0.0-nightly.20200316"],"83.0.4087.0":["10.0.0-nightly.20200317","10.0.0-nightly.20200318","10.0.0-nightly.20200320","10.0.0-nightly.20200323","10.0.0-nightly.20200324","10.0.0-nightly.20200325","10.0.0-nightly.20200326","10.0.0-nightly.20200327","10.0.0-nightly.20200330","10.0.0-nightly.20200331","10.0.0-nightly.20200401","10.0.0-nightly.20200402","10.0.0-nightly.20200403","10.0.0-nightly.20200406"],"83.0.4095.0":["10.0.0-nightly.20200408","10.0.0-nightly.20200410","10.0.0-nightly.20200413"],"84.0.4114.0":["10.0.0-nightly.20200414"],"84.0.4115.0":["10.0.0-nightly.20200415","10.0.0-nightly.20200416","10.0.0-nightly.20200417"],"84.0.4121.0":["10.0.0-nightly.20200422","10.0.0-nightly.20200423"],"84.0.4125.0":["10.0.0-nightly.20200427","10.0.0-nightly.20200428","10.0.0-nightly.20200429","10.0.0-nightly.20200430"],"85.0.4183.84":["10.0.0"],"85.0.4183.86":["10.0.1"],"85.0.4183.87":["10.1.0"],"85.0.4183.93":["10.1.1"],"85.0.4183.98":["10.1.2"],"85.0.4183.121":["10.1.3","10.1.4","10.1.5","10.1.6","10.1.7","10.2.0","10.3.0","10.3.1","10.3.2","10.4.0","10.4.1","10.4.2","10.4.3","10.4.4","10.4.5","10.4.6","10.4.7"],"86.0.4234.0":["11.0.0-beta.1","11.0.0-beta.3","11.0.0-beta.4","11.0.0-beta.5","11.0.0-beta.6","11.0.0-beta.7","11.0.0-nightly.20200822","11.0.0-nightly.20200824","11.0.0-nightly.20200825","11.0.0-nightly.20200826","12.0.0-nightly.20200827","12.0.0-nightly.20200831","12.0.0-nightly.20200902","12.0.0-nightly.20200903","12.0.0-nightly.20200907","12.0.0-nightly.20200910","12.0.0-nightly.20200911","12.0.0-nightly.20200914"],"87.0.4251.1":["11.0.0-beta.8","11.0.0-beta.9","11.0.0-beta.11"],"87.0.4280.11":["11.0.0-beta.12","11.0.0-beta.13"],"87.0.4280.27":["11.0.0-beta.16","11.0.0-beta.17","11.0.0-beta.18","11.0.0-beta.19"],"87.0.4280.40":["11.0.0-beta.20"],"87.0.4280.47":["11.0.0-beta.22","11.0.0-beta.23"],"85.0.4156.0":["11.0.0-nightly.20200529"],"85.0.4162.0":["11.0.0-nightly.20200602","11.0.0-nightly.20200603","11.0.0-nightly.20200604","11.0.0-nightly.20200609","11.0.0-nightly.20200610","11.0.0-nightly.20200611","11.0.0-nightly.20200615","11.0.0-nightly.20200616","11.0.0-nightly.20200617","11.0.0-nightly.20200618","11.0.0-nightly.20200619"],"85.0.4179.0":["11.0.0-nightly.20200701","11.0.0-nightly.20200702","11.0.0-nightly.20200703","11.0.0-nightly.20200706","11.0.0-nightly.20200707","11.0.0-nightly.20200708","11.0.0-nightly.20200709"],"86.0.4203.0":["11.0.0-nightly.20200716","11.0.0-nightly.20200717","11.0.0-nightly.20200720","11.0.0-nightly.20200721"],"86.0.4209.0":["11.0.0-nightly.20200723","11.0.0-nightly.20200724","11.0.0-nightly.20200729","11.0.0-nightly.20200730","11.0.0-nightly.20200731","11.0.0-nightly.20200803","11.0.0-nightly.20200804","11.0.0-nightly.20200805","11.0.0-nightly.20200811","11.0.0-nightly.20200812"],"87.0.4280.60":["11.0.0","11.0.1"],"87.0.4280.67":["11.0.2","11.0.3","11.0.4"],"87.0.4280.88":["11.0.5","11.1.0","11.1.1"],"87.0.4280.141":["11.2.0","11.2.1","11.2.2","11.2.3","11.3.0","11.4.0","11.4.1","11.4.2","11.4.3","11.4.4","11.4.5","11.4.6","11.4.7","11.4.8","11.4.9","11.4.10","11.4.11","11.4.12","11.5.0"],"89.0.4328.0":["12.0.0-beta.1","12.0.0-beta.3","12.0.0-beta.4","12.0.0-beta.5","12.0.0-beta.6","12.0.0-beta.7","12.0.0-beta.8","12.0.0-beta.9","12.0.0-beta.10","12.0.0-beta.11","12.0.0-beta.12","12.0.0-beta.14","13.0.0-nightly.20201119","13.0.0-nightly.20201123","13.0.0-nightly.20201124","13.0.0-nightly.20201126","13.0.0-nightly.20201127","13.0.0-nightly.20201130","13.0.0-nightly.20201201","13.0.0-nightly.20201202","13.0.0-nightly.20201203","13.0.0-nightly.20201204","13.0.0-nightly.20201207","13.0.0-nightly.20201208","13.0.0-nightly.20201209","13.0.0-nightly.20201210","13.0.0-nightly.20201211","13.0.0-nightly.20201214"],"89.0.4348.1":["12.0.0-beta.16","12.0.0-beta.18","12.0.0-beta.19","12.0.0-beta.20"],"89.0.4388.2":["12.0.0-beta.21","12.0.0-beta.22","12.0.0-beta.23","12.0.0-beta.24","12.0.0-beta.25","12.0.0-beta.26"],"89.0.4389.23":["12.0.0-beta.27","12.0.0-beta.28","12.0.0-beta.29"],"89.0.4389.58":["12.0.0-beta.30","12.0.0-beta.31"],"87.0.4268.0":["12.0.0-nightly.20201002","12.0.0-nightly.20201007","12.0.0-nightly.20201009","12.0.0-nightly.20201012","12.0.0-nightly.20201013","12.0.0-nightly.20201014","12.0.0-nightly.20201015"],"88.0.4292.0":["12.0.0-nightly.20201023","12.0.0-nightly.20201026"],"88.0.4306.0":["12.0.0-nightly.20201030","12.0.0-nightly.20201102","12.0.0-nightly.20201103","12.0.0-nightly.20201104","12.0.0-nightly.20201105","12.0.0-nightly.20201106","12.0.0-nightly.20201111","12.0.0-nightly.20201112"],"88.0.4324.0":["12.0.0-nightly.20201116"],"89.0.4389.69":["12.0.0"],"89.0.4389.82":["12.0.1"],"89.0.4389.90":["12.0.2"],"89.0.4389.114":["12.0.3","12.0.4"],"89.0.4389.128":["12.0.5","12.0.6","12.0.7","12.0.8","12.0.9","12.0.10","12.0.11","12.0.12","12.0.13","12.0.14","12.0.15","12.0.16","12.0.17","12.0.18","12.1.0","12.1.1","12.1.2","12.2.0","12.2.1","12.2.2","12.2.3"],"90.0.4402.0":["13.0.0-beta.2","13.0.0-beta.3","13.0.0-nightly.20210210","13.0.0-nightly.20210211","13.0.0-nightly.20210212","13.0.0-nightly.20210216","13.0.0-nightly.20210217","13.0.0-nightly.20210218","13.0.0-nightly.20210219","13.0.0-nightly.20210222","13.0.0-nightly.20210225","13.0.0-nightly.20210226","13.0.0-nightly.20210301","13.0.0-nightly.20210302","13.0.0-nightly.20210303","14.0.0-nightly.20210304"],"90.0.4415.0":["13.0.0-beta.4","13.0.0-beta.5","13.0.0-beta.6","13.0.0-beta.7","13.0.0-beta.8","13.0.0-beta.9","13.0.0-beta.10","13.0.0-beta.11","13.0.0-beta.12","13.0.0-beta.13","14.0.0-nightly.20210305","14.0.0-nightly.20210308","14.0.0-nightly.20210309","14.0.0-nightly.20210311","14.0.0-nightly.20210315","14.0.0-nightly.20210316","14.0.0-nightly.20210317","14.0.0-nightly.20210318","14.0.0-nightly.20210319","14.0.0-nightly.20210323","14.0.0-nightly.20210324","14.0.0-nightly.20210325","14.0.0-nightly.20210326","14.0.0-nightly.20210329","14.0.0-nightly.20210330"],"91.0.4448.0":["13.0.0-beta.14","13.0.0-beta.16","13.0.0-beta.17","13.0.0-beta.18","13.0.0-beta.20","14.0.0-nightly.20210331","14.0.0-nightly.20210401","14.0.0-nightly.20210402","14.0.0-nightly.20210406","14.0.0-nightly.20210407","14.0.0-nightly.20210408","14.0.0-nightly.20210409","14.0.0-nightly.20210413"],"91.0.4472.33":["13.0.0-beta.21","13.0.0-beta.22","13.0.0-beta.23"],"91.0.4472.38":["13.0.0-beta.24","13.0.0-beta.25","13.0.0-beta.26","13.0.0-beta.27","13.0.0-beta.28"],"89.0.4349.0":["13.0.0-nightly.20201215","13.0.0-nightly.20201216","13.0.0-nightly.20201221","13.0.0-nightly.20201222"],"89.0.4359.0":["13.0.0-nightly.20201223","13.0.0-nightly.20210104","13.0.0-nightly.20210108","13.0.0-nightly.20210111"],"89.0.4386.0":["13.0.0-nightly.20210113","13.0.0-nightly.20210114","13.0.0-nightly.20210118","13.0.0-nightly.20210122","13.0.0-nightly.20210125"],"89.0.4389.0":["13.0.0-nightly.20210127","13.0.0-nightly.20210128","13.0.0-nightly.20210129","13.0.0-nightly.20210201","13.0.0-nightly.20210202","13.0.0-nightly.20210203","13.0.0-nightly.20210205","13.0.0-nightly.20210208","13.0.0-nightly.20210209"],"91.0.4472.69":["13.0.0","13.0.1"],"91.0.4472.77":["13.1.0","13.1.1","13.1.2"],"91.0.4472.106":["13.1.3","13.1.4"],"91.0.4472.124":["13.1.5","13.1.6","13.1.7"],"91.0.4472.164":["13.1.8","13.1.9","13.2.0","13.2.1","13.2.2","13.2.3","13.3.0","13.4.0","13.5.0","13.5.1","13.5.2","13.6.0","13.6.1","13.6.2","13.6.3","13.6.6","13.6.7","13.6.8","13.6.9"],"92.0.4511.0":["14.0.0-beta.1","14.0.0-beta.2","14.0.0-beta.3","14.0.0-nightly.20210520","14.0.0-nightly.20210523","14.0.0-nightly.20210524","15.0.0-nightly.20210527","15.0.0-nightly.20210528","15.0.0-nightly.20210531","15.0.0-nightly.20210601","15.0.0-nightly.20210602"],"93.0.4536.0":["14.0.0-beta.5","14.0.0-beta.6","14.0.0-beta.7","14.0.0-beta.8","15.0.0-nightly.20210609","15.0.0-nightly.20210610","15.0.0-nightly.20210611","15.0.0-nightly.20210614","15.0.0-nightly.20210615","15.0.0-nightly.20210616"],"93.0.4539.0":["14.0.0-beta.9","14.0.0-beta.10","15.0.0-nightly.20210617","15.0.0-nightly.20210618","15.0.0-nightly.20210621","15.0.0-nightly.20210622"],"93.0.4557.4":["14.0.0-beta.11","14.0.0-beta.12"],"93.0.4566.0":["14.0.0-beta.13","14.0.0-beta.14","14.0.0-beta.15","14.0.0-beta.16","14.0.0-beta.17","15.0.0-alpha.1","15.0.0-alpha.2","15.0.0-nightly.20210706","15.0.0-nightly.20210707","15.0.0-nightly.20210708","15.0.0-nightly.20210709","15.0.0-nightly.20210712","15.0.0-nightly.20210713","15.0.0-nightly.20210714","15.0.0-nightly.20210715","15.0.0-nightly.20210716","15.0.0-nightly.20210719","15.0.0-nightly.20210720","15.0.0-nightly.20210721","16.0.0-nightly.20210722","16.0.0-nightly.20210723","16.0.0-nightly.20210726"],"93.0.4577.15":["14.0.0-beta.18","14.0.0-beta.19","14.0.0-beta.20","14.0.0-beta.21"],"93.0.4577.25":["14.0.0-beta.22","14.0.0-beta.23"],"93.0.4577.51":["14.0.0-beta.24","14.0.0-beta.25"],"92.0.4475.0":["14.0.0-nightly.20210426","14.0.0-nightly.20210427"],"92.0.4488.0":["14.0.0-nightly.20210430","14.0.0-nightly.20210503"],"92.0.4496.0":["14.0.0-nightly.20210505"],"92.0.4498.0":["14.0.0-nightly.20210506"],"92.0.4499.0":["14.0.0-nightly.20210507","14.0.0-nightly.20210510","14.0.0-nightly.20210511","14.0.0-nightly.20210512","14.0.0-nightly.20210513"],"92.0.4505.0":["14.0.0-nightly.20210514","14.0.0-nightly.20210517","14.0.0-nightly.20210518","14.0.0-nightly.20210519"],"93.0.4577.58":["14.0.0"],"93.0.4577.63":["14.0.1"],"93.0.4577.82":["14.0.2","14.1.0","14.1.1","14.2.0","14.2.1","14.2.2","14.2.3","14.2.4","14.2.5","14.2.6","14.2.7","14.2.8","14.2.9"],"94.0.4584.0":["15.0.0-alpha.3","15.0.0-alpha.4","15.0.0-alpha.5","15.0.0-alpha.6","16.0.0-nightly.20210727","16.0.0-nightly.20210728","16.0.0-nightly.20210729","16.0.0-nightly.20210730","16.0.0-nightly.20210802","16.0.0-nightly.20210803","16.0.0-nightly.20210804","16.0.0-nightly.20210805","16.0.0-nightly.20210806","16.0.0-nightly.20210809","16.0.0-nightly.20210810","16.0.0-nightly.20210811"],"94.0.4590.2":["15.0.0-alpha.7","15.0.0-alpha.8","15.0.0-alpha.9","16.0.0-nightly.20210812","16.0.0-nightly.20210813","16.0.0-nightly.20210816","16.0.0-nightly.20210817","16.0.0-nightly.20210818","16.0.0-nightly.20210819","16.0.0-nightly.20210820","16.0.0-nightly.20210823"],"94.0.4606.12":["15.0.0-alpha.10"],"94.0.4606.20":["15.0.0-beta.1","15.0.0-beta.2"],"94.0.4606.31":["15.0.0-beta.3","15.0.0-beta.4","15.0.0-beta.5","15.0.0-beta.6","15.0.0-beta.7"],"93.0.4530.0":["15.0.0-nightly.20210603","15.0.0-nightly.20210604"],"93.0.4535.0":["15.0.0-nightly.20210608"],"93.0.4550.0":["15.0.0-nightly.20210623","15.0.0-nightly.20210624"],"93.0.4552.0":["15.0.0-nightly.20210625","15.0.0-nightly.20210628","15.0.0-nightly.20210629"],"93.0.4558.0":["15.0.0-nightly.20210630","15.0.0-nightly.20210701","15.0.0-nightly.20210702","15.0.0-nightly.20210705"],"94.0.4606.51":["15.0.0"],"94.0.4606.61":["15.1.0","15.1.1"],"94.0.4606.71":["15.1.2"],"94.0.4606.81":["15.2.0","15.3.0","15.3.1","15.3.2","15.3.3","15.3.4","15.3.5","15.3.6","15.3.7","15.4.0","15.4.1","15.4.2","15.5.0","15.5.1","15.5.2","15.5.3","15.5.4","15.5.5","15.5.6","15.5.7"],"95.0.4629.0":["16.0.0-alpha.1","16.0.0-alpha.2","16.0.0-alpha.3","16.0.0-alpha.4","16.0.0-alpha.5","16.0.0-alpha.6","16.0.0-alpha.7","16.0.0-nightly.20210902","16.0.0-nightly.20210903","16.0.0-nightly.20210906","16.0.0-nightly.20210907","16.0.0-nightly.20210908","16.0.0-nightly.20210909","16.0.0-nightly.20210910","16.0.0-nightly.20210913","16.0.0-nightly.20210914","16.0.0-nightly.20210915","16.0.0-nightly.20210916","16.0.0-nightly.20210917","16.0.0-nightly.20210920","16.0.0-nightly.20210921","16.0.0-nightly.20210922","17.0.0-nightly.20210923","17.0.0-nightly.20210924","17.0.0-nightly.20210927","17.0.0-nightly.20210928","17.0.0-nightly.20210929","17.0.0-nightly.20210930","17.0.0-nightly.20211001","17.0.0-nightly.20211004","17.0.0-nightly.20211005"],"96.0.4647.0":["16.0.0-alpha.8","16.0.0-alpha.9","16.0.0-beta.1","16.0.0-beta.2","16.0.0-beta.3","17.0.0-nightly.20211006","17.0.0-nightly.20211007","17.0.0-nightly.20211008","17.0.0-nightly.20211011","17.0.0-nightly.20211012","17.0.0-nightly.20211013","17.0.0-nightly.20211014","17.0.0-nightly.20211015","17.0.0-nightly.20211018","17.0.0-nightly.20211019","17.0.0-nightly.20211020","17.0.0-nightly.20211021"],"96.0.4664.18":["16.0.0-beta.4","16.0.0-beta.5"],"96.0.4664.27":["16.0.0-beta.6","16.0.0-beta.7"],"96.0.4664.35":["16.0.0-beta.8","16.0.0-beta.9"],"95.0.4612.5":["16.0.0-nightly.20210824","16.0.0-nightly.20210825","16.0.0-nightly.20210826","16.0.0-nightly.20210827","16.0.0-nightly.20210830","16.0.0-nightly.20210831","16.0.0-nightly.20210901"],"96.0.4664.45":["16.0.0","16.0.1"],"96.0.4664.55":["16.0.2","16.0.3","16.0.4","16.0.5"],"96.0.4664.110":["16.0.6","16.0.7","16.0.8"],"96.0.4664.174":["16.0.9","16.0.10","16.1.0","16.1.1","16.2.0","16.2.1","16.2.2","16.2.3","16.2.4","16.2.5","16.2.6","16.2.7","16.2.8"],"96.0.4664.4":["17.0.0-alpha.1","17.0.0-alpha.2","17.0.0-alpha.3","17.0.0-nightly.20211022","17.0.0-nightly.20211025","17.0.0-nightly.20211026","17.0.0-nightly.20211027","17.0.0-nightly.20211028","17.0.0-nightly.20211029","17.0.0-nightly.20211101","17.0.0-nightly.20211102","17.0.0-nightly.20211103","17.0.0-nightly.20211104","17.0.0-nightly.20211105","17.0.0-nightly.20211108","17.0.0-nightly.20211109","17.0.0-nightly.20211110","17.0.0-nightly.20211111","17.0.0-nightly.20211112","17.0.0-nightly.20211115","17.0.0-nightly.20211116","17.0.0-nightly.20211117","18.0.0-nightly.20211118","18.0.0-nightly.20211119","18.0.0-nightly.20211122","18.0.0-nightly.20211123"],"98.0.4706.0":["17.0.0-alpha.4","17.0.0-alpha.5","17.0.0-alpha.6","17.0.0-beta.1","17.0.0-beta.2","18.0.0-nightly.20211124","18.0.0-nightly.20211125","18.0.0-nightly.20211126","18.0.0-nightly.20211129","18.0.0-nightly.20211130","18.0.0-nightly.20211201","18.0.0-nightly.20211202","18.0.0-nightly.20211203","18.0.0-nightly.20211206","18.0.0-nightly.20211207","18.0.0-nightly.20211208","18.0.0-nightly.20211209","18.0.0-nightly.20211210","18.0.0-nightly.20211213","18.0.0-nightly.20211214","18.0.0-nightly.20211215","18.0.0-nightly.20211216","18.0.0-nightly.20211217","18.0.0-nightly.20211220","18.0.0-nightly.20211221","18.0.0-nightly.20211222","18.0.0-nightly.20211223","18.0.0-nightly.20211228","18.0.0-nightly.20211229","18.0.0-nightly.20211231","18.0.0-nightly.20220103","18.0.0-nightly.20220104","18.0.0-nightly.20220105","18.0.0-nightly.20220106","18.0.0-nightly.20220107","18.0.0-nightly.20220110"],"98.0.4758.9":["17.0.0-beta.3"],"98.0.4758.11":["17.0.0-beta.4","17.0.0-beta.5","17.0.0-beta.6","17.0.0-beta.7","17.0.0-beta.8","17.0.0-beta.9"],"98.0.4758.74":["17.0.0"],"98.0.4758.82":["17.0.1"],"98.0.4758.102":["17.1.0"],"98.0.4758.109":["17.1.1","17.1.2","17.2.0"],"98.0.4758.141":["17.3.0","17.3.1","17.4.0","17.4.1","17.4.2","17.4.3","17.4.4","17.4.5","17.4.6","17.4.7","17.4.8","17.4.9","17.4.10","17.4.11"],"99.0.4767.0":["18.0.0-alpha.1","18.0.0-alpha.2","18.0.0-alpha.3","18.0.0-alpha.4","18.0.0-alpha.5","18.0.0-nightly.20220111","18.0.0-nightly.20220112","18.0.0-nightly.20220113","18.0.0-nightly.20220114","18.0.0-nightly.20220117","18.0.0-nightly.20220118","18.0.0-nightly.20220119","18.0.0-nightly.20220121","18.0.0-nightly.20220124","18.0.0-nightly.20220125","18.0.0-nightly.20220127","18.0.0-nightly.20220128","18.0.0-nightly.20220131","18.0.0-nightly.20220201","19.0.0-nightly.20220202","19.0.0-nightly.20220203","19.0.0-nightly.20220204","19.0.0-nightly.20220207","19.0.0-nightly.20220208","19.0.0-nightly.20220209"],"100.0.4894.0":["18.0.0-beta.1","18.0.0-beta.2","18.0.0-beta.3","18.0.0-beta.4","18.0.0-beta.5","18.0.0-beta.6","19.0.0-nightly.20220308","19.0.0-nightly.20220309","19.0.0-nightly.20220310","19.0.0-nightly.20220311","19.0.0-nightly.20220314","19.0.0-nightly.20220315","19.0.0-nightly.20220316","19.0.0-nightly.20220317","19.0.0-nightly.20220318","19.0.0-nightly.20220321","19.0.0-nightly.20220322","19.0.0-nightly.20220323","19.0.0-nightly.20220324"],"100.0.4896.56":["18.0.0"],"100.0.4896.60":["18.0.1","18.0.2"],"100.0.4896.75":["18.0.3","18.0.4"],"100.0.4896.127":["18.1.0"],"100.0.4896.143":["18.2.0","18.2.1","18.2.2","18.2.3"],"100.0.4896.160":["18.2.4","18.3.0","18.3.1","18.3.2","18.3.3","18.3.4","18.3.5","18.3.6","18.3.7","18.3.8","18.3.9","18.3.11","18.3.12","18.3.13","18.3.14","18.3.15"],"102.0.4962.3":["19.0.0-alpha.1","19.0.0-nightly.20220328","19.0.0-nightly.20220329","20.0.0-nightly.20220330"],"102.0.4971.0":["19.0.0-alpha.2","19.0.0-alpha.3","20.0.0-nightly.20220411"],"102.0.4989.0":["19.0.0-alpha.4","19.0.0-alpha.5","20.0.0-nightly.20220414","20.0.0-nightly.20220415","20.0.0-nightly.20220418","20.0.0-nightly.20220419","20.0.0-nightly.20220420","20.0.0-nightly.20220421"],"102.0.4999.0":["19.0.0-beta.1","19.0.0-beta.2","19.0.0-beta.3","20.0.0-nightly.20220425","20.0.0-nightly.20220426","20.0.0-nightly.20220427","20.0.0-nightly.20220428","20.0.0-nightly.20220429","20.0.0-nightly.20220502","20.0.0-nightly.20220503","20.0.0-nightly.20220504","20.0.0-nightly.20220505","20.0.0-nightly.20220506","20.0.0-nightly.20220509","20.0.0-nightly.20220511","20.0.0-nightly.20220512","20.0.0-nightly.20220513","20.0.0-nightly.20220516","20.0.0-nightly.20220517"],"102.0.5005.27":["19.0.0-beta.4"],"102.0.5005.40":["19.0.0-beta.5","19.0.0-beta.6","19.0.0-beta.7"],"102.0.5005.49":["19.0.0-beta.8"],"102.0.4961.0":["19.0.0-nightly.20220325"],"102.0.5005.61":["19.0.0","19.0.1"],"102.0.5005.63":["19.0.2","19.0.3","19.0.4"],"102.0.5005.115":["19.0.5","19.0.6"],"102.0.5005.134":["19.0.7"],"102.0.5005.148":["19.0.8"],"102.0.5005.167":["19.0.9","19.0.10","19.0.11","19.0.12","19.0.13","19.0.14","19.0.15","19.0.16","19.0.17","19.1.0","19.1.1","19.1.2","19.1.3","19.1.4","19.1.5","19.1.6","19.1.7","19.1.8","19.1.9"],"103.0.5044.0":["20.0.0-alpha.1","20.0.0-nightly.20220518","20.0.0-nightly.20220519","20.0.0-nightly.20220520","20.0.0-nightly.20220523","20.0.0-nightly.20220524","21.0.0-nightly.20220526","21.0.0-nightly.20220527","21.0.0-nightly.20220530","21.0.0-nightly.20220531"],"104.0.5073.0":["20.0.0-alpha.2","20.0.0-alpha.3","20.0.0-alpha.4","20.0.0-alpha.5","20.0.0-alpha.6","20.0.0-alpha.7","20.0.0-beta.1","20.0.0-beta.2","20.0.0-beta.3","20.0.0-beta.4","20.0.0-beta.5","20.0.0-beta.6","20.0.0-beta.7","20.0.0-beta.8","21.0.0-nightly.20220602","21.0.0-nightly.20220603","21.0.0-nightly.20220606","21.0.0-nightly.20220607","21.0.0-nightly.20220608","21.0.0-nightly.20220609","21.0.0-nightly.20220610","21.0.0-nightly.20220613","21.0.0-nightly.20220614","21.0.0-nightly.20220615","21.0.0-nightly.20220616","21.0.0-nightly.20220617","21.0.0-nightly.20220620","21.0.0-nightly.20220621","21.0.0-nightly.20220622","21.0.0-nightly.20220623","21.0.0-nightly.20220624","21.0.0-nightly.20220627"],"104.0.5112.39":["20.0.0-beta.9"],"104.0.5112.48":["20.0.0-beta.10","20.0.0-beta.11","20.0.0-beta.12"],"104.0.5112.57":["20.0.0-beta.13"],"104.0.5112.65":["20.0.0"],"104.0.5112.81":["20.0.1","20.0.2","20.0.3"],"104.0.5112.102":["20.1.0","20.1.1"],"104.0.5112.114":["20.1.2","20.1.3","20.1.4"],"104.0.5112.124":["20.2.0","20.3.0","20.3.1","20.3.2","20.3.3","20.3.4","20.3.5","20.3.6","20.3.7","20.3.8","20.3.9","20.3.10","20.3.11","20.3.12"],"105.0.5187.0":["21.0.0-alpha.1","21.0.0-alpha.2","21.0.0-alpha.3","21.0.0-alpha.4","21.0.0-alpha.5","21.0.0-nightly.20220720","21.0.0-nightly.20220721","21.0.0-nightly.20220722","21.0.0-nightly.20220725","21.0.0-nightly.20220726","21.0.0-nightly.20220727","21.0.0-nightly.20220728","21.0.0-nightly.20220801","21.0.0-nightly.20220802","22.0.0-nightly.20220808","22.0.0-nightly.20220809","22.0.0-nightly.20220810","22.0.0-nightly.20220811","22.0.0-nightly.20220812","22.0.0-nightly.20220815","22.0.0-nightly.20220816","22.0.0-nightly.20220817"],"106.0.5216.0":["21.0.0-alpha.6","21.0.0-beta.1","21.0.0-beta.2","21.0.0-beta.3","21.0.0-beta.4","21.0.0-beta.5","22.0.0-nightly.20220822","22.0.0-nightly.20220823","22.0.0-nightly.20220824","22.0.0-nightly.20220825","22.0.0-nightly.20220829","22.0.0-nightly.20220830","22.0.0-nightly.20220831","22.0.0-nightly.20220901","22.0.0-nightly.20220902","22.0.0-nightly.20220905"],"106.0.5249.40":["21.0.0-beta.6","21.0.0-beta.7","21.0.0-beta.8"],"105.0.5129.0":["21.0.0-nightly.20220628","21.0.0-nightly.20220629","21.0.0-nightly.20220630","21.0.0-nightly.20220701","21.0.0-nightly.20220704","21.0.0-nightly.20220705","21.0.0-nightly.20220706","21.0.0-nightly.20220707","21.0.0-nightly.20220708","21.0.0-nightly.20220711","21.0.0-nightly.20220712","21.0.0-nightly.20220713"],"105.0.5173.0":["21.0.0-nightly.20220715","21.0.0-nightly.20220718","21.0.0-nightly.20220719"],"106.0.5249.51":["21.0.0"],"106.0.5249.61":["21.0.1"],"106.0.5249.91":["21.1.0"],"106.0.5249.103":["21.1.1"],"106.0.5249.119":["21.2.0"],"106.0.5249.165":["21.2.1"],"106.0.5249.168":["21.2.2","21.2.3"],"106.0.5249.181":["21.3.0","21.3.1"],"106.0.5249.199":["21.3.3","21.3.4","21.3.5","21.4.0","21.4.1","21.4.2","21.4.3","21.4.4"],"107.0.5286.0":["22.0.0-alpha.1","22.0.0-nightly.20220909","22.0.0-nightly.20220912","22.0.0-nightly.20220913","22.0.0-nightly.20220914","22.0.0-nightly.20220915","22.0.0-nightly.20220916","22.0.0-nightly.20220919","22.0.0-nightly.20220920","22.0.0-nightly.20220921","22.0.0-nightly.20220922","22.0.0-nightly.20220923","22.0.0-nightly.20220926","22.0.0-nightly.20220927","22.0.0-nightly.20220928","23.0.0-nightly.20220929","23.0.0-nightly.20220930","23.0.0-nightly.20221003"],"108.0.5329.0":["22.0.0-alpha.3","22.0.0-alpha.4","22.0.0-alpha.5","22.0.0-alpha.6","23.0.0-nightly.20221004","23.0.0-nightly.20221005","23.0.0-nightly.20221006","23.0.0-nightly.20221007","23.0.0-nightly.20221010","23.0.0-nightly.20221011","23.0.0-nightly.20221012","23.0.0-nightly.20221013","23.0.0-nightly.20221014","23.0.0-nightly.20221017"],"108.0.5355.0":["22.0.0-alpha.7","23.0.0-nightly.20221018","23.0.0-nightly.20221019","23.0.0-nightly.20221020","23.0.0-nightly.20221021","23.0.0-nightly.20221024","23.0.0-nightly.20221026"],"108.0.5359.10":["22.0.0-alpha.8","22.0.0-beta.1","22.0.0-beta.2","22.0.0-beta.3"],"108.0.5359.29":["22.0.0-beta.4"],"108.0.5359.40":["22.0.0-beta.5","22.0.0-beta.6"],"108.0.5359.48":["22.0.0-beta.7","22.0.0-beta.8"],"107.0.5274.0":["22.0.0-nightly.20220908"],"108.0.5359.62":["22.0.0"],"108.0.5359.125":["22.0.1"],"108.0.5359.179":["22.0.2","22.0.3","22.1.0"],"108.0.5359.215":["22.2.0","22.2.1","22.3.0","22.3.1","22.3.2","22.3.3","22.3.4","22.3.5","22.3.6","22.3.7","22.3.8","22.3.9","22.3.10","22.3.11","22.3.12","22.3.13","22.3.14","22.3.15","22.3.16","22.3.17","22.3.18","22.3.20","22.3.21","22.3.22","22.3.23","22.3.24","22.3.25","22.3.26","22.3.27"],"110.0.5415.0":["23.0.0-alpha.1","23.0.0-nightly.20221118","23.0.0-nightly.20221121","23.0.0-nightly.20221122","23.0.0-nightly.20221123","23.0.0-nightly.20221124","23.0.0-nightly.20221125","23.0.0-nightly.20221128","23.0.0-nightly.20221129","23.0.0-nightly.20221130","24.0.0-nightly.20221201","24.0.0-nightly.20221202","24.0.0-nightly.20221205"],"110.0.5451.0":["23.0.0-alpha.2","23.0.0-alpha.3","24.0.0-nightly.20221206","24.0.0-nightly.20221207","24.0.0-nightly.20221208","24.0.0-nightly.20221213","24.0.0-nightly.20221214","24.0.0-nightly.20221215","24.0.0-nightly.20221216"],"110.0.5478.5":["23.0.0-beta.1","23.0.0-beta.2","23.0.0-beta.3"],"110.0.5481.30":["23.0.0-beta.4"],"110.0.5481.38":["23.0.0-beta.5"],"110.0.5481.52":["23.0.0-beta.6","23.0.0-beta.8"],"109.0.5382.0":["23.0.0-nightly.20221027","23.0.0-nightly.20221028","23.0.0-nightly.20221031","23.0.0-nightly.20221101","23.0.0-nightly.20221102","23.0.0-nightly.20221103","23.0.0-nightly.20221104","23.0.0-nightly.20221107","23.0.0-nightly.20221108","23.0.0-nightly.20221109","23.0.0-nightly.20221110","23.0.0-nightly.20221111","23.0.0-nightly.20221114","23.0.0-nightly.20221115","23.0.0-nightly.20221116","23.0.0-nightly.20221117"],"110.0.5481.77":["23.0.0"],"110.0.5481.100":["23.1.0"],"110.0.5481.104":["23.1.1"],"110.0.5481.177":["23.1.2"],"110.0.5481.179":["23.1.3"],"110.0.5481.192":["23.1.4","23.2.0"],"110.0.5481.208":["23.2.1","23.2.2","23.2.3","23.2.4","23.3.0","23.3.1","23.3.2","23.3.3","23.3.4","23.3.5","23.3.6","23.3.7","23.3.8","23.3.9","23.3.10","23.3.11","23.3.12","23.3.13"],"111.0.5560.0":["24.0.0-alpha.1","24.0.0-alpha.2","24.0.0-alpha.3","24.0.0-alpha.4","24.0.0-alpha.5","24.0.0-alpha.6","24.0.0-alpha.7","24.0.0-nightly.20230203","24.0.0-nightly.20230206","24.0.0-nightly.20230207","24.0.0-nightly.20230208","24.0.0-nightly.20230209","25.0.0-nightly.20230210","25.0.0-nightly.20230214","25.0.0-nightly.20230215","25.0.0-nightly.20230216","25.0.0-nightly.20230217","25.0.0-nightly.20230220","25.0.0-nightly.20230221","25.0.0-nightly.20230222","25.0.0-nightly.20230223","25.0.0-nightly.20230224","25.0.0-nightly.20230227","25.0.0-nightly.20230228","25.0.0-nightly.20230301","25.0.0-nightly.20230302","25.0.0-nightly.20230303","25.0.0-nightly.20230306","25.0.0-nightly.20230307","25.0.0-nightly.20230308","25.0.0-nightly.20230309","25.0.0-nightly.20230310"],"111.0.5563.50":["24.0.0-beta.1","24.0.0-beta.2"],"112.0.5615.20":["24.0.0-beta.3","24.0.0-beta.4"],"112.0.5615.29":["24.0.0-beta.5"],"112.0.5615.39":["24.0.0-beta.6","24.0.0-beta.7"],"111.0.5518.0":["24.0.0-nightly.20230109","24.0.0-nightly.20230110","24.0.0-nightly.20230111","24.0.0-nightly.20230112","24.0.0-nightly.20230113","24.0.0-nightly.20230116","24.0.0-nightly.20230117","24.0.0-nightly.20230118","24.0.0-nightly.20230119","24.0.0-nightly.20230120","24.0.0-nightly.20230123","24.0.0-nightly.20230124","24.0.0-nightly.20230125","24.0.0-nightly.20230126","24.0.0-nightly.20230127","24.0.0-nightly.20230131","24.0.0-nightly.20230201","24.0.0-nightly.20230202"],"112.0.5615.49":["24.0.0"],"112.0.5615.50":["24.1.0","24.1.1"],"112.0.5615.87":["24.1.2"],"112.0.5615.165":["24.1.3","24.2.0","24.3.0"],"112.0.5615.183":["24.3.1"],"112.0.5615.204":["24.4.0","24.4.1","24.5.0","24.5.1","24.6.0","24.6.1","24.6.2","24.6.3","24.6.4","24.6.5","24.7.0","24.7.1","24.8.0","24.8.1","24.8.2","24.8.3","24.8.4","24.8.5","24.8.6","24.8.7","24.8.8"],"114.0.5694.0":["25.0.0-alpha.1","25.0.0-alpha.2","25.0.0-nightly.20230405","26.0.0-nightly.20230406","26.0.0-nightly.20230407","26.0.0-nightly.20230410","26.0.0-nightly.20230411"],"114.0.5710.0":["25.0.0-alpha.3","25.0.0-alpha.4","26.0.0-nightly.20230413","26.0.0-nightly.20230414","26.0.0-nightly.20230417"],"114.0.5719.0":["25.0.0-alpha.5","25.0.0-alpha.6","25.0.0-beta.1","25.0.0-beta.2","25.0.0-beta.3","26.0.0-nightly.20230421","26.0.0-nightly.20230424","26.0.0-nightly.20230425","26.0.0-nightly.20230426","26.0.0-nightly.20230427","26.0.0-nightly.20230428","26.0.0-nightly.20230501","26.0.0-nightly.20230502","26.0.0-nightly.20230503","26.0.0-nightly.20230504","26.0.0-nightly.20230505","26.0.0-nightly.20230508","26.0.0-nightly.20230509","26.0.0-nightly.20230510"],"114.0.5735.16":["25.0.0-beta.4","25.0.0-beta.5","25.0.0-beta.6","25.0.0-beta.7"],"114.0.5735.35":["25.0.0-beta.8"],"114.0.5735.45":["25.0.0-beta.9","25.0.0","25.0.1"],"113.0.5636.0":["25.0.0-nightly.20230314"],"113.0.5651.0":["25.0.0-nightly.20230315"],"113.0.5653.0":["25.0.0-nightly.20230317"],"113.0.5660.0":["25.0.0-nightly.20230320"],"113.0.5664.0":["25.0.0-nightly.20230321"],"113.0.5666.0":["25.0.0-nightly.20230322"],"113.0.5668.0":["25.0.0-nightly.20230323"],"113.0.5670.0":["25.0.0-nightly.20230324","25.0.0-nightly.20230327","25.0.0-nightly.20230328","25.0.0-nightly.20230329","25.0.0-nightly.20230330"],"114.0.5684.0":["25.0.0-nightly.20230331","25.0.0-nightly.20230403"],"114.0.5692.0":["25.0.0-nightly.20230404"],"114.0.5735.106":["25.1.0","25.1.1"],"114.0.5735.134":["25.2.0"],"114.0.5735.199":["25.3.0"],"114.0.5735.243":["25.3.1"],"114.0.5735.248":["25.3.2","25.4.0"],"114.0.5735.289":["25.5.0","25.6.0","25.7.0","25.8.0","25.8.1","25.8.2","25.8.3","25.8.4","25.9.0","25.9.1","25.9.2","25.9.3","25.9.4","25.9.5","25.9.6","25.9.7","25.9.8"],"116.0.5791.0":["26.0.0-alpha.1","26.0.0-alpha.2","26.0.0-alpha.3","26.0.0-alpha.4","26.0.0-alpha.5","26.0.0-nightly.20230526","26.0.0-nightly.20230529","26.0.0-nightly.20230530","26.0.0-nightly.20230531","27.0.0-nightly.20230601","27.0.0-nightly.20230602","27.0.0-nightly.20230605","27.0.0-nightly.20230606","27.0.0-nightly.20230607","27.0.0-nightly.20230609"],"116.0.5815.0":["26.0.0-alpha.6","27.0.0-nightly.20230612","27.0.0-nightly.20230613"],"116.0.5831.0":["26.0.0-alpha.7","27.0.0-nightly.20230615"],"116.0.5845.0":["26.0.0-alpha.8","26.0.0-beta.1","27.0.0-nightly.20230622","27.0.0-nightly.20230623","27.0.0-nightly.20230626","27.0.0-nightly.20230627","27.0.0-nightly.20230628","27.0.0-nightly.20230629","27.0.0-nightly.20230630"],"116.0.5845.14":["26.0.0-beta.2","26.0.0-beta.3","26.0.0-beta.4","26.0.0-beta.5","26.0.0-beta.6","26.0.0-beta.7"],"116.0.5845.42":["26.0.0-beta.8","26.0.0-beta.9"],"116.0.5845.49":["26.0.0-beta.10","26.0.0-beta.11"],"116.0.5845.62":["26.0.0-beta.12"],"114.0.5708.0":["26.0.0-nightly.20230412"],"114.0.5715.0":["26.0.0-nightly.20230418"],"115.0.5760.0":["26.0.0-nightly.20230511","26.0.0-nightly.20230512","26.0.0-nightly.20230515","26.0.0-nightly.20230516","26.0.0-nightly.20230517","26.0.0-nightly.20230518","26.0.0-nightly.20230519","26.0.0-nightly.20230522","26.0.0-nightly.20230523"],"115.0.5786.0":["26.0.0-nightly.20230524"],"115.0.5790.0":["26.0.0-nightly.20230525"],"116.0.5845.82":["26.0.0"],"116.0.5845.97":["26.1.0"],"116.0.5845.179":["26.2.0"],"116.0.5845.188":["26.2.1"],"116.0.5845.190":["26.2.2","26.2.3","26.2.4"],"116.0.5845.228":["26.3.0","26.4.0","26.4.1","26.4.2","26.4.3","26.5.0","26.6.0","26.6.1","26.6.2","26.6.3","26.6.4","26.6.5","26.6.6","26.6.7","26.6.8","26.6.9","26.6.10"],"118.0.5949.0":["27.0.0-alpha.1","27.0.0-alpha.2","27.0.0-alpha.3","27.0.0-alpha.4","27.0.0-alpha.5","27.0.0-alpha.6","27.0.0-nightly.20230816","28.0.0-nightly.20230817","28.0.0-nightly.20230818","28.0.0-nightly.20230821","28.0.0-nightly.20230822","28.0.0-nightly.20230823","28.0.0-nightly.20230824","28.0.0-nightly.20230825","28.0.0-nightly.20230828","28.0.0-nightly.20230829","28.0.0-nightly.20230830","28.0.0-nightly.20230831"],"118.0.5993.5":["27.0.0-beta.1","27.0.0-beta.2","27.0.0-beta.3"],"118.0.5993.11":["27.0.0-beta.4"],"118.0.5993.18":["27.0.0-beta.5","27.0.0-beta.6","27.0.0-beta.7","27.0.0-beta.8","27.0.0-beta.9"],"116.0.5829.0":["27.0.0-nightly.20230614"],"116.0.5833.0":["27.0.0-nightly.20230616","27.0.0-nightly.20230619","27.0.0-nightly.20230620","27.0.0-nightly.20230621"],"117.0.5852.0":["27.0.0-nightly.20230703","27.0.0-nightly.20230704","27.0.0-nightly.20230705","27.0.0-nightly.20230706","27.0.0-nightly.20230707","27.0.0-nightly.20230710","27.0.0-nightly.20230711","27.0.0-nightly.20230712","27.0.0-nightly.20230713","27.0.0-nightly.20230714"],"117.0.5884.1":["27.0.0-nightly.20230717","27.0.0-nightly.20230718"],"117.0.5892.0":["27.0.0-nightly.20230719"],"117.0.5897.0":["27.0.0-nightly.20230720","27.0.0-nightly.20230721","27.0.0-nightly.20230724","27.0.0-nightly.20230725","27.0.0-nightly.20230726","27.0.0-nightly.20230727","27.0.0-nightly.20230728","27.0.0-nightly.20230731"],"117.0.5911.0":["27.0.0-nightly.20230801","27.0.0-nightly.20230802","27.0.0-nightly.20230803"],"117.0.5921.0":["27.0.0-nightly.20230804","27.0.0-nightly.20230807","27.0.0-nightly.20230808","27.0.0-nightly.20230814","27.0.0-nightly.20230815"],"118.0.5993.54":["27.0.0"],"118.0.5993.89":["27.0.1","27.0.2"],"118.0.5993.120":["27.0.3"],"118.0.5993.129":["27.0.4"],"118.0.5993.144":["27.1.0","27.1.2"],"118.0.5993.159":["27.1.3","27.2.0","27.2.1","27.2.2","27.2.3","27.2.4","27.3.0","27.3.1","27.3.2","27.3.3","27.3.4","27.3.5","27.3.6","27.3.7","27.3.8","27.3.9","27.3.10","27.3.11"],"119.0.6045.0":["28.0.0-alpha.1","28.0.0-alpha.2","28.0.0-nightly.20231006","28.0.0-nightly.20231009","28.0.0-nightly.20231010","28.0.0-nightly.20231011","29.0.0-nightly.20231012","29.0.0-nightly.20231013","29.0.0-nightly.20231016","29.0.0-nightly.20231017","29.0.0-nightly.20231018","29.0.0-nightly.20231019","29.0.0-nightly.20231020","29.0.0-nightly.20231023","29.0.0-nightly.20231024"],"119.0.6045.21":["28.0.0-alpha.3","28.0.0-alpha.4"],"119.0.6045.33":["28.0.0-alpha.5","28.0.0-alpha.6","28.0.0-alpha.7","28.0.0-beta.1"],"120.0.6099.0":["28.0.0-beta.2"],"120.0.6099.5":["28.0.0-beta.3","28.0.0-beta.4"],"120.0.6099.18":["28.0.0-beta.5","28.0.0-beta.6","28.0.0-beta.7","28.0.0-beta.8","28.0.0-beta.9","28.0.0-beta.10"],"120.0.6099.35":["28.0.0-beta.11"],"118.0.5991.0":["28.0.0-nightly.20230906"],"118.0.5993.0":["28.0.0-nightly.20230907","28.0.0-nightly.20230908","28.0.0-nightly.20230911","28.0.0-nightly.20230912","28.0.0-nightly.20230913","28.0.0-nightly.20230914","28.0.0-nightly.20230915"],"119.0.6006.0":["28.0.0-nightly.20230919"],"119.0.6017.0":["28.0.0-nightly.20230920"],"119.0.6019.2":["28.0.0-nightly.20230921","28.0.0-nightly.20230925","28.0.0-nightly.20230926","28.0.0-nightly.20230927","28.0.0-nightly.20230928"],"119.0.6029.0":["28.0.0-nightly.20230929","28.0.0-nightly.20231002"],"119.0.6043.0":["28.0.0-nightly.20231003","28.0.0-nightly.20231004","28.0.0-nightly.20231005"],"120.0.6099.56":["28.0.0"],"120.0.6099.109":["28.1.0","28.1.1"],"120.0.6099.199":["28.1.2","28.1.3"],"120.0.6099.216":["28.1.4"],"120.0.6099.227":["28.2.0"],"120.0.6099.268":["28.2.1"],"120.0.6099.276":["28.2.2"],"120.0.6099.283":["28.2.3"],"120.0.6099.291":["28.2.4","28.2.5","28.2.6","28.2.7","28.2.8","28.2.9","28.2.10","28.3.0","28.3.1"],"121.0.6147.0":["29.0.0-alpha.1","29.0.0-alpha.2","29.0.0-alpha.3","29.0.0-nightly.20231129","29.0.0-nightly.20231130","29.0.0-nightly.20231201","29.0.0-nightly.20231204","29.0.0-nightly.20231205","29.0.0-nightly.20231206","30.0.0-nightly.20231207","30.0.0-nightly.20231208","30.0.0-nightly.20231211"],"121.0.6159.0":["29.0.0-alpha.4","29.0.0-alpha.5","29.0.0-alpha.6","29.0.0-alpha.7","30.0.0-nightly.20231212","30.0.0-nightly.20231213","30.0.0-nightly.20231214","30.0.0-nightly.20231215","30.0.0-nightly.20231218","30.0.0-nightly.20240102"],"122.0.6194.0":["29.0.0-alpha.8","30.0.0-nightly.20240103","30.0.0-nightly.20240104","30.0.0-nightly.20240105","30.0.0-nightly.20240108","30.0.0-nightly.20240109","30.0.0-nightly.20240110"],"122.0.6236.2":["29.0.0-alpha.9","29.0.0-alpha.10","29.0.0-alpha.11","29.0.0-beta.1","29.0.0-beta.2","30.0.0-nightly.20240111","30.0.0-nightly.20240112","30.0.0-nightly.20240115","30.0.0-nightly.20240116","30.0.0-nightly.20240117","30.0.0-nightly.20240118","30.0.0-nightly.20240119","30.0.0-nightly.20240122","30.0.0-nightly.20240123","30.0.0-nightly.20240124","30.0.0-nightly.20240125"],"122.0.6261.6":["29.0.0-beta.3","29.0.0-beta.4"],"122.0.6261.18":["29.0.0-beta.5","29.0.0-beta.6","29.0.0-beta.7","29.0.0-beta.8","29.0.0-beta.9","29.0.0-beta.10","29.0.0-beta.11"],"122.0.6261.29":["29.0.0-beta.12"],"120.0.6078.0":["29.0.0-nightly.20231025","29.0.0-nightly.20231026","29.0.0-nightly.20231027","29.0.0-nightly.20231030","29.0.0-nightly.20231031","29.0.0-nightly.20231101"],"121.0.6100.0":["29.0.0-nightly.20231102","29.0.0-nightly.20231103"],"121.0.6104.0":["29.0.0-nightly.20231106"],"121.0.6110.0":["29.0.0-nightly.20231107","29.0.0-nightly.20231108","29.0.0-nightly.20231109","29.0.0-nightly.20231110","29.0.0-nightly.20231113","29.0.0-nightly.20231114"],"121.0.6116.0":["29.0.0-nightly.20231115","29.0.0-nightly.20231116","29.0.0-nightly.20231117","29.0.0-nightly.20231120","29.0.0-nightly.20231121","29.0.0-nightly.20231122","29.0.0-nightly.20231123","29.0.0-nightly.20231124","29.0.0-nightly.20231127","29.0.0-nightly.20231128"],"122.0.6261.39":["29.0.0"],"122.0.6261.57":["29.0.1"],"122.0.6261.70":["29.1.0"],"122.0.6261.111":["29.1.1"],"122.0.6261.112":["29.1.2","29.1.3"],"122.0.6261.129":["29.1.4"],"122.0.6261.130":["29.1.5"],"122.0.6261.139":["29.1.6"],"122.0.6261.156":["29.2.0","29.3.0","29.3.1","29.3.2","29.3.3","29.4.0"],"123.0.6296.0":["30.0.0-alpha.1","30.0.0-nightly.20240215","30.0.0-nightly.20240216","30.0.0-nightly.20240219","30.0.0-nightly.20240220","30.0.0-nightly.20240221"],"123.0.6312.5":["30.0.0-alpha.2","31.0.0-nightly.20240222","31.0.0-nightly.20240223","31.0.0-nightly.20240226","31.0.0-nightly.20240227","31.0.0-nightly.20240228"],"124.0.6323.0":["30.0.0-alpha.3","30.0.0-alpha.4","31.0.0-nightly.20240229","31.0.0-nightly.20240301","31.0.0-nightly.20240304","31.0.0-nightly.20240305"],"124.0.6331.0":["30.0.0-alpha.5","30.0.0-alpha.6","31.0.0-nightly.20240306","31.0.0-nightly.20240307","31.0.0-nightly.20240308","31.0.0-nightly.20240311"],"124.0.6353.0":["30.0.0-alpha.7","31.0.0-nightly.20240313","31.0.0-nightly.20240314","31.0.0-nightly.20240315"],"124.0.6359.0":["30.0.0-beta.1","30.0.0-beta.2","31.0.0-nightly.20240318","31.0.0-nightly.20240319","31.0.0-nightly.20240320","31.0.0-nightly.20240321","31.0.0-nightly.20240325","31.0.0-nightly.20240327","31.0.0-nightly.20240328","31.0.0-nightly.20240329","31.0.0-nightly.20240401","31.0.0-nightly.20240402","31.0.0-nightly.20240404","31.0.0-nightly.20240405","31.0.0-nightly.20240408","31.0.0-nightly.20240409","31.0.0-nightly.20240410","31.0.0-nightly.20240411","31.0.0-nightly.20240412"],"124.0.6367.9":["30.0.0-beta.3","30.0.0-beta.4","30.0.0-beta.5"],"124.0.6367.18":["30.0.0-beta.6"],"124.0.6367.29":["30.0.0-beta.7","30.0.0-beta.8"],"123.0.6264.0":["30.0.0-nightly.20240126","30.0.0-nightly.20240129","30.0.0-nightly.20240130","30.0.0-nightly.20240131"],"123.0.6272.0":["30.0.0-nightly.20240201","30.0.0-nightly.20240202","30.0.0-nightly.20240205","30.0.0-nightly.20240206","30.0.0-nightly.20240207","30.0.0-nightly.20240208","30.0.0-nightly.20240209","30.0.0-nightly.20240212","30.0.0-nightly.20240213","30.0.0-nightly.20240214"],"124.0.6367.49":["30.0.0"],"124.0.6367.60":["30.0.1"],"124.0.6367.91":["30.0.2"],"124.0.6367.119":["30.0.3"],"124.0.6367.201":["30.0.4"],"124.0.6367.207":["30.0.5","30.0.6"],"125.0.6412.0":["31.0.0-alpha.1","31.0.0-alpha.2","31.0.0-alpha.3","31.0.0-alpha.4","31.0.0-alpha.5","32.0.0-nightly.20240418","32.0.0-nightly.20240419","32.0.0-nightly.20240422","32.0.0-nightly.20240423","32.0.0-nightly.20240424","32.0.0-nightly.20240425","32.0.0-nightly.20240426","32.0.0-nightly.20240429","32.0.0-nightly.20240430","32.0.0-nightly.20240501","32.0.0-nightly.20240503","32.0.0-nightly.20240506","32.0.0-nightly.20240507","32.0.0-nightly.20240508","32.0.0-nightly.20240509","32.0.0-nightly.20240510"],"126.0.6445.0":["31.0.0-beta.1","31.0.0-beta.2","31.0.0-beta.3","31.0.0-beta.4","31.0.0-beta.5","32.0.0-nightly.20240513","32.0.0-nightly.20240514","32.0.0-nightly.20240515","32.0.0-nightly.20240516","32.0.0-nightly.20240517","32.0.0-nightly.20240520","32.0.0-nightly.20240521"],"124.0.6351.0":["31.0.0-nightly.20240312"]} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.js index aca701645203f1..e1e1d0af0ebcdd 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.js +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.js @@ -2096,6 +2096,7 @@ module.exports = { "27.3.8": "118.0.5993.159", "27.3.9": "118.0.5993.159", "27.3.10": "118.0.5993.159", + "27.3.11": "118.0.5993.159", "28.0.0-alpha.1": "119.0.6045.0", "28.0.0-alpha.2": "119.0.6045.0", "28.0.0-alpha.3": "119.0.6045.21", @@ -2167,6 +2168,7 @@ module.exports = { "28.2.9": "120.0.6099.291", "28.2.10": "120.0.6099.291", "28.3.0": "120.0.6099.291", + "28.3.1": "120.0.6099.291", "29.0.0-alpha.1": "121.0.6147.0", "29.0.0-alpha.2": "121.0.6147.0", "29.0.0-alpha.3": "121.0.6147.0", @@ -2241,6 +2243,10 @@ module.exports = { "29.1.6": "122.0.6261.139", "29.2.0": "122.0.6261.156", "29.3.0": "122.0.6261.156", + "29.3.1": "122.0.6261.156", + "29.3.2": "122.0.6261.156", + "29.3.3": "122.0.6261.156", + "29.4.0": "122.0.6261.156", "30.0.0-alpha.1": "123.0.6296.0", "30.0.0-alpha.2": "123.0.6312.5", "30.0.0-alpha.3": "124.0.6323.0", @@ -2301,6 +2307,23 @@ module.exports = { "30.0.0-nightly.20240219": "123.0.6296.0", "30.0.0-nightly.20240220": "123.0.6296.0", "30.0.0-nightly.20240221": "123.0.6296.0", + "30.0.0": "124.0.6367.49", + "30.0.1": "124.0.6367.60", + "30.0.2": "124.0.6367.91", + "30.0.3": "124.0.6367.119", + "30.0.4": "124.0.6367.201", + "30.0.5": "124.0.6367.207", + "30.0.6": "124.0.6367.207", + "31.0.0-alpha.1": "125.0.6412.0", + "31.0.0-alpha.2": "125.0.6412.0", + "31.0.0-alpha.3": "125.0.6412.0", + "31.0.0-alpha.4": "125.0.6412.0", + "31.0.0-alpha.5": "125.0.6412.0", + "31.0.0-beta.1": "126.0.6445.0", + "31.0.0-beta.2": "126.0.6445.0", + "31.0.0-beta.3": "126.0.6445.0", + "31.0.0-beta.4": "126.0.6445.0", + "31.0.0-beta.5": "126.0.6445.0", "31.0.0-nightly.20240222": "123.0.6312.5", "31.0.0-nightly.20240223": "123.0.6312.5", "31.0.0-nightly.20240226": "123.0.6312.5", @@ -2334,5 +2357,28 @@ module.exports = { "31.0.0-nightly.20240409": "124.0.6359.0", "31.0.0-nightly.20240410": "124.0.6359.0", "31.0.0-nightly.20240411": "124.0.6359.0", - "31.0.0-nightly.20240412": "124.0.6359.0" + "31.0.0-nightly.20240412": "124.0.6359.0", + "32.0.0-nightly.20240418": "125.0.6412.0", + "32.0.0-nightly.20240419": "125.0.6412.0", + "32.0.0-nightly.20240422": "125.0.6412.0", + "32.0.0-nightly.20240423": "125.0.6412.0", + "32.0.0-nightly.20240424": "125.0.6412.0", + "32.0.0-nightly.20240425": "125.0.6412.0", + "32.0.0-nightly.20240426": "125.0.6412.0", + "32.0.0-nightly.20240429": "125.0.6412.0", + "32.0.0-nightly.20240430": "125.0.6412.0", + "32.0.0-nightly.20240501": "125.0.6412.0", + "32.0.0-nightly.20240503": "125.0.6412.0", + "32.0.0-nightly.20240506": "125.0.6412.0", + "32.0.0-nightly.20240507": "125.0.6412.0", + "32.0.0-nightly.20240508": "125.0.6412.0", + "32.0.0-nightly.20240509": "125.0.6412.0", + "32.0.0-nightly.20240510": "125.0.6412.0", + "32.0.0-nightly.20240513": "126.0.6445.0", + "32.0.0-nightly.20240514": "126.0.6445.0", + "32.0.0-nightly.20240515": "126.0.6445.0", + "32.0.0-nightly.20240516": "126.0.6445.0", + "32.0.0-nightly.20240517": "126.0.6445.0", + "32.0.0-nightly.20240520": "126.0.6445.0", + "32.0.0-nightly.20240521": "126.0.6445.0" }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json index ad39ad1ac99d05..defdc4a727ac30 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/full-versions.json @@ -1 +1 @@ -{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190123":"72.0.3626.52","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190912":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190922":"79.0.3919.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190928":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191103":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191126":"80.0.3954.0","9.0.0-nightly.20191128":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191205":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201002":"87.0.4268.0","12.0.0-nightly.20201007":"87.0.4268.0","12.0.0-nightly.20201009":"87.0.4268.0","12.0.0-nightly.20201012":"87.0.4268.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0-nightly.20220808":"105.0.5187.0","22.0.0-nightly.20220809":"105.0.5187.0","22.0.0-nightly.20220810":"105.0.5187.0","22.0.0-nightly.20220811":"105.0.5187.0","22.0.0-nightly.20220812":"105.0.5187.0","22.0.0-nightly.20220815":"105.0.5187.0","22.0.0-nightly.20220816":"105.0.5187.0","22.0.0-nightly.20220817":"105.0.5187.0","22.0.0-nightly.20220822":"106.0.5216.0","22.0.0-nightly.20220823":"106.0.5216.0","22.0.0-nightly.20220824":"106.0.5216.0","22.0.0-nightly.20220825":"106.0.5216.0","22.0.0-nightly.20220829":"106.0.5216.0","22.0.0-nightly.20220830":"106.0.5216.0","22.0.0-nightly.20220831":"106.0.5216.0","22.0.0-nightly.20220901":"106.0.5216.0","22.0.0-nightly.20220902":"106.0.5216.0","22.0.0-nightly.20220905":"106.0.5216.0","22.0.0-nightly.20220908":"107.0.5274.0","22.0.0-nightly.20220909":"107.0.5286.0","22.0.0-nightly.20220912":"107.0.5286.0","22.0.0-nightly.20220913":"107.0.5286.0","22.0.0-nightly.20220914":"107.0.5286.0","22.0.0-nightly.20220915":"107.0.5286.0","22.0.0-nightly.20220916":"107.0.5286.0","22.0.0-nightly.20220919":"107.0.5286.0","22.0.0-nightly.20220920":"107.0.5286.0","22.0.0-nightly.20220921":"107.0.5286.0","22.0.0-nightly.20220922":"107.0.5286.0","22.0.0-nightly.20220923":"107.0.5286.0","22.0.0-nightly.20220926":"107.0.5286.0","22.0.0-nightly.20220927":"107.0.5286.0","22.0.0-nightly.20220928":"107.0.5286.0","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","22.3.12":"108.0.5359.215","22.3.13":"108.0.5359.215","22.3.14":"108.0.5359.215","22.3.15":"108.0.5359.215","22.3.16":"108.0.5359.215","22.3.17":"108.0.5359.215","22.3.18":"108.0.5359.215","22.3.20":"108.0.5359.215","22.3.21":"108.0.5359.215","22.3.22":"108.0.5359.215","22.3.23":"108.0.5359.215","22.3.24":"108.0.5359.215","22.3.25":"108.0.5359.215","22.3.26":"108.0.5359.215","22.3.27":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0-nightly.20220929":"107.0.5286.0","23.0.0-nightly.20220930":"107.0.5286.0","23.0.0-nightly.20221003":"107.0.5286.0","23.0.0-nightly.20221004":"108.0.5329.0","23.0.0-nightly.20221005":"108.0.5329.0","23.0.0-nightly.20221006":"108.0.5329.0","23.0.0-nightly.20221007":"108.0.5329.0","23.0.0-nightly.20221010":"108.0.5329.0","23.0.0-nightly.20221011":"108.0.5329.0","23.0.0-nightly.20221012":"108.0.5329.0","23.0.0-nightly.20221013":"108.0.5329.0","23.0.0-nightly.20221014":"108.0.5329.0","23.0.0-nightly.20221017":"108.0.5329.0","23.0.0-nightly.20221018":"108.0.5355.0","23.0.0-nightly.20221019":"108.0.5355.0","23.0.0-nightly.20221020":"108.0.5355.0","23.0.0-nightly.20221021":"108.0.5355.0","23.0.0-nightly.20221024":"108.0.5355.0","23.0.0-nightly.20221026":"108.0.5355.0","23.0.0-nightly.20221027":"109.0.5382.0","23.0.0-nightly.20221028":"109.0.5382.0","23.0.0-nightly.20221031":"109.0.5382.0","23.0.0-nightly.20221101":"109.0.5382.0","23.0.0-nightly.20221102":"109.0.5382.0","23.0.0-nightly.20221103":"109.0.5382.0","23.0.0-nightly.20221104":"109.0.5382.0","23.0.0-nightly.20221107":"109.0.5382.0","23.0.0-nightly.20221108":"109.0.5382.0","23.0.0-nightly.20221109":"109.0.5382.0","23.0.0-nightly.20221110":"109.0.5382.0","23.0.0-nightly.20221111":"109.0.5382.0","23.0.0-nightly.20221114":"109.0.5382.0","23.0.0-nightly.20221115":"109.0.5382.0","23.0.0-nightly.20221116":"109.0.5382.0","23.0.0-nightly.20221117":"109.0.5382.0","23.0.0-nightly.20221118":"110.0.5415.0","23.0.0-nightly.20221121":"110.0.5415.0","23.0.0-nightly.20221122":"110.0.5415.0","23.0.0-nightly.20221123":"110.0.5415.0","23.0.0-nightly.20221124":"110.0.5415.0","23.0.0-nightly.20221125":"110.0.5415.0","23.0.0-nightly.20221128":"110.0.5415.0","23.0.0-nightly.20221129":"110.0.5415.0","23.0.0-nightly.20221130":"110.0.5415.0","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","23.3.5":"110.0.5481.208","23.3.6":"110.0.5481.208","23.3.7":"110.0.5481.208","23.3.8":"110.0.5481.208","23.3.9":"110.0.5481.208","23.3.10":"110.0.5481.208","23.3.11":"110.0.5481.208","23.3.12":"110.0.5481.208","23.3.13":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0-nightly.20221201":"110.0.5415.0","24.0.0-nightly.20221202":"110.0.5415.0","24.0.0-nightly.20221205":"110.0.5415.0","24.0.0-nightly.20221206":"110.0.5451.0","24.0.0-nightly.20221207":"110.0.5451.0","24.0.0-nightly.20221208":"110.0.5451.0","24.0.0-nightly.20221213":"110.0.5451.0","24.0.0-nightly.20221214":"110.0.5451.0","24.0.0-nightly.20221215":"110.0.5451.0","24.0.0-nightly.20221216":"110.0.5451.0","24.0.0-nightly.20230109":"111.0.5518.0","24.0.0-nightly.20230110":"111.0.5518.0","24.0.0-nightly.20230111":"111.0.5518.0","24.0.0-nightly.20230112":"111.0.5518.0","24.0.0-nightly.20230113":"111.0.5518.0","24.0.0-nightly.20230116":"111.0.5518.0","24.0.0-nightly.20230117":"111.0.5518.0","24.0.0-nightly.20230118":"111.0.5518.0","24.0.0-nightly.20230119":"111.0.5518.0","24.0.0-nightly.20230120":"111.0.5518.0","24.0.0-nightly.20230123":"111.0.5518.0","24.0.0-nightly.20230124":"111.0.5518.0","24.0.0-nightly.20230125":"111.0.5518.0","24.0.0-nightly.20230126":"111.0.5518.0","24.0.0-nightly.20230127":"111.0.5518.0","24.0.0-nightly.20230131":"111.0.5518.0","24.0.0-nightly.20230201":"111.0.5518.0","24.0.0-nightly.20230202":"111.0.5518.0","24.0.0-nightly.20230203":"111.0.5560.0","24.0.0-nightly.20230206":"111.0.5560.0","24.0.0-nightly.20230207":"111.0.5560.0","24.0.0-nightly.20230208":"111.0.5560.0","24.0.0-nightly.20230209":"111.0.5560.0","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","24.5.0":"112.0.5615.204","24.5.1":"112.0.5615.204","24.6.0":"112.0.5615.204","24.6.1":"112.0.5615.204","24.6.2":"112.0.5615.204","24.6.3":"112.0.5615.204","24.6.4":"112.0.5615.204","24.6.5":"112.0.5615.204","24.7.0":"112.0.5615.204","24.7.1":"112.0.5615.204","24.8.0":"112.0.5615.204","24.8.1":"112.0.5615.204","24.8.2":"112.0.5615.204","24.8.3":"112.0.5615.204","24.8.4":"112.0.5615.204","24.8.5":"112.0.5615.204","24.8.6":"112.0.5615.204","24.8.7":"112.0.5615.204","24.8.8":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0-nightly.20230210":"111.0.5560.0","25.0.0-nightly.20230214":"111.0.5560.0","25.0.0-nightly.20230215":"111.0.5560.0","25.0.0-nightly.20230216":"111.0.5560.0","25.0.0-nightly.20230217":"111.0.5560.0","25.0.0-nightly.20230220":"111.0.5560.0","25.0.0-nightly.20230221":"111.0.5560.0","25.0.0-nightly.20230222":"111.0.5560.0","25.0.0-nightly.20230223":"111.0.5560.0","25.0.0-nightly.20230224":"111.0.5560.0","25.0.0-nightly.20230227":"111.0.5560.0","25.0.0-nightly.20230228":"111.0.5560.0","25.0.0-nightly.20230301":"111.0.5560.0","25.0.0-nightly.20230302":"111.0.5560.0","25.0.0-nightly.20230303":"111.0.5560.0","25.0.0-nightly.20230306":"111.0.5560.0","25.0.0-nightly.20230307":"111.0.5560.0","25.0.0-nightly.20230308":"111.0.5560.0","25.0.0-nightly.20230309":"111.0.5560.0","25.0.0-nightly.20230310":"111.0.5560.0","25.0.0-nightly.20230314":"113.0.5636.0","25.0.0-nightly.20230315":"113.0.5651.0","25.0.0-nightly.20230317":"113.0.5653.0","25.0.0-nightly.20230320":"113.0.5660.0","25.0.0-nightly.20230321":"113.0.5664.0","25.0.0-nightly.20230322":"113.0.5666.0","25.0.0-nightly.20230323":"113.0.5668.0","25.0.0-nightly.20230324":"113.0.5670.0","25.0.0-nightly.20230327":"113.0.5670.0","25.0.0-nightly.20230328":"113.0.5670.0","25.0.0-nightly.20230329":"113.0.5670.0","25.0.0-nightly.20230330":"113.0.5670.0","25.0.0-nightly.20230331":"114.0.5684.0","25.0.0-nightly.20230403":"114.0.5684.0","25.0.0-nightly.20230404":"114.0.5692.0","25.0.0-nightly.20230405":"114.0.5694.0","25.0.0":"114.0.5735.45","25.0.1":"114.0.5735.45","25.1.0":"114.0.5735.106","25.1.1":"114.0.5735.106","25.2.0":"114.0.5735.134","25.3.0":"114.0.5735.199","25.3.1":"114.0.5735.243","25.3.2":"114.0.5735.248","25.4.0":"114.0.5735.248","25.5.0":"114.0.5735.289","25.6.0":"114.0.5735.289","25.7.0":"114.0.5735.289","25.8.0":"114.0.5735.289","25.8.1":"114.0.5735.289","25.8.2":"114.0.5735.289","25.8.3":"114.0.5735.289","25.8.4":"114.0.5735.289","25.9.0":"114.0.5735.289","25.9.1":"114.0.5735.289","25.9.2":"114.0.5735.289","25.9.3":"114.0.5735.289","25.9.4":"114.0.5735.289","25.9.5":"114.0.5735.289","25.9.6":"114.0.5735.289","25.9.7":"114.0.5735.289","25.9.8":"114.0.5735.289","26.0.0-alpha.1":"116.0.5791.0","26.0.0-alpha.2":"116.0.5791.0","26.0.0-alpha.3":"116.0.5791.0","26.0.0-alpha.4":"116.0.5791.0","26.0.0-alpha.5":"116.0.5791.0","26.0.0-alpha.6":"116.0.5815.0","26.0.0-alpha.7":"116.0.5831.0","26.0.0-alpha.8":"116.0.5845.0","26.0.0-beta.1":"116.0.5845.0","26.0.0-beta.2":"116.0.5845.14","26.0.0-beta.3":"116.0.5845.14","26.0.0-beta.4":"116.0.5845.14","26.0.0-beta.5":"116.0.5845.14","26.0.0-beta.6":"116.0.5845.14","26.0.0-beta.7":"116.0.5845.14","26.0.0-beta.8":"116.0.5845.42","26.0.0-beta.9":"116.0.5845.42","26.0.0-beta.10":"116.0.5845.49","26.0.0-beta.11":"116.0.5845.49","26.0.0-beta.12":"116.0.5845.62","26.0.0-nightly.20230406":"114.0.5694.0","26.0.0-nightly.20230407":"114.0.5694.0","26.0.0-nightly.20230410":"114.0.5694.0","26.0.0-nightly.20230411":"114.0.5694.0","26.0.0-nightly.20230412":"114.0.5708.0","26.0.0-nightly.20230413":"114.0.5710.0","26.0.0-nightly.20230414":"114.0.5710.0","26.0.0-nightly.20230417":"114.0.5710.0","26.0.0-nightly.20230418":"114.0.5715.0","26.0.0-nightly.20230421":"114.0.5719.0","26.0.0-nightly.20230424":"114.0.5719.0","26.0.0-nightly.20230425":"114.0.5719.0","26.0.0-nightly.20230426":"114.0.5719.0","26.0.0-nightly.20230427":"114.0.5719.0","26.0.0-nightly.20230428":"114.0.5719.0","26.0.0-nightly.20230501":"114.0.5719.0","26.0.0-nightly.20230502":"114.0.5719.0","26.0.0-nightly.20230503":"114.0.5719.0","26.0.0-nightly.20230504":"114.0.5719.0","26.0.0-nightly.20230505":"114.0.5719.0","26.0.0-nightly.20230508":"114.0.5719.0","26.0.0-nightly.20230509":"114.0.5719.0","26.0.0-nightly.20230510":"114.0.5719.0","26.0.0-nightly.20230511":"115.0.5760.0","26.0.0-nightly.20230512":"115.0.5760.0","26.0.0-nightly.20230515":"115.0.5760.0","26.0.0-nightly.20230516":"115.0.5760.0","26.0.0-nightly.20230517":"115.0.5760.0","26.0.0-nightly.20230518":"115.0.5760.0","26.0.0-nightly.20230519":"115.0.5760.0","26.0.0-nightly.20230522":"115.0.5760.0","26.0.0-nightly.20230523":"115.0.5760.0","26.0.0-nightly.20230524":"115.0.5786.0","26.0.0-nightly.20230525":"115.0.5790.0","26.0.0-nightly.20230526":"116.0.5791.0","26.0.0-nightly.20230529":"116.0.5791.0","26.0.0-nightly.20230530":"116.0.5791.0","26.0.0-nightly.20230531":"116.0.5791.0","26.0.0":"116.0.5845.82","26.1.0":"116.0.5845.97","26.2.0":"116.0.5845.179","26.2.1":"116.0.5845.188","26.2.2":"116.0.5845.190","26.2.3":"116.0.5845.190","26.2.4":"116.0.5845.190","26.3.0":"116.0.5845.228","26.4.0":"116.0.5845.228","26.4.1":"116.0.5845.228","26.4.2":"116.0.5845.228","26.4.3":"116.0.5845.228","26.5.0":"116.0.5845.228","26.6.0":"116.0.5845.228","26.6.1":"116.0.5845.228","26.6.2":"116.0.5845.228","26.6.3":"116.0.5845.228","26.6.4":"116.0.5845.228","26.6.5":"116.0.5845.228","26.6.6":"116.0.5845.228","26.6.7":"116.0.5845.228","26.6.8":"116.0.5845.228","26.6.9":"116.0.5845.228","26.6.10":"116.0.5845.228","27.0.0-alpha.1":"118.0.5949.0","27.0.0-alpha.2":"118.0.5949.0","27.0.0-alpha.3":"118.0.5949.0","27.0.0-alpha.4":"118.0.5949.0","27.0.0-alpha.5":"118.0.5949.0","27.0.0-alpha.6":"118.0.5949.0","27.0.0-beta.1":"118.0.5993.5","27.0.0-beta.2":"118.0.5993.5","27.0.0-beta.3":"118.0.5993.5","27.0.0-beta.4":"118.0.5993.11","27.0.0-beta.5":"118.0.5993.18","27.0.0-beta.6":"118.0.5993.18","27.0.0-beta.7":"118.0.5993.18","27.0.0-beta.8":"118.0.5993.18","27.0.0-beta.9":"118.0.5993.18","27.0.0-nightly.20230601":"116.0.5791.0","27.0.0-nightly.20230602":"116.0.5791.0","27.0.0-nightly.20230605":"116.0.5791.0","27.0.0-nightly.20230606":"116.0.5791.0","27.0.0-nightly.20230607":"116.0.5791.0","27.0.0-nightly.20230609":"116.0.5791.0","27.0.0-nightly.20230612":"116.0.5815.0","27.0.0-nightly.20230613":"116.0.5815.0","27.0.0-nightly.20230614":"116.0.5829.0","27.0.0-nightly.20230615":"116.0.5831.0","27.0.0-nightly.20230616":"116.0.5833.0","27.0.0-nightly.20230619":"116.0.5833.0","27.0.0-nightly.20230620":"116.0.5833.0","27.0.0-nightly.20230621":"116.0.5833.0","27.0.0-nightly.20230622":"116.0.5845.0","27.0.0-nightly.20230623":"116.0.5845.0","27.0.0-nightly.20230626":"116.0.5845.0","27.0.0-nightly.20230627":"116.0.5845.0","27.0.0-nightly.20230628":"116.0.5845.0","27.0.0-nightly.20230629":"116.0.5845.0","27.0.0-nightly.20230630":"116.0.5845.0","27.0.0-nightly.20230703":"117.0.5852.0","27.0.0-nightly.20230704":"117.0.5852.0","27.0.0-nightly.20230705":"117.0.5852.0","27.0.0-nightly.20230706":"117.0.5852.0","27.0.0-nightly.20230707":"117.0.5852.0","27.0.0-nightly.20230710":"117.0.5852.0","27.0.0-nightly.20230711":"117.0.5852.0","27.0.0-nightly.20230712":"117.0.5852.0","27.0.0-nightly.20230713":"117.0.5852.0","27.0.0-nightly.20230714":"117.0.5852.0","27.0.0-nightly.20230717":"117.0.5884.1","27.0.0-nightly.20230718":"117.0.5884.1","27.0.0-nightly.20230719":"117.0.5892.0","27.0.0-nightly.20230720":"117.0.5897.0","27.0.0-nightly.20230721":"117.0.5897.0","27.0.0-nightly.20230724":"117.0.5897.0","27.0.0-nightly.20230725":"117.0.5897.0","27.0.0-nightly.20230726":"117.0.5897.0","27.0.0-nightly.20230727":"117.0.5897.0","27.0.0-nightly.20230728":"117.0.5897.0","27.0.0-nightly.20230731":"117.0.5897.0","27.0.0-nightly.20230801":"117.0.5911.0","27.0.0-nightly.20230802":"117.0.5911.0","27.0.0-nightly.20230803":"117.0.5911.0","27.0.0-nightly.20230804":"117.0.5921.0","27.0.0-nightly.20230807":"117.0.5921.0","27.0.0-nightly.20230808":"117.0.5921.0","27.0.0-nightly.20230814":"117.0.5921.0","27.0.0-nightly.20230815":"117.0.5921.0","27.0.0-nightly.20230816":"118.0.5949.0","27.0.0":"118.0.5993.54","27.0.1":"118.0.5993.89","27.0.2":"118.0.5993.89","27.0.3":"118.0.5993.120","27.0.4":"118.0.5993.129","27.1.0":"118.0.5993.144","27.1.2":"118.0.5993.144","27.1.3":"118.0.5993.159","27.2.0":"118.0.5993.159","27.2.1":"118.0.5993.159","27.2.2":"118.0.5993.159","27.2.3":"118.0.5993.159","27.2.4":"118.0.5993.159","27.3.0":"118.0.5993.159","27.3.1":"118.0.5993.159","27.3.2":"118.0.5993.159","27.3.3":"118.0.5993.159","27.3.4":"118.0.5993.159","27.3.5":"118.0.5993.159","27.3.6":"118.0.5993.159","27.3.7":"118.0.5993.159","27.3.8":"118.0.5993.159","27.3.9":"118.0.5993.159","27.3.10":"118.0.5993.159","28.0.0-alpha.1":"119.0.6045.0","28.0.0-alpha.2":"119.0.6045.0","28.0.0-alpha.3":"119.0.6045.21","28.0.0-alpha.4":"119.0.6045.21","28.0.0-alpha.5":"119.0.6045.33","28.0.0-alpha.6":"119.0.6045.33","28.0.0-alpha.7":"119.0.6045.33","28.0.0-beta.1":"119.0.6045.33","28.0.0-beta.2":"120.0.6099.0","28.0.0-beta.3":"120.0.6099.5","28.0.0-beta.4":"120.0.6099.5","28.0.0-beta.5":"120.0.6099.18","28.0.0-beta.6":"120.0.6099.18","28.0.0-beta.7":"120.0.6099.18","28.0.0-beta.8":"120.0.6099.18","28.0.0-beta.9":"120.0.6099.18","28.0.0-beta.10":"120.0.6099.18","28.0.0-beta.11":"120.0.6099.35","28.0.0-nightly.20230817":"118.0.5949.0","28.0.0-nightly.20230818":"118.0.5949.0","28.0.0-nightly.20230821":"118.0.5949.0","28.0.0-nightly.20230822":"118.0.5949.0","28.0.0-nightly.20230823":"118.0.5949.0","28.0.0-nightly.20230824":"118.0.5949.0","28.0.0-nightly.20230825":"118.0.5949.0","28.0.0-nightly.20230828":"118.0.5949.0","28.0.0-nightly.20230829":"118.0.5949.0","28.0.0-nightly.20230830":"118.0.5949.0","28.0.0-nightly.20230831":"118.0.5949.0","28.0.0-nightly.20230906":"118.0.5991.0","28.0.0-nightly.20230907":"118.0.5993.0","28.0.0-nightly.20230908":"118.0.5993.0","28.0.0-nightly.20230911":"118.0.5993.0","28.0.0-nightly.20230912":"118.0.5993.0","28.0.0-nightly.20230913":"118.0.5993.0","28.0.0-nightly.20230914":"118.0.5993.0","28.0.0-nightly.20230915":"118.0.5993.0","28.0.0-nightly.20230919":"119.0.6006.0","28.0.0-nightly.20230920":"119.0.6017.0","28.0.0-nightly.20230921":"119.0.6019.2","28.0.0-nightly.20230925":"119.0.6019.2","28.0.0-nightly.20230926":"119.0.6019.2","28.0.0-nightly.20230927":"119.0.6019.2","28.0.0-nightly.20230928":"119.0.6019.2","28.0.0-nightly.20230929":"119.0.6029.0","28.0.0-nightly.20231002":"119.0.6029.0","28.0.0-nightly.20231003":"119.0.6043.0","28.0.0-nightly.20231004":"119.0.6043.0","28.0.0-nightly.20231005":"119.0.6043.0","28.0.0-nightly.20231006":"119.0.6045.0","28.0.0-nightly.20231009":"119.0.6045.0","28.0.0-nightly.20231010":"119.0.6045.0","28.0.0-nightly.20231011":"119.0.6045.0","28.0.0":"120.0.6099.56","28.1.0":"120.0.6099.109","28.1.1":"120.0.6099.109","28.1.2":"120.0.6099.199","28.1.3":"120.0.6099.199","28.1.4":"120.0.6099.216","28.2.0":"120.0.6099.227","28.2.1":"120.0.6099.268","28.2.2":"120.0.6099.276","28.2.3":"120.0.6099.283","28.2.4":"120.0.6099.291","28.2.5":"120.0.6099.291","28.2.6":"120.0.6099.291","28.2.7":"120.0.6099.291","28.2.8":"120.0.6099.291","28.2.9":"120.0.6099.291","28.2.10":"120.0.6099.291","28.3.0":"120.0.6099.291","29.0.0-alpha.1":"121.0.6147.0","29.0.0-alpha.2":"121.0.6147.0","29.0.0-alpha.3":"121.0.6147.0","29.0.0-alpha.4":"121.0.6159.0","29.0.0-alpha.5":"121.0.6159.0","29.0.0-alpha.6":"121.0.6159.0","29.0.0-alpha.7":"121.0.6159.0","29.0.0-alpha.8":"122.0.6194.0","29.0.0-alpha.9":"122.0.6236.2","29.0.0-alpha.10":"122.0.6236.2","29.0.0-alpha.11":"122.0.6236.2","29.0.0-beta.1":"122.0.6236.2","29.0.0-beta.2":"122.0.6236.2","29.0.0-beta.3":"122.0.6261.6","29.0.0-beta.4":"122.0.6261.6","29.0.0-beta.5":"122.0.6261.18","29.0.0-beta.6":"122.0.6261.18","29.0.0-beta.7":"122.0.6261.18","29.0.0-beta.8":"122.0.6261.18","29.0.0-beta.9":"122.0.6261.18","29.0.0-beta.10":"122.0.6261.18","29.0.0-beta.11":"122.0.6261.18","29.0.0-beta.12":"122.0.6261.29","29.0.0-nightly.20231012":"119.0.6045.0","29.0.0-nightly.20231013":"119.0.6045.0","29.0.0-nightly.20231016":"119.0.6045.0","29.0.0-nightly.20231017":"119.0.6045.0","29.0.0-nightly.20231018":"119.0.6045.0","29.0.0-nightly.20231019":"119.0.6045.0","29.0.0-nightly.20231020":"119.0.6045.0","29.0.0-nightly.20231023":"119.0.6045.0","29.0.0-nightly.20231024":"119.0.6045.0","29.0.0-nightly.20231025":"120.0.6078.0","29.0.0-nightly.20231026":"120.0.6078.0","29.0.0-nightly.20231027":"120.0.6078.0","29.0.0-nightly.20231030":"120.0.6078.0","29.0.0-nightly.20231031":"120.0.6078.0","29.0.0-nightly.20231101":"120.0.6078.0","29.0.0-nightly.20231102":"121.0.6100.0","29.0.0-nightly.20231103":"121.0.6100.0","29.0.0-nightly.20231106":"121.0.6104.0","29.0.0-nightly.20231107":"121.0.6110.0","29.0.0-nightly.20231108":"121.0.6110.0","29.0.0-nightly.20231109":"121.0.6110.0","29.0.0-nightly.20231110":"121.0.6110.0","29.0.0-nightly.20231113":"121.0.6110.0","29.0.0-nightly.20231114":"121.0.6110.0","29.0.0-nightly.20231115":"121.0.6116.0","29.0.0-nightly.20231116":"121.0.6116.0","29.0.0-nightly.20231117":"121.0.6116.0","29.0.0-nightly.20231120":"121.0.6116.0","29.0.0-nightly.20231121":"121.0.6116.0","29.0.0-nightly.20231122":"121.0.6116.0","29.0.0-nightly.20231123":"121.0.6116.0","29.0.0-nightly.20231124":"121.0.6116.0","29.0.0-nightly.20231127":"121.0.6116.0","29.0.0-nightly.20231128":"121.0.6116.0","29.0.0-nightly.20231129":"121.0.6147.0","29.0.0-nightly.20231130":"121.0.6147.0","29.0.0-nightly.20231201":"121.0.6147.0","29.0.0-nightly.20231204":"121.0.6147.0","29.0.0-nightly.20231205":"121.0.6147.0","29.0.0-nightly.20231206":"121.0.6147.0","29.0.0":"122.0.6261.39","29.0.1":"122.0.6261.57","29.1.0":"122.0.6261.70","29.1.1":"122.0.6261.111","29.1.2":"122.0.6261.112","29.1.3":"122.0.6261.112","29.1.4":"122.0.6261.129","29.1.5":"122.0.6261.130","29.1.6":"122.0.6261.139","29.2.0":"122.0.6261.156","29.3.0":"122.0.6261.156","30.0.0-alpha.1":"123.0.6296.0","30.0.0-alpha.2":"123.0.6312.5","30.0.0-alpha.3":"124.0.6323.0","30.0.0-alpha.4":"124.0.6323.0","30.0.0-alpha.5":"124.0.6331.0","30.0.0-alpha.6":"124.0.6331.0","30.0.0-alpha.7":"124.0.6353.0","30.0.0-beta.1":"124.0.6359.0","30.0.0-beta.2":"124.0.6359.0","30.0.0-beta.3":"124.0.6367.9","30.0.0-beta.4":"124.0.6367.9","30.0.0-beta.5":"124.0.6367.9","30.0.0-beta.6":"124.0.6367.18","30.0.0-beta.7":"124.0.6367.29","30.0.0-beta.8":"124.0.6367.29","30.0.0-nightly.20231207":"121.0.6147.0","30.0.0-nightly.20231208":"121.0.6147.0","30.0.0-nightly.20231211":"121.0.6147.0","30.0.0-nightly.20231212":"121.0.6159.0","30.0.0-nightly.20231213":"121.0.6159.0","30.0.0-nightly.20231214":"121.0.6159.0","30.0.0-nightly.20231215":"121.0.6159.0","30.0.0-nightly.20231218":"121.0.6159.0","30.0.0-nightly.20240102":"121.0.6159.0","30.0.0-nightly.20240103":"122.0.6194.0","30.0.0-nightly.20240104":"122.0.6194.0","30.0.0-nightly.20240105":"122.0.6194.0","30.0.0-nightly.20240108":"122.0.6194.0","30.0.0-nightly.20240109":"122.0.6194.0","30.0.0-nightly.20240110":"122.0.6194.0","30.0.0-nightly.20240111":"122.0.6236.2","30.0.0-nightly.20240112":"122.0.6236.2","30.0.0-nightly.20240115":"122.0.6236.2","30.0.0-nightly.20240116":"122.0.6236.2","30.0.0-nightly.20240117":"122.0.6236.2","30.0.0-nightly.20240118":"122.0.6236.2","30.0.0-nightly.20240119":"122.0.6236.2","30.0.0-nightly.20240122":"122.0.6236.2","30.0.0-nightly.20240123":"122.0.6236.2","30.0.0-nightly.20240124":"122.0.6236.2","30.0.0-nightly.20240125":"122.0.6236.2","30.0.0-nightly.20240126":"123.0.6264.0","30.0.0-nightly.20240129":"123.0.6264.0","30.0.0-nightly.20240130":"123.0.6264.0","30.0.0-nightly.20240131":"123.0.6264.0","30.0.0-nightly.20240201":"123.0.6272.0","30.0.0-nightly.20240202":"123.0.6272.0","30.0.0-nightly.20240205":"123.0.6272.0","30.0.0-nightly.20240206":"123.0.6272.0","30.0.0-nightly.20240207":"123.0.6272.0","30.0.0-nightly.20240208":"123.0.6272.0","30.0.0-nightly.20240209":"123.0.6272.0","30.0.0-nightly.20240212":"123.0.6272.0","30.0.0-nightly.20240213":"123.0.6272.0","30.0.0-nightly.20240214":"123.0.6272.0","30.0.0-nightly.20240215":"123.0.6296.0","30.0.0-nightly.20240216":"123.0.6296.0","30.0.0-nightly.20240219":"123.0.6296.0","30.0.0-nightly.20240220":"123.0.6296.0","30.0.0-nightly.20240221":"123.0.6296.0","31.0.0-nightly.20240222":"123.0.6312.5","31.0.0-nightly.20240223":"123.0.6312.5","31.0.0-nightly.20240226":"123.0.6312.5","31.0.0-nightly.20240227":"123.0.6312.5","31.0.0-nightly.20240228":"123.0.6312.5","31.0.0-nightly.20240229":"124.0.6323.0","31.0.0-nightly.20240301":"124.0.6323.0","31.0.0-nightly.20240304":"124.0.6323.0","31.0.0-nightly.20240305":"124.0.6323.0","31.0.0-nightly.20240306":"124.0.6331.0","31.0.0-nightly.20240307":"124.0.6331.0","31.0.0-nightly.20240308":"124.0.6331.0","31.0.0-nightly.20240311":"124.0.6331.0","31.0.0-nightly.20240312":"124.0.6351.0","31.0.0-nightly.20240313":"124.0.6353.0","31.0.0-nightly.20240314":"124.0.6353.0","31.0.0-nightly.20240315":"124.0.6353.0","31.0.0-nightly.20240318":"124.0.6359.0","31.0.0-nightly.20240319":"124.0.6359.0","31.0.0-nightly.20240320":"124.0.6359.0","31.0.0-nightly.20240321":"124.0.6359.0","31.0.0-nightly.20240325":"124.0.6359.0","31.0.0-nightly.20240327":"124.0.6359.0","31.0.0-nightly.20240328":"124.0.6359.0","31.0.0-nightly.20240329":"124.0.6359.0","31.0.0-nightly.20240401":"124.0.6359.0","31.0.0-nightly.20240402":"124.0.6359.0","31.0.0-nightly.20240404":"124.0.6359.0","31.0.0-nightly.20240405":"124.0.6359.0","31.0.0-nightly.20240408":"124.0.6359.0","31.0.0-nightly.20240409":"124.0.6359.0","31.0.0-nightly.20240410":"124.0.6359.0","31.0.0-nightly.20240411":"124.0.6359.0","31.0.0-nightly.20240412":"124.0.6359.0"} \ No newline at end of file +{"0.20.0":"39.0.2171.65","0.20.1":"39.0.2171.65","0.20.2":"39.0.2171.65","0.20.3":"39.0.2171.65","0.20.4":"39.0.2171.65","0.20.5":"39.0.2171.65","0.20.6":"39.0.2171.65","0.20.7":"39.0.2171.65","0.20.8":"39.0.2171.65","0.21.0":"40.0.2214.91","0.21.1":"40.0.2214.91","0.21.2":"40.0.2214.91","0.21.3":"41.0.2272.76","0.22.1":"41.0.2272.76","0.22.2":"41.0.2272.76","0.22.3":"41.0.2272.76","0.23.0":"41.0.2272.76","0.24.0":"41.0.2272.76","0.25.0":"42.0.2311.107","0.25.1":"42.0.2311.107","0.25.2":"42.0.2311.107","0.25.3":"42.0.2311.107","0.26.0":"42.0.2311.107","0.26.1":"42.0.2311.107","0.27.0":"42.0.2311.107","0.27.1":"42.0.2311.107","0.27.2":"43.0.2357.65","0.27.3":"43.0.2357.65","0.28.0":"43.0.2357.65","0.28.1":"43.0.2357.65","0.28.2":"43.0.2357.65","0.28.3":"43.0.2357.65","0.29.1":"43.0.2357.65","0.29.2":"43.0.2357.65","0.30.4":"44.0.2403.125","0.31.0":"44.0.2403.125","0.31.2":"45.0.2454.85","0.32.2":"45.0.2454.85","0.32.3":"45.0.2454.85","0.33.0":"45.0.2454.85","0.33.1":"45.0.2454.85","0.33.2":"45.0.2454.85","0.33.3":"45.0.2454.85","0.33.4":"45.0.2454.85","0.33.6":"45.0.2454.85","0.33.7":"45.0.2454.85","0.33.8":"45.0.2454.85","0.33.9":"45.0.2454.85","0.34.0":"45.0.2454.85","0.34.1":"45.0.2454.85","0.34.2":"45.0.2454.85","0.34.3":"45.0.2454.85","0.34.4":"45.0.2454.85","0.35.1":"45.0.2454.85","0.35.2":"45.0.2454.85","0.35.3":"45.0.2454.85","0.35.4":"45.0.2454.85","0.35.5":"45.0.2454.85","0.36.0":"47.0.2526.73","0.36.2":"47.0.2526.73","0.36.3":"47.0.2526.73","0.36.4":"47.0.2526.73","0.36.5":"47.0.2526.110","0.36.6":"47.0.2526.110","0.36.7":"47.0.2526.110","0.36.8":"47.0.2526.110","0.36.9":"47.0.2526.110","0.36.10":"47.0.2526.110","0.36.11":"47.0.2526.110","0.36.12":"47.0.2526.110","0.37.0":"49.0.2623.75","0.37.1":"49.0.2623.75","0.37.3":"49.0.2623.75","0.37.4":"49.0.2623.75","0.37.5":"49.0.2623.75","0.37.6":"49.0.2623.75","0.37.7":"49.0.2623.75","0.37.8":"49.0.2623.75","1.0.0":"49.0.2623.75","1.0.1":"49.0.2623.75","1.0.2":"49.0.2623.75","1.1.0":"50.0.2661.102","1.1.1":"50.0.2661.102","1.1.2":"50.0.2661.102","1.1.3":"50.0.2661.102","1.2.0":"51.0.2704.63","1.2.1":"51.0.2704.63","1.2.2":"51.0.2704.84","1.2.3":"51.0.2704.84","1.2.4":"51.0.2704.103","1.2.5":"51.0.2704.103","1.2.6":"51.0.2704.106","1.2.7":"51.0.2704.106","1.2.8":"51.0.2704.106","1.3.0":"52.0.2743.82","1.3.1":"52.0.2743.82","1.3.2":"52.0.2743.82","1.3.3":"52.0.2743.82","1.3.4":"52.0.2743.82","1.3.5":"52.0.2743.82","1.3.6":"52.0.2743.82","1.3.7":"52.0.2743.82","1.3.9":"52.0.2743.82","1.3.10":"52.0.2743.82","1.3.13":"52.0.2743.82","1.3.14":"52.0.2743.82","1.3.15":"52.0.2743.82","1.4.0":"53.0.2785.113","1.4.1":"53.0.2785.113","1.4.2":"53.0.2785.113","1.4.3":"53.0.2785.113","1.4.4":"53.0.2785.113","1.4.5":"53.0.2785.113","1.4.6":"53.0.2785.143","1.4.7":"53.0.2785.143","1.4.8":"53.0.2785.143","1.4.10":"53.0.2785.143","1.4.11":"53.0.2785.143","1.4.12":"54.0.2840.51","1.4.13":"53.0.2785.143","1.4.14":"53.0.2785.143","1.4.15":"53.0.2785.143","1.4.16":"53.0.2785.143","1.5.0":"54.0.2840.101","1.5.1":"54.0.2840.101","1.6.0":"56.0.2924.87","1.6.1":"56.0.2924.87","1.6.2":"56.0.2924.87","1.6.3":"56.0.2924.87","1.6.4":"56.0.2924.87","1.6.5":"56.0.2924.87","1.6.6":"56.0.2924.87","1.6.7":"56.0.2924.87","1.6.8":"56.0.2924.87","1.6.9":"56.0.2924.87","1.6.10":"56.0.2924.87","1.6.11":"56.0.2924.87","1.6.12":"56.0.2924.87","1.6.13":"56.0.2924.87","1.6.14":"56.0.2924.87","1.6.15":"56.0.2924.87","1.6.16":"56.0.2924.87","1.6.17":"56.0.2924.87","1.6.18":"56.0.2924.87","1.7.0":"58.0.3029.110","1.7.1":"58.0.3029.110","1.7.2":"58.0.3029.110","1.7.3":"58.0.3029.110","1.7.4":"58.0.3029.110","1.7.5":"58.0.3029.110","1.7.6":"58.0.3029.110","1.7.7":"58.0.3029.110","1.7.8":"58.0.3029.110","1.7.9":"58.0.3029.110","1.7.10":"58.0.3029.110","1.7.11":"58.0.3029.110","1.7.12":"58.0.3029.110","1.7.13":"58.0.3029.110","1.7.14":"58.0.3029.110","1.7.15":"58.0.3029.110","1.7.16":"58.0.3029.110","1.8.0":"59.0.3071.115","1.8.1":"59.0.3071.115","1.8.2-beta.1":"59.0.3071.115","1.8.2-beta.2":"59.0.3071.115","1.8.2-beta.3":"59.0.3071.115","1.8.2-beta.4":"59.0.3071.115","1.8.2-beta.5":"59.0.3071.115","1.8.2":"59.0.3071.115","1.8.3":"59.0.3071.115","1.8.4":"59.0.3071.115","1.8.5":"59.0.3071.115","1.8.6":"59.0.3071.115","1.8.7":"59.0.3071.115","1.8.8":"59.0.3071.115","2.0.0-beta.1":"61.0.3163.100","2.0.0-beta.2":"61.0.3163.100","2.0.0-beta.3":"61.0.3163.100","2.0.0-beta.4":"61.0.3163.100","2.0.0-beta.5":"61.0.3163.100","2.0.0-beta.6":"61.0.3163.100","2.0.0-beta.7":"61.0.3163.100","2.0.0-beta.8":"61.0.3163.100","2.0.0":"61.0.3163.100","2.0.1":"61.0.3163.100","2.0.2":"61.0.3163.100","2.0.3":"61.0.3163.100","2.0.4":"61.0.3163.100","2.0.5":"61.0.3163.100","2.0.6":"61.0.3163.100","2.0.7":"61.0.3163.100","2.0.8-nightly.20180819":"61.0.3163.100","2.0.8-nightly.20180820":"61.0.3163.100","2.0.8":"61.0.3163.100","2.0.9":"61.0.3163.100","2.0.10":"61.0.3163.100","2.0.11":"61.0.3163.100","2.0.12":"61.0.3163.100","2.0.13":"61.0.3163.100","2.0.14":"61.0.3163.100","2.0.15":"61.0.3163.100","2.0.16":"61.0.3163.100","2.0.17":"61.0.3163.100","2.0.18":"61.0.3163.100","2.1.0-unsupported.20180809":"61.0.3163.100","3.0.0-beta.1":"66.0.3359.181","3.0.0-beta.2":"66.0.3359.181","3.0.0-beta.3":"66.0.3359.181","3.0.0-beta.4":"66.0.3359.181","3.0.0-beta.5":"66.0.3359.181","3.0.0-beta.6":"66.0.3359.181","3.0.0-beta.7":"66.0.3359.181","3.0.0-beta.8":"66.0.3359.181","3.0.0-beta.9":"66.0.3359.181","3.0.0-beta.10":"66.0.3359.181","3.0.0-beta.11":"66.0.3359.181","3.0.0-beta.12":"66.0.3359.181","3.0.0-beta.13":"66.0.3359.181","3.0.0-nightly.20180818":"66.0.3359.181","3.0.0-nightly.20180821":"66.0.3359.181","3.0.0-nightly.20180823":"66.0.3359.181","3.0.0-nightly.20180904":"66.0.3359.181","3.0.0":"66.0.3359.181","3.0.1":"66.0.3359.181","3.0.2":"66.0.3359.181","3.0.3":"66.0.3359.181","3.0.4":"66.0.3359.181","3.0.5":"66.0.3359.181","3.0.6":"66.0.3359.181","3.0.7":"66.0.3359.181","3.0.8":"66.0.3359.181","3.0.9":"66.0.3359.181","3.0.10":"66.0.3359.181","3.0.11":"66.0.3359.181","3.0.12":"66.0.3359.181","3.0.13":"66.0.3359.181","3.0.14":"66.0.3359.181","3.0.15":"66.0.3359.181","3.0.16":"66.0.3359.181","3.1.0-beta.1":"66.0.3359.181","3.1.0-beta.2":"66.0.3359.181","3.1.0-beta.3":"66.0.3359.181","3.1.0-beta.4":"66.0.3359.181","3.1.0-beta.5":"66.0.3359.181","3.1.0":"66.0.3359.181","3.1.1":"66.0.3359.181","3.1.2":"66.0.3359.181","3.1.3":"66.0.3359.181","3.1.4":"66.0.3359.181","3.1.5":"66.0.3359.181","3.1.6":"66.0.3359.181","3.1.7":"66.0.3359.181","3.1.8":"66.0.3359.181","3.1.9":"66.0.3359.181","3.1.10":"66.0.3359.181","3.1.11":"66.0.3359.181","3.1.12":"66.0.3359.181","3.1.13":"66.0.3359.181","4.0.0-beta.1":"69.0.3497.106","4.0.0-beta.2":"69.0.3497.106","4.0.0-beta.3":"69.0.3497.106","4.0.0-beta.4":"69.0.3497.106","4.0.0-beta.5":"69.0.3497.106","4.0.0-beta.6":"69.0.3497.106","4.0.0-beta.7":"69.0.3497.106","4.0.0-beta.8":"69.0.3497.106","4.0.0-beta.9":"69.0.3497.106","4.0.0-beta.10":"69.0.3497.106","4.0.0-beta.11":"69.0.3497.106","4.0.0-nightly.20180817":"66.0.3359.181","4.0.0-nightly.20180819":"66.0.3359.181","4.0.0-nightly.20180821":"66.0.3359.181","4.0.0-nightly.20180929":"67.0.3396.99","4.0.0-nightly.20181006":"68.0.3440.128","4.0.0-nightly.20181010":"69.0.3497.106","4.0.0":"69.0.3497.106","4.0.1":"69.0.3497.106","4.0.2":"69.0.3497.106","4.0.3":"69.0.3497.106","4.0.4":"69.0.3497.106","4.0.5":"69.0.3497.106","4.0.6":"69.0.3497.106","4.0.7":"69.0.3497.128","4.0.8":"69.0.3497.128","4.1.0":"69.0.3497.128","4.1.1":"69.0.3497.128","4.1.2":"69.0.3497.128","4.1.3":"69.0.3497.128","4.1.4":"69.0.3497.128","4.1.5":"69.0.3497.128","4.2.0":"69.0.3497.128","4.2.1":"69.0.3497.128","4.2.2":"69.0.3497.128","4.2.3":"69.0.3497.128","4.2.4":"69.0.3497.128","4.2.5":"69.0.3497.128","4.2.6":"69.0.3497.128","4.2.7":"69.0.3497.128","4.2.8":"69.0.3497.128","4.2.9":"69.0.3497.128","4.2.10":"69.0.3497.128","4.2.11":"69.0.3497.128","4.2.12":"69.0.3497.128","5.0.0-beta.1":"72.0.3626.52","5.0.0-beta.2":"72.0.3626.52","5.0.0-beta.3":"73.0.3683.27","5.0.0-beta.4":"73.0.3683.54","5.0.0-beta.5":"73.0.3683.61","5.0.0-beta.6":"73.0.3683.84","5.0.0-beta.7":"73.0.3683.94","5.0.0-beta.8":"73.0.3683.104","5.0.0-beta.9":"73.0.3683.117","5.0.0-nightly.20190107":"70.0.3538.110","5.0.0-nightly.20190121":"71.0.3578.98","5.0.0-nightly.20190122":"71.0.3578.98","5.0.0":"73.0.3683.119","5.0.1":"73.0.3683.121","5.0.2":"73.0.3683.121","5.0.3":"73.0.3683.121","5.0.4":"73.0.3683.121","5.0.5":"73.0.3683.121","5.0.6":"73.0.3683.121","5.0.7":"73.0.3683.121","5.0.8":"73.0.3683.121","5.0.9":"73.0.3683.121","5.0.10":"73.0.3683.121","5.0.11":"73.0.3683.121","5.0.12":"73.0.3683.121","5.0.13":"73.0.3683.121","6.0.0-beta.1":"76.0.3774.1","6.0.0-beta.2":"76.0.3783.1","6.0.0-beta.3":"76.0.3783.1","6.0.0-beta.4":"76.0.3783.1","6.0.0-beta.5":"76.0.3805.4","6.0.0-beta.6":"76.0.3809.3","6.0.0-beta.7":"76.0.3809.22","6.0.0-beta.8":"76.0.3809.26","6.0.0-beta.9":"76.0.3809.26","6.0.0-beta.10":"76.0.3809.37","6.0.0-beta.11":"76.0.3809.42","6.0.0-beta.12":"76.0.3809.54","6.0.0-beta.13":"76.0.3809.60","6.0.0-beta.14":"76.0.3809.68","6.0.0-beta.15":"76.0.3809.74","6.0.0-nightly.20190123":"72.0.3626.52","6.0.0-nightly.20190212":"72.0.3626.107","6.0.0-nightly.20190213":"72.0.3626.110","6.0.0-nightly.20190311":"74.0.3724.8","6.0.0":"76.0.3809.88","6.0.1":"76.0.3809.102","6.0.2":"76.0.3809.110","6.0.3":"76.0.3809.126","6.0.4":"76.0.3809.131","6.0.5":"76.0.3809.136","6.0.6":"76.0.3809.138","6.0.7":"76.0.3809.139","6.0.8":"76.0.3809.146","6.0.9":"76.0.3809.146","6.0.10":"76.0.3809.146","6.0.11":"76.0.3809.146","6.0.12":"76.0.3809.146","6.1.0":"76.0.3809.146","6.1.1":"76.0.3809.146","6.1.2":"76.0.3809.146","6.1.3":"76.0.3809.146","6.1.4":"76.0.3809.146","6.1.5":"76.0.3809.146","6.1.6":"76.0.3809.146","6.1.7":"76.0.3809.146","6.1.8":"76.0.3809.146","6.1.9":"76.0.3809.146","6.1.10":"76.0.3809.146","6.1.11":"76.0.3809.146","6.1.12":"76.0.3809.146","7.0.0-beta.1":"78.0.3866.0","7.0.0-beta.2":"78.0.3866.0","7.0.0-beta.3":"78.0.3866.0","7.0.0-beta.4":"78.0.3896.6","7.0.0-beta.5":"78.0.3905.1","7.0.0-beta.6":"78.0.3905.1","7.0.0-beta.7":"78.0.3905.1","7.0.0-nightly.20190521":"76.0.3784.0","7.0.0-nightly.20190529":"76.0.3806.0","7.0.0-nightly.20190530":"76.0.3806.0","7.0.0-nightly.20190531":"76.0.3806.0","7.0.0-nightly.20190602":"76.0.3806.0","7.0.0-nightly.20190603":"76.0.3806.0","7.0.0-nightly.20190604":"77.0.3814.0","7.0.0-nightly.20190605":"77.0.3815.0","7.0.0-nightly.20190606":"77.0.3815.0","7.0.0-nightly.20190607":"77.0.3815.0","7.0.0-nightly.20190608":"77.0.3815.0","7.0.0-nightly.20190609":"77.0.3815.0","7.0.0-nightly.20190611":"77.0.3815.0","7.0.0-nightly.20190612":"77.0.3815.0","7.0.0-nightly.20190613":"77.0.3815.0","7.0.0-nightly.20190615":"77.0.3815.0","7.0.0-nightly.20190616":"77.0.3815.0","7.0.0-nightly.20190618":"77.0.3815.0","7.0.0-nightly.20190619":"77.0.3815.0","7.0.0-nightly.20190622":"77.0.3815.0","7.0.0-nightly.20190623":"77.0.3815.0","7.0.0-nightly.20190624":"77.0.3815.0","7.0.0-nightly.20190627":"77.0.3815.0","7.0.0-nightly.20190629":"77.0.3815.0","7.0.0-nightly.20190630":"77.0.3815.0","7.0.0-nightly.20190701":"77.0.3815.0","7.0.0-nightly.20190702":"77.0.3815.0","7.0.0-nightly.20190704":"77.0.3843.0","7.0.0-nightly.20190705":"77.0.3843.0","7.0.0-nightly.20190719":"77.0.3848.0","7.0.0-nightly.20190720":"77.0.3848.0","7.0.0-nightly.20190721":"77.0.3848.0","7.0.0-nightly.20190726":"77.0.3864.0","7.0.0-nightly.20190727":"78.0.3866.0","7.0.0-nightly.20190728":"78.0.3866.0","7.0.0-nightly.20190729":"78.0.3866.0","7.0.0-nightly.20190730":"78.0.3866.0","7.0.0-nightly.20190731":"78.0.3866.0","7.0.0":"78.0.3905.1","7.0.1":"78.0.3904.92","7.1.0":"78.0.3904.94","7.1.1":"78.0.3904.99","7.1.2":"78.0.3904.113","7.1.3":"78.0.3904.126","7.1.4":"78.0.3904.130","7.1.5":"78.0.3904.130","7.1.6":"78.0.3904.130","7.1.7":"78.0.3904.130","7.1.8":"78.0.3904.130","7.1.9":"78.0.3904.130","7.1.10":"78.0.3904.130","7.1.11":"78.0.3904.130","7.1.12":"78.0.3904.130","7.1.13":"78.0.3904.130","7.1.14":"78.0.3904.130","7.2.0":"78.0.3904.130","7.2.1":"78.0.3904.130","7.2.2":"78.0.3904.130","7.2.3":"78.0.3904.130","7.2.4":"78.0.3904.130","7.3.0":"78.0.3904.130","7.3.1":"78.0.3904.130","7.3.2":"78.0.3904.130","7.3.3":"78.0.3904.130","8.0.0-beta.1":"79.0.3931.0","8.0.0-beta.2":"79.0.3931.0","8.0.0-beta.3":"80.0.3955.0","8.0.0-beta.4":"80.0.3955.0","8.0.0-beta.5":"80.0.3987.14","8.0.0-beta.6":"80.0.3987.51","8.0.0-beta.7":"80.0.3987.59","8.0.0-beta.8":"80.0.3987.75","8.0.0-beta.9":"80.0.3987.75","8.0.0-nightly.20190801":"78.0.3866.0","8.0.0-nightly.20190802":"78.0.3866.0","8.0.0-nightly.20190803":"78.0.3871.0","8.0.0-nightly.20190806":"78.0.3871.0","8.0.0-nightly.20190807":"78.0.3871.0","8.0.0-nightly.20190808":"78.0.3871.0","8.0.0-nightly.20190809":"78.0.3871.0","8.0.0-nightly.20190810":"78.0.3871.0","8.0.0-nightly.20190811":"78.0.3871.0","8.0.0-nightly.20190812":"78.0.3871.0","8.0.0-nightly.20190813":"78.0.3871.0","8.0.0-nightly.20190814":"78.0.3871.0","8.0.0-nightly.20190815":"78.0.3871.0","8.0.0-nightly.20190816":"78.0.3881.0","8.0.0-nightly.20190817":"78.0.3881.0","8.0.0-nightly.20190818":"78.0.3881.0","8.0.0-nightly.20190819":"78.0.3881.0","8.0.0-nightly.20190820":"78.0.3881.0","8.0.0-nightly.20190824":"78.0.3892.0","8.0.0-nightly.20190825":"78.0.3892.0","8.0.0-nightly.20190827":"78.0.3892.0","8.0.0-nightly.20190828":"78.0.3892.0","8.0.0-nightly.20190830":"78.0.3892.0","8.0.0-nightly.20190901":"78.0.3892.0","8.0.0-nightly.20190902":"78.0.3892.0","8.0.0-nightly.20190907":"78.0.3892.0","8.0.0-nightly.20190909":"78.0.3892.0","8.0.0-nightly.20190910":"78.0.3892.0","8.0.0-nightly.20190911":"78.0.3892.0","8.0.0-nightly.20190912":"78.0.3892.0","8.0.0-nightly.20190913":"78.0.3892.0","8.0.0-nightly.20190914":"78.0.3892.0","8.0.0-nightly.20190915":"78.0.3892.0","8.0.0-nightly.20190917":"78.0.3892.0","8.0.0-nightly.20190919":"79.0.3915.0","8.0.0-nightly.20190920":"79.0.3915.0","8.0.0-nightly.20190922":"79.0.3919.0","8.0.0-nightly.20190923":"79.0.3919.0","8.0.0-nightly.20190924":"79.0.3919.0","8.0.0-nightly.20190926":"79.0.3919.0","8.0.0-nightly.20190928":"79.0.3919.0","8.0.0-nightly.20190929":"79.0.3919.0","8.0.0-nightly.20190930":"79.0.3919.0","8.0.0-nightly.20191001":"79.0.3919.0","8.0.0-nightly.20191004":"79.0.3919.0","8.0.0-nightly.20191005":"79.0.3919.0","8.0.0-nightly.20191006":"79.0.3919.0","8.0.0-nightly.20191009":"79.0.3919.0","8.0.0-nightly.20191011":"79.0.3919.0","8.0.0-nightly.20191012":"79.0.3919.0","8.0.0-nightly.20191017":"79.0.3919.0","8.0.0-nightly.20191019":"79.0.3931.0","8.0.0-nightly.20191020":"79.0.3931.0","8.0.0-nightly.20191021":"79.0.3931.0","8.0.0-nightly.20191023":"79.0.3931.0","8.0.0-nightly.20191101":"80.0.3952.0","8.0.0-nightly.20191103":"80.0.3952.0","8.0.0-nightly.20191105":"80.0.3952.0","8.0.0":"80.0.3987.86","8.0.1":"80.0.3987.86","8.0.2":"80.0.3987.86","8.0.3":"80.0.3987.134","8.1.0":"80.0.3987.137","8.1.1":"80.0.3987.141","8.2.0":"80.0.3987.158","8.2.1":"80.0.3987.163","8.2.2":"80.0.3987.163","8.2.3":"80.0.3987.163","8.2.4":"80.0.3987.165","8.2.5":"80.0.3987.165","8.3.0":"80.0.3987.165","8.3.1":"80.0.3987.165","8.3.2":"80.0.3987.165","8.3.3":"80.0.3987.165","8.3.4":"80.0.3987.165","8.4.0":"80.0.3987.165","8.4.1":"80.0.3987.165","8.5.0":"80.0.3987.165","8.5.1":"80.0.3987.165","8.5.2":"80.0.3987.165","8.5.3":"80.0.3987.163","8.5.4":"80.0.3987.163","8.5.5":"80.0.3987.163","9.0.0-beta.1":"82.0.4048.0","9.0.0-beta.2":"82.0.4048.0","9.0.0-beta.3":"82.0.4048.0","9.0.0-beta.4":"82.0.4048.0","9.0.0-beta.5":"82.0.4048.0","9.0.0-beta.6":"82.0.4058.2","9.0.0-beta.7":"82.0.4058.2","9.0.0-beta.9":"82.0.4058.2","9.0.0-beta.10":"82.0.4085.10","9.0.0-beta.11":"82.0.4085.14","9.0.0-beta.12":"82.0.4085.14","9.0.0-beta.13":"82.0.4085.14","9.0.0-beta.14":"82.0.4085.27","9.0.0-beta.15":"83.0.4102.3","9.0.0-beta.16":"83.0.4102.3","9.0.0-beta.17":"83.0.4103.14","9.0.0-beta.18":"83.0.4103.16","9.0.0-beta.19":"83.0.4103.24","9.0.0-beta.20":"83.0.4103.26","9.0.0-beta.21":"83.0.4103.26","9.0.0-beta.22":"83.0.4103.34","9.0.0-beta.23":"83.0.4103.44","9.0.0-beta.24":"83.0.4103.45","9.0.0-nightly.20191121":"80.0.3954.0","9.0.0-nightly.20191122":"80.0.3954.0","9.0.0-nightly.20191123":"80.0.3954.0","9.0.0-nightly.20191124":"80.0.3954.0","9.0.0-nightly.20191126":"80.0.3954.0","9.0.0-nightly.20191128":"80.0.3954.0","9.0.0-nightly.20191129":"80.0.3954.0","9.0.0-nightly.20191130":"80.0.3954.0","9.0.0-nightly.20191201":"80.0.3954.0","9.0.0-nightly.20191202":"80.0.3954.0","9.0.0-nightly.20191203":"80.0.3954.0","9.0.0-nightly.20191204":"80.0.3954.0","9.0.0-nightly.20191205":"80.0.3954.0","9.0.0-nightly.20191210":"80.0.3954.0","9.0.0-nightly.20191220":"81.0.3994.0","9.0.0-nightly.20191221":"81.0.3994.0","9.0.0-nightly.20191222":"81.0.3994.0","9.0.0-nightly.20191223":"81.0.3994.0","9.0.0-nightly.20191224":"81.0.3994.0","9.0.0-nightly.20191225":"81.0.3994.0","9.0.0-nightly.20191226":"81.0.3994.0","9.0.0-nightly.20191228":"81.0.3994.0","9.0.0-nightly.20191229":"81.0.3994.0","9.0.0-nightly.20191230":"81.0.3994.0","9.0.0-nightly.20191231":"81.0.3994.0","9.0.0-nightly.20200101":"81.0.3994.0","9.0.0-nightly.20200103":"81.0.3994.0","9.0.0-nightly.20200104":"81.0.3994.0","9.0.0-nightly.20200105":"81.0.3994.0","9.0.0-nightly.20200106":"81.0.3994.0","9.0.0-nightly.20200108":"81.0.3994.0","9.0.0-nightly.20200109":"81.0.3994.0","9.0.0-nightly.20200110":"81.0.3994.0","9.0.0-nightly.20200111":"81.0.3994.0","9.0.0-nightly.20200113":"81.0.3994.0","9.0.0-nightly.20200115":"81.0.3994.0","9.0.0-nightly.20200116":"81.0.3994.0","9.0.0-nightly.20200117":"81.0.3994.0","9.0.0-nightly.20200119":"81.0.4030.0","9.0.0-nightly.20200121":"81.0.4030.0","9.0.0":"83.0.4103.64","9.0.1":"83.0.4103.94","9.0.2":"83.0.4103.94","9.0.3":"83.0.4103.100","9.0.4":"83.0.4103.104","9.0.5":"83.0.4103.119","9.1.0":"83.0.4103.122","9.1.1":"83.0.4103.122","9.1.2":"83.0.4103.122","9.2.0":"83.0.4103.122","9.2.1":"83.0.4103.122","9.3.0":"83.0.4103.122","9.3.1":"83.0.4103.122","9.3.2":"83.0.4103.122","9.3.3":"83.0.4103.122","9.3.4":"83.0.4103.122","9.3.5":"83.0.4103.122","9.4.0":"83.0.4103.122","9.4.1":"83.0.4103.122","9.4.2":"83.0.4103.122","9.4.3":"83.0.4103.122","9.4.4":"83.0.4103.122","10.0.0-beta.1":"84.0.4129.0","10.0.0-beta.2":"84.0.4129.0","10.0.0-beta.3":"85.0.4161.2","10.0.0-beta.4":"85.0.4161.2","10.0.0-beta.8":"85.0.4181.1","10.0.0-beta.9":"85.0.4181.1","10.0.0-beta.10":"85.0.4183.19","10.0.0-beta.11":"85.0.4183.20","10.0.0-beta.12":"85.0.4183.26","10.0.0-beta.13":"85.0.4183.39","10.0.0-beta.14":"85.0.4183.39","10.0.0-beta.15":"85.0.4183.39","10.0.0-beta.17":"85.0.4183.39","10.0.0-beta.19":"85.0.4183.39","10.0.0-beta.20":"85.0.4183.39","10.0.0-beta.21":"85.0.4183.39","10.0.0-beta.23":"85.0.4183.70","10.0.0-beta.24":"85.0.4183.78","10.0.0-beta.25":"85.0.4183.80","10.0.0-nightly.20200209":"82.0.4050.0","10.0.0-nightly.20200210":"82.0.4050.0","10.0.0-nightly.20200211":"82.0.4050.0","10.0.0-nightly.20200216":"82.0.4050.0","10.0.0-nightly.20200217":"82.0.4050.0","10.0.0-nightly.20200218":"82.0.4050.0","10.0.0-nightly.20200221":"82.0.4050.0","10.0.0-nightly.20200222":"82.0.4050.0","10.0.0-nightly.20200223":"82.0.4050.0","10.0.0-nightly.20200226":"82.0.4050.0","10.0.0-nightly.20200303":"82.0.4050.0","10.0.0-nightly.20200304":"82.0.4076.0","10.0.0-nightly.20200305":"82.0.4076.0","10.0.0-nightly.20200306":"82.0.4076.0","10.0.0-nightly.20200309":"82.0.4076.0","10.0.0-nightly.20200310":"82.0.4076.0","10.0.0-nightly.20200311":"82.0.4083.0","10.0.0-nightly.20200316":"83.0.4086.0","10.0.0-nightly.20200317":"83.0.4087.0","10.0.0-nightly.20200318":"83.0.4087.0","10.0.0-nightly.20200320":"83.0.4087.0","10.0.0-nightly.20200323":"83.0.4087.0","10.0.0-nightly.20200324":"83.0.4087.0","10.0.0-nightly.20200325":"83.0.4087.0","10.0.0-nightly.20200326":"83.0.4087.0","10.0.0-nightly.20200327":"83.0.4087.0","10.0.0-nightly.20200330":"83.0.4087.0","10.0.0-nightly.20200331":"83.0.4087.0","10.0.0-nightly.20200401":"83.0.4087.0","10.0.0-nightly.20200402":"83.0.4087.0","10.0.0-nightly.20200403":"83.0.4087.0","10.0.0-nightly.20200406":"83.0.4087.0","10.0.0-nightly.20200408":"83.0.4095.0","10.0.0-nightly.20200410":"83.0.4095.0","10.0.0-nightly.20200413":"83.0.4095.0","10.0.0-nightly.20200414":"84.0.4114.0","10.0.0-nightly.20200415":"84.0.4115.0","10.0.0-nightly.20200416":"84.0.4115.0","10.0.0-nightly.20200417":"84.0.4115.0","10.0.0-nightly.20200422":"84.0.4121.0","10.0.0-nightly.20200423":"84.0.4121.0","10.0.0-nightly.20200427":"84.0.4125.0","10.0.0-nightly.20200428":"84.0.4125.0","10.0.0-nightly.20200429":"84.0.4125.0","10.0.0-nightly.20200430":"84.0.4125.0","10.0.0-nightly.20200501":"84.0.4129.0","10.0.0-nightly.20200504":"84.0.4129.0","10.0.0-nightly.20200505":"84.0.4129.0","10.0.0-nightly.20200506":"84.0.4129.0","10.0.0-nightly.20200507":"84.0.4129.0","10.0.0-nightly.20200508":"84.0.4129.0","10.0.0-nightly.20200511":"84.0.4129.0","10.0.0-nightly.20200512":"84.0.4129.0","10.0.0-nightly.20200513":"84.0.4129.0","10.0.0-nightly.20200514":"84.0.4129.0","10.0.0-nightly.20200515":"84.0.4129.0","10.0.0-nightly.20200518":"84.0.4129.0","10.0.0-nightly.20200519":"84.0.4129.0","10.0.0-nightly.20200520":"84.0.4129.0","10.0.0-nightly.20200521":"84.0.4129.0","10.0.0":"85.0.4183.84","10.0.1":"85.0.4183.86","10.1.0":"85.0.4183.87","10.1.1":"85.0.4183.93","10.1.2":"85.0.4183.98","10.1.3":"85.0.4183.121","10.1.4":"85.0.4183.121","10.1.5":"85.0.4183.121","10.1.6":"85.0.4183.121","10.1.7":"85.0.4183.121","10.2.0":"85.0.4183.121","10.3.0":"85.0.4183.121","10.3.1":"85.0.4183.121","10.3.2":"85.0.4183.121","10.4.0":"85.0.4183.121","10.4.1":"85.0.4183.121","10.4.2":"85.0.4183.121","10.4.3":"85.0.4183.121","10.4.4":"85.0.4183.121","10.4.5":"85.0.4183.121","10.4.6":"85.0.4183.121","10.4.7":"85.0.4183.121","11.0.0-beta.1":"86.0.4234.0","11.0.0-beta.3":"86.0.4234.0","11.0.0-beta.4":"86.0.4234.0","11.0.0-beta.5":"86.0.4234.0","11.0.0-beta.6":"86.0.4234.0","11.0.0-beta.7":"86.0.4234.0","11.0.0-beta.8":"87.0.4251.1","11.0.0-beta.9":"87.0.4251.1","11.0.0-beta.11":"87.0.4251.1","11.0.0-beta.12":"87.0.4280.11","11.0.0-beta.13":"87.0.4280.11","11.0.0-beta.16":"87.0.4280.27","11.0.0-beta.17":"87.0.4280.27","11.0.0-beta.18":"87.0.4280.27","11.0.0-beta.19":"87.0.4280.27","11.0.0-beta.20":"87.0.4280.40","11.0.0-beta.22":"87.0.4280.47","11.0.0-beta.23":"87.0.4280.47","11.0.0-nightly.20200525":"84.0.4129.0","11.0.0-nightly.20200526":"84.0.4129.0","11.0.0-nightly.20200529":"85.0.4156.0","11.0.0-nightly.20200602":"85.0.4162.0","11.0.0-nightly.20200603":"85.0.4162.0","11.0.0-nightly.20200604":"85.0.4162.0","11.0.0-nightly.20200609":"85.0.4162.0","11.0.0-nightly.20200610":"85.0.4162.0","11.0.0-nightly.20200611":"85.0.4162.0","11.0.0-nightly.20200615":"85.0.4162.0","11.0.0-nightly.20200616":"85.0.4162.0","11.0.0-nightly.20200617":"85.0.4162.0","11.0.0-nightly.20200618":"85.0.4162.0","11.0.0-nightly.20200619":"85.0.4162.0","11.0.0-nightly.20200701":"85.0.4179.0","11.0.0-nightly.20200702":"85.0.4179.0","11.0.0-nightly.20200703":"85.0.4179.0","11.0.0-nightly.20200706":"85.0.4179.0","11.0.0-nightly.20200707":"85.0.4179.0","11.0.0-nightly.20200708":"85.0.4179.0","11.0.0-nightly.20200709":"85.0.4179.0","11.0.0-nightly.20200716":"86.0.4203.0","11.0.0-nightly.20200717":"86.0.4203.0","11.0.0-nightly.20200720":"86.0.4203.0","11.0.0-nightly.20200721":"86.0.4203.0","11.0.0-nightly.20200723":"86.0.4209.0","11.0.0-nightly.20200724":"86.0.4209.0","11.0.0-nightly.20200729":"86.0.4209.0","11.0.0-nightly.20200730":"86.0.4209.0","11.0.0-nightly.20200731":"86.0.4209.0","11.0.0-nightly.20200803":"86.0.4209.0","11.0.0-nightly.20200804":"86.0.4209.0","11.0.0-nightly.20200805":"86.0.4209.0","11.0.0-nightly.20200811":"86.0.4209.0","11.0.0-nightly.20200812":"86.0.4209.0","11.0.0-nightly.20200822":"86.0.4234.0","11.0.0-nightly.20200824":"86.0.4234.0","11.0.0-nightly.20200825":"86.0.4234.0","11.0.0-nightly.20200826":"86.0.4234.0","11.0.0":"87.0.4280.60","11.0.1":"87.0.4280.60","11.0.2":"87.0.4280.67","11.0.3":"87.0.4280.67","11.0.4":"87.0.4280.67","11.0.5":"87.0.4280.88","11.1.0":"87.0.4280.88","11.1.1":"87.0.4280.88","11.2.0":"87.0.4280.141","11.2.1":"87.0.4280.141","11.2.2":"87.0.4280.141","11.2.3":"87.0.4280.141","11.3.0":"87.0.4280.141","11.4.0":"87.0.4280.141","11.4.1":"87.0.4280.141","11.4.2":"87.0.4280.141","11.4.3":"87.0.4280.141","11.4.4":"87.0.4280.141","11.4.5":"87.0.4280.141","11.4.6":"87.0.4280.141","11.4.7":"87.0.4280.141","11.4.8":"87.0.4280.141","11.4.9":"87.0.4280.141","11.4.10":"87.0.4280.141","11.4.11":"87.0.4280.141","11.4.12":"87.0.4280.141","11.5.0":"87.0.4280.141","12.0.0-beta.1":"89.0.4328.0","12.0.0-beta.3":"89.0.4328.0","12.0.0-beta.4":"89.0.4328.0","12.0.0-beta.5":"89.0.4328.0","12.0.0-beta.6":"89.0.4328.0","12.0.0-beta.7":"89.0.4328.0","12.0.0-beta.8":"89.0.4328.0","12.0.0-beta.9":"89.0.4328.0","12.0.0-beta.10":"89.0.4328.0","12.0.0-beta.11":"89.0.4328.0","12.0.0-beta.12":"89.0.4328.0","12.0.0-beta.14":"89.0.4328.0","12.0.0-beta.16":"89.0.4348.1","12.0.0-beta.18":"89.0.4348.1","12.0.0-beta.19":"89.0.4348.1","12.0.0-beta.20":"89.0.4348.1","12.0.0-beta.21":"89.0.4388.2","12.0.0-beta.22":"89.0.4388.2","12.0.0-beta.23":"89.0.4388.2","12.0.0-beta.24":"89.0.4388.2","12.0.0-beta.25":"89.0.4388.2","12.0.0-beta.26":"89.0.4388.2","12.0.0-beta.27":"89.0.4389.23","12.0.0-beta.28":"89.0.4389.23","12.0.0-beta.29":"89.0.4389.23","12.0.0-beta.30":"89.0.4389.58","12.0.0-beta.31":"89.0.4389.58","12.0.0-nightly.20200827":"86.0.4234.0","12.0.0-nightly.20200831":"86.0.4234.0","12.0.0-nightly.20200902":"86.0.4234.0","12.0.0-nightly.20200903":"86.0.4234.0","12.0.0-nightly.20200907":"86.0.4234.0","12.0.0-nightly.20200910":"86.0.4234.0","12.0.0-nightly.20200911":"86.0.4234.0","12.0.0-nightly.20200914":"86.0.4234.0","12.0.0-nightly.20201002":"87.0.4268.0","12.0.0-nightly.20201007":"87.0.4268.0","12.0.0-nightly.20201009":"87.0.4268.0","12.0.0-nightly.20201012":"87.0.4268.0","12.0.0-nightly.20201013":"87.0.4268.0","12.0.0-nightly.20201014":"87.0.4268.0","12.0.0-nightly.20201015":"87.0.4268.0","12.0.0-nightly.20201023":"88.0.4292.0","12.0.0-nightly.20201026":"88.0.4292.0","12.0.0-nightly.20201030":"88.0.4306.0","12.0.0-nightly.20201102":"88.0.4306.0","12.0.0-nightly.20201103":"88.0.4306.0","12.0.0-nightly.20201104":"88.0.4306.0","12.0.0-nightly.20201105":"88.0.4306.0","12.0.0-nightly.20201106":"88.0.4306.0","12.0.0-nightly.20201111":"88.0.4306.0","12.0.0-nightly.20201112":"88.0.4306.0","12.0.0-nightly.20201116":"88.0.4324.0","12.0.0":"89.0.4389.69","12.0.1":"89.0.4389.82","12.0.2":"89.0.4389.90","12.0.3":"89.0.4389.114","12.0.4":"89.0.4389.114","12.0.5":"89.0.4389.128","12.0.6":"89.0.4389.128","12.0.7":"89.0.4389.128","12.0.8":"89.0.4389.128","12.0.9":"89.0.4389.128","12.0.10":"89.0.4389.128","12.0.11":"89.0.4389.128","12.0.12":"89.0.4389.128","12.0.13":"89.0.4389.128","12.0.14":"89.0.4389.128","12.0.15":"89.0.4389.128","12.0.16":"89.0.4389.128","12.0.17":"89.0.4389.128","12.0.18":"89.0.4389.128","12.1.0":"89.0.4389.128","12.1.1":"89.0.4389.128","12.1.2":"89.0.4389.128","12.2.0":"89.0.4389.128","12.2.1":"89.0.4389.128","12.2.2":"89.0.4389.128","12.2.3":"89.0.4389.128","13.0.0-beta.2":"90.0.4402.0","13.0.0-beta.3":"90.0.4402.0","13.0.0-beta.4":"90.0.4415.0","13.0.0-beta.5":"90.0.4415.0","13.0.0-beta.6":"90.0.4415.0","13.0.0-beta.7":"90.0.4415.0","13.0.0-beta.8":"90.0.4415.0","13.0.0-beta.9":"90.0.4415.0","13.0.0-beta.10":"90.0.4415.0","13.0.0-beta.11":"90.0.4415.0","13.0.0-beta.12":"90.0.4415.0","13.0.0-beta.13":"90.0.4415.0","13.0.0-beta.14":"91.0.4448.0","13.0.0-beta.16":"91.0.4448.0","13.0.0-beta.17":"91.0.4448.0","13.0.0-beta.18":"91.0.4448.0","13.0.0-beta.20":"91.0.4448.0","13.0.0-beta.21":"91.0.4472.33","13.0.0-beta.22":"91.0.4472.33","13.0.0-beta.23":"91.0.4472.33","13.0.0-beta.24":"91.0.4472.38","13.0.0-beta.25":"91.0.4472.38","13.0.0-beta.26":"91.0.4472.38","13.0.0-beta.27":"91.0.4472.38","13.0.0-beta.28":"91.0.4472.38","13.0.0-nightly.20201119":"89.0.4328.0","13.0.0-nightly.20201123":"89.0.4328.0","13.0.0-nightly.20201124":"89.0.4328.0","13.0.0-nightly.20201126":"89.0.4328.0","13.0.0-nightly.20201127":"89.0.4328.0","13.0.0-nightly.20201130":"89.0.4328.0","13.0.0-nightly.20201201":"89.0.4328.0","13.0.0-nightly.20201202":"89.0.4328.0","13.0.0-nightly.20201203":"89.0.4328.0","13.0.0-nightly.20201204":"89.0.4328.0","13.0.0-nightly.20201207":"89.0.4328.0","13.0.0-nightly.20201208":"89.0.4328.0","13.0.0-nightly.20201209":"89.0.4328.0","13.0.0-nightly.20201210":"89.0.4328.0","13.0.0-nightly.20201211":"89.0.4328.0","13.0.0-nightly.20201214":"89.0.4328.0","13.0.0-nightly.20201215":"89.0.4349.0","13.0.0-nightly.20201216":"89.0.4349.0","13.0.0-nightly.20201221":"89.0.4349.0","13.0.0-nightly.20201222":"89.0.4349.0","13.0.0-nightly.20201223":"89.0.4359.0","13.0.0-nightly.20210104":"89.0.4359.0","13.0.0-nightly.20210108":"89.0.4359.0","13.0.0-nightly.20210111":"89.0.4359.0","13.0.0-nightly.20210113":"89.0.4386.0","13.0.0-nightly.20210114":"89.0.4386.0","13.0.0-nightly.20210118":"89.0.4386.0","13.0.0-nightly.20210122":"89.0.4386.0","13.0.0-nightly.20210125":"89.0.4386.0","13.0.0-nightly.20210127":"89.0.4389.0","13.0.0-nightly.20210128":"89.0.4389.0","13.0.0-nightly.20210129":"89.0.4389.0","13.0.0-nightly.20210201":"89.0.4389.0","13.0.0-nightly.20210202":"89.0.4389.0","13.0.0-nightly.20210203":"89.0.4389.0","13.0.0-nightly.20210205":"89.0.4389.0","13.0.0-nightly.20210208":"89.0.4389.0","13.0.0-nightly.20210209":"89.0.4389.0","13.0.0-nightly.20210210":"90.0.4402.0","13.0.0-nightly.20210211":"90.0.4402.0","13.0.0-nightly.20210212":"90.0.4402.0","13.0.0-nightly.20210216":"90.0.4402.0","13.0.0-nightly.20210217":"90.0.4402.0","13.0.0-nightly.20210218":"90.0.4402.0","13.0.0-nightly.20210219":"90.0.4402.0","13.0.0-nightly.20210222":"90.0.4402.0","13.0.0-nightly.20210225":"90.0.4402.0","13.0.0-nightly.20210226":"90.0.4402.0","13.0.0-nightly.20210301":"90.0.4402.0","13.0.0-nightly.20210302":"90.0.4402.0","13.0.0-nightly.20210303":"90.0.4402.0","13.0.0":"91.0.4472.69","13.0.1":"91.0.4472.69","13.1.0":"91.0.4472.77","13.1.1":"91.0.4472.77","13.1.2":"91.0.4472.77","13.1.3":"91.0.4472.106","13.1.4":"91.0.4472.106","13.1.5":"91.0.4472.124","13.1.6":"91.0.4472.124","13.1.7":"91.0.4472.124","13.1.8":"91.0.4472.164","13.1.9":"91.0.4472.164","13.2.0":"91.0.4472.164","13.2.1":"91.0.4472.164","13.2.2":"91.0.4472.164","13.2.3":"91.0.4472.164","13.3.0":"91.0.4472.164","13.4.0":"91.0.4472.164","13.5.0":"91.0.4472.164","13.5.1":"91.0.4472.164","13.5.2":"91.0.4472.164","13.6.0":"91.0.4472.164","13.6.1":"91.0.4472.164","13.6.2":"91.0.4472.164","13.6.3":"91.0.4472.164","13.6.6":"91.0.4472.164","13.6.7":"91.0.4472.164","13.6.8":"91.0.4472.164","13.6.9":"91.0.4472.164","14.0.0-beta.1":"92.0.4511.0","14.0.0-beta.2":"92.0.4511.0","14.0.0-beta.3":"92.0.4511.0","14.0.0-beta.5":"93.0.4536.0","14.0.0-beta.6":"93.0.4536.0","14.0.0-beta.7":"93.0.4536.0","14.0.0-beta.8":"93.0.4536.0","14.0.0-beta.9":"93.0.4539.0","14.0.0-beta.10":"93.0.4539.0","14.0.0-beta.11":"93.0.4557.4","14.0.0-beta.12":"93.0.4557.4","14.0.0-beta.13":"93.0.4566.0","14.0.0-beta.14":"93.0.4566.0","14.0.0-beta.15":"93.0.4566.0","14.0.0-beta.16":"93.0.4566.0","14.0.0-beta.17":"93.0.4566.0","14.0.0-beta.18":"93.0.4577.15","14.0.0-beta.19":"93.0.4577.15","14.0.0-beta.20":"93.0.4577.15","14.0.0-beta.21":"93.0.4577.15","14.0.0-beta.22":"93.0.4577.25","14.0.0-beta.23":"93.0.4577.25","14.0.0-beta.24":"93.0.4577.51","14.0.0-beta.25":"93.0.4577.51","14.0.0-nightly.20210304":"90.0.4402.0","14.0.0-nightly.20210305":"90.0.4415.0","14.0.0-nightly.20210308":"90.0.4415.0","14.0.0-nightly.20210309":"90.0.4415.0","14.0.0-nightly.20210311":"90.0.4415.0","14.0.0-nightly.20210315":"90.0.4415.0","14.0.0-nightly.20210316":"90.0.4415.0","14.0.0-nightly.20210317":"90.0.4415.0","14.0.0-nightly.20210318":"90.0.4415.0","14.0.0-nightly.20210319":"90.0.4415.0","14.0.0-nightly.20210323":"90.0.4415.0","14.0.0-nightly.20210324":"90.0.4415.0","14.0.0-nightly.20210325":"90.0.4415.0","14.0.0-nightly.20210326":"90.0.4415.0","14.0.0-nightly.20210329":"90.0.4415.0","14.0.0-nightly.20210330":"90.0.4415.0","14.0.0-nightly.20210331":"91.0.4448.0","14.0.0-nightly.20210401":"91.0.4448.0","14.0.0-nightly.20210402":"91.0.4448.0","14.0.0-nightly.20210406":"91.0.4448.0","14.0.0-nightly.20210407":"91.0.4448.0","14.0.0-nightly.20210408":"91.0.4448.0","14.0.0-nightly.20210409":"91.0.4448.0","14.0.0-nightly.20210413":"91.0.4448.0","14.0.0-nightly.20210426":"92.0.4475.0","14.0.0-nightly.20210427":"92.0.4475.0","14.0.0-nightly.20210430":"92.0.4488.0","14.0.0-nightly.20210503":"92.0.4488.0","14.0.0-nightly.20210505":"92.0.4496.0","14.0.0-nightly.20210506":"92.0.4498.0","14.0.0-nightly.20210507":"92.0.4499.0","14.0.0-nightly.20210510":"92.0.4499.0","14.0.0-nightly.20210511":"92.0.4499.0","14.0.0-nightly.20210512":"92.0.4499.0","14.0.0-nightly.20210513":"92.0.4499.0","14.0.0-nightly.20210514":"92.0.4505.0","14.0.0-nightly.20210517":"92.0.4505.0","14.0.0-nightly.20210518":"92.0.4505.0","14.0.0-nightly.20210519":"92.0.4505.0","14.0.0-nightly.20210520":"92.0.4511.0","14.0.0-nightly.20210523":"92.0.4511.0","14.0.0-nightly.20210524":"92.0.4511.0","14.0.0":"93.0.4577.58","14.0.1":"93.0.4577.63","14.0.2":"93.0.4577.82","14.1.0":"93.0.4577.82","14.1.1":"93.0.4577.82","14.2.0":"93.0.4577.82","14.2.1":"93.0.4577.82","14.2.2":"93.0.4577.82","14.2.3":"93.0.4577.82","14.2.4":"93.0.4577.82","14.2.5":"93.0.4577.82","14.2.6":"93.0.4577.82","14.2.7":"93.0.4577.82","14.2.8":"93.0.4577.82","14.2.9":"93.0.4577.82","15.0.0-alpha.1":"93.0.4566.0","15.0.0-alpha.2":"93.0.4566.0","15.0.0-alpha.3":"94.0.4584.0","15.0.0-alpha.4":"94.0.4584.0","15.0.0-alpha.5":"94.0.4584.0","15.0.0-alpha.6":"94.0.4584.0","15.0.0-alpha.7":"94.0.4590.2","15.0.0-alpha.8":"94.0.4590.2","15.0.0-alpha.9":"94.0.4590.2","15.0.0-alpha.10":"94.0.4606.12","15.0.0-beta.1":"94.0.4606.20","15.0.0-beta.2":"94.0.4606.20","15.0.0-beta.3":"94.0.4606.31","15.0.0-beta.4":"94.0.4606.31","15.0.0-beta.5":"94.0.4606.31","15.0.0-beta.6":"94.0.4606.31","15.0.0-beta.7":"94.0.4606.31","15.0.0-nightly.20210527":"92.0.4511.0","15.0.0-nightly.20210528":"92.0.4511.0","15.0.0-nightly.20210531":"92.0.4511.0","15.0.0-nightly.20210601":"92.0.4511.0","15.0.0-nightly.20210602":"92.0.4511.0","15.0.0-nightly.20210603":"93.0.4530.0","15.0.0-nightly.20210604":"93.0.4530.0","15.0.0-nightly.20210608":"93.0.4535.0","15.0.0-nightly.20210609":"93.0.4536.0","15.0.0-nightly.20210610":"93.0.4536.0","15.0.0-nightly.20210611":"93.0.4536.0","15.0.0-nightly.20210614":"93.0.4536.0","15.0.0-nightly.20210615":"93.0.4536.0","15.0.0-nightly.20210616":"93.0.4536.0","15.0.0-nightly.20210617":"93.0.4539.0","15.0.0-nightly.20210618":"93.0.4539.0","15.0.0-nightly.20210621":"93.0.4539.0","15.0.0-nightly.20210622":"93.0.4539.0","15.0.0-nightly.20210623":"93.0.4550.0","15.0.0-nightly.20210624":"93.0.4550.0","15.0.0-nightly.20210625":"93.0.4552.0","15.0.0-nightly.20210628":"93.0.4552.0","15.0.0-nightly.20210629":"93.0.4552.0","15.0.0-nightly.20210630":"93.0.4558.0","15.0.0-nightly.20210701":"93.0.4558.0","15.0.0-nightly.20210702":"93.0.4558.0","15.0.0-nightly.20210705":"93.0.4558.0","15.0.0-nightly.20210706":"93.0.4566.0","15.0.0-nightly.20210707":"93.0.4566.0","15.0.0-nightly.20210708":"93.0.4566.0","15.0.0-nightly.20210709":"93.0.4566.0","15.0.0-nightly.20210712":"93.0.4566.0","15.0.0-nightly.20210713":"93.0.4566.0","15.0.0-nightly.20210714":"93.0.4566.0","15.0.0-nightly.20210715":"93.0.4566.0","15.0.0-nightly.20210716":"93.0.4566.0","15.0.0-nightly.20210719":"93.0.4566.0","15.0.0-nightly.20210720":"93.0.4566.0","15.0.0-nightly.20210721":"93.0.4566.0","15.0.0":"94.0.4606.51","15.1.0":"94.0.4606.61","15.1.1":"94.0.4606.61","15.1.2":"94.0.4606.71","15.2.0":"94.0.4606.81","15.3.0":"94.0.4606.81","15.3.1":"94.0.4606.81","15.3.2":"94.0.4606.81","15.3.3":"94.0.4606.81","15.3.4":"94.0.4606.81","15.3.5":"94.0.4606.81","15.3.6":"94.0.4606.81","15.3.7":"94.0.4606.81","15.4.0":"94.0.4606.81","15.4.1":"94.0.4606.81","15.4.2":"94.0.4606.81","15.5.0":"94.0.4606.81","15.5.1":"94.0.4606.81","15.5.2":"94.0.4606.81","15.5.3":"94.0.4606.81","15.5.4":"94.0.4606.81","15.5.5":"94.0.4606.81","15.5.6":"94.0.4606.81","15.5.7":"94.0.4606.81","16.0.0-alpha.1":"95.0.4629.0","16.0.0-alpha.2":"95.0.4629.0","16.0.0-alpha.3":"95.0.4629.0","16.0.0-alpha.4":"95.0.4629.0","16.0.0-alpha.5":"95.0.4629.0","16.0.0-alpha.6":"95.0.4629.0","16.0.0-alpha.7":"95.0.4629.0","16.0.0-alpha.8":"96.0.4647.0","16.0.0-alpha.9":"96.0.4647.0","16.0.0-beta.1":"96.0.4647.0","16.0.0-beta.2":"96.0.4647.0","16.0.0-beta.3":"96.0.4647.0","16.0.0-beta.4":"96.0.4664.18","16.0.0-beta.5":"96.0.4664.18","16.0.0-beta.6":"96.0.4664.27","16.0.0-beta.7":"96.0.4664.27","16.0.0-beta.8":"96.0.4664.35","16.0.0-beta.9":"96.0.4664.35","16.0.0-nightly.20210722":"93.0.4566.0","16.0.0-nightly.20210723":"93.0.4566.0","16.0.0-nightly.20210726":"93.0.4566.0","16.0.0-nightly.20210727":"94.0.4584.0","16.0.0-nightly.20210728":"94.0.4584.0","16.0.0-nightly.20210729":"94.0.4584.0","16.0.0-nightly.20210730":"94.0.4584.0","16.0.0-nightly.20210802":"94.0.4584.0","16.0.0-nightly.20210803":"94.0.4584.0","16.0.0-nightly.20210804":"94.0.4584.0","16.0.0-nightly.20210805":"94.0.4584.0","16.0.0-nightly.20210806":"94.0.4584.0","16.0.0-nightly.20210809":"94.0.4584.0","16.0.0-nightly.20210810":"94.0.4584.0","16.0.0-nightly.20210811":"94.0.4584.0","16.0.0-nightly.20210812":"94.0.4590.2","16.0.0-nightly.20210813":"94.0.4590.2","16.0.0-nightly.20210816":"94.0.4590.2","16.0.0-nightly.20210817":"94.0.4590.2","16.0.0-nightly.20210818":"94.0.4590.2","16.0.0-nightly.20210819":"94.0.4590.2","16.0.0-nightly.20210820":"94.0.4590.2","16.0.0-nightly.20210823":"94.0.4590.2","16.0.0-nightly.20210824":"95.0.4612.5","16.0.0-nightly.20210825":"95.0.4612.5","16.0.0-nightly.20210826":"95.0.4612.5","16.0.0-nightly.20210827":"95.0.4612.5","16.0.0-nightly.20210830":"95.0.4612.5","16.0.0-nightly.20210831":"95.0.4612.5","16.0.0-nightly.20210901":"95.0.4612.5","16.0.0-nightly.20210902":"95.0.4629.0","16.0.0-nightly.20210903":"95.0.4629.0","16.0.0-nightly.20210906":"95.0.4629.0","16.0.0-nightly.20210907":"95.0.4629.0","16.0.0-nightly.20210908":"95.0.4629.0","16.0.0-nightly.20210909":"95.0.4629.0","16.0.0-nightly.20210910":"95.0.4629.0","16.0.0-nightly.20210913":"95.0.4629.0","16.0.0-nightly.20210914":"95.0.4629.0","16.0.0-nightly.20210915":"95.0.4629.0","16.0.0-nightly.20210916":"95.0.4629.0","16.0.0-nightly.20210917":"95.0.4629.0","16.0.0-nightly.20210920":"95.0.4629.0","16.0.0-nightly.20210921":"95.0.4629.0","16.0.0-nightly.20210922":"95.0.4629.0","16.0.0":"96.0.4664.45","16.0.1":"96.0.4664.45","16.0.2":"96.0.4664.55","16.0.3":"96.0.4664.55","16.0.4":"96.0.4664.55","16.0.5":"96.0.4664.55","16.0.6":"96.0.4664.110","16.0.7":"96.0.4664.110","16.0.8":"96.0.4664.110","16.0.9":"96.0.4664.174","16.0.10":"96.0.4664.174","16.1.0":"96.0.4664.174","16.1.1":"96.0.4664.174","16.2.0":"96.0.4664.174","16.2.1":"96.0.4664.174","16.2.2":"96.0.4664.174","16.2.3":"96.0.4664.174","16.2.4":"96.0.4664.174","16.2.5":"96.0.4664.174","16.2.6":"96.0.4664.174","16.2.7":"96.0.4664.174","16.2.8":"96.0.4664.174","17.0.0-alpha.1":"96.0.4664.4","17.0.0-alpha.2":"96.0.4664.4","17.0.0-alpha.3":"96.0.4664.4","17.0.0-alpha.4":"98.0.4706.0","17.0.0-alpha.5":"98.0.4706.0","17.0.0-alpha.6":"98.0.4706.0","17.0.0-beta.1":"98.0.4706.0","17.0.0-beta.2":"98.0.4706.0","17.0.0-beta.3":"98.0.4758.9","17.0.0-beta.4":"98.0.4758.11","17.0.0-beta.5":"98.0.4758.11","17.0.0-beta.6":"98.0.4758.11","17.0.0-beta.7":"98.0.4758.11","17.0.0-beta.8":"98.0.4758.11","17.0.0-beta.9":"98.0.4758.11","17.0.0-nightly.20210923":"95.0.4629.0","17.0.0-nightly.20210924":"95.0.4629.0","17.0.0-nightly.20210927":"95.0.4629.0","17.0.0-nightly.20210928":"95.0.4629.0","17.0.0-nightly.20210929":"95.0.4629.0","17.0.0-nightly.20210930":"95.0.4629.0","17.0.0-nightly.20211001":"95.0.4629.0","17.0.0-nightly.20211004":"95.0.4629.0","17.0.0-nightly.20211005":"95.0.4629.0","17.0.0-nightly.20211006":"96.0.4647.0","17.0.0-nightly.20211007":"96.0.4647.0","17.0.0-nightly.20211008":"96.0.4647.0","17.0.0-nightly.20211011":"96.0.4647.0","17.0.0-nightly.20211012":"96.0.4647.0","17.0.0-nightly.20211013":"96.0.4647.0","17.0.0-nightly.20211014":"96.0.4647.0","17.0.0-nightly.20211015":"96.0.4647.0","17.0.0-nightly.20211018":"96.0.4647.0","17.0.0-nightly.20211019":"96.0.4647.0","17.0.0-nightly.20211020":"96.0.4647.0","17.0.0-nightly.20211021":"96.0.4647.0","17.0.0-nightly.20211022":"96.0.4664.4","17.0.0-nightly.20211025":"96.0.4664.4","17.0.0-nightly.20211026":"96.0.4664.4","17.0.0-nightly.20211027":"96.0.4664.4","17.0.0-nightly.20211028":"96.0.4664.4","17.0.0-nightly.20211029":"96.0.4664.4","17.0.0-nightly.20211101":"96.0.4664.4","17.0.0-nightly.20211102":"96.0.4664.4","17.0.0-nightly.20211103":"96.0.4664.4","17.0.0-nightly.20211104":"96.0.4664.4","17.0.0-nightly.20211105":"96.0.4664.4","17.0.0-nightly.20211108":"96.0.4664.4","17.0.0-nightly.20211109":"96.0.4664.4","17.0.0-nightly.20211110":"96.0.4664.4","17.0.0-nightly.20211111":"96.0.4664.4","17.0.0-nightly.20211112":"96.0.4664.4","17.0.0-nightly.20211115":"96.0.4664.4","17.0.0-nightly.20211116":"96.0.4664.4","17.0.0-nightly.20211117":"96.0.4664.4","17.0.0":"98.0.4758.74","17.0.1":"98.0.4758.82","17.1.0":"98.0.4758.102","17.1.1":"98.0.4758.109","17.1.2":"98.0.4758.109","17.2.0":"98.0.4758.109","17.3.0":"98.0.4758.141","17.3.1":"98.0.4758.141","17.4.0":"98.0.4758.141","17.4.1":"98.0.4758.141","17.4.2":"98.0.4758.141","17.4.3":"98.0.4758.141","17.4.4":"98.0.4758.141","17.4.5":"98.0.4758.141","17.4.6":"98.0.4758.141","17.4.7":"98.0.4758.141","17.4.8":"98.0.4758.141","17.4.9":"98.0.4758.141","17.4.10":"98.0.4758.141","17.4.11":"98.0.4758.141","18.0.0-alpha.1":"99.0.4767.0","18.0.0-alpha.2":"99.0.4767.0","18.0.0-alpha.3":"99.0.4767.0","18.0.0-alpha.4":"99.0.4767.0","18.0.0-alpha.5":"99.0.4767.0","18.0.0-beta.1":"100.0.4894.0","18.0.0-beta.2":"100.0.4894.0","18.0.0-beta.3":"100.0.4894.0","18.0.0-beta.4":"100.0.4894.0","18.0.0-beta.5":"100.0.4894.0","18.0.0-beta.6":"100.0.4894.0","18.0.0-nightly.20211118":"96.0.4664.4","18.0.0-nightly.20211119":"96.0.4664.4","18.0.0-nightly.20211122":"96.0.4664.4","18.0.0-nightly.20211123":"96.0.4664.4","18.0.0-nightly.20211124":"98.0.4706.0","18.0.0-nightly.20211125":"98.0.4706.0","18.0.0-nightly.20211126":"98.0.4706.0","18.0.0-nightly.20211129":"98.0.4706.0","18.0.0-nightly.20211130":"98.0.4706.0","18.0.0-nightly.20211201":"98.0.4706.0","18.0.0-nightly.20211202":"98.0.4706.0","18.0.0-nightly.20211203":"98.0.4706.0","18.0.0-nightly.20211206":"98.0.4706.0","18.0.0-nightly.20211207":"98.0.4706.0","18.0.0-nightly.20211208":"98.0.4706.0","18.0.0-nightly.20211209":"98.0.4706.0","18.0.0-nightly.20211210":"98.0.4706.0","18.0.0-nightly.20211213":"98.0.4706.0","18.0.0-nightly.20211214":"98.0.4706.0","18.0.0-nightly.20211215":"98.0.4706.0","18.0.0-nightly.20211216":"98.0.4706.0","18.0.0-nightly.20211217":"98.0.4706.0","18.0.0-nightly.20211220":"98.0.4706.0","18.0.0-nightly.20211221":"98.0.4706.0","18.0.0-nightly.20211222":"98.0.4706.0","18.0.0-nightly.20211223":"98.0.4706.0","18.0.0-nightly.20211228":"98.0.4706.0","18.0.0-nightly.20211229":"98.0.4706.0","18.0.0-nightly.20211231":"98.0.4706.0","18.0.0-nightly.20220103":"98.0.4706.0","18.0.0-nightly.20220104":"98.0.4706.0","18.0.0-nightly.20220105":"98.0.4706.0","18.0.0-nightly.20220106":"98.0.4706.0","18.0.0-nightly.20220107":"98.0.4706.0","18.0.0-nightly.20220110":"98.0.4706.0","18.0.0-nightly.20220111":"99.0.4767.0","18.0.0-nightly.20220112":"99.0.4767.0","18.0.0-nightly.20220113":"99.0.4767.0","18.0.0-nightly.20220114":"99.0.4767.0","18.0.0-nightly.20220117":"99.0.4767.0","18.0.0-nightly.20220118":"99.0.4767.0","18.0.0-nightly.20220119":"99.0.4767.0","18.0.0-nightly.20220121":"99.0.4767.0","18.0.0-nightly.20220124":"99.0.4767.0","18.0.0-nightly.20220125":"99.0.4767.0","18.0.0-nightly.20220127":"99.0.4767.0","18.0.0-nightly.20220128":"99.0.4767.0","18.0.0-nightly.20220131":"99.0.4767.0","18.0.0-nightly.20220201":"99.0.4767.0","18.0.0":"100.0.4896.56","18.0.1":"100.0.4896.60","18.0.2":"100.0.4896.60","18.0.3":"100.0.4896.75","18.0.4":"100.0.4896.75","18.1.0":"100.0.4896.127","18.2.0":"100.0.4896.143","18.2.1":"100.0.4896.143","18.2.2":"100.0.4896.143","18.2.3":"100.0.4896.143","18.2.4":"100.0.4896.160","18.3.0":"100.0.4896.160","18.3.1":"100.0.4896.160","18.3.2":"100.0.4896.160","18.3.3":"100.0.4896.160","18.3.4":"100.0.4896.160","18.3.5":"100.0.4896.160","18.3.6":"100.0.4896.160","18.3.7":"100.0.4896.160","18.3.8":"100.0.4896.160","18.3.9":"100.0.4896.160","18.3.11":"100.0.4896.160","18.3.12":"100.0.4896.160","18.3.13":"100.0.4896.160","18.3.14":"100.0.4896.160","18.3.15":"100.0.4896.160","19.0.0-alpha.1":"102.0.4962.3","19.0.0-alpha.2":"102.0.4971.0","19.0.0-alpha.3":"102.0.4971.0","19.0.0-alpha.4":"102.0.4989.0","19.0.0-alpha.5":"102.0.4989.0","19.0.0-beta.1":"102.0.4999.0","19.0.0-beta.2":"102.0.4999.0","19.0.0-beta.3":"102.0.4999.0","19.0.0-beta.4":"102.0.5005.27","19.0.0-beta.5":"102.0.5005.40","19.0.0-beta.6":"102.0.5005.40","19.0.0-beta.7":"102.0.5005.40","19.0.0-beta.8":"102.0.5005.49","19.0.0-nightly.20220202":"99.0.4767.0","19.0.0-nightly.20220203":"99.0.4767.0","19.0.0-nightly.20220204":"99.0.4767.0","19.0.0-nightly.20220207":"99.0.4767.0","19.0.0-nightly.20220208":"99.0.4767.0","19.0.0-nightly.20220209":"99.0.4767.0","19.0.0-nightly.20220308":"100.0.4894.0","19.0.0-nightly.20220309":"100.0.4894.0","19.0.0-nightly.20220310":"100.0.4894.0","19.0.0-nightly.20220311":"100.0.4894.0","19.0.0-nightly.20220314":"100.0.4894.0","19.0.0-nightly.20220315":"100.0.4894.0","19.0.0-nightly.20220316":"100.0.4894.0","19.0.0-nightly.20220317":"100.0.4894.0","19.0.0-nightly.20220318":"100.0.4894.0","19.0.0-nightly.20220321":"100.0.4894.0","19.0.0-nightly.20220322":"100.0.4894.0","19.0.0-nightly.20220323":"100.0.4894.0","19.0.0-nightly.20220324":"100.0.4894.0","19.0.0-nightly.20220325":"102.0.4961.0","19.0.0-nightly.20220328":"102.0.4962.3","19.0.0-nightly.20220329":"102.0.4962.3","19.0.0":"102.0.5005.61","19.0.1":"102.0.5005.61","19.0.2":"102.0.5005.63","19.0.3":"102.0.5005.63","19.0.4":"102.0.5005.63","19.0.5":"102.0.5005.115","19.0.6":"102.0.5005.115","19.0.7":"102.0.5005.134","19.0.8":"102.0.5005.148","19.0.9":"102.0.5005.167","19.0.10":"102.0.5005.167","19.0.11":"102.0.5005.167","19.0.12":"102.0.5005.167","19.0.13":"102.0.5005.167","19.0.14":"102.0.5005.167","19.0.15":"102.0.5005.167","19.0.16":"102.0.5005.167","19.0.17":"102.0.5005.167","19.1.0":"102.0.5005.167","19.1.1":"102.0.5005.167","19.1.2":"102.0.5005.167","19.1.3":"102.0.5005.167","19.1.4":"102.0.5005.167","19.1.5":"102.0.5005.167","19.1.6":"102.0.5005.167","19.1.7":"102.0.5005.167","19.1.8":"102.0.5005.167","19.1.9":"102.0.5005.167","20.0.0-alpha.1":"103.0.5044.0","20.0.0-alpha.2":"104.0.5073.0","20.0.0-alpha.3":"104.0.5073.0","20.0.0-alpha.4":"104.0.5073.0","20.0.0-alpha.5":"104.0.5073.0","20.0.0-alpha.6":"104.0.5073.0","20.0.0-alpha.7":"104.0.5073.0","20.0.0-beta.1":"104.0.5073.0","20.0.0-beta.2":"104.0.5073.0","20.0.0-beta.3":"104.0.5073.0","20.0.0-beta.4":"104.0.5073.0","20.0.0-beta.5":"104.0.5073.0","20.0.0-beta.6":"104.0.5073.0","20.0.0-beta.7":"104.0.5073.0","20.0.0-beta.8":"104.0.5073.0","20.0.0-beta.9":"104.0.5112.39","20.0.0-beta.10":"104.0.5112.48","20.0.0-beta.11":"104.0.5112.48","20.0.0-beta.12":"104.0.5112.48","20.0.0-beta.13":"104.0.5112.57","20.0.0-nightly.20220330":"102.0.4962.3","20.0.0-nightly.20220411":"102.0.4971.0","20.0.0-nightly.20220414":"102.0.4989.0","20.0.0-nightly.20220415":"102.0.4989.0","20.0.0-nightly.20220418":"102.0.4989.0","20.0.0-nightly.20220419":"102.0.4989.0","20.0.0-nightly.20220420":"102.0.4989.0","20.0.0-nightly.20220421":"102.0.4989.0","20.0.0-nightly.20220425":"102.0.4999.0","20.0.0-nightly.20220426":"102.0.4999.0","20.0.0-nightly.20220427":"102.0.4999.0","20.0.0-nightly.20220428":"102.0.4999.0","20.0.0-nightly.20220429":"102.0.4999.0","20.0.0-nightly.20220502":"102.0.4999.0","20.0.0-nightly.20220503":"102.0.4999.0","20.0.0-nightly.20220504":"102.0.4999.0","20.0.0-nightly.20220505":"102.0.4999.0","20.0.0-nightly.20220506":"102.0.4999.0","20.0.0-nightly.20220509":"102.0.4999.0","20.0.0-nightly.20220511":"102.0.4999.0","20.0.0-nightly.20220512":"102.0.4999.0","20.0.0-nightly.20220513":"102.0.4999.0","20.0.0-nightly.20220516":"102.0.4999.0","20.0.0-nightly.20220517":"102.0.4999.0","20.0.0-nightly.20220518":"103.0.5044.0","20.0.0-nightly.20220519":"103.0.5044.0","20.0.0-nightly.20220520":"103.0.5044.0","20.0.0-nightly.20220523":"103.0.5044.0","20.0.0-nightly.20220524":"103.0.5044.0","20.0.0":"104.0.5112.65","20.0.1":"104.0.5112.81","20.0.2":"104.0.5112.81","20.0.3":"104.0.5112.81","20.1.0":"104.0.5112.102","20.1.1":"104.0.5112.102","20.1.2":"104.0.5112.114","20.1.3":"104.0.5112.114","20.1.4":"104.0.5112.114","20.2.0":"104.0.5112.124","20.3.0":"104.0.5112.124","20.3.1":"104.0.5112.124","20.3.2":"104.0.5112.124","20.3.3":"104.0.5112.124","20.3.4":"104.0.5112.124","20.3.5":"104.0.5112.124","20.3.6":"104.0.5112.124","20.3.7":"104.0.5112.124","20.3.8":"104.0.5112.124","20.3.9":"104.0.5112.124","20.3.10":"104.0.5112.124","20.3.11":"104.0.5112.124","20.3.12":"104.0.5112.124","21.0.0-alpha.1":"105.0.5187.0","21.0.0-alpha.2":"105.0.5187.0","21.0.0-alpha.3":"105.0.5187.0","21.0.0-alpha.4":"105.0.5187.0","21.0.0-alpha.5":"105.0.5187.0","21.0.0-alpha.6":"106.0.5216.0","21.0.0-beta.1":"106.0.5216.0","21.0.0-beta.2":"106.0.5216.0","21.0.0-beta.3":"106.0.5216.0","21.0.0-beta.4":"106.0.5216.0","21.0.0-beta.5":"106.0.5216.0","21.0.0-beta.6":"106.0.5249.40","21.0.0-beta.7":"106.0.5249.40","21.0.0-beta.8":"106.0.5249.40","21.0.0-nightly.20220526":"103.0.5044.0","21.0.0-nightly.20220527":"103.0.5044.0","21.0.0-nightly.20220530":"103.0.5044.0","21.0.0-nightly.20220531":"103.0.5044.0","21.0.0-nightly.20220602":"104.0.5073.0","21.0.0-nightly.20220603":"104.0.5073.0","21.0.0-nightly.20220606":"104.0.5073.0","21.0.0-nightly.20220607":"104.0.5073.0","21.0.0-nightly.20220608":"104.0.5073.0","21.0.0-nightly.20220609":"104.0.5073.0","21.0.0-nightly.20220610":"104.0.5073.0","21.0.0-nightly.20220613":"104.0.5073.0","21.0.0-nightly.20220614":"104.0.5073.0","21.0.0-nightly.20220615":"104.0.5073.0","21.0.0-nightly.20220616":"104.0.5073.0","21.0.0-nightly.20220617":"104.0.5073.0","21.0.0-nightly.20220620":"104.0.5073.0","21.0.0-nightly.20220621":"104.0.5073.0","21.0.0-nightly.20220622":"104.0.5073.0","21.0.0-nightly.20220623":"104.0.5073.0","21.0.0-nightly.20220624":"104.0.5073.0","21.0.0-nightly.20220627":"104.0.5073.0","21.0.0-nightly.20220628":"105.0.5129.0","21.0.0-nightly.20220629":"105.0.5129.0","21.0.0-nightly.20220630":"105.0.5129.0","21.0.0-nightly.20220701":"105.0.5129.0","21.0.0-nightly.20220704":"105.0.5129.0","21.0.0-nightly.20220705":"105.0.5129.0","21.0.0-nightly.20220706":"105.0.5129.0","21.0.0-nightly.20220707":"105.0.5129.0","21.0.0-nightly.20220708":"105.0.5129.0","21.0.0-nightly.20220711":"105.0.5129.0","21.0.0-nightly.20220712":"105.0.5129.0","21.0.0-nightly.20220713":"105.0.5129.0","21.0.0-nightly.20220715":"105.0.5173.0","21.0.0-nightly.20220718":"105.0.5173.0","21.0.0-nightly.20220719":"105.0.5173.0","21.0.0-nightly.20220720":"105.0.5187.0","21.0.0-nightly.20220721":"105.0.5187.0","21.0.0-nightly.20220722":"105.0.5187.0","21.0.0-nightly.20220725":"105.0.5187.0","21.0.0-nightly.20220726":"105.0.5187.0","21.0.0-nightly.20220727":"105.0.5187.0","21.0.0-nightly.20220728":"105.0.5187.0","21.0.0-nightly.20220801":"105.0.5187.0","21.0.0-nightly.20220802":"105.0.5187.0","21.0.0":"106.0.5249.51","21.0.1":"106.0.5249.61","21.1.0":"106.0.5249.91","21.1.1":"106.0.5249.103","21.2.0":"106.0.5249.119","21.2.1":"106.0.5249.165","21.2.2":"106.0.5249.168","21.2.3":"106.0.5249.168","21.3.0":"106.0.5249.181","21.3.1":"106.0.5249.181","21.3.3":"106.0.5249.199","21.3.4":"106.0.5249.199","21.3.5":"106.0.5249.199","21.4.0":"106.0.5249.199","21.4.1":"106.0.5249.199","21.4.2":"106.0.5249.199","21.4.3":"106.0.5249.199","21.4.4":"106.0.5249.199","22.0.0-alpha.1":"107.0.5286.0","22.0.0-alpha.3":"108.0.5329.0","22.0.0-alpha.4":"108.0.5329.0","22.0.0-alpha.5":"108.0.5329.0","22.0.0-alpha.6":"108.0.5329.0","22.0.0-alpha.7":"108.0.5355.0","22.0.0-alpha.8":"108.0.5359.10","22.0.0-beta.1":"108.0.5359.10","22.0.0-beta.2":"108.0.5359.10","22.0.0-beta.3":"108.0.5359.10","22.0.0-beta.4":"108.0.5359.29","22.0.0-beta.5":"108.0.5359.40","22.0.0-beta.6":"108.0.5359.40","22.0.0-beta.7":"108.0.5359.48","22.0.0-beta.8":"108.0.5359.48","22.0.0-nightly.20220808":"105.0.5187.0","22.0.0-nightly.20220809":"105.0.5187.0","22.0.0-nightly.20220810":"105.0.5187.0","22.0.0-nightly.20220811":"105.0.5187.0","22.0.0-nightly.20220812":"105.0.5187.0","22.0.0-nightly.20220815":"105.0.5187.0","22.0.0-nightly.20220816":"105.0.5187.0","22.0.0-nightly.20220817":"105.0.5187.0","22.0.0-nightly.20220822":"106.0.5216.0","22.0.0-nightly.20220823":"106.0.5216.0","22.0.0-nightly.20220824":"106.0.5216.0","22.0.0-nightly.20220825":"106.0.5216.0","22.0.0-nightly.20220829":"106.0.5216.0","22.0.0-nightly.20220830":"106.0.5216.0","22.0.0-nightly.20220831":"106.0.5216.0","22.0.0-nightly.20220901":"106.0.5216.0","22.0.0-nightly.20220902":"106.0.5216.0","22.0.0-nightly.20220905":"106.0.5216.0","22.0.0-nightly.20220908":"107.0.5274.0","22.0.0-nightly.20220909":"107.0.5286.0","22.0.0-nightly.20220912":"107.0.5286.0","22.0.0-nightly.20220913":"107.0.5286.0","22.0.0-nightly.20220914":"107.0.5286.0","22.0.0-nightly.20220915":"107.0.5286.0","22.0.0-nightly.20220916":"107.0.5286.0","22.0.0-nightly.20220919":"107.0.5286.0","22.0.0-nightly.20220920":"107.0.5286.0","22.0.0-nightly.20220921":"107.0.5286.0","22.0.0-nightly.20220922":"107.0.5286.0","22.0.0-nightly.20220923":"107.0.5286.0","22.0.0-nightly.20220926":"107.0.5286.0","22.0.0-nightly.20220927":"107.0.5286.0","22.0.0-nightly.20220928":"107.0.5286.0","22.0.0":"108.0.5359.62","22.0.1":"108.0.5359.125","22.0.2":"108.0.5359.179","22.0.3":"108.0.5359.179","22.1.0":"108.0.5359.179","22.2.0":"108.0.5359.215","22.2.1":"108.0.5359.215","22.3.0":"108.0.5359.215","22.3.1":"108.0.5359.215","22.3.2":"108.0.5359.215","22.3.3":"108.0.5359.215","22.3.4":"108.0.5359.215","22.3.5":"108.0.5359.215","22.3.6":"108.0.5359.215","22.3.7":"108.0.5359.215","22.3.8":"108.0.5359.215","22.3.9":"108.0.5359.215","22.3.10":"108.0.5359.215","22.3.11":"108.0.5359.215","22.3.12":"108.0.5359.215","22.3.13":"108.0.5359.215","22.3.14":"108.0.5359.215","22.3.15":"108.0.5359.215","22.3.16":"108.0.5359.215","22.3.17":"108.0.5359.215","22.3.18":"108.0.5359.215","22.3.20":"108.0.5359.215","22.3.21":"108.0.5359.215","22.3.22":"108.0.5359.215","22.3.23":"108.0.5359.215","22.3.24":"108.0.5359.215","22.3.25":"108.0.5359.215","22.3.26":"108.0.5359.215","22.3.27":"108.0.5359.215","23.0.0-alpha.1":"110.0.5415.0","23.0.0-alpha.2":"110.0.5451.0","23.0.0-alpha.3":"110.0.5451.0","23.0.0-beta.1":"110.0.5478.5","23.0.0-beta.2":"110.0.5478.5","23.0.0-beta.3":"110.0.5478.5","23.0.0-beta.4":"110.0.5481.30","23.0.0-beta.5":"110.0.5481.38","23.0.0-beta.6":"110.0.5481.52","23.0.0-beta.8":"110.0.5481.52","23.0.0-nightly.20220929":"107.0.5286.0","23.0.0-nightly.20220930":"107.0.5286.0","23.0.0-nightly.20221003":"107.0.5286.0","23.0.0-nightly.20221004":"108.0.5329.0","23.0.0-nightly.20221005":"108.0.5329.0","23.0.0-nightly.20221006":"108.0.5329.0","23.0.0-nightly.20221007":"108.0.5329.0","23.0.0-nightly.20221010":"108.0.5329.0","23.0.0-nightly.20221011":"108.0.5329.0","23.0.0-nightly.20221012":"108.0.5329.0","23.0.0-nightly.20221013":"108.0.5329.0","23.0.0-nightly.20221014":"108.0.5329.0","23.0.0-nightly.20221017":"108.0.5329.0","23.0.0-nightly.20221018":"108.0.5355.0","23.0.0-nightly.20221019":"108.0.5355.0","23.0.0-nightly.20221020":"108.0.5355.0","23.0.0-nightly.20221021":"108.0.5355.0","23.0.0-nightly.20221024":"108.0.5355.0","23.0.0-nightly.20221026":"108.0.5355.0","23.0.0-nightly.20221027":"109.0.5382.0","23.0.0-nightly.20221028":"109.0.5382.0","23.0.0-nightly.20221031":"109.0.5382.0","23.0.0-nightly.20221101":"109.0.5382.0","23.0.0-nightly.20221102":"109.0.5382.0","23.0.0-nightly.20221103":"109.0.5382.0","23.0.0-nightly.20221104":"109.0.5382.0","23.0.0-nightly.20221107":"109.0.5382.0","23.0.0-nightly.20221108":"109.0.5382.0","23.0.0-nightly.20221109":"109.0.5382.0","23.0.0-nightly.20221110":"109.0.5382.0","23.0.0-nightly.20221111":"109.0.5382.0","23.0.0-nightly.20221114":"109.0.5382.0","23.0.0-nightly.20221115":"109.0.5382.0","23.0.0-nightly.20221116":"109.0.5382.0","23.0.0-nightly.20221117":"109.0.5382.0","23.0.0-nightly.20221118":"110.0.5415.0","23.0.0-nightly.20221121":"110.0.5415.0","23.0.0-nightly.20221122":"110.0.5415.0","23.0.0-nightly.20221123":"110.0.5415.0","23.0.0-nightly.20221124":"110.0.5415.0","23.0.0-nightly.20221125":"110.0.5415.0","23.0.0-nightly.20221128":"110.0.5415.0","23.0.0-nightly.20221129":"110.0.5415.0","23.0.0-nightly.20221130":"110.0.5415.0","23.0.0":"110.0.5481.77","23.1.0":"110.0.5481.100","23.1.1":"110.0.5481.104","23.1.2":"110.0.5481.177","23.1.3":"110.0.5481.179","23.1.4":"110.0.5481.192","23.2.0":"110.0.5481.192","23.2.1":"110.0.5481.208","23.2.2":"110.0.5481.208","23.2.3":"110.0.5481.208","23.2.4":"110.0.5481.208","23.3.0":"110.0.5481.208","23.3.1":"110.0.5481.208","23.3.2":"110.0.5481.208","23.3.3":"110.0.5481.208","23.3.4":"110.0.5481.208","23.3.5":"110.0.5481.208","23.3.6":"110.0.5481.208","23.3.7":"110.0.5481.208","23.3.8":"110.0.5481.208","23.3.9":"110.0.5481.208","23.3.10":"110.0.5481.208","23.3.11":"110.0.5481.208","23.3.12":"110.0.5481.208","23.3.13":"110.0.5481.208","24.0.0-alpha.1":"111.0.5560.0","24.0.0-alpha.2":"111.0.5560.0","24.0.0-alpha.3":"111.0.5560.0","24.0.0-alpha.4":"111.0.5560.0","24.0.0-alpha.5":"111.0.5560.0","24.0.0-alpha.6":"111.0.5560.0","24.0.0-alpha.7":"111.0.5560.0","24.0.0-beta.1":"111.0.5563.50","24.0.0-beta.2":"111.0.5563.50","24.0.0-beta.3":"112.0.5615.20","24.0.0-beta.4":"112.0.5615.20","24.0.0-beta.5":"112.0.5615.29","24.0.0-beta.6":"112.0.5615.39","24.0.0-beta.7":"112.0.5615.39","24.0.0-nightly.20221201":"110.0.5415.0","24.0.0-nightly.20221202":"110.0.5415.0","24.0.0-nightly.20221205":"110.0.5415.0","24.0.0-nightly.20221206":"110.0.5451.0","24.0.0-nightly.20221207":"110.0.5451.0","24.0.0-nightly.20221208":"110.0.5451.0","24.0.0-nightly.20221213":"110.0.5451.0","24.0.0-nightly.20221214":"110.0.5451.0","24.0.0-nightly.20221215":"110.0.5451.0","24.0.0-nightly.20221216":"110.0.5451.0","24.0.0-nightly.20230109":"111.0.5518.0","24.0.0-nightly.20230110":"111.0.5518.0","24.0.0-nightly.20230111":"111.0.5518.0","24.0.0-nightly.20230112":"111.0.5518.0","24.0.0-nightly.20230113":"111.0.5518.0","24.0.0-nightly.20230116":"111.0.5518.0","24.0.0-nightly.20230117":"111.0.5518.0","24.0.0-nightly.20230118":"111.0.5518.0","24.0.0-nightly.20230119":"111.0.5518.0","24.0.0-nightly.20230120":"111.0.5518.0","24.0.0-nightly.20230123":"111.0.5518.0","24.0.0-nightly.20230124":"111.0.5518.0","24.0.0-nightly.20230125":"111.0.5518.0","24.0.0-nightly.20230126":"111.0.5518.0","24.0.0-nightly.20230127":"111.0.5518.0","24.0.0-nightly.20230131":"111.0.5518.0","24.0.0-nightly.20230201":"111.0.5518.0","24.0.0-nightly.20230202":"111.0.5518.0","24.0.0-nightly.20230203":"111.0.5560.0","24.0.0-nightly.20230206":"111.0.5560.0","24.0.0-nightly.20230207":"111.0.5560.0","24.0.0-nightly.20230208":"111.0.5560.0","24.0.0-nightly.20230209":"111.0.5560.0","24.0.0":"112.0.5615.49","24.1.0":"112.0.5615.50","24.1.1":"112.0.5615.50","24.1.2":"112.0.5615.87","24.1.3":"112.0.5615.165","24.2.0":"112.0.5615.165","24.3.0":"112.0.5615.165","24.3.1":"112.0.5615.183","24.4.0":"112.0.5615.204","24.4.1":"112.0.5615.204","24.5.0":"112.0.5615.204","24.5.1":"112.0.5615.204","24.6.0":"112.0.5615.204","24.6.1":"112.0.5615.204","24.6.2":"112.0.5615.204","24.6.3":"112.0.5615.204","24.6.4":"112.0.5615.204","24.6.5":"112.0.5615.204","24.7.0":"112.0.5615.204","24.7.1":"112.0.5615.204","24.8.0":"112.0.5615.204","24.8.1":"112.0.5615.204","24.8.2":"112.0.5615.204","24.8.3":"112.0.5615.204","24.8.4":"112.0.5615.204","24.8.5":"112.0.5615.204","24.8.6":"112.0.5615.204","24.8.7":"112.0.5615.204","24.8.8":"112.0.5615.204","25.0.0-alpha.1":"114.0.5694.0","25.0.0-alpha.2":"114.0.5694.0","25.0.0-alpha.3":"114.0.5710.0","25.0.0-alpha.4":"114.0.5710.0","25.0.0-alpha.5":"114.0.5719.0","25.0.0-alpha.6":"114.0.5719.0","25.0.0-beta.1":"114.0.5719.0","25.0.0-beta.2":"114.0.5719.0","25.0.0-beta.3":"114.0.5719.0","25.0.0-beta.4":"114.0.5735.16","25.0.0-beta.5":"114.0.5735.16","25.0.0-beta.6":"114.0.5735.16","25.0.0-beta.7":"114.0.5735.16","25.0.0-beta.8":"114.0.5735.35","25.0.0-beta.9":"114.0.5735.45","25.0.0-nightly.20230210":"111.0.5560.0","25.0.0-nightly.20230214":"111.0.5560.0","25.0.0-nightly.20230215":"111.0.5560.0","25.0.0-nightly.20230216":"111.0.5560.0","25.0.0-nightly.20230217":"111.0.5560.0","25.0.0-nightly.20230220":"111.0.5560.0","25.0.0-nightly.20230221":"111.0.5560.0","25.0.0-nightly.20230222":"111.0.5560.0","25.0.0-nightly.20230223":"111.0.5560.0","25.0.0-nightly.20230224":"111.0.5560.0","25.0.0-nightly.20230227":"111.0.5560.0","25.0.0-nightly.20230228":"111.0.5560.0","25.0.0-nightly.20230301":"111.0.5560.0","25.0.0-nightly.20230302":"111.0.5560.0","25.0.0-nightly.20230303":"111.0.5560.0","25.0.0-nightly.20230306":"111.0.5560.0","25.0.0-nightly.20230307":"111.0.5560.0","25.0.0-nightly.20230308":"111.0.5560.0","25.0.0-nightly.20230309":"111.0.5560.0","25.0.0-nightly.20230310":"111.0.5560.0","25.0.0-nightly.20230314":"113.0.5636.0","25.0.0-nightly.20230315":"113.0.5651.0","25.0.0-nightly.20230317":"113.0.5653.0","25.0.0-nightly.20230320":"113.0.5660.0","25.0.0-nightly.20230321":"113.0.5664.0","25.0.0-nightly.20230322":"113.0.5666.0","25.0.0-nightly.20230323":"113.0.5668.0","25.0.0-nightly.20230324":"113.0.5670.0","25.0.0-nightly.20230327":"113.0.5670.0","25.0.0-nightly.20230328":"113.0.5670.0","25.0.0-nightly.20230329":"113.0.5670.0","25.0.0-nightly.20230330":"113.0.5670.0","25.0.0-nightly.20230331":"114.0.5684.0","25.0.0-nightly.20230403":"114.0.5684.0","25.0.0-nightly.20230404":"114.0.5692.0","25.0.0-nightly.20230405":"114.0.5694.0","25.0.0":"114.0.5735.45","25.0.1":"114.0.5735.45","25.1.0":"114.0.5735.106","25.1.1":"114.0.5735.106","25.2.0":"114.0.5735.134","25.3.0":"114.0.5735.199","25.3.1":"114.0.5735.243","25.3.2":"114.0.5735.248","25.4.0":"114.0.5735.248","25.5.0":"114.0.5735.289","25.6.0":"114.0.5735.289","25.7.0":"114.0.5735.289","25.8.0":"114.0.5735.289","25.8.1":"114.0.5735.289","25.8.2":"114.0.5735.289","25.8.3":"114.0.5735.289","25.8.4":"114.0.5735.289","25.9.0":"114.0.5735.289","25.9.1":"114.0.5735.289","25.9.2":"114.0.5735.289","25.9.3":"114.0.5735.289","25.9.4":"114.0.5735.289","25.9.5":"114.0.5735.289","25.9.6":"114.0.5735.289","25.9.7":"114.0.5735.289","25.9.8":"114.0.5735.289","26.0.0-alpha.1":"116.0.5791.0","26.0.0-alpha.2":"116.0.5791.0","26.0.0-alpha.3":"116.0.5791.0","26.0.0-alpha.4":"116.0.5791.0","26.0.0-alpha.5":"116.0.5791.0","26.0.0-alpha.6":"116.0.5815.0","26.0.0-alpha.7":"116.0.5831.0","26.0.0-alpha.8":"116.0.5845.0","26.0.0-beta.1":"116.0.5845.0","26.0.0-beta.2":"116.0.5845.14","26.0.0-beta.3":"116.0.5845.14","26.0.0-beta.4":"116.0.5845.14","26.0.0-beta.5":"116.0.5845.14","26.0.0-beta.6":"116.0.5845.14","26.0.0-beta.7":"116.0.5845.14","26.0.0-beta.8":"116.0.5845.42","26.0.0-beta.9":"116.0.5845.42","26.0.0-beta.10":"116.0.5845.49","26.0.0-beta.11":"116.0.5845.49","26.0.0-beta.12":"116.0.5845.62","26.0.0-nightly.20230406":"114.0.5694.0","26.0.0-nightly.20230407":"114.0.5694.0","26.0.0-nightly.20230410":"114.0.5694.0","26.0.0-nightly.20230411":"114.0.5694.0","26.0.0-nightly.20230412":"114.0.5708.0","26.0.0-nightly.20230413":"114.0.5710.0","26.0.0-nightly.20230414":"114.0.5710.0","26.0.0-nightly.20230417":"114.0.5710.0","26.0.0-nightly.20230418":"114.0.5715.0","26.0.0-nightly.20230421":"114.0.5719.0","26.0.0-nightly.20230424":"114.0.5719.0","26.0.0-nightly.20230425":"114.0.5719.0","26.0.0-nightly.20230426":"114.0.5719.0","26.0.0-nightly.20230427":"114.0.5719.0","26.0.0-nightly.20230428":"114.0.5719.0","26.0.0-nightly.20230501":"114.0.5719.0","26.0.0-nightly.20230502":"114.0.5719.0","26.0.0-nightly.20230503":"114.0.5719.0","26.0.0-nightly.20230504":"114.0.5719.0","26.0.0-nightly.20230505":"114.0.5719.0","26.0.0-nightly.20230508":"114.0.5719.0","26.0.0-nightly.20230509":"114.0.5719.0","26.0.0-nightly.20230510":"114.0.5719.0","26.0.0-nightly.20230511":"115.0.5760.0","26.0.0-nightly.20230512":"115.0.5760.0","26.0.0-nightly.20230515":"115.0.5760.0","26.0.0-nightly.20230516":"115.0.5760.0","26.0.0-nightly.20230517":"115.0.5760.0","26.0.0-nightly.20230518":"115.0.5760.0","26.0.0-nightly.20230519":"115.0.5760.0","26.0.0-nightly.20230522":"115.0.5760.0","26.0.0-nightly.20230523":"115.0.5760.0","26.0.0-nightly.20230524":"115.0.5786.0","26.0.0-nightly.20230525":"115.0.5790.0","26.0.0-nightly.20230526":"116.0.5791.0","26.0.0-nightly.20230529":"116.0.5791.0","26.0.0-nightly.20230530":"116.0.5791.0","26.0.0-nightly.20230531":"116.0.5791.0","26.0.0":"116.0.5845.82","26.1.0":"116.0.5845.97","26.2.0":"116.0.5845.179","26.2.1":"116.0.5845.188","26.2.2":"116.0.5845.190","26.2.3":"116.0.5845.190","26.2.4":"116.0.5845.190","26.3.0":"116.0.5845.228","26.4.0":"116.0.5845.228","26.4.1":"116.0.5845.228","26.4.2":"116.0.5845.228","26.4.3":"116.0.5845.228","26.5.0":"116.0.5845.228","26.6.0":"116.0.5845.228","26.6.1":"116.0.5845.228","26.6.2":"116.0.5845.228","26.6.3":"116.0.5845.228","26.6.4":"116.0.5845.228","26.6.5":"116.0.5845.228","26.6.6":"116.0.5845.228","26.6.7":"116.0.5845.228","26.6.8":"116.0.5845.228","26.6.9":"116.0.5845.228","26.6.10":"116.0.5845.228","27.0.0-alpha.1":"118.0.5949.0","27.0.0-alpha.2":"118.0.5949.0","27.0.0-alpha.3":"118.0.5949.0","27.0.0-alpha.4":"118.0.5949.0","27.0.0-alpha.5":"118.0.5949.0","27.0.0-alpha.6":"118.0.5949.0","27.0.0-beta.1":"118.0.5993.5","27.0.0-beta.2":"118.0.5993.5","27.0.0-beta.3":"118.0.5993.5","27.0.0-beta.4":"118.0.5993.11","27.0.0-beta.5":"118.0.5993.18","27.0.0-beta.6":"118.0.5993.18","27.0.0-beta.7":"118.0.5993.18","27.0.0-beta.8":"118.0.5993.18","27.0.0-beta.9":"118.0.5993.18","27.0.0-nightly.20230601":"116.0.5791.0","27.0.0-nightly.20230602":"116.0.5791.0","27.0.0-nightly.20230605":"116.0.5791.0","27.0.0-nightly.20230606":"116.0.5791.0","27.0.0-nightly.20230607":"116.0.5791.0","27.0.0-nightly.20230609":"116.0.5791.0","27.0.0-nightly.20230612":"116.0.5815.0","27.0.0-nightly.20230613":"116.0.5815.0","27.0.0-nightly.20230614":"116.0.5829.0","27.0.0-nightly.20230615":"116.0.5831.0","27.0.0-nightly.20230616":"116.0.5833.0","27.0.0-nightly.20230619":"116.0.5833.0","27.0.0-nightly.20230620":"116.0.5833.0","27.0.0-nightly.20230621":"116.0.5833.0","27.0.0-nightly.20230622":"116.0.5845.0","27.0.0-nightly.20230623":"116.0.5845.0","27.0.0-nightly.20230626":"116.0.5845.0","27.0.0-nightly.20230627":"116.0.5845.0","27.0.0-nightly.20230628":"116.0.5845.0","27.0.0-nightly.20230629":"116.0.5845.0","27.0.0-nightly.20230630":"116.0.5845.0","27.0.0-nightly.20230703":"117.0.5852.0","27.0.0-nightly.20230704":"117.0.5852.0","27.0.0-nightly.20230705":"117.0.5852.0","27.0.0-nightly.20230706":"117.0.5852.0","27.0.0-nightly.20230707":"117.0.5852.0","27.0.0-nightly.20230710":"117.0.5852.0","27.0.0-nightly.20230711":"117.0.5852.0","27.0.0-nightly.20230712":"117.0.5852.0","27.0.0-nightly.20230713":"117.0.5852.0","27.0.0-nightly.20230714":"117.0.5852.0","27.0.0-nightly.20230717":"117.0.5884.1","27.0.0-nightly.20230718":"117.0.5884.1","27.0.0-nightly.20230719":"117.0.5892.0","27.0.0-nightly.20230720":"117.0.5897.0","27.0.0-nightly.20230721":"117.0.5897.0","27.0.0-nightly.20230724":"117.0.5897.0","27.0.0-nightly.20230725":"117.0.5897.0","27.0.0-nightly.20230726":"117.0.5897.0","27.0.0-nightly.20230727":"117.0.5897.0","27.0.0-nightly.20230728":"117.0.5897.0","27.0.0-nightly.20230731":"117.0.5897.0","27.0.0-nightly.20230801":"117.0.5911.0","27.0.0-nightly.20230802":"117.0.5911.0","27.0.0-nightly.20230803":"117.0.5911.0","27.0.0-nightly.20230804":"117.0.5921.0","27.0.0-nightly.20230807":"117.0.5921.0","27.0.0-nightly.20230808":"117.0.5921.0","27.0.0-nightly.20230814":"117.0.5921.0","27.0.0-nightly.20230815":"117.0.5921.0","27.0.0-nightly.20230816":"118.0.5949.0","27.0.0":"118.0.5993.54","27.0.1":"118.0.5993.89","27.0.2":"118.0.5993.89","27.0.3":"118.0.5993.120","27.0.4":"118.0.5993.129","27.1.0":"118.0.5993.144","27.1.2":"118.0.5993.144","27.1.3":"118.0.5993.159","27.2.0":"118.0.5993.159","27.2.1":"118.0.5993.159","27.2.2":"118.0.5993.159","27.2.3":"118.0.5993.159","27.2.4":"118.0.5993.159","27.3.0":"118.0.5993.159","27.3.1":"118.0.5993.159","27.3.2":"118.0.5993.159","27.3.3":"118.0.5993.159","27.3.4":"118.0.5993.159","27.3.5":"118.0.5993.159","27.3.6":"118.0.5993.159","27.3.7":"118.0.5993.159","27.3.8":"118.0.5993.159","27.3.9":"118.0.5993.159","27.3.10":"118.0.5993.159","27.3.11":"118.0.5993.159","28.0.0-alpha.1":"119.0.6045.0","28.0.0-alpha.2":"119.0.6045.0","28.0.0-alpha.3":"119.0.6045.21","28.0.0-alpha.4":"119.0.6045.21","28.0.0-alpha.5":"119.0.6045.33","28.0.0-alpha.6":"119.0.6045.33","28.0.0-alpha.7":"119.0.6045.33","28.0.0-beta.1":"119.0.6045.33","28.0.0-beta.2":"120.0.6099.0","28.0.0-beta.3":"120.0.6099.5","28.0.0-beta.4":"120.0.6099.5","28.0.0-beta.5":"120.0.6099.18","28.0.0-beta.6":"120.0.6099.18","28.0.0-beta.7":"120.0.6099.18","28.0.0-beta.8":"120.0.6099.18","28.0.0-beta.9":"120.0.6099.18","28.0.0-beta.10":"120.0.6099.18","28.0.0-beta.11":"120.0.6099.35","28.0.0-nightly.20230817":"118.0.5949.0","28.0.0-nightly.20230818":"118.0.5949.0","28.0.0-nightly.20230821":"118.0.5949.0","28.0.0-nightly.20230822":"118.0.5949.0","28.0.0-nightly.20230823":"118.0.5949.0","28.0.0-nightly.20230824":"118.0.5949.0","28.0.0-nightly.20230825":"118.0.5949.0","28.0.0-nightly.20230828":"118.0.5949.0","28.0.0-nightly.20230829":"118.0.5949.0","28.0.0-nightly.20230830":"118.0.5949.0","28.0.0-nightly.20230831":"118.0.5949.0","28.0.0-nightly.20230906":"118.0.5991.0","28.0.0-nightly.20230907":"118.0.5993.0","28.0.0-nightly.20230908":"118.0.5993.0","28.0.0-nightly.20230911":"118.0.5993.0","28.0.0-nightly.20230912":"118.0.5993.0","28.0.0-nightly.20230913":"118.0.5993.0","28.0.0-nightly.20230914":"118.0.5993.0","28.0.0-nightly.20230915":"118.0.5993.0","28.0.0-nightly.20230919":"119.0.6006.0","28.0.0-nightly.20230920":"119.0.6017.0","28.0.0-nightly.20230921":"119.0.6019.2","28.0.0-nightly.20230925":"119.0.6019.2","28.0.0-nightly.20230926":"119.0.6019.2","28.0.0-nightly.20230927":"119.0.6019.2","28.0.0-nightly.20230928":"119.0.6019.2","28.0.0-nightly.20230929":"119.0.6029.0","28.0.0-nightly.20231002":"119.0.6029.0","28.0.0-nightly.20231003":"119.0.6043.0","28.0.0-nightly.20231004":"119.0.6043.0","28.0.0-nightly.20231005":"119.0.6043.0","28.0.0-nightly.20231006":"119.0.6045.0","28.0.0-nightly.20231009":"119.0.6045.0","28.0.0-nightly.20231010":"119.0.6045.0","28.0.0-nightly.20231011":"119.0.6045.0","28.0.0":"120.0.6099.56","28.1.0":"120.0.6099.109","28.1.1":"120.0.6099.109","28.1.2":"120.0.6099.199","28.1.3":"120.0.6099.199","28.1.4":"120.0.6099.216","28.2.0":"120.0.6099.227","28.2.1":"120.0.6099.268","28.2.2":"120.0.6099.276","28.2.3":"120.0.6099.283","28.2.4":"120.0.6099.291","28.2.5":"120.0.6099.291","28.2.6":"120.0.6099.291","28.2.7":"120.0.6099.291","28.2.8":"120.0.6099.291","28.2.9":"120.0.6099.291","28.2.10":"120.0.6099.291","28.3.0":"120.0.6099.291","28.3.1":"120.0.6099.291","29.0.0-alpha.1":"121.0.6147.0","29.0.0-alpha.2":"121.0.6147.0","29.0.0-alpha.3":"121.0.6147.0","29.0.0-alpha.4":"121.0.6159.0","29.0.0-alpha.5":"121.0.6159.0","29.0.0-alpha.6":"121.0.6159.0","29.0.0-alpha.7":"121.0.6159.0","29.0.0-alpha.8":"122.0.6194.0","29.0.0-alpha.9":"122.0.6236.2","29.0.0-alpha.10":"122.0.6236.2","29.0.0-alpha.11":"122.0.6236.2","29.0.0-beta.1":"122.0.6236.2","29.0.0-beta.2":"122.0.6236.2","29.0.0-beta.3":"122.0.6261.6","29.0.0-beta.4":"122.0.6261.6","29.0.0-beta.5":"122.0.6261.18","29.0.0-beta.6":"122.0.6261.18","29.0.0-beta.7":"122.0.6261.18","29.0.0-beta.8":"122.0.6261.18","29.0.0-beta.9":"122.0.6261.18","29.0.0-beta.10":"122.0.6261.18","29.0.0-beta.11":"122.0.6261.18","29.0.0-beta.12":"122.0.6261.29","29.0.0-nightly.20231012":"119.0.6045.0","29.0.0-nightly.20231013":"119.0.6045.0","29.0.0-nightly.20231016":"119.0.6045.0","29.0.0-nightly.20231017":"119.0.6045.0","29.0.0-nightly.20231018":"119.0.6045.0","29.0.0-nightly.20231019":"119.0.6045.0","29.0.0-nightly.20231020":"119.0.6045.0","29.0.0-nightly.20231023":"119.0.6045.0","29.0.0-nightly.20231024":"119.0.6045.0","29.0.0-nightly.20231025":"120.0.6078.0","29.0.0-nightly.20231026":"120.0.6078.0","29.0.0-nightly.20231027":"120.0.6078.0","29.0.0-nightly.20231030":"120.0.6078.0","29.0.0-nightly.20231031":"120.0.6078.0","29.0.0-nightly.20231101":"120.0.6078.0","29.0.0-nightly.20231102":"121.0.6100.0","29.0.0-nightly.20231103":"121.0.6100.0","29.0.0-nightly.20231106":"121.0.6104.0","29.0.0-nightly.20231107":"121.0.6110.0","29.0.0-nightly.20231108":"121.0.6110.0","29.0.0-nightly.20231109":"121.0.6110.0","29.0.0-nightly.20231110":"121.0.6110.0","29.0.0-nightly.20231113":"121.0.6110.0","29.0.0-nightly.20231114":"121.0.6110.0","29.0.0-nightly.20231115":"121.0.6116.0","29.0.0-nightly.20231116":"121.0.6116.0","29.0.0-nightly.20231117":"121.0.6116.0","29.0.0-nightly.20231120":"121.0.6116.0","29.0.0-nightly.20231121":"121.0.6116.0","29.0.0-nightly.20231122":"121.0.6116.0","29.0.0-nightly.20231123":"121.0.6116.0","29.0.0-nightly.20231124":"121.0.6116.0","29.0.0-nightly.20231127":"121.0.6116.0","29.0.0-nightly.20231128":"121.0.6116.0","29.0.0-nightly.20231129":"121.0.6147.0","29.0.0-nightly.20231130":"121.0.6147.0","29.0.0-nightly.20231201":"121.0.6147.0","29.0.0-nightly.20231204":"121.0.6147.0","29.0.0-nightly.20231205":"121.0.6147.0","29.0.0-nightly.20231206":"121.0.6147.0","29.0.0":"122.0.6261.39","29.0.1":"122.0.6261.57","29.1.0":"122.0.6261.70","29.1.1":"122.0.6261.111","29.1.2":"122.0.6261.112","29.1.3":"122.0.6261.112","29.1.4":"122.0.6261.129","29.1.5":"122.0.6261.130","29.1.6":"122.0.6261.139","29.2.0":"122.0.6261.156","29.3.0":"122.0.6261.156","29.3.1":"122.0.6261.156","29.3.2":"122.0.6261.156","29.3.3":"122.0.6261.156","29.4.0":"122.0.6261.156","30.0.0-alpha.1":"123.0.6296.0","30.0.0-alpha.2":"123.0.6312.5","30.0.0-alpha.3":"124.0.6323.0","30.0.0-alpha.4":"124.0.6323.0","30.0.0-alpha.5":"124.0.6331.0","30.0.0-alpha.6":"124.0.6331.0","30.0.0-alpha.7":"124.0.6353.0","30.0.0-beta.1":"124.0.6359.0","30.0.0-beta.2":"124.0.6359.0","30.0.0-beta.3":"124.0.6367.9","30.0.0-beta.4":"124.0.6367.9","30.0.0-beta.5":"124.0.6367.9","30.0.0-beta.6":"124.0.6367.18","30.0.0-beta.7":"124.0.6367.29","30.0.0-beta.8":"124.0.6367.29","30.0.0-nightly.20231207":"121.0.6147.0","30.0.0-nightly.20231208":"121.0.6147.0","30.0.0-nightly.20231211":"121.0.6147.0","30.0.0-nightly.20231212":"121.0.6159.0","30.0.0-nightly.20231213":"121.0.6159.0","30.0.0-nightly.20231214":"121.0.6159.0","30.0.0-nightly.20231215":"121.0.6159.0","30.0.0-nightly.20231218":"121.0.6159.0","30.0.0-nightly.20240102":"121.0.6159.0","30.0.0-nightly.20240103":"122.0.6194.0","30.0.0-nightly.20240104":"122.0.6194.0","30.0.0-nightly.20240105":"122.0.6194.0","30.0.0-nightly.20240108":"122.0.6194.0","30.0.0-nightly.20240109":"122.0.6194.0","30.0.0-nightly.20240110":"122.0.6194.0","30.0.0-nightly.20240111":"122.0.6236.2","30.0.0-nightly.20240112":"122.0.6236.2","30.0.0-nightly.20240115":"122.0.6236.2","30.0.0-nightly.20240116":"122.0.6236.2","30.0.0-nightly.20240117":"122.0.6236.2","30.0.0-nightly.20240118":"122.0.6236.2","30.0.0-nightly.20240119":"122.0.6236.2","30.0.0-nightly.20240122":"122.0.6236.2","30.0.0-nightly.20240123":"122.0.6236.2","30.0.0-nightly.20240124":"122.0.6236.2","30.0.0-nightly.20240125":"122.0.6236.2","30.0.0-nightly.20240126":"123.0.6264.0","30.0.0-nightly.20240129":"123.0.6264.0","30.0.0-nightly.20240130":"123.0.6264.0","30.0.0-nightly.20240131":"123.0.6264.0","30.0.0-nightly.20240201":"123.0.6272.0","30.0.0-nightly.20240202":"123.0.6272.0","30.0.0-nightly.20240205":"123.0.6272.0","30.0.0-nightly.20240206":"123.0.6272.0","30.0.0-nightly.20240207":"123.0.6272.0","30.0.0-nightly.20240208":"123.0.6272.0","30.0.0-nightly.20240209":"123.0.6272.0","30.0.0-nightly.20240212":"123.0.6272.0","30.0.0-nightly.20240213":"123.0.6272.0","30.0.0-nightly.20240214":"123.0.6272.0","30.0.0-nightly.20240215":"123.0.6296.0","30.0.0-nightly.20240216":"123.0.6296.0","30.0.0-nightly.20240219":"123.0.6296.0","30.0.0-nightly.20240220":"123.0.6296.0","30.0.0-nightly.20240221":"123.0.6296.0","30.0.0":"124.0.6367.49","30.0.1":"124.0.6367.60","30.0.2":"124.0.6367.91","30.0.3":"124.0.6367.119","30.0.4":"124.0.6367.201","30.0.5":"124.0.6367.207","30.0.6":"124.0.6367.207","31.0.0-alpha.1":"125.0.6412.0","31.0.0-alpha.2":"125.0.6412.0","31.0.0-alpha.3":"125.0.6412.0","31.0.0-alpha.4":"125.0.6412.0","31.0.0-alpha.5":"125.0.6412.0","31.0.0-beta.1":"126.0.6445.0","31.0.0-beta.2":"126.0.6445.0","31.0.0-beta.3":"126.0.6445.0","31.0.0-beta.4":"126.0.6445.0","31.0.0-beta.5":"126.0.6445.0","31.0.0-nightly.20240222":"123.0.6312.5","31.0.0-nightly.20240223":"123.0.6312.5","31.0.0-nightly.20240226":"123.0.6312.5","31.0.0-nightly.20240227":"123.0.6312.5","31.0.0-nightly.20240228":"123.0.6312.5","31.0.0-nightly.20240229":"124.0.6323.0","31.0.0-nightly.20240301":"124.0.6323.0","31.0.0-nightly.20240304":"124.0.6323.0","31.0.0-nightly.20240305":"124.0.6323.0","31.0.0-nightly.20240306":"124.0.6331.0","31.0.0-nightly.20240307":"124.0.6331.0","31.0.0-nightly.20240308":"124.0.6331.0","31.0.0-nightly.20240311":"124.0.6331.0","31.0.0-nightly.20240312":"124.0.6351.0","31.0.0-nightly.20240313":"124.0.6353.0","31.0.0-nightly.20240314":"124.0.6353.0","31.0.0-nightly.20240315":"124.0.6353.0","31.0.0-nightly.20240318":"124.0.6359.0","31.0.0-nightly.20240319":"124.0.6359.0","31.0.0-nightly.20240320":"124.0.6359.0","31.0.0-nightly.20240321":"124.0.6359.0","31.0.0-nightly.20240325":"124.0.6359.0","31.0.0-nightly.20240327":"124.0.6359.0","31.0.0-nightly.20240328":"124.0.6359.0","31.0.0-nightly.20240329":"124.0.6359.0","31.0.0-nightly.20240401":"124.0.6359.0","31.0.0-nightly.20240402":"124.0.6359.0","31.0.0-nightly.20240404":"124.0.6359.0","31.0.0-nightly.20240405":"124.0.6359.0","31.0.0-nightly.20240408":"124.0.6359.0","31.0.0-nightly.20240409":"124.0.6359.0","31.0.0-nightly.20240410":"124.0.6359.0","31.0.0-nightly.20240411":"124.0.6359.0","31.0.0-nightly.20240412":"124.0.6359.0","32.0.0-nightly.20240418":"125.0.6412.0","32.0.0-nightly.20240419":"125.0.6412.0","32.0.0-nightly.20240422":"125.0.6412.0","32.0.0-nightly.20240423":"125.0.6412.0","32.0.0-nightly.20240424":"125.0.6412.0","32.0.0-nightly.20240425":"125.0.6412.0","32.0.0-nightly.20240426":"125.0.6412.0","32.0.0-nightly.20240429":"125.0.6412.0","32.0.0-nightly.20240430":"125.0.6412.0","32.0.0-nightly.20240501":"125.0.6412.0","32.0.0-nightly.20240503":"125.0.6412.0","32.0.0-nightly.20240506":"125.0.6412.0","32.0.0-nightly.20240507":"125.0.6412.0","32.0.0-nightly.20240508":"125.0.6412.0","32.0.0-nightly.20240509":"125.0.6412.0","32.0.0-nightly.20240510":"125.0.6412.0","32.0.0-nightly.20240513":"126.0.6445.0","32.0.0-nightly.20240514":"126.0.6445.0","32.0.0-nightly.20240515":"126.0.6445.0","32.0.0-nightly.20240516":"126.0.6445.0","32.0.0-nightly.20240517":"126.0.6445.0","32.0.0-nightly.20240520":"126.0.6445.0","32.0.0-nightly.20240521":"126.0.6445.0"} \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/package.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/package.json index 3c56748e4d33f4..b83672a616c3de 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/package.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/package.json @@ -1,6 +1,6 @@ { "name": "electron-to-chromium", - "version": "1.4.736", + "version": "1.4.777", "description": "Provides a list of electron-to-chromium version mappings", "main": "index.js", "files": [ diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js index c0e0a5712904a9..271b39ffd42e5b 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.js @@ -150,5 +150,7 @@ module.exports = { "29.1": "122", "29.2": "122", "29.3": "122", - "30.0": "124" + "29.4": "122", + "30.0": "124", + "31.0": "126" }; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json index b5144571349034..c60c1a8d72fc6c 100644 --- a/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json +++ b/tools/node_modules/eslint/node_modules/electron-to-chromium/versions.json @@ -1 +1 @@ -{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","26.4":"116","26.5":"116","26.6":"116","27.0":"118","27.1":"118","27.2":"118","27.3":"118","28.0":"120","28.1":"120","28.2":"120","28.3":"120","29.0":"122","29.1":"122","29.2":"122","29.3":"122","30.0":"124"} \ No newline at end of file +{"0.20":"39","0.21":"41","0.22":"41","0.23":"41","0.24":"41","0.25":"42","0.26":"42","0.27":"43","0.28":"43","0.29":"43","0.30":"44","0.31":"45","0.32":"45","0.33":"45","0.34":"45","0.35":"45","0.36":"47","0.37":"49","1.0":"49","1.1":"50","1.2":"51","1.3":"52","1.4":"53","1.5":"54","1.6":"56","1.7":"58","1.8":"59","2.0":"61","2.1":"61","3.0":"66","3.1":"66","4.0":"69","4.1":"69","4.2":"69","5.0":"73","6.0":"76","6.1":"76","7.0":"78","7.1":"78","7.2":"78","7.3":"78","8.0":"80","8.1":"80","8.2":"80","8.3":"80","8.4":"80","8.5":"80","9.0":"83","9.1":"83","9.2":"83","9.3":"83","9.4":"83","10.0":"85","10.1":"85","10.2":"85","10.3":"85","10.4":"85","11.0":"87","11.1":"87","11.2":"87","11.3":"87","11.4":"87","11.5":"87","12.0":"89","12.1":"89","12.2":"89","13.0":"91","13.1":"91","13.2":"91","13.3":"91","13.4":"91","13.5":"91","13.6":"91","14.0":"93","14.1":"93","14.2":"93","15.0":"94","15.1":"94","15.2":"94","15.3":"94","15.4":"94","15.5":"94","16.0":"96","16.1":"96","16.2":"96","17.0":"98","17.1":"98","17.2":"98","17.3":"98","17.4":"98","18.0":"100","18.1":"100","18.2":"100","18.3":"100","19.0":"102","19.1":"102","20.0":"104","20.1":"104","20.2":"104","20.3":"104","21.0":"106","21.1":"106","21.2":"106","21.3":"106","21.4":"106","22.0":"108","22.1":"108","22.2":"108","22.3":"108","23.0":"110","23.1":"110","23.2":"110","23.3":"110","24.0":"112","24.1":"112","24.2":"112","24.3":"112","24.4":"112","24.5":"112","24.6":"112","24.7":"112","24.8":"112","25.0":"114","25.1":"114","25.2":"114","25.3":"114","25.4":"114","25.5":"114","25.6":"114","25.7":"114","25.8":"114","25.9":"114","26.0":"116","26.1":"116","26.2":"116","26.3":"116","26.4":"116","26.5":"116","26.6":"116","27.0":"118","27.1":"118","27.2":"118","27.3":"118","28.0":"120","28.1":"120","28.2":"120","28.3":"120","29.0":"122","29.1":"122","29.2":"122","29.3":"122","29.4":"122","30.0":"124","31.0":"126"} \ No newline at end of file diff --git a/tools/node_modules/eslint/lib/cli-engine/formatters/tap.js b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/index.js similarity index 59% rename from tools/node_modules/eslint/lib/cli-engine/formatters/tap.js rename to tools/node_modules/eslint/node_modules/eslint-formatter-tap/index.js index e4148a3b3929a0..7ef4f7fca0656c 100644 --- a/tools/node_modules/eslint/lib/cli-engine/formatters/tap.js +++ b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/index.js @@ -1,10 +1,17 @@ +/******/ (() => { // webpackBootstrap +/******/ "use strict"; +/******/ var __webpack_modules__ = ({ + +/***/ 20: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + /** * @fileoverview TAP reporter * @author Jonathan Kingston */ -"use strict"; -const yaml = require("js-yaml"); + +const yaml = __nccwpck_require__(917); //------------------------------------------------------------------------------ // Helper Functions @@ -93,3 +100,61 @@ module.exports = function(results) { return output; }; + + +/***/ }), + +/***/ 917: +/***/ ((module) => { + +module.exports = require("js-yaml"); + +/***/ }) + +/******/ }); +/************************************************************************/ +/******/ // The module cache +/******/ var __webpack_module_cache__ = {}; +/******/ +/******/ // The require function +/******/ function __nccwpck_require__(moduleId) { +/******/ // Check if module is in cache +/******/ var cachedModule = __webpack_module_cache__[moduleId]; +/******/ if (cachedModule !== undefined) { +/******/ return cachedModule.exports; +/******/ } +/******/ // Create a new module (and put it into the cache) +/******/ var module = __webpack_module_cache__[moduleId] = { +/******/ // no module.id needed +/******/ // no module.loaded needed +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ var threw = true; +/******/ try { +/******/ __webpack_modules__[moduleId](module, module.exports, __nccwpck_require__); +/******/ threw = false; +/******/ } finally { +/******/ if(threw) delete __webpack_module_cache__[moduleId]; +/******/ } +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/************************************************************************/ +/******/ /* webpack/runtime/compat */ +/******/ +/******/ if (typeof __nccwpck_require__ !== 'undefined') __nccwpck_require__.ab = __dirname + "/"; +/******/ +/************************************************************************/ +/******/ +/******/ // startup +/******/ // Load entry module and return exports +/******/ // This entry module is referenced by other modules so it can't be inlined +/******/ var __webpack_exports__ = __nccwpck_require__(20); +/******/ module.exports = __webpack_exports__; +/******/ +/******/ })() +; \ No newline at end of file diff --git a/tools/node_modules/eslint/node_modules/path-is-absolute/license b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/license similarity index 91% rename from tools/node_modules/eslint/node_modules/path-is-absolute/license rename to tools/node_modules/eslint/node_modules/eslint-formatter-tap/license index 654d0bfe943437..605e0134cce34b 100644 --- a/tools/node_modules/eslint/node_modules/path-is-absolute/license +++ b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/license @@ -1,6 +1,6 @@ -The MIT License (MIT) - -Copyright (c) Sindre Sorhus (sindresorhus.com) +eslint +MIT +Copyright OpenJS Foundation and other contributors, Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tools/node_modules/eslint/node_modules/eslint-formatter-tap/package.json b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/package.json new file mode 100644 index 00000000000000..dd93e792fed943 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/package.json @@ -0,0 +1,24 @@ +{ + "name": "eslint-formatter-tap", + "version": "8.40.0", + "description": "ESLint’s official `tap` formatter, unofficially published as a standalone module", + "keywords": [ + "lint", + "javascript", + "ecmascript" + ], + "homepage": "https://github.com/fregante/eslint-formatters/tree/main/packages/eslint-formatter-tap", + "repository": "fregante/eslint-formatters", + "license": "MIT", + "author": "Nicholas C. Zakas ", + "dependencies": { + "js-yaml": "^4.1.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "files": [ + "index.js", + "index.d.ts" + ] +} diff --git a/tools/node_modules/eslint/node_modules/eslint-formatter-tap/readme.md b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/readme.md new file mode 100644 index 00000000000000..dee0c12361bc8c --- /dev/null +++ b/tools/node_modules/eslint/node_modules/eslint-formatter-tap/readme.md @@ -0,0 +1,16 @@ +# eslint-formatter-tap + +> ESLint’s official `tap` formatter, unofficially published as a standalone module + +This package has been extracted from [ESLint’s repository](https://github.com/eslint/eslint/tree/master/lib/cli-engine/formatters) by [@fregante](https://github.com/fregante) so you can use it independently of ESLint. + +**Important:** If you're using ESLint, you do not need this package, the formatter is built into ESLint. + +## Links + +- [Formatter output example](https://eslint.org/docs/user-guide/formatters/#tap) +- [The original formatter’s source](https://github.com/eslint/eslint/tree/master/lib/cli-engine/formatters/tap.js) +- [npm package contents](https://www.unpkg.com/browse/eslint-formatter-tap/) +- [Repository of the publisher tool](https://github.com/fregante/eslint-formatters) + +**Note for ESLint’s maintainers:** Open an issue or ping me on Twitter [@fregante](https://twitter.com/fregante) if you'd like to publish these packages yourself as part of a monorepo. I'll gladly pass the npm names to you. Much 💚 diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/generateRule.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/generateRule.cjs index 4f8228d7dc4f58..acf5992675b0c8 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/generateRule.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/generateRule.cjs @@ -8,7 +8,7 @@ var _camelcase = _interopRequireDefault(require("camelcase")); var _openEditor = _interopRequireDefault(require("open-editor")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } -function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } /* eslint-disable no-console -- CLI */ /** +function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } /* eslint-disable no-console -- CLI */ /** * @example * * ```shell diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.cjs index e3f3521bb8a810..a9c5b71ec2e02d 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/iterateJsdoc.cjs @@ -1398,7 +1398,7 @@ const getUtils = (node, jsdoc, jsdocNode, settings, report, context, sc, iterati /** @type {IsAsync} */ utils.isAsync = () => { - return 'async' in ( /** @type {Node} */node) && node.async; + return Boolean(node && 'async' in node && node.async); }; /** @type {GetTags} */ diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkExamples.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkExamples.cjs index 6f15efe0fa4219..f981fa44309a11 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkExamples.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/checkExamples.cjs @@ -8,7 +8,7 @@ var _iterateJsdoc = _interopRequireDefault(require("../iterateJsdoc.cjs")); var _eslint = _interopRequireWildcard(require("eslint")); var _semver = _interopRequireDefault(require("semver")); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } -function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } +function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } // Todo: When replace `CLIEngine` with `ESLint` when feature set complete per https://github.com/eslint/eslint/issues/14745 // https://github.com/eslint/eslint/blob/master/docs/user-guide/migrating-to-7.0.0.md#-the-cliengine-class-has-been-deprecated diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.cjs index 2f3b09c97dbe37..3f31ece23583fb 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/noUndefinedTypes.cjs @@ -7,7 +7,7 @@ exports.default = void 0; var _iterateJsdoc = _interopRequireWildcard(require("../iterateJsdoc.cjs")); var _jsdoccomment = require("@es-joy/jsdoccomment"); function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); } -function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } +function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; } const extraTypes = ['null', 'undefined', 'void', 'string', 'boolean', 'object', 'function', 'symbol', 'number', 'bigint', 'NaN', 'Infinity', 'any', '*', 'never', 'unknown', 'const', 'this', 'true', 'false', 'Array', 'Object', 'RegExp', 'Date', 'Function']; const typescriptGlobals = [ // https://www.typescriptlang.org/docs/handbook/utility-types.html diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/requireReturnsCheck.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/requireReturnsCheck.cjs index 3b12c7ed857d79..c313136a4c11c0 100755 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/requireReturnsCheck.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/requireReturnsCheck.cjs @@ -76,7 +76,7 @@ var _default = exports.default = (0, _iterateJsdoc.default)(({ } // In case a return value is declared in JSDoc, we also expect one in the code. - if (!returnNever && (reportMissingReturnForUndefinedTypes || !utils.mayBeUndefinedTypeTag(tag)) && (tag.type === '' && !utils.hasValueOrExecutorHasNonEmptyResolveValue(exemptAsync) || tag.type !== '' && !utils.hasValueOrExecutorHasNonEmptyResolveValue(exemptAsync, true)) && (!exemptGenerators || !('generator' in ( /** @type {import('../iterateJsdoc.js').Node} */node)) || !node.generator)) { + if (!returnNever && (reportMissingReturnForUndefinedTypes || !utils.mayBeUndefinedTypeTag(tag)) && (tag.type === '' && !utils.hasValueOrExecutorHasNonEmptyResolveValue(exemptAsync) || tag.type !== '' && !utils.hasValueOrExecutorHasNonEmptyResolveValue(exemptAsync, true)) && Boolean(!exemptGenerators || !node || !('generator' in ( /** @type {import('../iterateJsdoc.js').Node} */node)) || !( /** @type {import('@typescript-eslint/types').TSESTree.FunctionDeclaration} */node).generator)) { report(`JSDoc @${tagName} declaration present but return expression not available in function.`); } }, { diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.cjs index 35dc7f9b2aed7f..8b4d71691e5850 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/rules/validTypes.cjs @@ -129,6 +129,11 @@ var _default = exports.default = (0, _iterateJsdoc.default)(({ report(`Invalid name: ${msg}`, null, tag); continue; } + if (tag.tag === 'import') { + // A named import will look like a type, but not be valid; we also don't + // need to check the name/namepath + continue; + } if (tag.tag === 'borrows') { const thisNamepath = /** @type {string} */utils.getTagDescription(tag).replace(asExpression, '').trim(); if (!asExpression.test( /** @type {string} */ diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/utils/hasReturnValue.cjs b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/utils/hasReturnValue.cjs index 1ee95d0dbf5443..4b4d87a55583b6 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/utils/hasReturnValue.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/dist/utils/hasReturnValue.cjs @@ -24,8 +24,8 @@ const isNewPromiseExpression = node => { * @returns {boolean} */ const isVoidPromise = node => { - var _node$typeParameters; - return /** @type {import('@typescript-eslint/types').TSESTree.TSTypeReference} */(node === null || node === void 0 || (_node$typeParameters = node.typeParameters) === null || _node$typeParameters === void 0 || (_node$typeParameters = _node$typeParameters.params) === null || _node$typeParameters === void 0 || (_node$typeParameters = _node$typeParameters[0]) === null || _node$typeParameters === void 0 ? void 0 : _node$typeParameters.type) === 'TSVoidKeyword'; + var _node$typeArguments, _node$typeParameters; + return /** @type {import('@typescript-eslint/types').TSESTree.TSTypeReference} */(node === null || node === void 0 || (_node$typeArguments = node.typeArguments) === null || _node$typeArguments === void 0 || (_node$typeArguments = _node$typeArguments.params) === null || _node$typeArguments === void 0 || (_node$typeArguments = _node$typeArguments[0]) === null || _node$typeArguments === void 0 ? void 0 : _node$typeArguments.type) === 'TSVoidKeyword' || /** @type {import('@typescript-eslint/types').TSESTree.TSTypeReference} */(node === null || node === void 0 || (_node$typeParameters = node.typeParameters) === null || _node$typeParameters === void 0 || (_node$typeParameters = _node$typeParameters.params) === null || _node$typeParameters === void 0 || (_node$typeParameters = _node$typeParameters[0]) === null || _node$typeParameters === void 0 ? void 0 : _node$typeParameters.type) === 'TSVoidKeyword'; }; const undefinedKeywords = new Set(['TSVoidKeyword', 'TSUndefinedKeyword', 'TSNeverKeyword']); diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json index 4b4870107f7e3c..8029a44502f601 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/package.json @@ -5,43 +5,43 @@ "url": "http://gajus.com" }, "dependencies": { - "@es-joy/jsdoccomment": "~0.42.0", + "@es-joy/jsdoccomment": "~0.43.0", "are-docs-informative": "^0.0.2", "comment-parser": "1.4.1", "debug": "^4.3.4", "escape-string-regexp": "^4.0.0", "esquery": "^1.5.0", "is-builtin-module": "^3.2.1", - "semver": "^7.6.0", + "semver": "^7.6.1", "spdx-expression-parse": "^4.0.0" }, "description": "JSDoc linting rules for ESLint.", "devDependencies": { - "@babel/cli": "^7.23.9", - "@babel/core": "^7.23.9", - "@babel/eslint-parser": "^7.23.10", + "@babel/cli": "^7.24.5", + "@babel/core": "^7.24.5", + "@babel/eslint-parser": "^7.24.5", "@babel/node": "^7.23.9", "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-transform-flow-strip-types": "^7.23.3", - "@babel/preset-env": "^7.23.9", + "@babel/plugin-transform-flow-strip-types": "^7.24.1", + "@babel/preset-env": "^7.24.5", "@es-joy/escodegen": "^3.5.1", "@es-joy/jsdoc-eslint-parser": "^0.21.1", "@hkdobrev/run-if-changed": "^0.3.1", - "@semantic-release/commit-analyzer": "^11.1.0", - "@semantic-release/github": "^9.2.6", - "@semantic-release/npm": "^11.0.2", - "@types/chai": "^4.3.11", + "@semantic-release/commit-analyzer": "^12.0.0", + "@semantic-release/github": "^10.0.3", + "@semantic-release/npm": "^12.0.0", + "@types/chai": "^4.3.16", "@types/debug": "^4.1.12", - "@types/eslint": "^8.56.2", + "@types/eslint": "^8.56.10", "@types/esquery": "^1.5.3", "@types/estree": "^1.0.5", "@types/json-schema": "^7.0.15", "@types/lodash.defaultsdeep": "^4.6.9", "@types/mocha": "^10.0.6", - "@types/node": "^20.11.16", - "@types/semver": "^7.5.6", + "@types/node": "^20.12.11", + "@types/semver": "^7.5.8", "@types/spdx-expression-parse": "^3.0.5", - "@typescript-eslint/parser": "^6.21.0", + "@typescript-eslint/parser": "^7.8.0", "babel-plugin-add-module-exports": "^1.0.4", "babel-plugin-istanbul": "^6.1.1", "c8": "^9.1.0", @@ -49,23 +49,23 @@ "chai": "^4.3.10", "cross-env": "^7.0.3", "decamelize": "^5.0.1", - "eslint": "9.0.0-alpha.0", - "eslint-config-canonical": "~42.8.1", - "espree": "^10.0.0", + "eslint": "9.2.0", + "eslint-config-canonical": "~42.8.2", + "espree": "^10.0.1", "gitdown": "^3.1.5", - "glob": "^10.3.10", - "globals": "^13.24.0", - "husky": "^9.0.10", + "glob": "^10.3.13", + "globals": "^15.2.0", + "husky": "^9.0.11", "jsdoc-type-pratt-parser": "^4.0.0", "json-schema": "^0.4.0", "lint-staged": "^15.2.2", "lodash.defaultsdeep": "^4.6.1", - "mocha": "^10.2.0", + "mocha": "^10.4.0", "open-editor": "^3.0.0", "replace": "^1.2.2", "rimraf": "^5.0.5", - "semantic-release": "^23.0.0", - "typescript": "5.3.3" + "semantic-release": "^23.0.8", + "typescript": "5.3.x" }, "engines": { "node": ">=18" @@ -141,5 +141,5 @@ "test-cov": "cross-env TIMING=1 c8 --reporter text npm run test-no-cov", "test-index": "npm run test-no-cov -- test/rules/index.js" }, - "version": "48.2.3" + "version": "48.2.5" } diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/iterateJsdoc.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/iterateJsdoc.js index 0c20a3ce5c56fb..ff9a2761c38e42 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/iterateJsdoc.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/iterateJsdoc.js @@ -1614,7 +1614,7 @@ const getUtils = ( /** @type {IsAsync} */ utils.isAsync = () => { - return 'async' in /** @type {Node} */ (node) && node.async; + return Boolean(node && 'async' in node && node.async); }; /** @type {GetTags} */ diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/requireReturnsCheck.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/requireReturnsCheck.js index 9c9fa35fb0b82c..a8963ceeba5486 100755 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/requireReturnsCheck.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/requireReturnsCheck.js @@ -107,7 +107,11 @@ export default iterateJsdoc(({ exemptAsync, true, )) && - (!exemptGenerators || !('generator' in /** @type {import('../iterateJsdoc.js').Node} */ (node)) || !node.generator) + Boolean( + !exemptGenerators || !node || + !('generator' in /** @type {import('../iterateJsdoc.js').Node} */ (node)) || + !(/** @type {import('@typescript-eslint/types').TSESTree.FunctionDeclaration} */ (node)).generator + ) ) { report(`JSDoc @${tagName} declaration present but return expression not available in function.`); } diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/validTypes.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/validTypes.js index 2930ed1d3ae1dd..8c1839bf3b8bb2 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/validTypes.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/rules/validTypes.js @@ -212,6 +212,12 @@ export default iterateJsdoc(({ continue; } + if (tag.tag === 'import') { + // A named import will look like a type, but not be valid; we also don't + // need to check the name/namepath + continue; + } + if (tag.tag === 'borrows') { const thisNamepath = /** @type {string} */ ( utils.getTagDescription(tag) diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/utils/hasReturnValue.js b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/utils/hasReturnValue.js index 81358547628021..9f103f68c5ef4a 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/utils/hasReturnValue.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-jsdoc/src/utils/hasReturnValue.js @@ -19,9 +19,8 @@ const isNewPromiseExpression = (node) => { * @returns {boolean} */ const isVoidPromise = (node) => { - return /** @type {import('@typescript-eslint/types').TSESTree.TSTypeReference} */ ( - node - )?.typeParameters?.params?.[0]?.type === 'TSVoidKeyword'; + return /** @type {import('@typescript-eslint/types').TSESTree.TSTypeReference} */ (node)?.typeArguments?.params?.[0]?.type === 'TSVoidKeyword' + || /** @type {import('@typescript-eslint/types').TSESTree.TSTypeReference} */ (node)?.typeParameters?.params?.[0]?.type === 'TSVoidKeyword'; }; const undefinedKeywords = new Set([ diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/lib/processor.js b/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/lib/processor.js index 4cf6a71f7bfdf1..b4ff61d6c8bb60 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/lib/processor.js +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/lib/processor.js @@ -235,6 +235,13 @@ function getBlockRangeMap(text, node, comments) { return rangeMap; } +const languageToFileExtension = { + javascript: "js", + ecmascript: "js", + typescript: "ts", + markdown: "md" +}; + /** * Extracts lintable code blocks from Markdown text. * @param {string} text The text of the file. @@ -295,14 +302,19 @@ function preprocess(text, filename) { } }); - return blocks.map((block, index) => ({ - filename: `${index}.${block.lang.trim().split(" ")[0]}`, - text: [ - ...block.comments, - block.value, - "" - ].join("\n") - })); + return blocks.map((block, index) => { + const [language] = block.lang.trim().split(" "); + const fileExtension = Object.hasOwn(languageToFileExtension, language) ? languageToFileExtension[language] : language; + + return { + filename: `${index}.${fileExtension}`, + text: [ + ...block.comments, + block.value, + "" + ].join("\n") + }; + }); } /** @@ -331,7 +343,7 @@ function adjustBlock(block) { const lineInCode = message.line - leadingCommentLines; - if (lineInCode < 1) { + if (lineInCode < 1 || lineInCode >= block.rangeMap.length) { return null; } diff --git a/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/package.json b/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/package.json index 804cb29c88e102..6b928750a1113d 100644 --- a/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-plugin-markdown/package.json @@ -1,6 +1,6 @@ { "name": "eslint-plugin-markdown", - "version": "4.0.1", + "version": "5.0.0", "description": "An ESLint plugin to lint JavaScript in Markdown code fences.", "license": "MIT", "author": { @@ -36,12 +36,12 @@ "lib/processor.js" ], "devDependencies": { - "@eslint/js": "^8.56.0", + "@eslint/js": "^9.1.1", "chai": "^4.2.0", - "eslint": "^8.56.0", - "eslint-config-eslint": "^9.0.0", + "eslint": "^9.1.1", + "eslint-config-eslint": "^10.0.0", "eslint-release": "^3.1.2", - "globals": "^13.24.0", + "globals": "^15.1.0", "mocha": "^6.2.2", "nyc": "^14.1.1" }, diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/dist/eslint-scope.cjs b/tools/node_modules/eslint/node_modules/eslint-scope/dist/eslint-scope.cjs index 291fcdcdc9e92a..ebe966a3970864 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/dist/eslint-scope.cjs +++ b/tools/node_modules/eslint/node_modules/eslint-scope/dist/eslint-scope.cjs @@ -373,10 +373,9 @@ const { Syntax: Syntax$2 } = estraverse__default["default"]; * @param {Scope} scope scope * @param {Block} block block * @param {boolean} isMethodDefinition is method definition - * @param {boolean} useDirective use directive * @returns {boolean} is strict scope */ -function isStrictScope(scope, block, isMethodDefinition, useDirective) { +function isStrictScope(scope, block, isMethodDefinition) { let body; // When upper scope is exists and strict, inner scope is also strict. @@ -416,41 +415,29 @@ function isStrictScope(scope, block, isMethodDefinition, useDirective) { return false; } - // Search 'use strict' directive. - if (useDirective) { - for (let i = 0, iz = body.body.length; i < iz; ++i) { - const stmt = body.body[i]; + // Search for a 'use strict' directive. + for (let i = 0, iz = body.body.length; i < iz; ++i) { + const stmt = body.body[i]; - if (stmt.type !== Syntax$2.DirectiveStatement) { - break; - } - if (stmt.raw === "\"use strict\"" || stmt.raw === "'use strict'") { - return true; - } + /* + * Check if the current statement is a directive. + * If it isn't, then we're past the directive prologue + * so stop the search because directives cannot + * appear after this point. + * + * Some parsers set `directive:null` on non-directive + * statements, so the `typeof` check is safer than + * checking for property existence. + */ + if (typeof stmt.directive !== "string") { + break; } - } else { - for (let i = 0, iz = body.body.length; i < iz; ++i) { - const stmt = body.body[i]; - - if (stmt.type !== Syntax$2.ExpressionStatement) { - break; - } - const expr = stmt.expression; - if (expr.type !== Syntax$2.Literal || typeof expr.value !== "string") { - break; - } - if (expr.raw !== null && expr.raw !== undefined) { - if (expr.raw === "\"use strict\"" || expr.raw === "'use strict'") { - return true; - } - } else { - if (expr.value === "use strict") { - return true; - } - } + if (stmt.directive === "use strict") { + return true; } } + return false; } @@ -507,7 +494,8 @@ class Scope { /** * The tainted variables of this scope, as { Variable.name : * boolean }. - * @member {Map} Scope#taints */ + * @member {Map} Scope#taints + */ this.taints = new Map(); /** @@ -598,7 +586,7 @@ class Scope { * @member {boolean} Scope#isStrict */ this.isStrict = scopeManager.isStrictModeSupported() - ? isStrictScope(this, block, isMethodDefinition, scopeManager.__useDirective()) + ? isStrictScope(this, block, isMethodDefinition) : false; /** @@ -686,7 +674,7 @@ class Scope { // To override by function scopes. // References in default parameters isn't resolved to variables which are in their function body. - __isValidResolution(ref, variable) { // eslint-disable-line class-methods-use-this, no-unused-vars + __isValidResolution(ref, variable) { // eslint-disable-line class-methods-use-this, no-unused-vars -- Desired as instance method with signature return true; } @@ -720,17 +708,17 @@ class Scope { } __addDeclaredVariablesOfNode(variable, node) { - if (node === null || node === undefined) { + if (node === null || node === void 0) { return; } let variables = this.__declaredVariables.get(node); - if (variables === null || variables === undefined) { + if (variables === null || variables === void 0) { variables = []; this.__declaredVariables.set(node, variables); } - if (variables.indexOf(variable) === -1) { + if (!variables.includes(variable)) { variables.push(variable); } } @@ -837,7 +825,7 @@ class Scope { * @function Scope#isArgumentsMaterialized * @returns {boolean} arguemnts materialized */ - isArgumentsMaterialized() { // eslint-disable-line class-methods-use-this + isArgumentsMaterialized() { // eslint-disable-line class-methods-use-this -- Desired as instance method return true; } @@ -846,7 +834,7 @@ class Scope { * @function Scope#isThisMaterialized * @returns {boolean} this materialized */ - isThisMaterialized() { // eslint-disable-line class-methods-use-this + isThisMaterialized() { // eslint-disable-line class-methods-use-this -- Desired as instance method return true; } @@ -863,6 +851,9 @@ class Scope { } } +/** + * Global scope. + */ class GlobalScope extends Scope { constructor(scopeManager, block) { super(scopeManager, "global", null, block, false); @@ -924,12 +915,18 @@ class GlobalScope extends Scope { } } +/** + * Module scope. + */ class ModuleScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "module", upperScope, block, false); } } +/** + * Function expression name scope. + */ class FunctionExpressionNameScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "function-expression-name", upperScope, block, false); @@ -946,12 +943,18 @@ class FunctionExpressionNameScope extends Scope { } } +/** + * Catch scope. + */ class CatchScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "catch", upperScope, block, false); } } +/** + * With statement scope. + */ class WithScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "with", upperScope, block, false); @@ -974,18 +977,27 @@ class WithScope extends Scope { } } +/** + * Block scope. + */ class BlockScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "block", upperScope, block, false); } } +/** + * Switch scope. + */ class SwitchScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "switch", upperScope, block, false); } } +/** + * Function scope. + */ class FunctionScope extends Scope { constructor(scopeManager, upperScope, block, isMethodDefinition) { super(scopeManager, "function", upperScope, block, isMethodDefinition); @@ -1063,24 +1075,36 @@ class FunctionScope extends Scope { } } +/** + * Scope of for, for-in, and for-of statements. + */ class ForScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "for", upperScope, block, false); } } +/** + * Class scope. + */ class ClassScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "class", upperScope, block, false); } } +/** + * Class field initializer scope. + */ class ClassFieldInitializerScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "class-field-initializer", upperScope, block, true); } } +/** + * Class static block scope. + */ class ClassStaticBlockScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "class-static-block", upperScope, block, true); @@ -1126,10 +1150,6 @@ class ScopeManager { this.__declaredVariables = new WeakMap(); } - __useDirective() { - return this.__options.directive; - } - __isOptimistic() { return this.__options.optimistic; } @@ -1257,9 +1277,9 @@ class ScopeManager { return null; } - attach() { } // eslint-disable-line class-methods-use-this + attach() { } // eslint-disable-line class-methods-use-this -- Desired as instance method - detach() { } // eslint-disable-line class-methods-use-this + detach() { } // eslint-disable-line class-methods-use-this -- Desired as instance method __nestScope(scope) { if (scope instanceof GlobalScope) { @@ -1360,6 +1380,9 @@ function getLast(xs) { return xs[xs.length - 1] || null; } +/** + * Visitor for destructuring patterns. + */ class PatternVisitor extends esrecurse__default["default"].Visitor { static isPattern(node) { const nodeType = node.type; @@ -1388,7 +1411,7 @@ class PatternVisitor extends esrecurse__default["default"].Visitor { this.callback(pattern, { topLevel: pattern === this.rootPattern, - rest: lastRestElement !== null && lastRestElement !== undefined && lastRestElement.argument === pattern, + rest: lastRestElement !== null && lastRestElement !== void 0 && lastRestElement.argument === pattern, assignments: this.assignments }); } @@ -1514,7 +1537,7 @@ function traverseIdentifierInPattern(options, rootPattern, referencer, callback) visitor.visit(rootPattern); // Process the right hand nodes recursively. - if (referencer !== null && referencer !== undefined) { + if (referencer !== null && referencer !== void 0) { visitor.rightHandNodes.forEach(referencer.visit, referencer); } } @@ -1525,6 +1548,9 @@ function traverseIdentifierInPattern(options, rootPattern, referencer, callback) // FIXME: Now, we don't create module environment, because the context is // implementation dependent. +/** + * Visitor for import specifiers. + */ class Importer extends esrecurse__default["default"].Visitor { constructor(declaration, referencer) { super(null, referencer.options); @@ -1571,7 +1597,9 @@ class Importer extends esrecurse__default["default"].Visitor { } } -// Referencing variables and creating bindings. +/** + * Referencing variables and creating bindings. + */ class Referencer extends esrecurse__default["default"].Visitor { constructor(options, scopeManager) { super(null, options); @@ -1735,8 +1763,6 @@ class Referencer extends esrecurse__default["default"].Visitor { )); } - this.visit(node.superClass); - this.scopeManager.__nestClassScope(node); if (node.id) { @@ -1747,6 +1773,8 @@ class Referencer extends esrecurse__default["default"].Visitor { node )); } + + this.visit(node.superClass); this.visit(node.body); this.close(node); @@ -1895,7 +1923,7 @@ class Referencer extends esrecurse__default["default"].Visitor { this.currentScope().__referencing(node); } - // eslint-disable-next-line class-methods-use-this + // eslint-disable-next-line class-methods-use-this -- Desired as instance method PrivateIdentifier() { // Do nothing. @@ -1945,9 +1973,9 @@ class Referencer extends esrecurse__default["default"].Visitor { this.visitProperty(node); } - BreakStatement() {} // eslint-disable-line class-methods-use-this + BreakStatement() {} // eslint-disable-line class-methods-use-this -- Desired as instance method - ContinueStatement() {} // eslint-disable-line class-methods-use-this + ContinueStatement() {} // eslint-disable-line class-methods-use-this -- Desired as instance method LabeledStatement(node) { this.visit(node.body); @@ -2106,7 +2134,7 @@ class Referencer extends esrecurse__default["default"].Visitor { this.visit(local); } - MetaProperty() { // eslint-disable-line class-methods-use-this + MetaProperty() { // eslint-disable-line class-methods-use-this -- Desired as instance method // do nothing. } @@ -2114,7 +2142,7 @@ class Referencer extends esrecurse__default["default"].Visitor { /* vim: set sw=4 ts=4 et tw=80 : */ -const version = "7.2.2"; +const version = "8.0.1"; /* Copyright (C) 2012-2014 Yusuke Suzuki @@ -2149,7 +2177,6 @@ const version = "7.2.2"; function defaultOptions() { return { optimistic: false, - directive: false, nodejsScope: false, impliedStrict: false, sourceType: "script", // one of ['script', 'module', 'commonjs'] @@ -2201,7 +2228,6 @@ function updateDeeply(target, override) { * @param {espree.Tree} tree Abstract Syntax Tree * @param {Object} providedOptions Options that tailor the scope analysis * @param {boolean} [providedOptions.optimistic=false] the optimistic flag - * @param {boolean} [providedOptions.directive=false] the directive flag * @param {boolean} [providedOptions.ignoreEval=false] whether to check 'eval()' calls * @param {boolean} [providedOptions.nodejsScope=false] whether the whole * script is executed under node.js environment. When enabled, escope adds diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/lib/index.js b/tools/node_modules/eslint/node_modules/eslint-scope/lib/index.js index cd0678d2e66dda..afe7c7ab8adfa0 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/lib/index.js +++ b/tools/node_modules/eslint/node_modules/eslint-scope/lib/index.js @@ -45,7 +45,6 @@ * The main interface is the {@link analyze} function. * @module escope */ -/* eslint no-underscore-dangle: ["error", { "allow": ["__currentScope"] }] */ import assert from "assert"; @@ -63,7 +62,6 @@ import eslintScopeVersion from "./version.js"; function defaultOptions() { return { optimistic: false, - directive: false, nodejsScope: false, impliedStrict: false, sourceType: "script", // one of ['script', 'module', 'commonjs'] @@ -115,7 +113,6 @@ function updateDeeply(target, override) { * @param {espree.Tree} tree Abstract Syntax Tree * @param {Object} providedOptions Options that tailor the scope analysis * @param {boolean} [providedOptions.optimistic=false] the optimistic flag - * @param {boolean} [providedOptions.directive=false] the directive flag * @param {boolean} [providedOptions.ignoreEval=false] whether to check 'eval()' calls * @param {boolean} [providedOptions.nodejsScope=false] whether the whole * script is executed under node.js environment. When enabled, escope adds diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/lib/pattern-visitor.js b/tools/node_modules/eslint/node_modules/eslint-scope/lib/pattern-visitor.js index a9ff48e5071e94..212409cb833a1e 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/lib/pattern-visitor.js +++ b/tools/node_modules/eslint/node_modules/eslint-scope/lib/pattern-visitor.js @@ -22,8 +22,6 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* eslint-disable no-undefined */ - import estraverse from "estraverse"; import esrecurse from "esrecurse"; @@ -38,6 +36,9 @@ function getLast(xs) { return xs[xs.length - 1] || null; } +/** + * Visitor for destructuring patterns. + */ class PatternVisitor extends esrecurse.Visitor { static isPattern(node) { const nodeType = node.type; @@ -66,7 +67,7 @@ class PatternVisitor extends esrecurse.Visitor { this.callback(pattern, { topLevel: pattern === this.rootPattern, - rest: lastRestElement !== null && lastRestElement !== undefined && lastRestElement.argument === pattern, + rest: lastRestElement !== null && lastRestElement !== void 0 && lastRestElement.argument === pattern, assignments: this.assignments }); } diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/lib/referencer.js b/tools/node_modules/eslint/node_modules/eslint-scope/lib/referencer.js index 6a5da5214c2cba..07938c1e30ddd3 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/lib/referencer.js +++ b/tools/node_modules/eslint/node_modules/eslint-scope/lib/referencer.js @@ -22,9 +22,6 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* eslint-disable no-underscore-dangle */ -/* eslint-disable no-undefined */ - import estraverse from "estraverse"; import esrecurse from "esrecurse"; import Reference from "./reference.js"; @@ -51,7 +48,7 @@ function traverseIdentifierInPattern(options, rootPattern, referencer, callback) visitor.visit(rootPattern); // Process the right hand nodes recursively. - if (referencer !== null && referencer !== undefined) { + if (referencer !== null && referencer !== void 0) { visitor.rightHandNodes.forEach(referencer.visit, referencer); } } @@ -62,6 +59,9 @@ function traverseIdentifierInPattern(options, rootPattern, referencer, callback) // FIXME: Now, we don't create module environment, because the context is // implementation dependent. +/** + * Visitor for import specifiers. + */ class Importer extends esrecurse.Visitor { constructor(declaration, referencer) { super(null, referencer.options); @@ -108,7 +108,9 @@ class Importer extends esrecurse.Visitor { } } -// Referencing variables and creating bindings. +/** + * Referencing variables and creating bindings. + */ class Referencer extends esrecurse.Visitor { constructor(options, scopeManager) { super(null, options); @@ -272,8 +274,6 @@ class Referencer extends esrecurse.Visitor { )); } - this.visit(node.superClass); - this.scopeManager.__nestClassScope(node); if (node.id) { @@ -284,6 +284,8 @@ class Referencer extends esrecurse.Visitor { node )); } + + this.visit(node.superClass); this.visit(node.body); this.close(node); @@ -432,7 +434,7 @@ class Referencer extends esrecurse.Visitor { this.currentScope().__referencing(node); } - // eslint-disable-next-line class-methods-use-this + // eslint-disable-next-line class-methods-use-this -- Desired as instance method PrivateIdentifier() { // Do nothing. @@ -482,9 +484,9 @@ class Referencer extends esrecurse.Visitor { this.visitProperty(node); } - BreakStatement() {} // eslint-disable-line class-methods-use-this + BreakStatement() {} // eslint-disable-line class-methods-use-this -- Desired as instance method - ContinueStatement() {} // eslint-disable-line class-methods-use-this + ContinueStatement() {} // eslint-disable-line class-methods-use-this -- Desired as instance method LabeledStatement(node) { this.visit(node.body); @@ -643,7 +645,7 @@ class Referencer extends esrecurse.Visitor { this.visit(local); } - MetaProperty() { // eslint-disable-line class-methods-use-this + MetaProperty() { // eslint-disable-line class-methods-use-this -- Desired as instance method // do nothing. } diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope-manager.js b/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope-manager.js index d2270f1f9a13fd..2a63c0dbdebeed 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope-manager.js +++ b/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope-manager.js @@ -22,8 +22,6 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* eslint-disable no-underscore-dangle */ - import { BlockScope, CatchScope, @@ -53,10 +51,6 @@ class ScopeManager { this.__declaredVariables = new WeakMap(); } - __useDirective() { - return this.__options.directive; - } - __isOptimistic() { return this.__options.optimistic; } @@ -184,9 +178,9 @@ class ScopeManager { return null; } - attach() { } // eslint-disable-line class-methods-use-this + attach() { } // eslint-disable-line class-methods-use-this -- Desired as instance method - detach() { } // eslint-disable-line class-methods-use-this + detach() { } // eslint-disable-line class-methods-use-this -- Desired as instance method __nestScope(scope) { if (scope instanceof GlobalScope) { diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope.js b/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope.js index 0619b9068e31c1..5bed88711fa6ae 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope.js +++ b/tools/node_modules/eslint/node_modules/eslint-scope/lib/scope.js @@ -22,9 +22,6 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -/* eslint-disable no-underscore-dangle */ -/* eslint-disable no-undefined */ - import estraverse from "estraverse"; import Reference from "./reference.js"; @@ -39,10 +36,9 @@ const { Syntax } = estraverse; * @param {Scope} scope scope * @param {Block} block block * @param {boolean} isMethodDefinition is method definition - * @param {boolean} useDirective use directive * @returns {boolean} is strict scope */ -function isStrictScope(scope, block, isMethodDefinition, useDirective) { +function isStrictScope(scope, block, isMethodDefinition) { let body; // When upper scope is exists and strict, inner scope is also strict. @@ -82,41 +78,29 @@ function isStrictScope(scope, block, isMethodDefinition, useDirective) { return false; } - // Search 'use strict' directive. - if (useDirective) { - for (let i = 0, iz = body.body.length; i < iz; ++i) { - const stmt = body.body[i]; + // Search for a 'use strict' directive. + for (let i = 0, iz = body.body.length; i < iz; ++i) { + const stmt = body.body[i]; - if (stmt.type !== Syntax.DirectiveStatement) { - break; - } - if (stmt.raw === "\"use strict\"" || stmt.raw === "'use strict'") { - return true; - } + /* + * Check if the current statement is a directive. + * If it isn't, then we're past the directive prologue + * so stop the search because directives cannot + * appear after this point. + * + * Some parsers set `directive:null` on non-directive + * statements, so the `typeof` check is safer than + * checking for property existence. + */ + if (typeof stmt.directive !== "string") { + break; } - } else { - for (let i = 0, iz = body.body.length; i < iz; ++i) { - const stmt = body.body[i]; - - if (stmt.type !== Syntax.ExpressionStatement) { - break; - } - const expr = stmt.expression; - if (expr.type !== Syntax.Literal || typeof expr.value !== "string") { - break; - } - if (expr.raw !== null && expr.raw !== undefined) { - if (expr.raw === "\"use strict\"" || expr.raw === "'use strict'") { - return true; - } - } else { - if (expr.value === "use strict") { - return true; - } - } + if (stmt.directive === "use strict") { + return true; } } + return false; } @@ -173,7 +157,8 @@ class Scope { /** * The tainted variables of this scope, as { Variable.name : * boolean }. - * @member {Map} Scope#taints */ + * @member {Map} Scope#taints + */ this.taints = new Map(); /** @@ -264,7 +249,7 @@ class Scope { * @member {boolean} Scope#isStrict */ this.isStrict = scopeManager.isStrictModeSupported() - ? isStrictScope(this, block, isMethodDefinition, scopeManager.__useDirective()) + ? isStrictScope(this, block, isMethodDefinition) : false; /** @@ -352,7 +337,7 @@ class Scope { // To override by function scopes. // References in default parameters isn't resolved to variables which are in their function body. - __isValidResolution(ref, variable) { // eslint-disable-line class-methods-use-this, no-unused-vars + __isValidResolution(ref, variable) { // eslint-disable-line class-methods-use-this, no-unused-vars -- Desired as instance method with signature return true; } @@ -386,17 +371,17 @@ class Scope { } __addDeclaredVariablesOfNode(variable, node) { - if (node === null || node === undefined) { + if (node === null || node === void 0) { return; } let variables = this.__declaredVariables.get(node); - if (variables === null || variables === undefined) { + if (variables === null || variables === void 0) { variables = []; this.__declaredVariables.set(node, variables); } - if (variables.indexOf(variable) === -1) { + if (!variables.includes(variable)) { variables.push(variable); } } @@ -503,7 +488,7 @@ class Scope { * @function Scope#isArgumentsMaterialized * @returns {boolean} arguemnts materialized */ - isArgumentsMaterialized() { // eslint-disable-line class-methods-use-this + isArgumentsMaterialized() { // eslint-disable-line class-methods-use-this -- Desired as instance method return true; } @@ -512,7 +497,7 @@ class Scope { * @function Scope#isThisMaterialized * @returns {boolean} this materialized */ - isThisMaterialized() { // eslint-disable-line class-methods-use-this + isThisMaterialized() { // eslint-disable-line class-methods-use-this -- Desired as instance method return true; } @@ -529,6 +514,9 @@ class Scope { } } +/** + * Global scope. + */ class GlobalScope extends Scope { constructor(scopeManager, block) { super(scopeManager, "global", null, block, false); @@ -590,12 +578,18 @@ class GlobalScope extends Scope { } } +/** + * Module scope. + */ class ModuleScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "module", upperScope, block, false); } } +/** + * Function expression name scope. + */ class FunctionExpressionNameScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "function-expression-name", upperScope, block, false); @@ -612,12 +606,18 @@ class FunctionExpressionNameScope extends Scope { } } +/** + * Catch scope. + */ class CatchScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "catch", upperScope, block, false); } } +/** + * With statement scope. + */ class WithScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "with", upperScope, block, false); @@ -640,18 +640,27 @@ class WithScope extends Scope { } } +/** + * Block scope. + */ class BlockScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "block", upperScope, block, false); } } +/** + * Switch scope. + */ class SwitchScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "switch", upperScope, block, false); } } +/** + * Function scope. + */ class FunctionScope extends Scope { constructor(scopeManager, upperScope, block, isMethodDefinition) { super(scopeManager, "function", upperScope, block, isMethodDefinition); @@ -729,24 +738,36 @@ class FunctionScope extends Scope { } } +/** + * Scope of for, for-in, and for-of statements. + */ class ForScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "for", upperScope, block, false); } } +/** + * Class scope. + */ class ClassScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "class", upperScope, block, false); } } +/** + * Class field initializer scope. + */ class ClassFieldInitializerScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "class-field-initializer", upperScope, block, true); } } +/** + * Class static block scope. + */ class ClassStaticBlockScope extends Scope { constructor(scopeManager, upperScope, block) { super(scopeManager, "class-static-block", upperScope, block, true); diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/lib/version.js b/tools/node_modules/eslint/node_modules/eslint-scope/lib/version.js index 7e7f652203e202..26a518431e16a7 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/lib/version.js +++ b/tools/node_modules/eslint/node_modules/eslint-scope/lib/version.js @@ -1,3 +1,3 @@ -const version = "7.2.2"; +const version = "8.0.1"; export default version; diff --git a/tools/node_modules/eslint/node_modules/eslint-scope/package.json b/tools/node_modules/eslint/node_modules/eslint-scope/package.json index 0aae36d38be99a..a83389ad53db61 100644 --- a/tools/node_modules/eslint/node_modules/eslint-scope/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-scope/package.json @@ -11,9 +11,9 @@ }, "./package.json": "./package.json" }, - "version": "7.2.2", + "version": "8.0.1", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "repository": "eslint/eslint-scope", "funding": "https://opencollective.com/eslint", @@ -23,15 +23,17 @@ "license": "BSD-2-Clause", "scripts": { "build": "rollup -c", - "lint": "npm run build && node Makefile.js lint", - "update-version": "node tools/update-version.js", - "test": "npm run build && node Makefile.js test", - "prepublishOnly": "npm run update-version && npm run build", - "generate-release": "eslint-generate-release", - "generate-alpharelease": "eslint-generate-prerelease alpha", - "generate-betarelease": "eslint-generate-prerelease beta", - "generate-rcrelease": "eslint-generate-prerelease rc", - "publish-release": "eslint-publish-release" + "build:update-version": "node tools/update-version.js", + "lint": "eslint . --report-unused-disable-directives", + "prelint": "npm run build", + "prepublishOnly": "npm run build:update-version && npm run build", + "pretest": "npm run build", + "release:generate:latest": "eslint-generate-release", + "release:generate:alpha": "eslint-generate-prerelease alpha", + "release:generate:beta": "eslint-generate-prerelease beta", + "release:generate:rc": "eslint-generate-prerelease rc", + "release:publish": "eslint-publish-release", + "test": "node Makefile.js test" }, "files": [ "LICENSE", @@ -44,20 +46,20 @@ "estraverse": "^5.2.0" }, "devDependencies": { - "@typescript-eslint/parser": "^4.28.1", + "@typescript-eslint/parser": "^7.1.1", "c8": "^7.7.3", "chai": "^4.3.4", - "eslint": "^7.29.0", - "eslint-config-eslint": "^7.0.0", - "eslint-plugin-jsdoc": "^35.4.1", - "eslint-plugin-node": "^11.1.0", + "eslint": "^8.57.0", + "eslint-config-eslint": "^9.0.0", + "eslint-plugin-chai-friendly": "^0.7.4", "eslint-release": "^3.2.0", - "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.1", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.0.1", + "globals": "^14.0.0", "mocha": "^9.0.1", "npm-license": "^0.3.3", "rollup": "^2.52.7", "shelljs": "^0.8.4", - "typescript": "^4.3.5" + "typescript": "^5.4.2" } } diff --git a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json index b9d51ce0e68900..51a5dad8a79929 100644 --- a/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json +++ b/tools/node_modules/eslint/node_modules/eslint-visitor-keys/package.json @@ -1,6 +1,6 @@ { "name": "eslint-visitor-keys", - "version": "3.4.3", + "version": "4.0.0", "description": "Constants and utilities about visitor keys to traverse AST.", "type": "module", "main": "dist/eslint-visitor-keys.cjs", @@ -23,7 +23,7 @@ "lib" ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "devDependencies": { "@types/estree": "^0.0.51", diff --git a/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs b/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs index 3fa2870d23d413..3e4d7bc5a164ff 100644 --- a/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs +++ b/tools/node_modules/eslint/node_modules/espree/dist/espree.cjs @@ -759,7 +759,7 @@ var espree = () => Parser => { }; }; -const version$1 = "9.6.1"; +const version$1 = "10.0.1"; /* eslint-disable jsdoc/no-multi-asterisks -- needed to preserve original formatting of licences */ diff --git a/tools/node_modules/eslint/node_modules/espree/lib/version.js b/tools/node_modules/eslint/node_modules/espree/lib/version.js index dc73f77151fc69..f0a97b6489c346 100644 --- a/tools/node_modules/eslint/node_modules/espree/lib/version.js +++ b/tools/node_modules/eslint/node_modules/espree/lib/version.js @@ -1,3 +1,3 @@ -const version = "9.6.1"; +const version = "10.0.1"; export default version; diff --git a/tools/node_modules/eslint/node_modules/espree/package.json b/tools/node_modules/eslint/node_modules/espree/package.json index 12c8d0b11b0b1d..445fdc0f1efedf 100644 --- a/tools/node_modules/eslint/node_modules/espree/package.json +++ b/tools/node_modules/eslint/node_modules/espree/package.json @@ -16,14 +16,14 @@ ], "./package.json": "./package.json" }, - "version": "9.6.1", + "version": "10.0.1", "files": [ "lib", "dist/espree.cjs", "espree.js" ], "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "repository": "eslint/espree", "bugs": { @@ -32,9 +32,9 @@ "funding": "https://opencollective.com/eslint", "license": "BSD-2-Clause", "dependencies": { - "acorn": "^8.9.0", + "acorn": "^8.11.3", "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "eslint-visitor-keys": "^4.0.0" }, "devDependencies": { "@rollup/plugin-commonjs": "^17.1.0", @@ -43,8 +43,7 @@ "c8": "^7.11.0", "chai": "^4.3.6", "eslint": "^8.44.0", - "eslint-config-eslint": "^8.0.0", - "eslint-plugin-n": "^16.0.0", + "eslint-config-eslint": "^9.0.0", "eslint-release": "^3.2.0", "esprima-fb": "^8001.2001.0-dev-harmony-fb", "globals": "^13.20.0", @@ -67,22 +66,21 @@ "pre-commit": "lint-staged" }, "scripts": { - "unit": "npm-run-all -s unit:*", - "unit:esm": "c8 mocha --color --reporter progress --timeout 30000 'tests/lib/**/*.js'", - "unit:cjs": "mocha --color --reporter progress --timeout 30000 tests/lib/commonjs.cjs", - "test": "npm-run-all -p unit lint", - "lint": "eslint . --report-unused-disable-directives", - "fixlint": "npm run lint -- --fix", "build": "rollup -c rollup.config.js", "build:debug": "npm run build -- -m", - "update-version": "node tools/update-version.js", + "build:docs": "node tools/sync-docs.js", + "build:update-version": "node tools/update-version.js", + "lint": "eslint . --report-unused-disable-directives", + "lint:fix": "npm run lint -- --fix", + "prepublishOnly": "npm run build:update-version && npm run build", "pretest": "npm run build", - "prepublishOnly": "npm run update-version && npm run build", - "sync-docs": "node sync-docs.js", - "generate-release": "eslint-generate-release", - "generate-alpharelease": "eslint-generate-prerelease alpha", - "generate-betarelease": "eslint-generate-prerelease beta", - "generate-rcrelease": "eslint-generate-prerelease rc", - "publish-release": "eslint-publish-release" + "release:generate:latest": "eslint-generate-release", + "release:generate:alpha": "eslint-generate-prerelease alpha", + "release:generate:beta": "eslint-generate-prerelease beta", + "release:generate:rc": "eslint-generate-prerelease rc", + "release:publish": "eslint-publish-release", + "test": "npm-run-all -s test:*", + "test:esm": "c8 mocha --color --reporter progress --timeout 30000 'tests/lib/**/*.js'", + "test:cjs": "mocha --color --reporter progress --timeout 30000 tests/lib/commonjs.cjs" } } diff --git a/tools/node_modules/eslint/node_modules/file-entry-cache/LICENSE b/tools/node_modules/eslint/node_modules/file-entry-cache/LICENSE index c58c339631271d..39a8bc4598cda7 100644 --- a/tools/node_modules/eslint/node_modules/file-entry-cache/LICENSE +++ b/tools/node_modules/eslint/node_modules/file-entry-cache/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Roy Riojas +Copyright (c) Roy Riojas & Jared Wray Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/tools/node_modules/eslint/node_modules/file-entry-cache/changelog.md b/tools/node_modules/eslint/node_modules/file-entry-cache/changelog.md deleted file mode 100644 index 64d62a08a8e160..00000000000000 --- a/tools/node_modules/eslint/node_modules/file-entry-cache/changelog.md +++ /dev/null @@ -1,163 +0,0 @@ - -# file-entry-cache - Changelog -## v6.0.1 -- **Other changes** - - Delete previous mtime when checksum is used and vice versa - [abcf0f9]( https://github.com/royriojas/file-entry-cache/commit/abcf0f9 ), [Milos Djermanovic](https://github.com/Milos Djermanovic), 19/02/2021 18:19:43 - - - - Adds travis jobs on ppc64le - [92e4d4a]( https://github.com/royriojas/file-entry-cache/commit/92e4d4a ), [dineshks1](https://github.com/dineshks1), 25/11/2020 04:52:11 - - -## v6.0.0 -- **Refactoring** - - Align file-entry-cache with latest eslint - [4c6f1fb]( https://github.com/royriojas/file-entry-cache/commit/4c6f1fb ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:43:09 - - - - Upgrade deps - [8ab3257]( https://github.com/royriojas/file-entry-cache/commit/8ab3257 ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:41:53 - - - - updated packages - [3dd4231]( https://github.com/royriojas/file-entry-cache/commit/3dd4231 ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:29:37 - - - - Upgrade flat-cache to version 3 - [d7c60ef]( https://github.com/royriojas/file-entry-cache/commit/d7c60ef ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:18:04 - - -## v5.0.1 -- **Bug Fixes** - - Fix missing checksum comparison from reconcile since now we use mtime and size by default. - [e858aa9]( https://github.com/royriojas/file-entry-cache/commit/e858aa9 ), [Roy Riojas](https://github.com/Roy Riojas), 04/02/2019 09:30:22 - - Old mode using checkSum can still be used by passing the `useCheckSum` parameter to the `create` or `createFromFile` methods. - -## v5.0.0 -- **Refactoring** - - Make checksum comparison optional - [b0f9ae0]( https://github.com/royriojas/file-entry-cache/commit/b0f9ae0 ), [Roy Riojas](https://github.com/Roy Riojas), 03/02/2019 18:17:39 - - To determine if a file has changed we were using the checksum in the newer versions, but eslint was relying on the old behavior where we use the mtime and file size to determine if a file changed. That's why we decided to make the checksum check optional. - - To use it: - - ```js - // to make the cache use the checkSum check do the following: - var fCache = fileEntryCache.create(cacheName, dir, useCheckSum); // pass the third parameter as true - var otherCache = fileEntryCache.createFromFile(cacheName, useCheckSum); // pass the second parameter as true - ``` - -## v4.0.0 -- **Build Scripts Changes** - - use the same node versions eslint use - [563cfee]( https://github.com/royriojas/file-entry-cache/commit/563cfee ), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 20:29:34 - - -- **Other changes** - - Remove object-assign dependency. - [d0f598e]( https://github.com/royriojas/file-entry-cache/commit/d0f598e ), [Corey Farrell](https://github.com/Corey Farrell), 08/01/2019 20:09:51 - - node.js >=4 is required so object-assign is no longer needed, the native - Object.assign can be used instead. - -## v3.0.0 -- **Build Scripts Changes** - - Upgrade flat-cache dep to latest - [078b0df]( https://github.com/royriojas/file-entry-cache/commit/078b0df ), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 18:54:40 - - - - Commit new package-lock.json file - [245fe62]( https://github.com/royriojas/file-entry-cache/commit/245fe62 ), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 17:56:21 - - -- **Refactoring** - - add eslintrc file - [6dd32d8]( https://github.com/royriojas/file-entry-cache/commit/6dd32d8 ), [Roy Riojas](https://github.com/Roy Riojas), 22/08/2018 09:58:17 - - -- **Other changes** - - Move variable definition out of else block - [ea05441]( https://github.com/royriojas/file-entry-cache/commit/ea05441 ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 25/04/2017 11:19:00 - - - - Add script and cmd to test hash/checksum performance - [7f60e0a]( https://github.com/royriojas/file-entry-cache/commit/7f60e0a ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 24/04/2017 14:43:12 - - - - Calculate md5 hexdigest instead of Adler-32 checksum - [f9e5c69]( https://github.com/royriojas/file-entry-cache/commit/f9e5c69 ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 24/04/2017 14:43:12 - - - - How to reproduce - [4edc2dc]( https://github.com/royriojas/file-entry-cache/commit/4edc2dc ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 24/04/2017 13:49:32 - - - - Test handling of removed files - [09d9ec5]( https://github.com/royriojas/file-entry-cache/commit/09d9ec5 ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 19/04/2017 19:51:50 - - - - Use content checksum instead of mtime and fsize - [343b340]( https://github.com/royriojas/file-entry-cache/commit/343b340 ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 19/04/2017 19:51:47 - - -- **Revert** - - Revert "How to reproduce" - [4b4e54a]( https://github.com/royriojas/file-entry-cache/commit/4b4e54a ), [Zakhar Shapurau](https://github.com/Zakhar Shapurau), 25/04/2017 11:15:36 - - This reverts commit 4edc2dcec01574247bfc2e0a2fe26527332b7df3. - -## v2.0.0 -- **Features** - - do not persist and prune removed files from cache. Relates to [#2](https://github.com/royriojas/file-entry-cache/issues/2) - [408374d]( https://github.com/royriojas/file-entry-cache/commit/408374d ), [Roy Riojas](https://github.com/Roy Riojas), 16/08/2016 13:47:58 - - -## v1.3.1 -- **Build Scripts Changes** - - remove older node version - [0a26ac4]( https://github.com/royriojas/file-entry-cache/commit/0a26ac4 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 04:09:17 - - -## v1.3.0 -- **Features** - - Add an option to not prune non visited keys. Closes [#2](https://github.com/royriojas/file-entry-cache/issues/2) - [b1a64db]( https://github.com/royriojas/file-entry-cache/commit/b1a64db ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 03:52:12 - - -## v1.2.4 -- **Enhancements** - - Expose the flat-cache instance - [f34c557]( https://github.com/royriojas/file-entry-cache/commit/f34c557 ), [royriojas](https://github.com/royriojas), 23/09/2015 18:26:33 - - -## v1.2.3 -- **Build Scripts Changes** - - update flat-cache dep - [cc7b9ce]( https://github.com/royriojas/file-entry-cache/commit/cc7b9ce ), [royriojas](https://github.com/royriojas), 11/09/2015 16:04:44 - - -## v1.2.2 -- **Build Scripts Changes** - - Add changelogx section to package.json - [a3916ff]( https://github.com/royriojas/file-entry-cache/commit/a3916ff ), [royriojas](https://github.com/royriojas), 11/09/2015 16:00:26 - - -## v1.2.1 -- **Build Scripts Changes** - - update flat-cache dep - [e49b0d4]( https://github.com/royriojas/file-entry-cache/commit/e49b0d4 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:55:25 - - -- **Other changes** - - Update dependencies Replaced lodash.assign with smaller object-assign Fixed tests for windows - [0ad3000]( https://github.com/royriojas/file-entry-cache/commit/0ad3000 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 15:44:18 - - -## v1.2.0 -- **Features** - - analyzeFiles now returns also the files that were removed - [6ac2431]( https://github.com/royriojas/file-entry-cache/commit/6ac2431 ), [royriojas](https://github.com/royriojas), 04/09/2015 12:40:53 - - -## v1.1.1 -- **Features** - - Add method to check if a file hasChanged - [3640e2b]( https://github.com/royriojas/file-entry-cache/commit/3640e2b ), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015 05:33:32 - - -## v1.1.0 -- **Features** - - Create the cache directly from a file path - [a23de61]( https://github.com/royriojas/file-entry-cache/commit/a23de61 ), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015 04:41:33 - - - - Add a method to remove an entry from the filecache - [7af29fc]( https://github.com/royriojas/file-entry-cache/commit/7af29fc ), [Roy Riojas](https://github.com/Roy Riojas), 02/03/2015 23:25:32 - - - - cache module finished - [1f95544]( https://github.com/royriojas/file-entry-cache/commit/1f95544 ), [Roy Riojas](https://github.com/Roy Riojas), 02/03/2015 01:08:08 - - -- **Build Scripts Changes** - - set the version for the first release - [7472eaa]( https://github.com/royriojas/file-entry-cache/commit/7472eaa ), [Roy Riojas](https://github.com/Roy Riojas), 02/03/2015 01:29:54 - - -- **Documentation** - - Updated documentation - [557358f]( https://github.com/royriojas/file-entry-cache/commit/557358f ), [Roy Riojas](https://github.com/Roy Riojas), 02/03/2015 01:29:29 - - -- **Other changes** - - Initial commit - [3d5f42b]( https://github.com/royriojas/file-entry-cache/commit/3d5f42b ), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 21:58:29 - - diff --git a/tools/node_modules/eslint/node_modules/file-entry-cache/package.json b/tools/node_modules/eslint/node_modules/file-entry-cache/package.json index f03ef48cc6f523..ef63b6ff871135 100644 --- a/tools/node_modules/eslint/node_modules/file-entry-cache/package.json +++ b/tools/node_modules/eslint/node_modules/file-entry-cache/package.json @@ -1,35 +1,27 @@ { "name": "file-entry-cache", - "version": "6.0.1", + "version": "8.0.0", "description": "Super simple cache for file metadata, useful for process that work o a given series of files and that only need to repeat the job on the changed ones since the previous run of the process", - "repository": "royriojas/file-entry-cache", + "repository": "jaredwray/file-entry-cache", "license": "MIT", "author": { - "name": "Roy Riojas", - "url": "http://royriojas.com" + "name": "Jared Wray", + "url": "https://jaredwray.com" }, "main": "cache.js", "files": [ "cache.js" ], "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=16.0.0" }, "scripts": { "eslint": "eslint --cache --cache-location=node_modules/.cache/ 'cache.js' 'test/**/*.js' 'perf.js'", "autofix": "npm run eslint -- --fix", - "install-hooks": "prepush install && changelogx install-hook && precommit install", - "changelog": "changelogx -f markdown -o ./changelog.md", - "do-changelog": "npm run changelog && git add ./changelog.md && git commit -m 'DOC: Generate changelog' --no-verify", - "pre-v": "npm run test", - "post-v": "npm run do-changelog && git push --no-verify && git push --tags --no-verify", - "bump-major": "npm run pre-v && npm version major -m 'BLD: Release v%s' && npm run post-v", - "bump-minor": "npm run pre-v && npm version minor -m 'BLD: Release v%s' && npm run post-v", - "bump-patch": "npm run pre-v && npm version patch -m 'BLD: Release v%s' && npm run post-v", - "test": "npm run eslint --silent && mocha -R spec test/specs", - "perf": "node perf.js", - "cover": "istanbul cover test/runner.js html text-summary", - "watch": "watch-run -i -p 'test/specs/**/*.js' istanbul cover test/runner.js html text-summary" + "clean": "rimraf ./node_modules ./package-lock.json ./yarn.lock", + "test": "npm run eslint --silent && c8 mocha -R spec test/specs", + "test:ci": "npm run eslint --silent && c8 --reporter=lcov mocha -R spec test/specs", + "perf": "node perf.js" }, "prepush": [ "npm run eslint --silent" @@ -45,36 +37,20 @@ "key value", "cache" ], - "changelogx": { - "ignoreRegExp": [ - "BLD: Release", - "DOC: Generate Changelog", - "Generated Changelog" - ], - "issueIDRegExp": "#(\\d+)", - "commitURL": "https://github.com/royriojas/file-entry-cache/commit/{0}", - "authorURL": "https://github.com/{0}", - "issueIDURL": "https://github.com/royriojas/file-entry-cache/issues/{0}", - "projectName": "file-entry-cache" - }, "devDependencies": { - "chai": "^4.2.0", - "changelogx": "^5.0.6", - "del": "^6.0.0", - "eslint": "^7.13.0", - "eslint-config-prettier": "^6.15.0", - "eslint-plugin-mocha": "^8.0.0", - "eslint-plugin-prettier": "^3.1.4", + "c8": "^8.0.1", + "chai": "^4.3.10", + "eslint": "^8.56.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-mocha": "^10.2.0", + "eslint-plugin-prettier": "^5.0.1", "glob-expand": "^0.2.1", - "istanbul": "^0.4.5", - "mocha": "^8.2.1", - "precommit": "^1.2.2", - "prepush": "^3.1.11", - "prettier": "^2.1.2", - "watch-run": "^1.2.5", + "mocha": "^10.2.0", + "prettier": "^3.1.1", + "rimraf": "^5.0.5", "write": "^2.0.0" }, "dependencies": { - "flat-cache": "^3.0.4" + "flat-cache": "^4.0.0" } } diff --git a/tools/node_modules/eslint/node_modules/flat-cache/changelog.md b/tools/node_modules/eslint/node_modules/flat-cache/changelog.md index 1ad0fdfd0e30a6..866f9501d96b93 100644 --- a/tools/node_modules/eslint/node_modules/flat-cache/changelog.md +++ b/tools/node_modules/eslint/node_modules/flat-cache/changelog.md @@ -1,328 +1,278 @@ - # flat-cache - Changelog + ## v3.0.4 + - **Refactoring** - - add files by name to the list of exported files - [89a2698]( https://github.com/royriojas/flat-cache/commit/89a2698 ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:35:39 + - add files by name to the list of exported files - [89a2698](https://github.com/royriojas/flat-cache/commit/89a2698), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:35:39 - ## v3.0.3 + - **Bug Fixes** - - Fix wrong eslint command - [f268e42]( https://github.com/royriojas/flat-cache/commit/f268e42 ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:15:04 + - Fix wrong eslint command - [f268e42](https://github.com/royriojas/flat-cache/commit/f268e42), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 02:15:04 - ## v3.0.2 -- **Refactoring** - - Update the files paths - [6983a80]( https://github.com/royriojas/flat-cache/commit/6983a80 ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:58:39 - - - Move code to src/ - [18ed6e8]( https://github.com/royriojas/flat-cache/commit/18ed6e8 ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:57:17 +- **Refactoring** - - - Change eslint-cache location - [beed74c]( https://github.com/royriojas/flat-cache/commit/beed74c ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:48:32 + - Update the files paths - [6983a80](https://github.com/royriojas/flat-cache/commit/6983a80), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:58:39 + - Move code to src/ - [18ed6e8](https://github.com/royriojas/flat-cache/commit/18ed6e8), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:57:17 + - Change eslint-cache location - [beed74c](https://github.com/royriojas/flat-cache/commit/beed74c), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:48:32 - ## v3.0.1 + - **Refactoring** - - Remove unused deps - [8c6d9dc]( https://github.com/royriojas/flat-cache/commit/8c6d9dc ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:43:29 + - Remove unused deps - [8c6d9dc](https://github.com/royriojas/flat-cache/commit/8c6d9dc), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:43:29 - ## v3.0.0 -- **Refactoring** - - Fix engines - [52b824c]( https://github.com/royriojas/flat-cache/commit/52b824c ), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:01:52 - +- **Refactoring** + - Fix engines - [52b824c](https://github.com/royriojas/flat-cache/commit/52b824c), [Roy Riojas](https://github.com/Roy Riojas), 08/11/2020 01:01:52 - **Other changes** - - Replace write with combination of mkdir and writeFile ([#49](https://github.com/royriojas/flat-cache/issues/49)) - [ef48276]( https://github.com/royriojas/flat-cache/commit/ef48276 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 08/11/2020 00:17:15 - Node v10 introduced a great "recursive" option for mkdir which allows to - get rid from mkdirp package and easily rewrite "write" package usage - with two function calls. - - https://nodejs.org/api/fs.html#fs_fs_mkdir_path_options_callback - - Added a testcase for clearAll ([#48](https://github.com/royriojas/flat-cache/issues/48)) - [45b51ca]( https://github.com/royriojas/flat-cache/commit/45b51ca ), [Aaron Chen](https://github.com/Aaron Chen), 21/05/2020 08:40:03 + - Replace write with combination of mkdir and writeFile ([#49](https://github.com/royriojas/flat-cache/issues/49)) - [ef48276](https://github.com/royriojas/flat-cache/commit/ef48276), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 08/11/2020 00:17:15 - - - requet node>=10 - [a5c482c]( https://github.com/royriojas/flat-cache/commit/a5c482c ), [yumetodo](https://github.com/yumetodo), 10/04/2020 23:14:53 + Node v10 introduced a great "recursive" option for mkdir which allows to + get rid from mkdirp package and easily rewrite "write" package usage + with two function calls. - thanks @SuperITMan - - - Update README.md - [29fe40b]( https://github.com/royriojas/flat-cache/commit/29fe40b ), [Roy Riojas](https://github.com/Roy Riojas), 10/04/2020 20:08:05 - - - - reduce vulnerability to 1 - [e9db1b2]( https://github.com/royriojas/flat-cache/commit/e9db1b2 ), [yumetodo](https://github.com/yumetodo), 30/03/2020 11:10:43 - - - - reduce vulnerabilities dependencies to 8 - [b58d196]( https://github.com/royriojas/flat-cache/commit/b58d196 ), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:54:56 + https://nodejs.org/api/fs.html#fs_fs_mkdir_path_options_callback - - - use prettier instead of esbeautifier - [03b1db7]( https://github.com/royriojas/flat-cache/commit/03b1db7 ), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:27:14 + - Added a testcase for clearAll ([#48](https://github.com/royriojas/flat-cache/issues/48)) - [45b51ca](https://github.com/royriojas/flat-cache/commit/45b51ca), [Aaron Chen](https://github.com/Aaron Chen), 21/05/2020 08:40:03 + - requet node>=10 - [a5c482c](https://github.com/royriojas/flat-cache/commit/a5c482c), [yumetodo](https://github.com/yumetodo), 10/04/2020 23:14:53 - - - update proxyquire - [c2f048d]( https://github.com/royriojas/flat-cache/commit/c2f048d ), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:16:16 + thanks @SuperITMan - - - update flatted and mocha - [a0e56da]( https://github.com/royriojas/flat-cache/commit/a0e56da ), [yumetodo](https://github.com/yumetodo), 30/03/2020 09:46:45 + - Update README.md - [29fe40b](https://github.com/royriojas/flat-cache/commit/29fe40b), [Roy Riojas](https://github.com/Roy Riojas), 10/04/2020 20:08:05 + - reduce vulnerability to 1 - [e9db1b2](https://github.com/royriojas/flat-cache/commit/e9db1b2), [yumetodo](https://github.com/yumetodo), 30/03/2020 11:10:43 + - reduce vulnerabilities dependencies to 8 - [b58d196](https://github.com/royriojas/flat-cache/commit/b58d196), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:54:56 + - use prettier instead of esbeautifier - [03b1db7](https://github.com/royriojas/flat-cache/commit/03b1db7), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:27:14 + - update proxyquire - [c2f048d](https://github.com/royriojas/flat-cache/commit/c2f048d), [yumetodo](https://github.com/yumetodo), 30/03/2020 10:16:16 + - update flatted and mocha - [a0e56da](https://github.com/royriojas/flat-cache/commit/a0e56da), [yumetodo](https://github.com/yumetodo), 30/03/2020 09:46:45 mocha > mkdirp is updated istanble >>> optimist > minimist is not updated - - - drop support node.js < 10 in develop - [beba691]( https://github.com/royriojas/flat-cache/commit/beba691 ), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:31:09 + + - drop support node.js < 10 in develop - [beba691](https://github.com/royriojas/flat-cache/commit/beba691), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:31:09 see mkdirp - - - npm aufit fix(still remains) - [ce166cb]( https://github.com/royriojas/flat-cache/commit/ce166cb ), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:18:08 + + - npm aufit fix(still remains) - [ce166cb](https://github.com/royriojas/flat-cache/commit/ce166cb), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:18:08 37 vulnerabilities required manual review and could not be updated - - - updtate sinon - [9f2d1b6]( https://github.com/royriojas/flat-cache/commit/9f2d1b6 ), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:17:51 - - - apply eslint-plugin-mocha - [07343b5]( https://github.com/royriojas/flat-cache/commit/07343b5 ), [yumetodo](https://github.com/yumetodo), 13/03/2020 22:17:21 + - updtate sinon - [9f2d1b6](https://github.com/royriojas/flat-cache/commit/9f2d1b6), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:17:51 + - apply eslint-plugin-mocha - [07343b5](https://github.com/royriojas/flat-cache/commit/07343b5), [yumetodo](https://github.com/yumetodo), 13/03/2020 22:17:21 + - Less strint version check ([#44](https://github.com/royriojas/flat-cache/issues/44)) - [92aca1c](https://github.com/royriojas/flat-cache/commit/92aca1c), [Wojciech Maj](https://github.com/Wojciech Maj), 13/11/2019 16:18:25 - - - Less strint version check ([#44](https://github.com/royriojas/flat-cache/issues/44)) - [92aca1c]( https://github.com/royriojas/flat-cache/commit/92aca1c ), [Wojciech Maj](https://github.com/Wojciech Maj), 13/11/2019 16:18:25 + - Use ^ version matching for production dependencies + - Run npm audit fix - * Use ^ version matching for production dependencies - - * Run npm audit fix - - **Bug Fixes** - - update dependencies and use eslint directly - [73fbed2]( https://github.com/royriojas/flat-cache/commit/73fbed2 ), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:17:27 + - update dependencies and use eslint directly - [73fbed2](https://github.com/royriojas/flat-cache/commit/73fbed2), [yumetodo](https://github.com/yumetodo), 18/03/2020 01:17:27 - ## v2.0.1 + - **Refactoring** - - upgrade node modules to latest versions - [6402ed3]( https://github.com/royriojas/flat-cache/commit/6402ed3 ), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 18:47:05 + - upgrade node modules to latest versions - [6402ed3](https://github.com/royriojas/flat-cache/commit/6402ed3), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 18:47:05 - ## v2.0.0 + - **Bug Fixes** - - upgrade package.json lock file - [8d21c7b]( https://github.com/royriojas/flat-cache/commit/8d21c7b ), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 17:03:13 - - - Use the same versions of node_js that eslint use - [8d23379]( https://github.com/royriojas/flat-cache/commit/8d23379 ), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 16:25:11 + - upgrade package.json lock file - [8d21c7b](https://github.com/royriojas/flat-cache/commit/8d21c7b), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 17:03:13 + - Use the same versions of node_js that eslint use - [8d23379](https://github.com/royriojas/flat-cache/commit/8d23379), [Roy Riojas](https://github.com/Roy Riojas), 08/01/2019 16:25:11 - - **Other changes** - - Replace circular-json with flatted ([#36](https://github.com/royriojas/flat-cache/issues/36)) - [b93aced]( https://github.com/royriojas/flat-cache/commit/b93aced ), [C. K. Tang](https://github.com/C. K. Tang), 08/01/2019 17:03:01 - - - - Change JSON parser from circular-json to flatted & 1 more changes ([#37](https://github.com/royriojas/flat-cache/issues/37)) - [745e65a]( https://github.com/royriojas/flat-cache/commit/745e65a ), [Andy Chen](https://github.com/Andy Chen), 08/01/2019 16:17:20 - - * Change JSON parser from circular-json to flatted & 1 more changes - - * Change JSON parser from circular-json - * Audited 2 vulnerabilities - - * Update package.json - - * Update Engine require - - * There's a bunch of dependencies in this pkg requires node >=4, so I changed it to 4 - - * Remove and add node versions - - * I have seen this pkg is not available with node 0.12 so I removed it - * I have added a popular used LTS version of node - 10 - + + - Replace circular-json with flatted ([#36](https://github.com/royriojas/flat-cache/issues/36)) - [b93aced](https://github.com/royriojas/flat-cache/commit/b93aced), [C. K. Tang](https://github.com/C. K. Tang), 08/01/2019 17:03:01 + - Change JSON parser from circular-json to flatted & 1 more changes ([#37](https://github.com/royriojas/flat-cache/issues/37)) - [745e65a](https://github.com/royriojas/flat-cache/commit/745e65a), [Andy Chen](https://github.com/Andy Chen), 08/01/2019 16:17:20 + + - Change JSON parser from circular-json to flatted & 1 more changes + - Change JSON parser from circular-json + - Audited 2 vulnerabilities + - Update package.json + - Update Engine require + - There's a bunch of dependencies in this pkg requires node >=4, so I changed it to 4 + - Remove and add node versions + - I have seen this pkg is not available with node 0.12 so I removed it + - I have added a popular used LTS version of node - 10 + ## v1.3.4 + - **Refactoring** - - Add del.js and utils.js to the list of files to be beautified - [9d0ca9b]( https://github.com/royriojas/flat-cache/commit/9d0ca9b ), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 12:19:02 + - Add del.js and utils.js to the list of files to be beautified - [9d0ca9b](https://github.com/royriojas/flat-cache/commit/9d0ca9b), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 12:19:02 - ## v1.3.3 -- **Refactoring** - - Make sure package-lock.json is up to date - [a7d2598]( https://github.com/royriojas/flat-cache/commit/a7d2598 ), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 11:36:08 - +- **Refactoring** + - Make sure package-lock.json is up to date - [a7d2598](https://github.com/royriojas/flat-cache/commit/a7d2598), [Roy Riojas](https://github.com/Roy Riojas), 14/11/2018 11:36:08 - **Other changes** - - Removed the need for del ([#33](https://github.com/royriojas/flat-cache/issues/33)) - [c429012]( https://github.com/royriojas/flat-cache/commit/c429012 ), [S. Gilroy](https://github.com/S. Gilroy), 13/11/2018 13:56:37 - - * Removed the need for del - - Removed the need for del as newer versions have broken backwards - compatibility. del mainly uses rimraf for deleting folders - and files, replaceing it with rimraf only is a minimal change. - - * Disable glob on rimraf calls - - * Added glob disable to wrong call - - * Wrapped rimraf to simplify solution - + + - Removed the need for del ([#33](https://github.com/royriojas/flat-cache/issues/33)) - [c429012](https://github.com/royriojas/flat-cache/commit/c429012), [S. Gilroy](https://github.com/S. Gilroy), 13/11/2018 13:56:37 + + - Removed the need for del + + Removed the need for del as newer versions have broken backwards + compatibility. del mainly uses rimraf for deleting folders + and files, replaceing it with rimraf only is a minimal change. + + - Disable glob on rimraf calls + - Added glob disable to wrong call + - Wrapped rimraf to simplify solution + ## v1.3.2 -- **Refactoring** - - remove yarn.lock file - [704c6c4]( https://github.com/royriojas/flat-cache/commit/704c6c4 ), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:41:08 - +- **Refactoring** + - remove yarn.lock file - [704c6c4](https://github.com/royriojas/flat-cache/commit/704c6c4), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:41:08 - **Other changes** - - replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23))" - [db12d74]( https://github.com/royriojas/flat-cache/commit/db12d74 ), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:40:39 + + - replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23))" - [db12d74](https://github.com/royriojas/flat-cache/commit/db12d74), [Roy Riojas](https://github.com/Roy Riojas), 07/11/2018 15:40:39 This reverts commit 00f689277a75e85fef28e6a048fad227afc525e6. - + ## v1.3.1 -- **Refactoring** - - upgrade deps to remove some security warnings - [f405719]( https://github.com/royriojas/flat-cache/commit/f405719 ), [Roy Riojas](https://github.com/Roy Riojas), 06/11/2018 12:07:31 - +- **Refactoring** + - upgrade deps to remove some security warnings - [f405719](https://github.com/royriojas/flat-cache/commit/f405719), [Roy Riojas](https://github.com/Roy Riojas), 06/11/2018 12:07:31 - **Bug Fixes** - - replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23)) - [00f6892]( https://github.com/royriojas/flat-cache/commit/00f6892 ), [Terry](https://github.com/Terry), 05/11/2018 18:44:16 - - + - replace circular-json with flatted ([#23](https://github.com/royriojas/flat-cache/issues/23)) - [00f6892](https://github.com/royriojas/flat-cache/commit/00f6892), [Terry](https://github.com/Terry), 05/11/2018 18:44:16 - **Other changes** - - update del to v3.0.0 ([#26](https://github.com/royriojas/flat-cache/issues/26)) - [d42883f]( https://github.com/royriojas/flat-cache/commit/d42883f ), [Patrick Silva](https://github.com/Patrick Silva), 03/11/2018 01:00:44 + + - update del to v3.0.0 ([#26](https://github.com/royriojas/flat-cache/issues/26)) - [d42883f](https://github.com/royriojas/flat-cache/commit/d42883f), [Patrick Silva](https://github.com/Patrick Silva), 03/11/2018 01:00:44 Closes #25 + ## v1.3.0 + - **Other changes** - - Added #all method ([#16](https://github.com/royriojas/flat-cache/issues/16)) - [12293be]( https://github.com/royriojas/flat-cache/commit/12293be ), [Ozair Patel](https://github.com/Ozair Patel), 25/09/2017 14:46:38 - - * Added #all method - - * Added #all method test - - * Updated readme - - * Added yarn.lock - - * Added more keys for #all test - - * Beautified file - - - fix changelog title style ([#14](https://github.com/royriojas/flat-cache/issues/14)) - [af8338a]( https://github.com/royriojas/flat-cache/commit/af8338a ), [前端小武](https://github.com/前端小武), 19/12/2016 20:34:48 - - + + - Added #all method ([#16](https://github.com/royriojas/flat-cache/issues/16)) - [12293be](https://github.com/royriojas/flat-cache/commit/12293be), [Ozair Patel](https://github.com/Ozair Patel), 25/09/2017 14:46:38 + + - Added #all method + - Added #all method test + - Updated readme + - Added yarn.lock + - Added more keys for #all test + - Beautified file + + - fix changelog title style ([#14](https://github.com/royriojas/flat-cache/issues/14)) - [af8338a](https://github.com/royriojas/flat-cache/commit/af8338a), [前端小武](https://github.com/前端小武), 19/12/2016 20:34:48 + ## v1.2.2 + - **Bug Fixes** - - Do not crash if cache file is invalid JSON. ([#13](https://github.com/royriojas/flat-cache/issues/13)) - [87beaa6]( https://github.com/royriojas/flat-cache/commit/87beaa6 ), [Roy Riojas](https://github.com/Roy Riojas), 19/12/2016 18:03:35 - - Fixes #12 - - Not sure under which situations a cache file might exist that does - not contain a valid JSON structure, but just in case to cover - the possibility of this happening a try catch block has been added - - If the cache is somehow not valid the cache will be discarded an a + + - Do not crash if cache file is invalid JSON. ([#13](https://github.com/royriojas/flat-cache/issues/13)) - [87beaa6](https://github.com/royriojas/flat-cache/commit/87beaa6), [Roy Riojas](https://github.com/Roy Riojas), 19/12/2016 18:03:35 + + Fixes #12 + + Not sure under which situations a cache file might exist that does + not contain a valid JSON structure, but just in case to cover + the possibility of this happening a try catch block has been added + + If the cache is somehow not valid the cache will be discarded an a a new cache will be stored instead + - **Other changes** - - Added travis ci support for modern node versions ([#11](https://github.com/royriojas/flat-cache/issues/11)) - [1c2b1f7]( https://github.com/royriojas/flat-cache/commit/1c2b1f7 ), [Amila Welihinda](https://github.com/Amila Welihinda), 10/11/2016 23:47:52 - - - Bumping `circular-son` version ([#10](https://github.com/royriojas/flat-cache/issues/10)) - [4d5e861]( https://github.com/royriojas/flat-cache/commit/4d5e861 ), [Andrea Giammarchi](https://github.com/Andrea Giammarchi), 02/08/2016 07:13:52 + - Added travis ci support for modern node versions ([#11](https://github.com/royriojas/flat-cache/issues/11)) - [1c2b1f7](https://github.com/royriojas/flat-cache/commit/1c2b1f7), [Amila Welihinda](https://github.com/Amila Welihinda), 10/11/2016 23:47:52 + - Bumping `circular-son` version ([#10](https://github.com/royriojas/flat-cache/issues/10)) - [4d5e861](https://github.com/royriojas/flat-cache/commit/4d5e861), [Andrea Giammarchi](https://github.com/Andrea Giammarchi), 02/08/2016 07:13:52 + + As mentioned in https://github.com/WebReflection/circular-json/issues/25 `circular-json` wan't rightly implementing the license field. - As mentioned in https://github.com/WebReflection/circular-json/issues/25 `circular-json` wan't rightly implementing the license field. - Latest version bump changed only that bit so that ESLint should now be happy. + ## v1.2.1 + - **Bug Fixes** - - Add missing utils.js file to the package. closes [#8](https://github.com/royriojas/flat-cache/issues/8) - [ec10cf2]( https://github.com/royriojas/flat-cache/commit/ec10cf2 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:18:57 + - Add missing utils.js file to the package. closes [#8](https://github.com/royriojas/flat-cache/issues/8) - [ec10cf2](https://github.com/royriojas/flat-cache/commit/ec10cf2), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:18:57 - ## v1.2.0 + - **Documentation** - - Add documentation about noPrune option - [23e11f9]( https://github.com/royriojas/flat-cache/commit/23e11f9 ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:06:49 + - Add documentation about noPrune option - [23e11f9](https://github.com/royriojas/flat-cache/commit/23e11f9), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:06:49 - ## v1.0.11 + - **Features** - - Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a]( https://github.com/royriojas/flat-cache/commit/2c8016a ), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:00:29 - - - Add json read and write utility based on circular-json - [c31081e]( https://github.com/royriojas/flat-cache/commit/c31081e ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:58:17 + - Add noPrune option to cache.save() method. closes [#7](https://github.com/royriojas/flat-cache/issues/7) - [2c8016a](https://github.com/royriojas/flat-cache/commit/2c8016a), [Roy Riojas](https://github.com/Roy Riojas), 01/08/2016 02:00:29 + - Add json read and write utility based on circular-json - [c31081e](https://github.com/royriojas/flat-cache/commit/c31081e), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:58:17 - - **Bug Fixes** - - Remove UTF16 BOM stripping - [4a41e22]( https://github.com/royriojas/flat-cache/commit/4a41e22 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:18:06 - Since we control both writing and reading of JSON stream, there no needs + - Remove UTF16 BOM stripping - [4a41e22](https://github.com/royriojas/flat-cache/commit/4a41e22), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:18:06 + + Since we control both writing and reading of JSON stream, there no needs to handle unicode BOM. - - Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed]( https://github.com/royriojas/flat-cache/commit/cd7aeed ), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016 11:11:59 - + - Use circular-json to handle circular references (fix [#5](https://github.com/royriojas/flat-cache/issues/5)) - [cd7aeed](https://github.com/royriojas/flat-cache/commit/cd7aeed), [Jean Ponchon](https://github.com/Jean Ponchon), 25/07/2016 11:11:59 + - **Tests Related fixes** - - Add missing file from eslint test - [d6fa3c3]( https://github.com/royriojas/flat-cache/commit/d6fa3c3 ), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:15:51 - - - Add test for circular json serialization / deserialization - [07d2ddd]( https://github.com/royriojas/flat-cache/commit/07d2ddd ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:36 + - Add missing file from eslint test - [d6fa3c3](https://github.com/royriojas/flat-cache/commit/d6fa3c3), [Jean Ponchon](https://github.com/Jean Ponchon), 29/07/2016 02:15:51 + - Add test for circular json serialization / deserialization - [07d2ddd](https://github.com/royriojas/flat-cache/commit/07d2ddd), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:36 - - **Refactoring** - - Remove unused read-json-sync - [2be1c24]( https://github.com/royriojas/flat-cache/commit/2be1c24 ), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:18 - - + - Remove unused read-json-sync - [2be1c24](https://github.com/royriojas/flat-cache/commit/2be1c24), [Jean Ponchon](https://github.com/Jean Ponchon), 28/07/2016 08:59:18 - **Build Scripts Changes** - - travis tests on 0.12 and 4x - [3a613fd]( https://github.com/royriojas/flat-cache/commit/3a613fd ), [royriojas](https://github.com/royriojas), 15/11/2015 14:34:40 + - travis tests on 0.12 and 4x - [3a613fd](https://github.com/royriojas/flat-cache/commit/3a613fd), [royriojas](https://github.com/royriojas), 15/11/2015 14:34:40 - ## v1.0.10 + - **Build Scripts Changes** - - add eslint-fix task - [fd29e52]( https://github.com/royriojas/flat-cache/commit/fd29e52 ), [royriojas](https://github.com/royriojas), 01/11/2015 15:04:08 - - - make sure the test script also verify beautification and linting of files before running tests - [e94e176]( https://github.com/royriojas/flat-cache/commit/e94e176 ), [royriojas](https://github.com/royriojas), 01/11/2015 11:54:48 + - add eslint-fix task - [fd29e52](https://github.com/royriojas/flat-cache/commit/fd29e52), [royriojas](https://github.com/royriojas), 01/11/2015 15:04:08 + - make sure the test script also verify beautification and linting of files before running tests - [e94e176](https://github.com/royriojas/flat-cache/commit/e94e176), [royriojas](https://github.com/royriojas), 01/11/2015 11:54:48 - - **Other changes** - - add clearAll for cacheDir - [97383d9]( https://github.com/royriojas/flat-cache/commit/97383d9 ), [xieyaowu](https://github.com/xieyaowu), 31/10/2015 21:02:18 + - add clearAll for cacheDir - [97383d9](https://github.com/royriojas/flat-cache/commit/97383d9), [xieyaowu](https://github.com/xieyaowu), 31/10/2015 21:02:18 - ## v1.0.9 + - **Bug Fixes** - - wrong default values for changelogx user repo name - [7bb52d1]( https://github.com/royriojas/flat-cache/commit/7bb52d1 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:59:30 + - wrong default values for changelogx user repo name - [7bb52d1](https://github.com/royriojas/flat-cache/commit/7bb52d1), [royriojas](https://github.com/royriojas), 11/09/2015 15:59:30 - ## v1.0.8 + - **Build Scripts Changes** - - test against node 4 - [c395b66]( https://github.com/royriojas/flat-cache/commit/c395b66 ), [royriojas](https://github.com/royriojas), 11/09/2015 15:51:39 + - test against node 4 - [c395b66](https://github.com/royriojas/flat-cache/commit/c395b66), [royriojas](https://github.com/royriojas), 11/09/2015 15:51:39 - ## v1.0.7 -- **Other changes** - - Move dependencies into devDep - [7e47099]( https://github.com/royriojas/flat-cache/commit/7e47099 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 15:10:57 - +- **Other changes** + - Move dependencies into devDep - [7e47099](https://github.com/royriojas/flat-cache/commit/7e47099), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 15:10:57 - **Documentation** - - Add missing changelog link - [f51197a]( https://github.com/royriojas/flat-cache/commit/f51197a ), [royriojas](https://github.com/royriojas), 11/09/2015 14:48:05 + - Add missing changelog link - [f51197a](https://github.com/royriojas/flat-cache/commit/f51197a), [royriojas](https://github.com/royriojas), 11/09/2015 14:48:05 - ## v1.0.6 + - **Build Scripts Changes** - - Add helpers/code check scripts - [bdb82f3]( https://github.com/royriojas/flat-cache/commit/bdb82f3 ), [royriojas](https://github.com/royriojas), 11/09/2015 14:44:31 + - Add helpers/code check scripts - [bdb82f3](https://github.com/royriojas/flat-cache/commit/bdb82f3), [royriojas](https://github.com/royriojas), 11/09/2015 14:44:31 - ## v1.0.5 -- **Documentation** - - better description for the module - [436817f]( https://github.com/royriojas/flat-cache/commit/436817f ), [royriojas](https://github.com/royriojas), 11/09/2015 14:35:33 - +- **Documentation** + - better description for the module - [436817f](https://github.com/royriojas/flat-cache/commit/436817f), [royriojas](https://github.com/royriojas), 11/09/2015 14:35:33 - **Other changes** - - Update dependencies - [be88aa3]( https://github.com/royriojas/flat-cache/commit/be88aa3 ), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 13:47:41 + - Update dependencies - [be88aa3](https://github.com/royriojas/flat-cache/commit/be88aa3), [Bogdan Chadkin](https://github.com/Bogdan Chadkin), 11/09/2015 13:47:41 - ## v1.0.4 -- **Refactoring** - - load a cache file using the full filepath - [b8f68c2]( https://github.com/royriojas/flat-cache/commit/b8f68c2 ), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015 04:19:14 - +- **Refactoring** + - load a cache file using the full filepath - [b8f68c2](https://github.com/royriojas/flat-cache/commit/b8f68c2), [Roy Riojas](https://github.com/Roy Riojas), 30/08/2015 04:19:14 - **Documentation** - - Add documentation about `clearAll` and `clearCacheById` - [13947c1]( https://github.com/royriojas/flat-cache/commit/13947c1 ), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:44:05 - - + - Add documentation about `clearAll` and `clearCacheById` - [13947c1](https://github.com/royriojas/flat-cache/commit/13947c1), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:44:05 - **Features** - - Add methods to remove the cache documents created - [af40443]( https://github.com/royriojas/flat-cache/commit/af40443 ), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:39:27 + - Add methods to remove the cache documents created - [af40443](https://github.com/royriojas/flat-cache/commit/af40443), [Roy Riojas](https://github.com/Roy Riojas), 01/03/2015 23:39:27 - ## v1.0.1 + - **Other changes** - - Update README.md - [c2b6805]( https://github.com/royriojas/flat-cache/commit/c2b6805 ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:28:07 + - Update README.md - [c2b6805](https://github.com/royriojas/flat-cache/commit/c2b6805), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:28:07 - ## v1.0.0 -- **Refactoring** - - flat-cache v.1.0.0 - [c984274]( https://github.com/royriojas/flat-cache/commit/c984274 ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:11:50 - +- **Refactoring** + - flat-cache v.1.0.0 - [c984274](https://github.com/royriojas/flat-cache/commit/c984274), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 04:11:50 - **Other changes** - - Initial commit - [d43cccf]( https://github.com/royriojas/flat-cache/commit/d43cccf ), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 01:12:16 - - + - Initial commit - [d43cccf](https://github.com/royriojas/flat-cache/commit/d43cccf), [Roy Riojas](https://github.com/Roy Riojas), 26/02/2015 01:12:16 diff --git a/tools/node_modules/eslint/node_modules/flat-cache/package.json b/tools/node_modules/eslint/node_modules/flat-cache/package.json index b7b9eb00b934f9..b1248837543472 100644 --- a/tools/node_modules/eslint/node_modules/flat-cache/package.json +++ b/tools/node_modules/eslint/node_modules/flat-cache/package.json @@ -1,6 +1,6 @@ { "name": "flat-cache", - "version": "3.2.0", + "version": "4.0.1", "description": "A stupidly simple key/value storage using files to persist some data", "repository": "jaredwray/flat-cache", "license": "MIT", @@ -15,7 +15,7 @@ "src/utils.js" ], "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=16" }, "precommit": [ "npm run verify --silent" @@ -25,13 +25,15 @@ ], "scripts": { "eslint": "eslint --cache --cache-location=node_modules/.cache/ ./src/**/*.js ./test/**/*.js", + "clean": "rimraf ./node_modules ./package-lock.json ./yarn.lock ./coverage", "eslint-fix": "npm run eslint -- --fix", "autofix": "npm run eslint-fix", "check": "npm run eslint", "verify": "npm run eslint && npm run test:cache", "test:cache": "c8 mocha -R spec test/specs", "test:ci:cache": "c8 --reporter=lcov mocha -R spec test/specs", - "test": "npm run verify --silent" + "test": "npm run verify --silent", + "format": "prettier --write ." }, "keywords": [ "json cache", @@ -42,20 +44,20 @@ "cache" ], "devDependencies": { - "c8": "^7.14.0", + "c8": "^9.1.0", "chai": "^4.3.10", - "eslint": "^7.13.0", - "eslint-config-prettier": "^6.15.0", - "eslint-plugin-mocha": "^8.0.0", - "eslint-plugin-prettier": "^3.1.4", + "eslint": "^8.56.0", + "eslint-config-prettier": "^9.1.0", + "eslint-plugin-mocha": "^10.2.0", "glob-expand": "^0.2.1", - "mocha": "^8.4.0", - "prettier": "^2.1.2", + "mocha": "^10.3.0", + "prettier": "^3.2.4", + "rimraf": "^5.0.5", + "sinon": "^17.0.1", "write": "^2.0.0" }, "dependencies": { "flatted": "^3.2.9", - "keyv": "^4.5.3", - "rimraf": "^3.0.2" + "keyv": "^4.5.4" } } diff --git a/tools/node_modules/eslint/node_modules/flat-cache/src/cache.js b/tools/node_modules/eslint/node_modules/flat-cache/src/cache.js index 8999791bff4224..b1fdf6d88c1ebd 100644 --- a/tools/node_modules/eslint/node_modules/flat-cache/src/cache.js +++ b/tools/node_modules/eslint/node_modules/flat-cache/src/cache.js @@ -1,11 +1,10 @@ -var path = require('path'); -var fs = require('fs'); -var Keyv = require('keyv'); -var utils = require('./utils'); -var del = require('./del'); -var writeJSON = utils.writeJSON; - -var cache = { +const path = require('path'); +const fs = require('fs'); +const Keyv = require('keyv'); +const { writeJSON, tryParse } = require('./utils'); +const { del } = require('./del'); + +const cache = { /** * Load a cache identified by the given Id. If the element does not exists, then initialize an empty * cache storage. If specified `cacheDir` will be used as the directory to persist the data to. If omitted @@ -16,16 +15,16 @@ var cache = { * @param [cacheDir] {String} directory for the cache entry */ load: function (docId, cacheDir) { - var me = this; - + const me = this; me.keyv = new Keyv(); me.__visited = {}; me.__persisted = {}; + me._pathToFile = cacheDir ? path.resolve(cacheDir, docId) : path.resolve(__dirname, '../.cache/', docId); if (fs.existsSync(me._pathToFile)) { - me._persisted = utils.tryParse(me._pathToFile, {}); + me._persisted = tryParse(me._pathToFile, {}); } }, @@ -35,7 +34,6 @@ var cache = { set _persisted(value) { this.__persisted = value; - this.keyv.set('persisted', value); }, get _visited() { @@ -44,7 +42,6 @@ var cache = { set _visited(value) { this.__visited = value; - this.keyv.set('visited', value); }, /** @@ -53,9 +50,9 @@ var cache = { * @param {String} pathToFile the path to the file containing the info for the cache */ loadFile: function (pathToFile) { - var me = this; - var dir = path.dirname(pathToFile); - var fName = path.basename(pathToFile); + const me = this; + const dir = path.dirname(pathToFile); + const fName = path.basename(pathToFile); me.load(fName, dir); }, @@ -109,10 +106,10 @@ var cache = { * @private */ _prune: function () { - var me = this; - var obj = {}; + const me = this; + const obj = {}; - var keys = Object.keys(me._visited); + const keys = Object.keys(me._visited); // no keys visited for either get or set value if (keys.length === 0) { @@ -134,8 +131,7 @@ var cache = { * @method save */ save: function (noPrune) { - var me = this; - + const me = this; !noPrune && me._prune(); writeJSON(me._pathToFile, me._persisted); }, @@ -153,7 +149,7 @@ var cache = { * @method destroy */ destroy: function () { - var me = this; + const me = this; me._visited = {}; me._persisted = {}; @@ -184,13 +180,13 @@ module.exports = { * @returns {cache} cache instance */ create: function (docId, cacheDir) { - var obj = Object.create(cache); + const obj = Object.create(cache); obj.load(docId, cacheDir); return obj; }, createFromFile: function (filePath) { - var obj = Object.create(cache); + const obj = Object.create(cache); obj.loadFile(filePath); return obj; }, @@ -203,7 +199,7 @@ module.exports = { * @returns {Boolean} true if the cache folder was deleted. False otherwise */ clearCacheById: function (docId, cacheDir) { - var filePath = cacheDir ? path.resolve(cacheDir, docId) : path.resolve(__dirname, '../.cache/', docId); + const filePath = cacheDir ? path.resolve(cacheDir, docId) : path.resolve(__dirname, '../.cache/', docId); return del(filePath); }, /** @@ -212,7 +208,7 @@ module.exports = { * @returns {Boolean} true if the cache folder was deleted. False otherwise */ clearAll: function (cacheDir) { - var filePath = cacheDir ? path.resolve(cacheDir) : path.resolve(__dirname, '../.cache/'); + const filePath = cacheDir ? path.resolve(cacheDir) : path.resolve(__dirname, '../.cache/'); return del(filePath); }, }; diff --git a/tools/node_modules/eslint/node_modules/flat-cache/src/del.js b/tools/node_modules/eslint/node_modules/flat-cache/src/del.js index 8908744b89e8df..9cd55c369a0a4b 100644 --- a/tools/node_modules/eslint/node_modules/flat-cache/src/del.js +++ b/tools/node_modules/eslint/node_modules/flat-cache/src/del.js @@ -1,13 +1,30 @@ -var rimraf = require('rimraf').sync; -var fs = require('fs'); - -module.exports = function del(file) { - if (fs.existsSync(file)) { - //if rimraf doesn't throw then the file has been deleted or didn't exist - rimraf(file, { - glob: false, - }); +const fs = require('fs'); +const path = require('path'); + +function del(targetPath) { + if (!fs.existsSync(targetPath)) { + return false; + } + + try { + if (fs.statSync(targetPath).isDirectory()) { + // If it's a directory, delete its contents first + fs.readdirSync(targetPath).forEach(file => { + const curPath = path.join(targetPath, file); + + if (fs.statSync(curPath).isFile()) { + fs.unlinkSync(curPath); // Delete file + } + }); + fs.rmdirSync(targetPath); // Delete the now-empty directory + } else { + fs.unlinkSync(targetPath); // If it's a file, delete it directly + } + return true; + } catch (error) { + console.error(`Error while deleting ${targetPath}: ${error.message}`); } - return false; -}; +} + +module.exports = { del }; diff --git a/tools/node_modules/eslint/node_modules/flat-cache/src/utils.js b/tools/node_modules/eslint/node_modules/flat-cache/src/utils.js index 05f5ac385061e2..c4f75fbc8bcf17 100644 --- a/tools/node_modules/eslint/node_modules/flat-cache/src/utils.js +++ b/tools/node_modules/eslint/node_modules/flat-cache/src/utils.js @@ -1,44 +1,42 @@ -var fs = require('fs'); -var path = require('path'); -var flatted = require('flatted'); +const fs = require('fs'); +const path = require('path'); +const flatted = require('flatted'); -module.exports = { - tryParse: function (filePath, defaultValue) { - var result; - try { - result = this.readJSON(filePath); - } catch (ex) { - result = defaultValue; - } - return result; - }, +function tryParse(filePath, defaultValue) { + let result; + try { + result = readJSON(filePath); + } catch (ex) { + result = defaultValue; + } + return result; +} - /** - * Read json file synchronously using flatted - * - * @method readJSON - * @param {String} filePath Json filepath - * @returns {*} parse result - */ - readJSON: function (filePath) { - return flatted.parse( - fs.readFileSync(filePath, { - encoding: 'utf8', - }) - ); - }, +/** + * Read json file synchronously using flatted + * + * @param {String} filePath Json filepath + * @returns {*} parse result + */ +function readJSON(filePath) { + return flatted.parse( + fs.readFileSync(filePath, { + encoding: 'utf8', + }) + ); +} - /** - * Write json file synchronously using circular-json - * - * @method writeJSON - * @param {String} filePath Json filepath - * @param {*} data Object to serialize - */ - writeJSON: function (filePath, data) { - fs.mkdirSync(path.dirname(filePath), { - recursive: true, - }); - fs.writeFileSync(filePath, flatted.stringify(data)); - }, -}; +/** + * Write json file synchronously using circular-json + * + * @param {String} filePath Json filepath + * @param {*} data Object to serialize + */ +function writeJSON(filePath, data) { + fs.mkdirSync(path.dirname(filePath), { + recursive: true, + }); + fs.writeFileSync(filePath, flatted.stringify(data)); +} + +module.exports = { tryParse, readJSON, writeJSON }; diff --git a/tools/node_modules/eslint/node_modules/fs.realpath/LICENSE b/tools/node_modules/eslint/node_modules/fs.realpath/LICENSE deleted file mode 100644 index 5bd884c252ac49..00000000000000 --- a/tools/node_modules/eslint/node_modules/fs.realpath/LICENSE +++ /dev/null @@ -1,43 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - ----- - -This library bundles a version of the `fs.realpath` and `fs.realpathSync` -methods from Node.js v0.10 under the terms of the Node.js MIT license. - -Node's license follows, also included at the header of `old.js` which contains -the licensed code: - - Copyright Joyent, Inc. and other Node contributors. - - Permission is hereby granted, free of charge, to any person obtaining a - copy of this software and associated documentation files (the "Software"), - to deal in the Software without restriction, including without limitation - the rights to use, copy, modify, merge, publish, distribute, sublicense, - and/or sell copies of the Software, and to permit persons to whom the - Software is furnished to do so, subject to the following conditions: - - The above copyright notice and this permission notice shall be included in - all copies or substantial portions of the Software. - - THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING - FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER - DEALINGS IN THE SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/fs.realpath/index.js b/tools/node_modules/eslint/node_modules/fs.realpath/index.js deleted file mode 100644 index b09c7c7e6364da..00000000000000 --- a/tools/node_modules/eslint/node_modules/fs.realpath/index.js +++ /dev/null @@ -1,66 +0,0 @@ -module.exports = realpath -realpath.realpath = realpath -realpath.sync = realpathSync -realpath.realpathSync = realpathSync -realpath.monkeypatch = monkeypatch -realpath.unmonkeypatch = unmonkeypatch - -var fs = require('fs') -var origRealpath = fs.realpath -var origRealpathSync = fs.realpathSync - -var version = process.version -var ok = /^v[0-5]\./.test(version) -var old = require('./old.js') - -function newError (er) { - return er && er.syscall === 'realpath' && ( - er.code === 'ELOOP' || - er.code === 'ENOMEM' || - er.code === 'ENAMETOOLONG' - ) -} - -function realpath (p, cache, cb) { - if (ok) { - return origRealpath(p, cache, cb) - } - - if (typeof cache === 'function') { - cb = cache - cache = null - } - origRealpath(p, cache, function (er, result) { - if (newError(er)) { - old.realpath(p, cache, cb) - } else { - cb(er, result) - } - }) -} - -function realpathSync (p, cache) { - if (ok) { - return origRealpathSync(p, cache) - } - - try { - return origRealpathSync(p, cache) - } catch (er) { - if (newError(er)) { - return old.realpathSync(p, cache) - } else { - throw er - } - } -} - -function monkeypatch () { - fs.realpath = realpath - fs.realpathSync = realpathSync -} - -function unmonkeypatch () { - fs.realpath = origRealpath - fs.realpathSync = origRealpathSync -} diff --git a/tools/node_modules/eslint/node_modules/fs.realpath/old.js b/tools/node_modules/eslint/node_modules/fs.realpath/old.js deleted file mode 100644 index b40305e73fd583..00000000000000 --- a/tools/node_modules/eslint/node_modules/fs.realpath/old.js +++ /dev/null @@ -1,303 +0,0 @@ -// Copyright Joyent, Inc. and other Node contributors. -// -// Permission is hereby granted, free of charge, to any person obtaining a -// copy of this software and associated documentation files (the -// "Software"), to deal in the Software without restriction, including -// without limitation the rights to use, copy, modify, merge, publish, -// distribute, sublicense, and/or sell copies of the Software, and to permit -// persons to whom the Software is furnished to do so, subject to the -// following conditions: -// -// The above copyright notice and this permission notice shall be included -// in all copies or substantial portions of the Software. -// -// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN -// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, -// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR -// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE -// USE OR OTHER DEALINGS IN THE SOFTWARE. - -var pathModule = require('path'); -var isWindows = process.platform === 'win32'; -var fs = require('fs'); - -// JavaScript implementation of realpath, ported from node pre-v6 - -var DEBUG = process.env.NODE_DEBUG && /fs/.test(process.env.NODE_DEBUG); - -function rethrow() { - // Only enable in debug mode. A backtrace uses ~1000 bytes of heap space and - // is fairly slow to generate. - var callback; - if (DEBUG) { - var backtrace = new Error; - callback = debugCallback; - } else - callback = missingCallback; - - return callback; - - function debugCallback(err) { - if (err) { - backtrace.message = err.message; - err = backtrace; - missingCallback(err); - } - } - - function missingCallback(err) { - if (err) { - if (process.throwDeprecation) - throw err; // Forgot a callback but don't know where? Use NODE_DEBUG=fs - else if (!process.noDeprecation) { - var msg = 'fs: missing callback ' + (err.stack || err.message); - if (process.traceDeprecation) - console.trace(msg); - else - console.error(msg); - } - } - } -} - -function maybeCallback(cb) { - return typeof cb === 'function' ? cb : rethrow(); -} - -var normalize = pathModule.normalize; - -// Regexp that finds the next partion of a (partial) path -// result is [base_with_slash, base], e.g. ['somedir/', 'somedir'] -if (isWindows) { - var nextPartRe = /(.*?)(?:[\/\\]+|$)/g; -} else { - var nextPartRe = /(.*?)(?:[\/]+|$)/g; -} - -// Regex to find the device root, including trailing slash. E.g. 'c:\\'. -if (isWindows) { - var splitRootRe = /^(?:[a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/][^\\\/]+)?[\\\/]*/; -} else { - var splitRootRe = /^[\/]*/; -} - -exports.realpathSync = function realpathSync(p, cache) { - // make p is absolute - p = pathModule.resolve(p); - - if (cache && Object.prototype.hasOwnProperty.call(cache, p)) { - return cache[p]; - } - - var original = p, - seenLinks = {}, - knownHard = {}; - - // current character position in p - var pos; - // the partial path so far, including a trailing slash if any - var current; - // the partial path without a trailing slash (except when pointing at a root) - var base; - // the partial path scanned in the previous round, with slash - var previous; - - start(); - - function start() { - // Skip over roots - var m = splitRootRe.exec(p); - pos = m[0].length; - current = m[0]; - base = m[0]; - previous = ''; - - // On windows, check that the root exists. On unix there is no need. - if (isWindows && !knownHard[base]) { - fs.lstatSync(base); - knownHard[base] = true; - } - } - - // walk down the path, swapping out linked pathparts for their real - // values - // NB: p.length changes. - while (pos < p.length) { - // find the next part - nextPartRe.lastIndex = pos; - var result = nextPartRe.exec(p); - previous = current; - current += result[0]; - base = previous + result[1]; - pos = nextPartRe.lastIndex; - - // continue if not a symlink - if (knownHard[base] || (cache && cache[base] === base)) { - continue; - } - - var resolvedLink; - if (cache && Object.prototype.hasOwnProperty.call(cache, base)) { - // some known symbolic link. no need to stat again. - resolvedLink = cache[base]; - } else { - var stat = fs.lstatSync(base); - if (!stat.isSymbolicLink()) { - knownHard[base] = true; - if (cache) cache[base] = base; - continue; - } - - // read the link if it wasn't read before - // dev/ino always return 0 on windows, so skip the check. - var linkTarget = null; - if (!isWindows) { - var id = stat.dev.toString(32) + ':' + stat.ino.toString(32); - if (seenLinks.hasOwnProperty(id)) { - linkTarget = seenLinks[id]; - } - } - if (linkTarget === null) { - fs.statSync(base); - linkTarget = fs.readlinkSync(base); - } - resolvedLink = pathModule.resolve(previous, linkTarget); - // track this, if given a cache. - if (cache) cache[base] = resolvedLink; - if (!isWindows) seenLinks[id] = linkTarget; - } - - // resolve the link, then start over - p = pathModule.resolve(resolvedLink, p.slice(pos)); - start(); - } - - if (cache) cache[original] = p; - - return p; -}; - - -exports.realpath = function realpath(p, cache, cb) { - if (typeof cb !== 'function') { - cb = maybeCallback(cache); - cache = null; - } - - // make p is absolute - p = pathModule.resolve(p); - - if (cache && Object.prototype.hasOwnProperty.call(cache, p)) { - return process.nextTick(cb.bind(null, null, cache[p])); - } - - var original = p, - seenLinks = {}, - knownHard = {}; - - // current character position in p - var pos; - // the partial path so far, including a trailing slash if any - var current; - // the partial path without a trailing slash (except when pointing at a root) - var base; - // the partial path scanned in the previous round, with slash - var previous; - - start(); - - function start() { - // Skip over roots - var m = splitRootRe.exec(p); - pos = m[0].length; - current = m[0]; - base = m[0]; - previous = ''; - - // On windows, check that the root exists. On unix there is no need. - if (isWindows && !knownHard[base]) { - fs.lstat(base, function(err) { - if (err) return cb(err); - knownHard[base] = true; - LOOP(); - }); - } else { - process.nextTick(LOOP); - } - } - - // walk down the path, swapping out linked pathparts for their real - // values - function LOOP() { - // stop if scanned past end of path - if (pos >= p.length) { - if (cache) cache[original] = p; - return cb(null, p); - } - - // find the next part - nextPartRe.lastIndex = pos; - var result = nextPartRe.exec(p); - previous = current; - current += result[0]; - base = previous + result[1]; - pos = nextPartRe.lastIndex; - - // continue if not a symlink - if (knownHard[base] || (cache && cache[base] === base)) { - return process.nextTick(LOOP); - } - - if (cache && Object.prototype.hasOwnProperty.call(cache, base)) { - // known symbolic link. no need to stat again. - return gotResolvedLink(cache[base]); - } - - return fs.lstat(base, gotStat); - } - - function gotStat(err, stat) { - if (err) return cb(err); - - // if not a symlink, skip to the next path part - if (!stat.isSymbolicLink()) { - knownHard[base] = true; - if (cache) cache[base] = base; - return process.nextTick(LOOP); - } - - // stat & read the link if not read before - // call gotTarget as soon as the link target is known - // dev/ino always return 0 on windows, so skip the check. - if (!isWindows) { - var id = stat.dev.toString(32) + ':' + stat.ino.toString(32); - if (seenLinks.hasOwnProperty(id)) { - return gotTarget(null, seenLinks[id], base); - } - } - fs.stat(base, function(err) { - if (err) return cb(err); - - fs.readlink(base, function(err, target) { - if (!isWindows) seenLinks[id] = target; - gotTarget(err, target); - }); - }); - } - - function gotTarget(err, target, base) { - if (err) return cb(err); - - var resolvedLink = pathModule.resolve(previous, target); - if (cache) cache[base] = resolvedLink; - gotResolvedLink(resolvedLink); - } - - function gotResolvedLink(resolvedLink) { - // resolve the link, then start over - p = pathModule.resolve(resolvedLink, p.slice(pos)); - start(); - } -}; diff --git a/tools/node_modules/eslint/node_modules/fs.realpath/package.json b/tools/node_modules/eslint/node_modules/fs.realpath/package.json deleted file mode 100644 index 3edc57d21c7137..00000000000000 --- a/tools/node_modules/eslint/node_modules/fs.realpath/package.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "name": "fs.realpath", - "version": "1.0.0", - "description": "Use node's fs.realpath, but fall back to the JS implementation if the native one fails", - "main": "index.js", - "dependencies": {}, - "devDependencies": {}, - "scripts": { - "test": "tap test/*.js --cov" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/isaacs/fs.realpath.git" - }, - "keywords": [ - "realpath", - "fs", - "polyfill" - ], - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC", - "files": [ - "old.js", - "index.js" - ] -} diff --git a/tools/node_modules/eslint/node_modules/glob/LICENSE b/tools/node_modules/eslint/node_modules/glob/LICENSE deleted file mode 100644 index 42ca266df1d523..00000000000000 --- a/tools/node_modules/eslint/node_modules/glob/LICENSE +++ /dev/null @@ -1,21 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. - -## Glob Logo - -Glob's logo created by Tanya Brassie , licensed -under a Creative Commons Attribution-ShareAlike 4.0 International License -https://creativecommons.org/licenses/by-sa/4.0/ diff --git a/tools/node_modules/eslint/node_modules/glob/common.js b/tools/node_modules/eslint/node_modules/glob/common.js deleted file mode 100644 index 424c46e1dab1be..00000000000000 --- a/tools/node_modules/eslint/node_modules/glob/common.js +++ /dev/null @@ -1,238 +0,0 @@ -exports.setopts = setopts -exports.ownProp = ownProp -exports.makeAbs = makeAbs -exports.finish = finish -exports.mark = mark -exports.isIgnored = isIgnored -exports.childrenIgnored = childrenIgnored - -function ownProp (obj, field) { - return Object.prototype.hasOwnProperty.call(obj, field) -} - -var fs = require("fs") -var path = require("path") -var minimatch = require("minimatch") -var isAbsolute = require("path-is-absolute") -var Minimatch = minimatch.Minimatch - -function alphasort (a, b) { - return a.localeCompare(b, 'en') -} - -function setupIgnores (self, options) { - self.ignore = options.ignore || [] - - if (!Array.isArray(self.ignore)) - self.ignore = [self.ignore] - - if (self.ignore.length) { - self.ignore = self.ignore.map(ignoreMap) - } -} - -// ignore patterns are always in dot:true mode. -function ignoreMap (pattern) { - var gmatcher = null - if (pattern.slice(-3) === '/**') { - var gpattern = pattern.replace(/(\/\*\*)+$/, '') - gmatcher = new Minimatch(gpattern, { dot: true }) - } - - return { - matcher: new Minimatch(pattern, { dot: true }), - gmatcher: gmatcher - } -} - -function setopts (self, pattern, options) { - if (!options) - options = {} - - // base-matching: just use globstar for that. - if (options.matchBase && -1 === pattern.indexOf("/")) { - if (options.noglobstar) { - throw new Error("base matching requires globstar") - } - pattern = "**/" + pattern - } - - self.silent = !!options.silent - self.pattern = pattern - self.strict = options.strict !== false - self.realpath = !!options.realpath - self.realpathCache = options.realpathCache || Object.create(null) - self.follow = !!options.follow - self.dot = !!options.dot - self.mark = !!options.mark - self.nodir = !!options.nodir - if (self.nodir) - self.mark = true - self.sync = !!options.sync - self.nounique = !!options.nounique - self.nonull = !!options.nonull - self.nosort = !!options.nosort - self.nocase = !!options.nocase - self.stat = !!options.stat - self.noprocess = !!options.noprocess - self.absolute = !!options.absolute - self.fs = options.fs || fs - - self.maxLength = options.maxLength || Infinity - self.cache = options.cache || Object.create(null) - self.statCache = options.statCache || Object.create(null) - self.symlinks = options.symlinks || Object.create(null) - - setupIgnores(self, options) - - self.changedCwd = false - var cwd = process.cwd() - if (!ownProp(options, "cwd")) - self.cwd = cwd - else { - self.cwd = path.resolve(options.cwd) - self.changedCwd = self.cwd !== cwd - } - - self.root = options.root || path.resolve(self.cwd, "/") - self.root = path.resolve(self.root) - if (process.platform === "win32") - self.root = self.root.replace(/\\/g, "/") - - // TODO: is an absolute `cwd` supposed to be resolved against `root`? - // e.g. { cwd: '/test', root: __dirname } === path.join(__dirname, '/test') - self.cwdAbs = isAbsolute(self.cwd) ? self.cwd : makeAbs(self, self.cwd) - if (process.platform === "win32") - self.cwdAbs = self.cwdAbs.replace(/\\/g, "/") - self.nomount = !!options.nomount - - // disable comments and negation in Minimatch. - // Note that they are not supported in Glob itself anyway. - options.nonegate = true - options.nocomment = true - // always treat \ in patterns as escapes, not path separators - options.allowWindowsEscape = false - - self.minimatch = new Minimatch(pattern, options) - self.options = self.minimatch.options -} - -function finish (self) { - var nou = self.nounique - var all = nou ? [] : Object.create(null) - - for (var i = 0, l = self.matches.length; i < l; i ++) { - var matches = self.matches[i] - if (!matches || Object.keys(matches).length === 0) { - if (self.nonull) { - // do like the shell, and spit out the literal glob - var literal = self.minimatch.globSet[i] - if (nou) - all.push(literal) - else - all[literal] = true - } - } else { - // had matches - var m = Object.keys(matches) - if (nou) - all.push.apply(all, m) - else - m.forEach(function (m) { - all[m] = true - }) - } - } - - if (!nou) - all = Object.keys(all) - - if (!self.nosort) - all = all.sort(alphasort) - - // at *some* point we statted all of these - if (self.mark) { - for (var i = 0; i < all.length; i++) { - all[i] = self._mark(all[i]) - } - if (self.nodir) { - all = all.filter(function (e) { - var notDir = !(/\/$/.test(e)) - var c = self.cache[e] || self.cache[makeAbs(self, e)] - if (notDir && c) - notDir = c !== 'DIR' && !Array.isArray(c) - return notDir - }) - } - } - - if (self.ignore.length) - all = all.filter(function(m) { - return !isIgnored(self, m) - }) - - self.found = all -} - -function mark (self, p) { - var abs = makeAbs(self, p) - var c = self.cache[abs] - var m = p - if (c) { - var isDir = c === 'DIR' || Array.isArray(c) - var slash = p.slice(-1) === '/' - - if (isDir && !slash) - m += '/' - else if (!isDir && slash) - m = m.slice(0, -1) - - if (m !== p) { - var mabs = makeAbs(self, m) - self.statCache[mabs] = self.statCache[abs] - self.cache[mabs] = self.cache[abs] - } - } - - return m -} - -// lotta situps... -function makeAbs (self, f) { - var abs = f - if (f.charAt(0) === '/') { - abs = path.join(self.root, f) - } else if (isAbsolute(f) || f === '') { - abs = f - } else if (self.changedCwd) { - abs = path.resolve(self.cwd, f) - } else { - abs = path.resolve(f) - } - - if (process.platform === 'win32') - abs = abs.replace(/\\/g, '/') - - return abs -} - - -// Return true, if pattern ends with globstar '**', for the accompanying parent directory. -// Ex:- If node_modules/** is the pattern, add 'node_modules' to ignore list along with it's contents -function isIgnored (self, path) { - if (!self.ignore.length) - return false - - return self.ignore.some(function(item) { - return item.matcher.match(path) || !!(item.gmatcher && item.gmatcher.match(path)) - }) -} - -function childrenIgnored (self, path) { - if (!self.ignore.length) - return false - - return self.ignore.some(function(item) { - return !!(item.gmatcher && item.gmatcher.match(path)) - }) -} diff --git a/tools/node_modules/eslint/node_modules/glob/glob.js b/tools/node_modules/eslint/node_modules/glob/glob.js deleted file mode 100644 index 37a4d7e60775a3..00000000000000 --- a/tools/node_modules/eslint/node_modules/glob/glob.js +++ /dev/null @@ -1,790 +0,0 @@ -// Approach: -// -// 1. Get the minimatch set -// 2. For each pattern in the set, PROCESS(pattern, false) -// 3. Store matches per-set, then uniq them -// -// PROCESS(pattern, inGlobStar) -// Get the first [n] items from pattern that are all strings -// Join these together. This is PREFIX. -// If there is no more remaining, then stat(PREFIX) and -// add to matches if it succeeds. END. -// -// If inGlobStar and PREFIX is symlink and points to dir -// set ENTRIES = [] -// else readdir(PREFIX) as ENTRIES -// If fail, END -// -// with ENTRIES -// If pattern[n] is GLOBSTAR -// // handle the case where the globstar match is empty -// // by pruning it out, and testing the resulting pattern -// PROCESS(pattern[0..n] + pattern[n+1 .. $], false) -// // handle other cases. -// for ENTRY in ENTRIES (not dotfiles) -// // attach globstar + tail onto the entry -// // Mark that this entry is a globstar match -// PROCESS(pattern[0..n] + ENTRY + pattern[n .. $], true) -// -// else // not globstar -// for ENTRY in ENTRIES (not dotfiles, unless pattern[n] is dot) -// Test ENTRY against pattern[n] -// If fails, continue -// If passes, PROCESS(pattern[0..n] + item + pattern[n+1 .. $]) -// -// Caveat: -// Cache all stats and readdirs results to minimize syscall. Since all -// we ever care about is existence and directory-ness, we can just keep -// `true` for files, and [children,...] for directories, or `false` for -// things that don't exist. - -module.exports = glob - -var rp = require('fs.realpath') -var minimatch = require('minimatch') -var Minimatch = minimatch.Minimatch -var inherits = require('inherits') -var EE = require('events').EventEmitter -var path = require('path') -var assert = require('assert') -var isAbsolute = require('path-is-absolute') -var globSync = require('./sync.js') -var common = require('./common.js') -var setopts = common.setopts -var ownProp = common.ownProp -var inflight = require('inflight') -var util = require('util') -var childrenIgnored = common.childrenIgnored -var isIgnored = common.isIgnored - -var once = require('once') - -function glob (pattern, options, cb) { - if (typeof options === 'function') cb = options, options = {} - if (!options) options = {} - - if (options.sync) { - if (cb) - throw new TypeError('callback provided to sync glob') - return globSync(pattern, options) - } - - return new Glob(pattern, options, cb) -} - -glob.sync = globSync -var GlobSync = glob.GlobSync = globSync.GlobSync - -// old api surface -glob.glob = glob - -function extend (origin, add) { - if (add === null || typeof add !== 'object') { - return origin - } - - var keys = Object.keys(add) - var i = keys.length - while (i--) { - origin[keys[i]] = add[keys[i]] - } - return origin -} - -glob.hasMagic = function (pattern, options_) { - var options = extend({}, options_) - options.noprocess = true - - var g = new Glob(pattern, options) - var set = g.minimatch.set - - if (!pattern) - return false - - if (set.length > 1) - return true - - for (var j = 0; j < set[0].length; j++) { - if (typeof set[0][j] !== 'string') - return true - } - - return false -} - -glob.Glob = Glob -inherits(Glob, EE) -function Glob (pattern, options, cb) { - if (typeof options === 'function') { - cb = options - options = null - } - - if (options && options.sync) { - if (cb) - throw new TypeError('callback provided to sync glob') - return new GlobSync(pattern, options) - } - - if (!(this instanceof Glob)) - return new Glob(pattern, options, cb) - - setopts(this, pattern, options) - this._didRealPath = false - - // process each pattern in the minimatch set - var n = this.minimatch.set.length - - // The matches are stored as {: true,...} so that - // duplicates are automagically pruned. - // Later, we do an Object.keys() on these. - // Keep them as a list so we can fill in when nonull is set. - this.matches = new Array(n) - - if (typeof cb === 'function') { - cb = once(cb) - this.on('error', cb) - this.on('end', function (matches) { - cb(null, matches) - }) - } - - var self = this - this._processing = 0 - - this._emitQueue = [] - this._processQueue = [] - this.paused = false - - if (this.noprocess) - return this - - if (n === 0) - return done() - - var sync = true - for (var i = 0; i < n; i ++) { - this._process(this.minimatch.set[i], i, false, done) - } - sync = false - - function done () { - --self._processing - if (self._processing <= 0) { - if (sync) { - process.nextTick(function () { - self._finish() - }) - } else { - self._finish() - } - } - } -} - -Glob.prototype._finish = function () { - assert(this instanceof Glob) - if (this.aborted) - return - - if (this.realpath && !this._didRealpath) - return this._realpath() - - common.finish(this) - this.emit('end', this.found) -} - -Glob.prototype._realpath = function () { - if (this._didRealpath) - return - - this._didRealpath = true - - var n = this.matches.length - if (n === 0) - return this._finish() - - var self = this - for (var i = 0; i < this.matches.length; i++) - this._realpathSet(i, next) - - function next () { - if (--n === 0) - self._finish() - } -} - -Glob.prototype._realpathSet = function (index, cb) { - var matchset = this.matches[index] - if (!matchset) - return cb() - - var found = Object.keys(matchset) - var self = this - var n = found.length - - if (n === 0) - return cb() - - var set = this.matches[index] = Object.create(null) - found.forEach(function (p, i) { - // If there's a problem with the stat, then it means that - // one or more of the links in the realpath couldn't be - // resolved. just return the abs value in that case. - p = self._makeAbs(p) - rp.realpath(p, self.realpathCache, function (er, real) { - if (!er) - set[real] = true - else if (er.syscall === 'stat') - set[p] = true - else - self.emit('error', er) // srsly wtf right here - - if (--n === 0) { - self.matches[index] = set - cb() - } - }) - }) -} - -Glob.prototype._mark = function (p) { - return common.mark(this, p) -} - -Glob.prototype._makeAbs = function (f) { - return common.makeAbs(this, f) -} - -Glob.prototype.abort = function () { - this.aborted = true - this.emit('abort') -} - -Glob.prototype.pause = function () { - if (!this.paused) { - this.paused = true - this.emit('pause') - } -} - -Glob.prototype.resume = function () { - if (this.paused) { - this.emit('resume') - this.paused = false - if (this._emitQueue.length) { - var eq = this._emitQueue.slice(0) - this._emitQueue.length = 0 - for (var i = 0; i < eq.length; i ++) { - var e = eq[i] - this._emitMatch(e[0], e[1]) - } - } - if (this._processQueue.length) { - var pq = this._processQueue.slice(0) - this._processQueue.length = 0 - for (var i = 0; i < pq.length; i ++) { - var p = pq[i] - this._processing-- - this._process(p[0], p[1], p[2], p[3]) - } - } - } -} - -Glob.prototype._process = function (pattern, index, inGlobStar, cb) { - assert(this instanceof Glob) - assert(typeof cb === 'function') - - if (this.aborted) - return - - this._processing++ - if (this.paused) { - this._processQueue.push([pattern, index, inGlobStar, cb]) - return - } - - //console.error('PROCESS %d', this._processing, pattern) - - // Get the first [n] parts of pattern that are all strings. - var n = 0 - while (typeof pattern[n] === 'string') { - n ++ - } - // now n is the index of the first one that is *not* a string. - - // see if there's anything else - var prefix - switch (n) { - // if not, then this is rather simple - case pattern.length: - this._processSimple(pattern.join('/'), index, cb) - return - - case 0: - // pattern *starts* with some non-trivial item. - // going to readdir(cwd), but not include the prefix in matches. - prefix = null - break - - default: - // pattern has some string bits in the front. - // whatever it starts with, whether that's 'absolute' like /foo/bar, - // or 'relative' like '../baz' - prefix = pattern.slice(0, n).join('/') - break - } - - var remain = pattern.slice(n) - - // get the list of entries. - var read - if (prefix === null) - read = '.' - else if (isAbsolute(prefix) || - isAbsolute(pattern.map(function (p) { - return typeof p === 'string' ? p : '[*]' - }).join('/'))) { - if (!prefix || !isAbsolute(prefix)) - prefix = '/' + prefix - read = prefix - } else - read = prefix - - var abs = this._makeAbs(read) - - //if ignored, skip _processing - if (childrenIgnored(this, read)) - return cb() - - var isGlobStar = remain[0] === minimatch.GLOBSTAR - if (isGlobStar) - this._processGlobStar(prefix, read, abs, remain, index, inGlobStar, cb) - else - this._processReaddir(prefix, read, abs, remain, index, inGlobStar, cb) -} - -Glob.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar, cb) { - var self = this - this._readdir(abs, inGlobStar, function (er, entries) { - return self._processReaddir2(prefix, read, abs, remain, index, inGlobStar, entries, cb) - }) -} - -Glob.prototype._processReaddir2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) { - - // if the abs isn't a dir, then nothing can match! - if (!entries) - return cb() - - // It will only match dot entries if it starts with a dot, or if - // dot is set. Stuff like @(.foo|.bar) isn't allowed. - var pn = remain[0] - var negate = !!this.minimatch.negate - var rawGlob = pn._glob - var dotOk = this.dot || rawGlob.charAt(0) === '.' - - var matchedEntries = [] - for (var i = 0; i < entries.length; i++) { - var e = entries[i] - if (e.charAt(0) !== '.' || dotOk) { - var m - if (negate && !prefix) { - m = !e.match(pn) - } else { - m = e.match(pn) - } - if (m) - matchedEntries.push(e) - } - } - - //console.error('prd2', prefix, entries, remain[0]._glob, matchedEntries) - - var len = matchedEntries.length - // If there are no matched entries, then nothing matches. - if (len === 0) - return cb() - - // if this is the last remaining pattern bit, then no need for - // an additional stat *unless* the user has specified mark or - // stat explicitly. We know they exist, since readdir returned - // them. - - if (remain.length === 1 && !this.mark && !this.stat) { - if (!this.matches[index]) - this.matches[index] = Object.create(null) - - for (var i = 0; i < len; i ++) { - var e = matchedEntries[i] - if (prefix) { - if (prefix !== '/') - e = prefix + '/' + e - else - e = prefix + e - } - - if (e.charAt(0) === '/' && !this.nomount) { - e = path.join(this.root, e) - } - this._emitMatch(index, e) - } - // This was the last one, and no stats were needed - return cb() - } - - // now test all matched entries as stand-ins for that part - // of the pattern. - remain.shift() - for (var i = 0; i < len; i ++) { - var e = matchedEntries[i] - var newPattern - if (prefix) { - if (prefix !== '/') - e = prefix + '/' + e - else - e = prefix + e - } - this._process([e].concat(remain), index, inGlobStar, cb) - } - cb() -} - -Glob.prototype._emitMatch = function (index, e) { - if (this.aborted) - return - - if (isIgnored(this, e)) - return - - if (this.paused) { - this._emitQueue.push([index, e]) - return - } - - var abs = isAbsolute(e) ? e : this._makeAbs(e) - - if (this.mark) - e = this._mark(e) - - if (this.absolute) - e = abs - - if (this.matches[index][e]) - return - - if (this.nodir) { - var c = this.cache[abs] - if (c === 'DIR' || Array.isArray(c)) - return - } - - this.matches[index][e] = true - - var st = this.statCache[abs] - if (st) - this.emit('stat', e, st) - - this.emit('match', e) -} - -Glob.prototype._readdirInGlobStar = function (abs, cb) { - if (this.aborted) - return - - // follow all symlinked directories forever - // just proceed as if this is a non-globstar situation - if (this.follow) - return this._readdir(abs, false, cb) - - var lstatkey = 'lstat\0' + abs - var self = this - var lstatcb = inflight(lstatkey, lstatcb_) - - if (lstatcb) - self.fs.lstat(abs, lstatcb) - - function lstatcb_ (er, lstat) { - if (er && er.code === 'ENOENT') - return cb() - - var isSym = lstat && lstat.isSymbolicLink() - self.symlinks[abs] = isSym - - // If it's not a symlink or a dir, then it's definitely a regular file. - // don't bother doing a readdir in that case. - if (!isSym && lstat && !lstat.isDirectory()) { - self.cache[abs] = 'FILE' - cb() - } else - self._readdir(abs, false, cb) - } -} - -Glob.prototype._readdir = function (abs, inGlobStar, cb) { - if (this.aborted) - return - - cb = inflight('readdir\0'+abs+'\0'+inGlobStar, cb) - if (!cb) - return - - //console.error('RD %j %j', +inGlobStar, abs) - if (inGlobStar && !ownProp(this.symlinks, abs)) - return this._readdirInGlobStar(abs, cb) - - if (ownProp(this.cache, abs)) { - var c = this.cache[abs] - if (!c || c === 'FILE') - return cb() - - if (Array.isArray(c)) - return cb(null, c) - } - - var self = this - self.fs.readdir(abs, readdirCb(this, abs, cb)) -} - -function readdirCb (self, abs, cb) { - return function (er, entries) { - if (er) - self._readdirError(abs, er, cb) - else - self._readdirEntries(abs, entries, cb) - } -} - -Glob.prototype._readdirEntries = function (abs, entries, cb) { - if (this.aborted) - return - - // if we haven't asked to stat everything, then just - // assume that everything in there exists, so we can avoid - // having to stat it a second time. - if (!this.mark && !this.stat) { - for (var i = 0; i < entries.length; i ++) { - var e = entries[i] - if (abs === '/') - e = abs + e - else - e = abs + '/' + e - this.cache[e] = true - } - } - - this.cache[abs] = entries - return cb(null, entries) -} - -Glob.prototype._readdirError = function (f, er, cb) { - if (this.aborted) - return - - // handle errors, and cache the information - switch (er.code) { - case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205 - case 'ENOTDIR': // totally normal. means it *does* exist. - var abs = this._makeAbs(f) - this.cache[abs] = 'FILE' - if (abs === this.cwdAbs) { - var error = new Error(er.code + ' invalid cwd ' + this.cwd) - error.path = this.cwd - error.code = er.code - this.emit('error', error) - this.abort() - } - break - - case 'ENOENT': // not terribly unusual - case 'ELOOP': - case 'ENAMETOOLONG': - case 'UNKNOWN': - this.cache[this._makeAbs(f)] = false - break - - default: // some unusual error. Treat as failure. - this.cache[this._makeAbs(f)] = false - if (this.strict) { - this.emit('error', er) - // If the error is handled, then we abort - // if not, we threw out of here - this.abort() - } - if (!this.silent) - console.error('glob error', er) - break - } - - return cb() -} - -Glob.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar, cb) { - var self = this - this._readdir(abs, inGlobStar, function (er, entries) { - self._processGlobStar2(prefix, read, abs, remain, index, inGlobStar, entries, cb) - }) -} - - -Glob.prototype._processGlobStar2 = function (prefix, read, abs, remain, index, inGlobStar, entries, cb) { - //console.error('pgs2', prefix, remain[0], entries) - - // no entries means not a dir, so it can never have matches - // foo.txt/** doesn't match foo.txt - if (!entries) - return cb() - - // test without the globstar, and with every child both below - // and replacing the globstar. - var remainWithoutGlobStar = remain.slice(1) - var gspref = prefix ? [ prefix ] : [] - var noGlobStar = gspref.concat(remainWithoutGlobStar) - - // the noGlobStar pattern exits the inGlobStar state - this._process(noGlobStar, index, false, cb) - - var isSym = this.symlinks[abs] - var len = entries.length - - // If it's a symlink, and we're in a globstar, then stop - if (isSym && inGlobStar) - return cb() - - for (var i = 0; i < len; i++) { - var e = entries[i] - if (e.charAt(0) === '.' && !this.dot) - continue - - // these two cases enter the inGlobStar state - var instead = gspref.concat(entries[i], remainWithoutGlobStar) - this._process(instead, index, true, cb) - - var below = gspref.concat(entries[i], remain) - this._process(below, index, true, cb) - } - - cb() -} - -Glob.prototype._processSimple = function (prefix, index, cb) { - // XXX review this. Shouldn't it be doing the mounting etc - // before doing stat? kinda weird? - var self = this - this._stat(prefix, function (er, exists) { - self._processSimple2(prefix, index, er, exists, cb) - }) -} -Glob.prototype._processSimple2 = function (prefix, index, er, exists, cb) { - - //console.error('ps2', prefix, exists) - - if (!this.matches[index]) - this.matches[index] = Object.create(null) - - // If it doesn't exist, then just mark the lack of results - if (!exists) - return cb() - - if (prefix && isAbsolute(prefix) && !this.nomount) { - var trail = /[\/\\]$/.test(prefix) - if (prefix.charAt(0) === '/') { - prefix = path.join(this.root, prefix) - } else { - prefix = path.resolve(this.root, prefix) - if (trail) - prefix += '/' - } - } - - if (process.platform === 'win32') - prefix = prefix.replace(/\\/g, '/') - - // Mark this as a match - this._emitMatch(index, prefix) - cb() -} - -// Returns either 'DIR', 'FILE', or false -Glob.prototype._stat = function (f, cb) { - var abs = this._makeAbs(f) - var needDir = f.slice(-1) === '/' - - if (f.length > this.maxLength) - return cb() - - if (!this.stat && ownProp(this.cache, abs)) { - var c = this.cache[abs] - - if (Array.isArray(c)) - c = 'DIR' - - // It exists, but maybe not how we need it - if (!needDir || c === 'DIR') - return cb(null, c) - - if (needDir && c === 'FILE') - return cb() - - // otherwise we have to stat, because maybe c=true - // if we know it exists, but not what it is. - } - - var exists - var stat = this.statCache[abs] - if (stat !== undefined) { - if (stat === false) - return cb(null, stat) - else { - var type = stat.isDirectory() ? 'DIR' : 'FILE' - if (needDir && type === 'FILE') - return cb() - else - return cb(null, type, stat) - } - } - - var self = this - var statcb = inflight('stat\0' + abs, lstatcb_) - if (statcb) - self.fs.lstat(abs, statcb) - - function lstatcb_ (er, lstat) { - if (lstat && lstat.isSymbolicLink()) { - // If it's a symlink, then treat it as the target, unless - // the target does not exist, then treat it as a file. - return self.fs.stat(abs, function (er, stat) { - if (er) - self._stat2(f, abs, null, lstat, cb) - else - self._stat2(f, abs, er, stat, cb) - }) - } else { - self._stat2(f, abs, er, lstat, cb) - } - } -} - -Glob.prototype._stat2 = function (f, abs, er, stat, cb) { - if (er && (er.code === 'ENOENT' || er.code === 'ENOTDIR')) { - this.statCache[abs] = false - return cb() - } - - var needDir = f.slice(-1) === '/' - this.statCache[abs] = stat - - if (abs.slice(-1) === '/' && stat && !stat.isDirectory()) - return cb(null, false, stat) - - var c = true - if (stat) - c = stat.isDirectory() ? 'DIR' : 'FILE' - this.cache[abs] = this.cache[abs] || c - - if (needDir && c === 'FILE') - return cb() - - return cb(null, c, stat) -} diff --git a/tools/node_modules/eslint/node_modules/glob/package.json b/tools/node_modules/eslint/node_modules/glob/package.json deleted file mode 100644 index 5940b649b7e65a..00000000000000 --- a/tools/node_modules/eslint/node_modules/glob/package.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "name": "glob", - "description": "a little globber", - "version": "7.2.3", - "publishConfig": { - "tag": "v7-legacy" - }, - "repository": { - "type": "git", - "url": "git://github.com/isaacs/node-glob.git" - }, - "main": "glob.js", - "files": [ - "glob.js", - "sync.js", - "common.js" - ], - "engines": { - "node": "*" - }, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "devDependencies": { - "memfs": "^3.2.0", - "mkdirp": "0", - "rimraf": "^2.2.8", - "tap": "^15.0.6", - "tick": "0.0.6" - }, - "tap": { - "before": "test/00-setup.js", - "after": "test/zz-cleanup.js", - "jobs": 1 - }, - "scripts": { - "prepublish": "npm run benchclean", - "profclean": "rm -f v8.log profile.txt", - "test": "tap", - "test-regen": "npm run profclean && TEST_REGEN=1 node test/00-setup.js", - "bench": "bash benchmark.sh", - "prof": "bash prof.sh && cat profile.txt", - "benchclean": "node benchclean.js" - }, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" - } -} diff --git a/tools/node_modules/eslint/node_modules/glob/sync.js b/tools/node_modules/eslint/node_modules/glob/sync.js deleted file mode 100644 index 2c4f480192d28d..00000000000000 --- a/tools/node_modules/eslint/node_modules/glob/sync.js +++ /dev/null @@ -1,486 +0,0 @@ -module.exports = globSync -globSync.GlobSync = GlobSync - -var rp = require('fs.realpath') -var minimatch = require('minimatch') -var Minimatch = minimatch.Minimatch -var Glob = require('./glob.js').Glob -var util = require('util') -var path = require('path') -var assert = require('assert') -var isAbsolute = require('path-is-absolute') -var common = require('./common.js') -var setopts = common.setopts -var ownProp = common.ownProp -var childrenIgnored = common.childrenIgnored -var isIgnored = common.isIgnored - -function globSync (pattern, options) { - if (typeof options === 'function' || arguments.length === 3) - throw new TypeError('callback provided to sync glob\n'+ - 'See: https://github.com/isaacs/node-glob/issues/167') - - return new GlobSync(pattern, options).found -} - -function GlobSync (pattern, options) { - if (!pattern) - throw new Error('must provide pattern') - - if (typeof options === 'function' || arguments.length === 3) - throw new TypeError('callback provided to sync glob\n'+ - 'See: https://github.com/isaacs/node-glob/issues/167') - - if (!(this instanceof GlobSync)) - return new GlobSync(pattern, options) - - setopts(this, pattern, options) - - if (this.noprocess) - return this - - var n = this.minimatch.set.length - this.matches = new Array(n) - for (var i = 0; i < n; i ++) { - this._process(this.minimatch.set[i], i, false) - } - this._finish() -} - -GlobSync.prototype._finish = function () { - assert.ok(this instanceof GlobSync) - if (this.realpath) { - var self = this - this.matches.forEach(function (matchset, index) { - var set = self.matches[index] = Object.create(null) - for (var p in matchset) { - try { - p = self._makeAbs(p) - var real = rp.realpathSync(p, self.realpathCache) - set[real] = true - } catch (er) { - if (er.syscall === 'stat') - set[self._makeAbs(p)] = true - else - throw er - } - } - }) - } - common.finish(this) -} - - -GlobSync.prototype._process = function (pattern, index, inGlobStar) { - assert.ok(this instanceof GlobSync) - - // Get the first [n] parts of pattern that are all strings. - var n = 0 - while (typeof pattern[n] === 'string') { - n ++ - } - // now n is the index of the first one that is *not* a string. - - // See if there's anything else - var prefix - switch (n) { - // if not, then this is rather simple - case pattern.length: - this._processSimple(pattern.join('/'), index) - return - - case 0: - // pattern *starts* with some non-trivial item. - // going to readdir(cwd), but not include the prefix in matches. - prefix = null - break - - default: - // pattern has some string bits in the front. - // whatever it starts with, whether that's 'absolute' like /foo/bar, - // or 'relative' like '../baz' - prefix = pattern.slice(0, n).join('/') - break - } - - var remain = pattern.slice(n) - - // get the list of entries. - var read - if (prefix === null) - read = '.' - else if (isAbsolute(prefix) || - isAbsolute(pattern.map(function (p) { - return typeof p === 'string' ? p : '[*]' - }).join('/'))) { - if (!prefix || !isAbsolute(prefix)) - prefix = '/' + prefix - read = prefix - } else - read = prefix - - var abs = this._makeAbs(read) - - //if ignored, skip processing - if (childrenIgnored(this, read)) - return - - var isGlobStar = remain[0] === minimatch.GLOBSTAR - if (isGlobStar) - this._processGlobStar(prefix, read, abs, remain, index, inGlobStar) - else - this._processReaddir(prefix, read, abs, remain, index, inGlobStar) -} - - -GlobSync.prototype._processReaddir = function (prefix, read, abs, remain, index, inGlobStar) { - var entries = this._readdir(abs, inGlobStar) - - // if the abs isn't a dir, then nothing can match! - if (!entries) - return - - // It will only match dot entries if it starts with a dot, or if - // dot is set. Stuff like @(.foo|.bar) isn't allowed. - var pn = remain[0] - var negate = !!this.minimatch.negate - var rawGlob = pn._glob - var dotOk = this.dot || rawGlob.charAt(0) === '.' - - var matchedEntries = [] - for (var i = 0; i < entries.length; i++) { - var e = entries[i] - if (e.charAt(0) !== '.' || dotOk) { - var m - if (negate && !prefix) { - m = !e.match(pn) - } else { - m = e.match(pn) - } - if (m) - matchedEntries.push(e) - } - } - - var len = matchedEntries.length - // If there are no matched entries, then nothing matches. - if (len === 0) - return - - // if this is the last remaining pattern bit, then no need for - // an additional stat *unless* the user has specified mark or - // stat explicitly. We know they exist, since readdir returned - // them. - - if (remain.length === 1 && !this.mark && !this.stat) { - if (!this.matches[index]) - this.matches[index] = Object.create(null) - - for (var i = 0; i < len; i ++) { - var e = matchedEntries[i] - if (prefix) { - if (prefix.slice(-1) !== '/') - e = prefix + '/' + e - else - e = prefix + e - } - - if (e.charAt(0) === '/' && !this.nomount) { - e = path.join(this.root, e) - } - this._emitMatch(index, e) - } - // This was the last one, and no stats were needed - return - } - - // now test all matched entries as stand-ins for that part - // of the pattern. - remain.shift() - for (var i = 0; i < len; i ++) { - var e = matchedEntries[i] - var newPattern - if (prefix) - newPattern = [prefix, e] - else - newPattern = [e] - this._process(newPattern.concat(remain), index, inGlobStar) - } -} - - -GlobSync.prototype._emitMatch = function (index, e) { - if (isIgnored(this, e)) - return - - var abs = this._makeAbs(e) - - if (this.mark) - e = this._mark(e) - - if (this.absolute) { - e = abs - } - - if (this.matches[index][e]) - return - - if (this.nodir) { - var c = this.cache[abs] - if (c === 'DIR' || Array.isArray(c)) - return - } - - this.matches[index][e] = true - - if (this.stat) - this._stat(e) -} - - -GlobSync.prototype._readdirInGlobStar = function (abs) { - // follow all symlinked directories forever - // just proceed as if this is a non-globstar situation - if (this.follow) - return this._readdir(abs, false) - - var entries - var lstat - var stat - try { - lstat = this.fs.lstatSync(abs) - } catch (er) { - if (er.code === 'ENOENT') { - // lstat failed, doesn't exist - return null - } - } - - var isSym = lstat && lstat.isSymbolicLink() - this.symlinks[abs] = isSym - - // If it's not a symlink or a dir, then it's definitely a regular file. - // don't bother doing a readdir in that case. - if (!isSym && lstat && !lstat.isDirectory()) - this.cache[abs] = 'FILE' - else - entries = this._readdir(abs, false) - - return entries -} - -GlobSync.prototype._readdir = function (abs, inGlobStar) { - var entries - - if (inGlobStar && !ownProp(this.symlinks, abs)) - return this._readdirInGlobStar(abs) - - if (ownProp(this.cache, abs)) { - var c = this.cache[abs] - if (!c || c === 'FILE') - return null - - if (Array.isArray(c)) - return c - } - - try { - return this._readdirEntries(abs, this.fs.readdirSync(abs)) - } catch (er) { - this._readdirError(abs, er) - return null - } -} - -GlobSync.prototype._readdirEntries = function (abs, entries) { - // if we haven't asked to stat everything, then just - // assume that everything in there exists, so we can avoid - // having to stat it a second time. - if (!this.mark && !this.stat) { - for (var i = 0; i < entries.length; i ++) { - var e = entries[i] - if (abs === '/') - e = abs + e - else - e = abs + '/' + e - this.cache[e] = true - } - } - - this.cache[abs] = entries - - // mark and cache dir-ness - return entries -} - -GlobSync.prototype._readdirError = function (f, er) { - // handle errors, and cache the information - switch (er.code) { - case 'ENOTSUP': // https://github.com/isaacs/node-glob/issues/205 - case 'ENOTDIR': // totally normal. means it *does* exist. - var abs = this._makeAbs(f) - this.cache[abs] = 'FILE' - if (abs === this.cwdAbs) { - var error = new Error(er.code + ' invalid cwd ' + this.cwd) - error.path = this.cwd - error.code = er.code - throw error - } - break - - case 'ENOENT': // not terribly unusual - case 'ELOOP': - case 'ENAMETOOLONG': - case 'UNKNOWN': - this.cache[this._makeAbs(f)] = false - break - - default: // some unusual error. Treat as failure. - this.cache[this._makeAbs(f)] = false - if (this.strict) - throw er - if (!this.silent) - console.error('glob error', er) - break - } -} - -GlobSync.prototype._processGlobStar = function (prefix, read, abs, remain, index, inGlobStar) { - - var entries = this._readdir(abs, inGlobStar) - - // no entries means not a dir, so it can never have matches - // foo.txt/** doesn't match foo.txt - if (!entries) - return - - // test without the globstar, and with every child both below - // and replacing the globstar. - var remainWithoutGlobStar = remain.slice(1) - var gspref = prefix ? [ prefix ] : [] - var noGlobStar = gspref.concat(remainWithoutGlobStar) - - // the noGlobStar pattern exits the inGlobStar state - this._process(noGlobStar, index, false) - - var len = entries.length - var isSym = this.symlinks[abs] - - // If it's a symlink, and we're in a globstar, then stop - if (isSym && inGlobStar) - return - - for (var i = 0; i < len; i++) { - var e = entries[i] - if (e.charAt(0) === '.' && !this.dot) - continue - - // these two cases enter the inGlobStar state - var instead = gspref.concat(entries[i], remainWithoutGlobStar) - this._process(instead, index, true) - - var below = gspref.concat(entries[i], remain) - this._process(below, index, true) - } -} - -GlobSync.prototype._processSimple = function (prefix, index) { - // XXX review this. Shouldn't it be doing the mounting etc - // before doing stat? kinda weird? - var exists = this._stat(prefix) - - if (!this.matches[index]) - this.matches[index] = Object.create(null) - - // If it doesn't exist, then just mark the lack of results - if (!exists) - return - - if (prefix && isAbsolute(prefix) && !this.nomount) { - var trail = /[\/\\]$/.test(prefix) - if (prefix.charAt(0) === '/') { - prefix = path.join(this.root, prefix) - } else { - prefix = path.resolve(this.root, prefix) - if (trail) - prefix += '/' - } - } - - if (process.platform === 'win32') - prefix = prefix.replace(/\\/g, '/') - - // Mark this as a match - this._emitMatch(index, prefix) -} - -// Returns either 'DIR', 'FILE', or false -GlobSync.prototype._stat = function (f) { - var abs = this._makeAbs(f) - var needDir = f.slice(-1) === '/' - - if (f.length > this.maxLength) - return false - - if (!this.stat && ownProp(this.cache, abs)) { - var c = this.cache[abs] - - if (Array.isArray(c)) - c = 'DIR' - - // It exists, but maybe not how we need it - if (!needDir || c === 'DIR') - return c - - if (needDir && c === 'FILE') - return false - - // otherwise we have to stat, because maybe c=true - // if we know it exists, but not what it is. - } - - var exists - var stat = this.statCache[abs] - if (!stat) { - var lstat - try { - lstat = this.fs.lstatSync(abs) - } catch (er) { - if (er && (er.code === 'ENOENT' || er.code === 'ENOTDIR')) { - this.statCache[abs] = false - return false - } - } - - if (lstat && lstat.isSymbolicLink()) { - try { - stat = this.fs.statSync(abs) - } catch (er) { - stat = lstat - } - } else { - stat = lstat - } - } - - this.statCache[abs] = stat - - var c = true - if (stat) - c = stat.isDirectory() ? 'DIR' : 'FILE' - - this.cache[abs] = this.cache[abs] || c - - if (needDir && c === 'FILE') - return false - - return c -} - -GlobSync.prototype._mark = function (p) { - return common.mark(this, p) -} - -GlobSync.prototype._makeAbs = function (f) { - return common.makeAbs(this, f) -} diff --git a/tools/node_modules/eslint/node_modules/globals/globals.json b/tools/node_modules/eslint/node_modules/globals/globals.json index 44b632f57cc5f8..eecfcb6e1e1f2d 100644 --- a/tools/node_modules/eslint/node_modules/globals/globals.json +++ b/tools/node_modules/eslint/node_modules/globals/globals.json @@ -8,7 +8,6 @@ "BigInt64Array": false, "BigUint64Array": false, "Boolean": false, - "constructor": false, "DataView": false, "Date": false, "decodeURI": false, @@ -24,14 +23,13 @@ "Float64Array": false, "Function": false, "globalThis": false, - "hasOwnProperty": false, "Infinity": false, "Int16Array": false, "Int32Array": false, "Int8Array": false, + "Intl": false, "isFinite": false, "isNaN": false, - "isPrototypeOf": false, "JSON": false, "Map": false, "Math": false, @@ -41,7 +39,6 @@ "parseFloat": false, "parseInt": false, "Promise": false, - "propertyIsEnumerable": false, "Proxy": false, "RangeError": false, "ReferenceError": false, @@ -52,8 +49,6 @@ "String": false, "Symbol": false, "SyntaxError": false, - "toLocaleString": false, - "toString": false, "TypeError": false, "Uint16Array": false, "Uint32Array": false, @@ -62,7 +57,6 @@ "undefined": false, "unescape": false, "URIError": false, - "valueOf": false, "WeakMap": false, "WeakRef": false, "WeakSet": false @@ -70,7 +64,6 @@ "es5": { "Array": false, "Boolean": false, - "constructor": false, "Date": false, "decodeURI": false, "decodeURIComponent": false, @@ -81,11 +74,9 @@ "eval": false, "EvalError": false, "Function": false, - "hasOwnProperty": false, "Infinity": false, "isFinite": false, "isNaN": false, - "isPrototypeOf": false, "JSON": false, "Math": false, "NaN": false, @@ -93,25 +84,20 @@ "Object": false, "parseFloat": false, "parseInt": false, - "propertyIsEnumerable": false, "RangeError": false, "ReferenceError": false, "RegExp": false, "String": false, "SyntaxError": false, - "toLocaleString": false, - "toString": false, "TypeError": false, "undefined": false, "unescape": false, - "URIError": false, - "valueOf": false + "URIError": false }, "es2015": { "Array": false, "ArrayBuffer": false, "Boolean": false, - "constructor": false, "DataView": false, "Date": false, "decodeURI": false, @@ -125,14 +111,13 @@ "Float32Array": false, "Float64Array": false, "Function": false, - "hasOwnProperty": false, "Infinity": false, "Int16Array": false, "Int32Array": false, "Int8Array": false, + "Intl": false, "isFinite": false, "isNaN": false, - "isPrototypeOf": false, "JSON": false, "Map": false, "Math": false, @@ -142,7 +127,6 @@ "parseFloat": false, "parseInt": false, "Promise": false, - "propertyIsEnumerable": false, "Proxy": false, "RangeError": false, "ReferenceError": false, @@ -152,8 +136,6 @@ "String": false, "Symbol": false, "SyntaxError": false, - "toLocaleString": false, - "toString": false, "TypeError": false, "Uint16Array": false, "Uint32Array": false, @@ -162,7 +144,6 @@ "undefined": false, "unescape": false, "URIError": false, - "valueOf": false, "WeakMap": false, "WeakSet": false }, @@ -171,7 +152,6 @@ "ArrayBuffer": false, "Atomics": false, "Boolean": false, - "constructor": false, "DataView": false, "Date": false, "decodeURI": false, @@ -185,14 +165,13 @@ "Float32Array": false, "Float64Array": false, "Function": false, - "hasOwnProperty": false, "Infinity": false, "Int16Array": false, "Int32Array": false, "Int8Array": false, + "Intl": false, "isFinite": false, "isNaN": false, - "isPrototypeOf": false, "JSON": false, "Map": false, "Math": false, @@ -202,7 +181,6 @@ "parseFloat": false, "parseInt": false, "Promise": false, - "propertyIsEnumerable": false, "Proxy": false, "RangeError": false, "ReferenceError": false, @@ -213,8 +191,6 @@ "String": false, "Symbol": false, "SyntaxError": false, - "toLocaleString": false, - "toString": false, "TypeError": false, "Uint16Array": false, "Uint32Array": false, @@ -223,7 +199,6 @@ "undefined": false, "unescape": false, "URIError": false, - "valueOf": false, "WeakMap": false, "WeakSet": false }, @@ -235,7 +210,6 @@ "BigInt64Array": false, "BigUint64Array": false, "Boolean": false, - "constructor": false, "DataView": false, "Date": false, "decodeURI": false, @@ -250,14 +224,13 @@ "Float64Array": false, "Function": false, "globalThis": false, - "hasOwnProperty": false, "Infinity": false, "Int16Array": false, "Int32Array": false, "Int8Array": false, + "Intl": false, "isFinite": false, "isNaN": false, - "isPrototypeOf": false, "JSON": false, "Map": false, "Math": false, @@ -267,7 +240,6 @@ "parseFloat": false, "parseInt": false, "Promise": false, - "propertyIsEnumerable": false, "Proxy": false, "RangeError": false, "ReferenceError": false, @@ -278,8 +250,6 @@ "String": false, "Symbol": false, "SyntaxError": false, - "toLocaleString": false, - "toString": false, "TypeError": false, "Uint16Array": false, "Uint32Array": false, @@ -288,7 +258,6 @@ "undefined": false, "unescape": false, "URIError": false, - "valueOf": false, "WeakMap": false, "WeakSet": false }, @@ -301,7 +270,6 @@ "BigInt64Array": false, "BigUint64Array": false, "Boolean": false, - "constructor": false, "DataView": false, "Date": false, "decodeURI": false, @@ -317,14 +285,13 @@ "Float64Array": false, "Function": false, "globalThis": false, - "hasOwnProperty": false, "Infinity": false, "Int16Array": false, "Int32Array": false, "Int8Array": false, + "Intl": false, "isFinite": false, "isNaN": false, - "isPrototypeOf": false, "JSON": false, "Map": false, "Math": false, @@ -334,7 +301,6 @@ "parseFloat": false, "parseInt": false, "Promise": false, - "propertyIsEnumerable": false, "Proxy": false, "RangeError": false, "ReferenceError": false, @@ -345,8 +311,6 @@ "String": false, "Symbol": false, "SyntaxError": false, - "toLocaleString": false, - "toString": false, "TypeError": false, "Uint16Array": false, "Uint32Array": false, @@ -355,7 +319,6 @@ "undefined": false, "unescape": false, "URIError": false, - "valueOf": false, "WeakMap": false, "WeakRef": false, "WeakSet": false @@ -363,34 +326,44 @@ "browser": { "AbortController": false, "AbortSignal": false, + "AbsoluteOrientationSensor": false, + "AbstractRange": false, + "Accelerometer": false, "addEventListener": false, "alert": false, "AnalyserNode": false, "Animation": false, - "AnimationEffectReadOnly": false, - "AnimationEffectTiming": false, - "AnimationEffectTimingReadOnly": false, + "AnimationEffect": false, "AnimationEvent": false, "AnimationPlaybackEvent": false, "AnimationTimeline": false, - "applicationCache": false, - "ApplicationCache": false, - "ApplicationCacheErrorEvent": false, "atob": false, "Attr": false, "Audio": false, "AudioBuffer": false, "AudioBufferSourceNode": false, "AudioContext": false, + "AudioData": false, + "AudioDecoder": false, "AudioDestinationNode": false, + "AudioEncoder": false, "AudioListener": false, "AudioNode": false, "AudioParam": false, + "AudioParamMap": false, "AudioProcessingEvent": false, "AudioScheduledSourceNode": false, + "AudioSinkInfo": false, + "AudioWorklet": false, "AudioWorkletGlobalScope": false, "AudioWorkletNode": false, "AudioWorkletProcessor": false, + "AuthenticatorAssertionResponse": false, + "AuthenticatorAttestationResponse": false, + "AuthenticatorResponse": false, + "BackgroundFetchManager": false, + "BackgroundFetchRecord": false, + "BackgroundFetchRegistration": false, "BarProp": false, "BaseAudioContext": false, "BatteryManager": false, @@ -398,26 +371,40 @@ "BiquadFilterNode": false, "Blob": false, "BlobEvent": false, + "Bluetooth": false, + "BluetoothCharacteristicProperties": false, + "BluetoothDevice": false, + "BluetoothRemoteGATTCharacteristic": false, + "BluetoothRemoteGATTDescriptor": false, + "BluetoothRemoteGATTServer": false, + "BluetoothRemoteGATTService": false, + "BluetoothUUID": false, "blur": false, "BroadcastChannel": false, + "BrowserCaptureMediaStreamTrack": false, "btoa": false, - "BudgetService": false, "ByteLengthQueuingStrategy": false, "Cache": false, "caches": false, "CacheStorage": false, "cancelAnimationFrame": false, "cancelIdleCallback": false, + "CanvasCaptureMediaStream": false, "CanvasCaptureMediaStreamTrack": false, "CanvasGradient": false, "CanvasPattern": false, "CanvasRenderingContext2D": false, + "CaptureController": false, + "CaretPosition": false, + "CDATASection": false, "ChannelMergerNode": false, "ChannelSplitterNode": false, + "CharacterBoundsUpdateEvent": false, "CharacterData": false, "clearInterval": false, "clearTimeout": false, "clientInformation": false, + "Clipboard": false, "ClipboardEvent": false, "ClipboardItem": false, "close": false, @@ -429,56 +416,104 @@ "confirm": false, "console": false, "ConstantSourceNode": false, + "ContentVisibilityAutoStateChangeEvent": false, "ConvolverNode": false, + "CookieChangeEvent": false, + "CookieDeprecationLabel": false, + "cookieStore": false, + "CookieStore": false, + "CookieStoreManager": false, "CountQueuingStrategy": false, "createImageBitmap": false, "Credential": false, + "credentialless": false, "CredentialsContainer": false, + "CropTarget": false, + "crossOriginIsolated": false, "crypto": false, "Crypto": false, "CryptoKey": false, "CSS": false, + "CSSAnimation": false, "CSSConditionRule": false, + "CSSContainerRule": false, + "CSSCounterStyleRule": false, "CSSFontFaceRule": false, + "CSSFontFeatureValuesRule": false, + "CSSFontPaletteValuesRule": false, "CSSGroupingRule": false, + "CSSImageValue": false, "CSSImportRule": false, "CSSKeyframeRule": false, "CSSKeyframesRule": false, + "CSSKeywordValue": false, + "CSSLayerBlockRule": false, + "CSSLayerStatementRule": false, + "CSSMathClamp": false, + "CSSMathInvert": false, + "CSSMathMax": false, + "CSSMathMin": false, + "CSSMathNegate": false, + "CSSMathProduct": false, + "CSSMathSum": false, + "CSSMathValue": false, "CSSMatrixComponent": false, "CSSMediaRule": false, "CSSNamespaceRule": false, + "CSSNumericArray": false, + "CSSNumericValue": false, "CSSPageRule": false, "CSSPerspective": false, + "CSSPositionTryDescriptors": false, + "CSSPositionTryRule": false, + "CSSPositionValue": false, + "CSSPropertyRule": false, "CSSRotate": false, "CSSRule": false, "CSSRuleList": false, "CSSScale": false, + "CSSScopeRule": false, "CSSSkew": false, "CSSSkewX": false, "CSSSkewY": false, + "CSSStartingStyleRule": false, "CSSStyleDeclaration": false, "CSSStyleRule": false, "CSSStyleSheet": false, + "CSSStyleValue": false, "CSSSupportsRule": false, + "CSSTransformComponent": false, "CSSTransformValue": false, + "CSSTransition": false, "CSSTranslate": false, + "CSSUnitValue": false, + "CSSUnparsedValue": false, + "CSSVariableReferenceValue": false, + "currentFrame": false, + "currentTime": false, "CustomElementRegistry": false, "customElements": false, "CustomEvent": false, + "CustomStateSet": false, "DataTransfer": false, "DataTransferItem": false, "DataTransferItemList": false, "DecompressionStream": false, - "defaultstatus": false, - "defaultStatus": false, "DelayNode": false, + "DelegatedInkTrailPresenter": false, "DeviceMotionEvent": false, + "DeviceMotionEventAcceleration": false, + "DeviceMotionEventRotationRate": false, "DeviceOrientationEvent": false, "devicePixelRatio": false, "dispatchEvent": false, "document": false, "Document": false, "DocumentFragment": false, + "documentPictureInPicture": false, + "DocumentPictureInPicture": false, + "DocumentPictureInPictureEvent": false, + "DocumentTimeline": false, "DocumentType": false, "DOMError": false, "DOMException": false, @@ -497,34 +532,117 @@ "DOMTokenList": false, "DragEvent": false, "DynamicsCompressorNode": false, + "EditContext": false, "Element": false, + "ElementInternals": false, + "EncodedAudioChunk": false, + "EncodedVideoChunk": false, "ErrorEvent": false, "event": false, "Event": false, + "EventCounts": false, "EventSource": false, "EventTarget": false, "external": false, + "External": false, + "EyeDropper": false, + "FeaturePolicy": false, + "FederatedCredential": false, + "fence": false, + "Fence": false, + "FencedFrameConfig": false, "fetch": false, + "fetchLater": false, + "FetchLaterResult": false, "File": false, "FileList": false, "FileReader": false, + "FileSystem": false, + "FileSystemDirectoryEntry": false, + "FileSystemDirectoryHandle": false, + "FileSystemDirectoryReader": false, + "FileSystemEntry": false, + "FileSystemFileEntry": false, + "FileSystemFileHandle": false, + "FileSystemHandle": false, + "FileSystemWritableFileStream": false, "find": false, "focus": false, "FocusEvent": false, + "FontData": false, "FontFace": false, + "FontFaceSet": false, "FontFaceSetLoadEvent": false, "FormData": false, "FormDataEvent": false, + "FragmentDirective": false, "frameElement": false, "frames": false, "GainNode": false, "Gamepad": false, + "GamepadAxisMoveEvent": false, "GamepadButton": false, + "GamepadButtonEvent": false, "GamepadEvent": false, + "GamepadHapticActuator": false, + "GamepadPose": false, + "Geolocation": false, + "GeolocationCoordinates": false, + "GeolocationPosition": false, + "GeolocationPositionError": false, "getComputedStyle": false, + "getScreenDetails": false, "getSelection": false, + "GPU": false, + "GPUAdapter": false, + "GPUAdapterInfo": false, + "GPUBindGroup": false, + "GPUBindGroupLayout": false, + "GPUBuffer": false, + "GPUBufferUsage": false, + "GPUCanvasContext": false, + "GPUColorWrite": false, + "GPUCommandBuffer": false, + "GPUCommandEncoder": false, + "GPUCompilationInfo": false, + "GPUCompilationMessage": false, + "GPUComputePassEncoder": false, + "GPUComputePipeline": false, + "GPUDevice": false, + "GPUDeviceLostInfo": false, + "GPUError": false, + "GPUExternalTexture": false, + "GPUInternalError": false, + "GPUMapMode": false, + "GPUOutOfMemoryError": false, + "GPUPipelineError": false, + "GPUPipelineLayout": false, + "GPUQuerySet": false, + "GPUQueue": false, + "GPURenderBundle": false, + "GPURenderBundleEncoder": false, + "GPURenderPassEncoder": false, + "GPURenderPipeline": false, + "GPUSampler": false, + "GPUShaderModule": false, + "GPUShaderStage": false, + "GPUSupportedFeatures": false, + "GPUSupportedLimits": false, + "GPUTexture": false, + "GPUTextureUsage": false, + "GPUTextureView": false, + "GPUUncapturedErrorEvent": false, + "GPUValidationError": false, + "GravitySensor": false, + "Gyroscope": false, "HashChangeEvent": false, "Headers": false, + "HID": false, + "HIDConnectionEvent": false, + "HIDDevice": false, + "HIDInputReportEvent": false, + "Highlight": false, + "HighlightRegistry": false, "history": false, "History": false, "HTMLAllCollection": false, @@ -537,7 +655,6 @@ "HTMLButtonElement": false, "HTMLCanvasElement": false, "HTMLCollection": false, - "HTMLContentElement": false, "HTMLDataElement": false, "HTMLDataListElement": false, "HTMLDetailsElement": false, @@ -548,6 +665,7 @@ "HTMLDocument": false, "HTMLElement": false, "HTMLEmbedElement": false, + "HTMLFencedFrameElement": false, "HTMLFieldSetElement": false, "HTMLFontElement": false, "HTMLFormControlsCollection": false, @@ -586,7 +704,6 @@ "HTMLQuoteElement": false, "HTMLScriptElement": false, "HTMLSelectElement": false, - "HTMLShadowElement": false, "HTMLSlotElement": false, "HTMLSourceElement": false, "HTMLSpanElement": false, @@ -616,36 +733,61 @@ "IDBRequest": false, "IDBTransaction": false, "IDBVersionChangeEvent": false, + "IdentityCredential": false, + "IdentityCredentialError": false, + "IdentityProvider": false, "IdleDeadline": false, + "IdleDetector": false, "IIRFilterNode": false, "Image": false, "ImageBitmap": false, "ImageBitmapRenderingContext": false, "ImageCapture": false, "ImageData": false, + "ImageDecoder": false, + "ImageTrack": false, + "ImageTrackList": false, "indexedDB": false, + "Ink": false, "innerHeight": false, "innerWidth": false, + "InputDeviceCapabilities": false, + "InputDeviceInfo": false, "InputEvent": false, "IntersectionObserver": false, "IntersectionObserverEntry": false, - "Intl": false, "isSecureContext": false, + "Iterator": false, + "Keyboard": false, "KeyboardEvent": false, + "KeyboardLayoutMap": false, "KeyframeEffect": false, - "KeyframeEffectReadOnly": false, + "LargestContentfulPaint": false, + "LaunchParams": false, + "launchQueue": false, + "LaunchQueue": false, + "LayoutShift": false, + "LayoutShiftAttribution": false, "length": false, + "LinearAccelerationSensor": false, "localStorage": false, "location": true, "Location": false, "locationbar": false, + "Lock": false, + "LockManager": false, "matchMedia": false, + "MathMLElement": false, + "MediaCapabilities": false, + "MediaCapabilitiesInfo": false, "MediaDeviceInfo": false, "MediaDevices": false, "MediaElementAudioSourceNode": false, "MediaEncryptedEvent": false, "MediaError": false, + "MediaKeyError": false, "MediaKeyMessageEvent": false, + "MediaKeys": false, "MediaKeySession": false, "MediaKeyStatusMap": false, "MediaKeySystemAccess": false, @@ -654,15 +796,21 @@ "MediaQueryList": false, "MediaQueryListEvent": false, "MediaRecorder": false, - "MediaSettingsRange": false, + "MediaRecorderErrorEvent": false, + "MediaSession": false, "MediaSource": false, + "MediaSourceHandle": false, "MediaStream": false, "MediaStreamAudioDestinationNode": false, "MediaStreamAudioSourceNode": false, - "MediaStreamConstraints": false, "MediaStreamEvent": false, "MediaStreamTrack": false, + "MediaStreamTrackAudioSourceNode": false, + "MediaStreamTrackAudioStats": false, "MediaStreamTrackEvent": false, + "MediaStreamTrackGenerator": false, + "MediaStreamTrackProcessor": false, + "MediaStreamTrackVideoStats": false, "menubar": false, "MessageChannel": false, "MessageEvent": false, @@ -677,6 +825,9 @@ "MIDIPort": false, "MimeType": false, "MimeTypeArray": false, + "model": false, + "ModelGenericSession": false, + "ModelManager": false, "MouseEvent": false, "moveBy": false, "moveTo": false, @@ -685,9 +836,19 @@ "MutationRecord": false, "name": false, "NamedNodeMap": false, + "NavigateEvent": false, + "navigation": false, + "Navigation": false, + "NavigationActivation": false, + "NavigationCurrentEntryChangeEvent": false, + "NavigationDestination": false, + "NavigationHistoryEntry": false, "NavigationPreloadManager": false, + "NavigationTransition": false, "navigator": false, "Navigator": false, + "NavigatorLogin": false, + "NavigatorManagedData": false, "NavigatorUAData": false, "NetworkInformation": false, "Node": false, @@ -695,21 +856,29 @@ "NodeIterator": false, "NodeList": false, "Notification": false, + "NotifyPaintEvent": false, + "NotRestoredReasonDetails": false, + "NotRestoredReasons": false, "OfflineAudioCompletionEvent": false, "OfflineAudioContext": false, "offscreenBuffering": false, - "OffscreenCanvas": true, + "OffscreenCanvas": false, "OffscreenCanvasRenderingContext2D": false, "onabort": true, "onafterprint": true, + "onanimationcancel": true, "onanimationend": true, "onanimationiteration": true, "onanimationstart": true, "onappinstalled": true, "onauxclick": true, + "onbeforeinput": true, "onbeforeinstallprompt": true, + "onbeforematch": true, "onbeforeprint": true, + "onbeforetoggle": true, "onbeforeunload": true, + "onbeforexrselect": true, "onblur": true, "oncancel": true, "oncanplay": true, @@ -717,8 +886,13 @@ "onchange": true, "onclick": true, "onclose": true, + "oncontentvisibilityautostatechange": true, + "oncontextlost": true, "oncontextmenu": true, + "oncontextrestored": true, + "oncopy": true, "oncuechange": true, + "oncut": true, "ondblclick": true, "ondevicemotion": true, "ondeviceorientation": true, @@ -735,6 +909,9 @@ "onended": true, "onerror": true, "onfocus": true, + "onformdata": true, + "ongamepadconnected": true, + "ongamepaddisconnected": true, "ongotpointercapture": true, "onhashchange": true, "oninput": true, @@ -761,7 +938,10 @@ "onoffline": true, "ononline": true, "onpagehide": true, + "onpagereveal": true, "onpageshow": true, + "onpageswap": true, + "onpaste": true, "onpause": true, "onplay": true, "onplaying": true, @@ -772,6 +952,7 @@ "onpointermove": true, "onpointerout": true, "onpointerover": true, + "onpointerrawupdate": true, "onpointerup": true, "onpopstate": true, "onprogress": true, @@ -780,44 +961,62 @@ "onreset": true, "onresize": true, "onscroll": true, + "onscrollend": true, "onsearch": true, + "onsecuritypolicyviolation": true, "onseeked": true, "onseeking": true, "onselect": true, + "onselectionchange": true, + "onselectstart": true, + "onslotchange": true, "onstalled": true, "onstorage": true, "onsubmit": true, "onsuspend": true, "ontimeupdate": true, "ontoggle": true, + "ontransitioncancel": true, "ontransitionend": true, + "ontransitionrun": true, + "ontransitionstart": true, "onunhandledrejection": true, "onunload": true, "onvolumechange": true, "onwaiting": true, "onwheel": true, "open": false, - "openDatabase": false, "opener": false, "Option": false, + "OrientationSensor": false, "origin": false, + "originAgentCluster": false, "OscillatorNode": false, + "OTPCredential": false, "outerHeight": false, "outerWidth": false, "OverconstrainedError": false, + "PageRevealEvent": false, + "PageSwapEvent": false, "PageTransitionEvent": false, "pageXOffset": false, "pageYOffset": false, "PannerNode": false, "parent": false, + "PasswordCredential": false, "Path2D": false, "PaymentAddress": false, + "PaymentManager": false, + "PaymentMethodChangeEvent": false, "PaymentRequest": false, "PaymentRequestUpdateEvent": false, "PaymentResponse": false, "performance": false, "Performance": false, + "PerformanceElementTiming": false, "PerformanceEntry": false, + "PerformanceEventTiming": false, + "PerformanceLongAnimationFrameTiming": false, "PerformanceLongTaskTiming": false, "PerformanceMark": false, "PerformanceMeasure": false, @@ -827,12 +1026,17 @@ "PerformanceObserverEntryList": false, "PerformancePaintTiming": false, "PerformanceResourceTiming": false, + "PerformanceScriptTiming": false, + "PerformanceServerTiming": false, "PerformanceTiming": false, + "PeriodicSyncManager": false, "PeriodicWave": false, "Permissions": false, "PermissionStatus": false, + "PERSISTENT": false, "personalbar": false, - "PhotoCapabilities": false, + "PictureInPictureEvent": false, + "PictureInPictureWindow": false, "Plugin": false, "PluginArray": false, "PointerEvent": false, @@ -846,14 +1050,20 @@ "PresentationConnectionList": false, "PresentationReceiver": false, "PresentationRequest": false, + "PressureObserver": false, + "PressureRecord": false, "print": false, "ProcessingInstruction": false, + "Profiler": false, "ProgressEvent": false, "PromiseRejectionEvent": false, "prompt": false, + "ProtectedAudience": false, + "PublicKeyCredential": false, "PushManager": false, "PushSubscription": false, "PushSubscriptionOptions": false, + "queryLocalFonts": false, "queueMicrotask": false, "RadioNodeList": false, "Range": false, @@ -864,35 +1074,51 @@ "ReadableStreamDefaultController": false, "ReadableStreamDefaultReader": false, "registerProcessor": false, + "RelativeOrientationSensor": false, "RemotePlayback": false, "removeEventListener": false, "reportError": false, + "ReportingObserver": false, "Request": false, "requestAnimationFrame": false, "requestIdleCallback": false, "resizeBy": false, "ResizeObserver": false, "ResizeObserverEntry": false, + "ResizeObserverSize": false, "resizeTo": false, "Response": false, "RTCCertificate": false, "RTCDataChannel": false, "RTCDataChannelEvent": false, "RTCDtlsTransport": false, + "RTCDTMFSender": false, + "RTCDTMFToneChangeEvent": false, + "RTCEncodedAudioFrame": false, + "RTCEncodedVideoFrame": false, + "RTCError": false, + "RTCErrorEvent": false, "RTCIceCandidate": false, - "RTCIceGatherer": false, "RTCIceTransport": false, "RTCPeerConnection": false, + "RTCPeerConnectionIceErrorEvent": false, "RTCPeerConnectionIceEvent": false, - "RTCRtpContributingSource": false, "RTCRtpReceiver": false, + "RTCRtpScriptTransform": false, "RTCRtpSender": false, + "RTCRtpTransceiver": false, "RTCSctpTransport": false, "RTCSessionDescription": false, "RTCStatsReport": false, "RTCTrackEvent": false, + "sampleRate": false, + "scheduler": false, + "Scheduler": false, + "Scheduling": false, "screen": false, "Screen": false, + "ScreenDetailed": false, + "ScreenDetails": false, "screenLeft": false, "ScreenOrientation": false, "screenTop": false, @@ -902,12 +1128,17 @@ "scroll": false, "scrollbars": false, "scrollBy": false, + "ScrollTimeline": false, "scrollTo": false, "scrollX": false, "scrollY": false, "SecurityPolicyViolationEvent": false, "Selection": false, "self": false, + "Sensor": false, + "SensorErrorEvent": false, + "Serial": false, + "SerialPort": false, "ServiceWorker": false, "ServiceWorkerContainer": false, "ServiceWorkerRegistration": false, @@ -915,22 +1146,35 @@ "setInterval": false, "setTimeout": false, "ShadowRoot": false, + "sharedStorage": false, + "SharedStorage": false, + "SharedStorageWorklet": false, "SharedWorker": false, + "showDirectoryPicker": false, + "showOpenFilePicker": false, + "showSaveFilePicker": false, "SourceBuffer": false, "SourceBufferList": false, "speechSynthesis": false, + "SpeechSynthesis": false, + "SpeechSynthesisErrorEvent": false, "SpeechSynthesisEvent": false, "SpeechSynthesisUtterance": false, + "SpeechSynthesisVoice": false, "StaticRange": false, "status": false, "statusbar": false, "StereoPannerNode": false, "stop": false, "Storage": false, + "StorageBucket": false, + "StorageBucketManager": false, "StorageEvent": false, "StorageManager": false, "structuredClone": false, "styleMedia": false, + "StylePropertyMap": false, + "StylePropertyMapReadOnly": false, "StyleSheet": false, "StyleSheetList": false, "SubmitEvent": false, @@ -958,7 +1202,6 @@ "SVGComponentTransferFunctionElement": false, "SVGDefsElement": false, "SVGDescElement": false, - "SVGDiscardElement": false, "SVGElement": false, "SVGEllipseElement": false, "SVGFEBlendElement": false, @@ -1033,18 +1276,27 @@ "SVGUnitTypes": false, "SVGUseElement": false, "SVGViewElement": false, + "SyncManager": false, "TaskAttributionTiming": false, + "TaskController": false, + "TaskPriorityChangeEvent": false, + "TaskSignal": false, + "TEMPORARY": false, "Text": false, "TextDecoder": false, "TextDecoderStream": false, "TextEncoder": false, "TextEncoderStream": false, "TextEvent": false, + "TextFormat": false, + "TextFormatUpdateEvent": false, "TextMetrics": false, "TextTrack": false, "TextTrackCue": false, "TextTrackCueList": false, "TextTrackList": false, + "TextUpdateEvent": false, + "TimeEvent": false, "TimeRanges": false, "ToggleEvent": false, "toolbar": false, @@ -1057,13 +1309,48 @@ "TransformStreamDefaultController": false, "TransitionEvent": false, "TreeWalker": false, + "TrustedHTML": false, + "TrustedScript": false, + "TrustedScriptURL": false, + "TrustedTypePolicy": false, + "TrustedTypePolicyFactory": false, + "trustedTypes": false, "UIEvent": false, "URL": false, + "URLPattern": false, "URLSearchParams": false, + "USB": false, + "USBAlternateInterface": false, + "USBConfiguration": false, + "USBConnectionEvent": false, + "USBDevice": false, + "USBEndpoint": false, + "USBInterface": false, + "USBInTransferResult": false, + "USBIsochronousInTransferPacket": false, + "USBIsochronousInTransferResult": false, + "USBIsochronousOutTransferPacket": false, + "USBIsochronousOutTransferResult": false, + "USBOutTransferResult": false, + "UserActivation": false, "ValidityState": false, + "VideoColorSpace": false, + "VideoDecoder": false, + "VideoEncoder": false, + "VideoFrame": false, + "VideoPlaybackQuality": false, + "ViewTimeline": false, + "ViewTransition": false, + "ViewTransitionTypeSet": false, + "VirtualKeyboard": false, + "VirtualKeyboardGeometryChangeEvent": false, + "VisibilityStateEntry": false, "visualViewport": false, "VisualViewport": false, "VTTCue": false, + "VTTRegion": false, + "WakeLock": false, + "WakeLockSentinel": false, "WaveShaperNode": false, "WebAssembly": false, "WebGL2RenderingContext": false, @@ -1084,10 +1371,23 @@ "WebGLUniformLocation": false, "WebGLVertexArrayObject": false, "WebSocket": false, + "WebSocketError": false, + "WebSocketStream": false, + "WebTransport": false, + "WebTransportBidirectionalStream": false, + "WebTransportDatagramDuplexStream": false, + "WebTransportError": false, + "WebTransportReceiveStream": false, + "WebTransportSendStream": false, + "WGSLLanguageFeatures": false, "WheelEvent": false, "window": false, "Window": false, + "WindowControlsOverlay": false, + "WindowControlsOverlayGeometryChangeEvent": false, "Worker": false, + "Worklet": false, + "WorkletGlobalScope": false, "WritableStream": false, "WritableStreamDefaultController": false, "WritableStreamDefaultWriter": false, @@ -1099,59 +1399,151 @@ "XPathEvaluator": false, "XPathExpression": false, "XPathResult": false, - "XRAnchor": false, - "XRBoundedReferenceSpace": false, - "XRCPUDepthInformation": false, - "XRDepthInformation": false, - "XRFrame": false, - "XRInputSource": false, - "XRInputSourceArray": false, - "XRInputSourceEvent": false, - "XRInputSourcesChangeEvent": false, - "XRPose": false, - "XRReferenceSpace": false, - "XRReferenceSpaceEvent": false, - "XRRenderState": false, - "XRRigidTransform": false, - "XRSession": false, - "XRSessionEvent": false, - "XRSpace": false, - "XRSystem": false, - "XRView": false, - "XRViewerPose": false, - "XRViewport": false, - "XRWebGLBinding": false, - "XRWebGLDepthInformation": false, - "XRWebGLLayer": false, + "XRAnchor": false, + "XRAnchorSet": false, + "XRBoundedReferenceSpace": false, + "XRCamera": false, + "XRCPUDepthInformation": false, + "XRDepthInformation": false, + "XRDOMOverlayState": false, + "XRFrame": false, + "XRHitTestResult": false, + "XRHitTestSource": false, + "XRInputSource": false, + "XRInputSourceArray": false, + "XRInputSourceEvent": false, + "XRInputSourcesChangeEvent": false, + "XRLayer": false, + "XRLightEstimate": false, + "XRLightProbe": false, + "XRPose": false, + "XRRay": false, + "XRReferenceSpace": false, + "XRReferenceSpaceEvent": false, + "XRRenderState": false, + "XRRigidTransform": false, + "XRSession": false, + "XRSessionEvent": false, + "XRSpace": false, + "XRSystem": false, + "XRTransientInputHitTestResult": false, + "XRTransientInputHitTestSource": false, + "XRView": false, + "XRViewerPose": false, + "XRViewport": false, + "XRWebGLBinding": false, + "XRWebGLDepthInformation": false, + "XRWebGLLayer": false, "XSLTProcessor": false }, "worker": { + "AbortController": false, + "AbortSignal": false, "addEventListener": false, - "applicationCache": false, "atob": false, + "AudioData": false, + "AudioDecoder": false, + "AudioEncoder": false, + "BackgroundFetchManager": false, + "BackgroundFetchRecord": false, + "BackgroundFetchRegistration": false, "Blob": false, "BroadcastChannel": false, "btoa": false, "ByteLengthQueuingStrategy": false, "Cache": false, "caches": false, + "CacheStorage": false, + "cancelAnimationFrame": false, + "CanvasGradient": false, + "CanvasPattern": false, "clearInterval": false, "clearTimeout": false, - "close": true, + "close": false, + "CloseEvent": false, "CompressionStream": false, "console": false, "CountQueuingStrategy": false, + "createImageBitmap": false, + "CropTarget": false, + "crossOriginIsolated": false, "crypto": false, "Crypto": false, "CryptoKey": false, + "CSSSkewX": false, + "CSSSkewY": false, "CustomEvent": false, "DecompressionStream": false, + "DedicatedWorkerGlobalScope": false, + "dispatchEvent": false, + "DOMException": false, + "DOMMatrix": false, + "DOMMatrixReadOnly": false, + "DOMPoint": false, + "DOMPointReadOnly": false, + "DOMQuad": false, + "DOMRect": false, + "DOMRectReadOnly": false, + "DOMStringList": false, + "EncodedAudioChunk": false, + "EncodedVideoChunk": false, "ErrorEvent": false, "Event": false, + "EventSource": false, + "EventTarget": false, "fetch": false, "File": false, + "FileList": false, + "FileReader": false, "FileReaderSync": false, + "FileSystemDirectoryHandle": false, + "FileSystemFileHandle": false, + "FileSystemHandle": false, + "FileSystemSyncAccessHandle": false, + "FileSystemWritableFileStream": false, + "FontFace": false, + "fonts": false, "FormData": false, + "GPU": false, + "GPUAdapter": false, + "GPUAdapterInfo": false, + "GPUBindGroup": false, + "GPUBindGroupLayout": false, + "GPUBuffer": false, + "GPUBufferUsage": false, + "GPUCanvasContext": false, + "GPUColorWrite": false, + "GPUCommandBuffer": false, + "GPUCommandEncoder": false, + "GPUCompilationInfo": false, + "GPUCompilationMessage": false, + "GPUComputePassEncoder": false, + "GPUComputePipeline": false, + "GPUDevice": false, + "GPUDeviceLostInfo": false, + "GPUError": false, + "GPUExternalTexture": false, + "GPUInternalError": false, + "GPUMapMode": false, + "GPUOutOfMemoryError": false, + "GPUPipelineError": false, + "GPUPipelineLayout": false, + "GPUQuerySet": false, + "GPUQueue": false, + "GPURenderBundle": false, + "GPURenderBundleEncoder": false, + "GPURenderPassEncoder": false, + "GPURenderPipeline": false, + "GPUSampler": false, + "GPUShaderModule": false, + "GPUShaderStage": false, + "GPUSupportedFeatures": false, + "GPUSupportedLimits": false, + "GPUTexture": false, + "GPUTextureUsage": false, + "GPUTextureView": false, + "GPUUncapturedErrorEvent": false, + "GPUValidationError": false, "Headers": false, "IDBCursor": false, "IDBCursorWithValue": false, @@ -1164,37 +1556,63 @@ "IDBRequest": false, "IDBTransaction": false, "IDBVersionChangeEvent": false, + "IdleDetector": false, + "ImageBitmap": false, + "ImageBitmapRenderingContext": false, "ImageData": false, - "importScripts": true, + "ImageDecoder": false, + "ImageTrack": false, + "ImageTrackList": false, + "importScripts": false, "indexedDB": false, + "isSecureContext": false, + "Iterator": false, "location": false, + "Lock": false, + "LockManager": false, + "MediaCapabilities": false, + "MediaSource": false, + "MediaSourceHandle": false, "MessageChannel": false, "MessageEvent": false, "MessagePort": false, "name": false, + "NavigationPreloadManager": false, "navigator": false, + "NavigatorUAData": false, + "NetworkInformation": false, "Notification": false, - "onclose": true, - "onconnect": true, + "OffscreenCanvas": false, + "OffscreenCanvasRenderingContext2D": false, "onerror": true, "onlanguagechange": true, "onmessage": true, - "onoffline": true, - "ononline": true, + "onmessageerror": true, "onrejectionhandled": true, "onunhandledrejection": true, + "origin": false, + "Path2D": false, "performance": false, "Performance": false, "PerformanceEntry": false, "PerformanceMark": false, "PerformanceMeasure": false, - "PerformanceNavigation": false, "PerformanceObserver": false, "PerformanceObserverEntryList": false, "PerformanceResourceTiming": false, - "PerformanceTiming": false, - "postMessage": true, - "Promise": false, + "PerformanceServerTiming": false, + "PeriodicSyncManager": false, + "Permissions": false, + "PermissionStatus": false, + "PERSISTENT": false, + "postMessage": false, + "PressureObserver": false, + "PressureRecord": false, + "ProgressEvent": false, + "PromiseRejectionEvent": false, + "PushManager": false, + "PushSubscription": false, + "PushSubscriptionOptions": false, "queueMicrotask": false, "ReadableByteStreamController": false, "ReadableStream": false, @@ -1204,29 +1622,107 @@ "ReadableStreamDefaultReader": false, "removeEventListener": false, "reportError": false, + "ReportingObserver": false, "Request": false, + "requestAnimationFrame": false, "Response": false, - "self": true, + "RTCEncodedAudioFrame": false, + "RTCEncodedVideoFrame": false, + "scheduler": false, + "Scheduler": false, + "SecurityPolicyViolationEvent": false, + "self": false, + "Serial": false, + "SerialPort": false, "ServiceWorkerRegistration": false, "setInterval": false, "setTimeout": false, + "SourceBuffer": false, + "SourceBufferList": false, + "StorageBucket": false, + "StorageBucketManager": false, + "StorageManager": false, + "structuredClone": false, "SubtleCrypto": false, + "SyncManager": false, + "TaskController": false, + "TaskPriorityChangeEvent": false, + "TaskSignal": false, + "TEMPORARY": false, "TextDecoder": false, "TextDecoderStream": false, "TextEncoder": false, "TextEncoderStream": false, + "TextMetrics": false, "TransformStream": false, "TransformStreamDefaultController": false, + "TrustedHTML": false, + "TrustedScript": false, + "TrustedScriptURL": false, + "TrustedTypePolicy": false, + "TrustedTypePolicyFactory": false, + "trustedTypes": false, "URL": false, + "URLPattern": false, "URLSearchParams": false, + "USB": false, + "USBAlternateInterface": false, + "USBConfiguration": false, + "USBConnectionEvent": false, + "USBDevice": false, + "USBEndpoint": false, + "USBInterface": false, + "USBInTransferResult": false, + "USBIsochronousInTransferPacket": false, + "USBIsochronousInTransferResult": false, + "USBIsochronousOutTransferPacket": false, + "USBIsochronousOutTransferResult": false, + "USBOutTransferResult": false, + "UserActivation": false, + "VideoColorSpace": false, + "VideoDecoder": false, + "VideoEncoder": false, + "VideoFrame": false, "WebAssembly": false, + "WebGL2RenderingContext": false, + "WebGLActiveInfo": false, + "WebGLBuffer": false, + "WebGLContextEvent": false, + "WebGLFramebuffer": false, + "WebGLProgram": false, + "WebGLQuery": false, + "WebGLRenderbuffer": false, + "WebGLRenderingContext": false, + "WebGLSampler": false, + "WebGLShader": false, + "WebGLShaderPrecisionFormat": false, + "WebGLSync": false, + "WebGLTexture": false, + "WebGLTransformFeedback": false, + "WebGLUniformLocation": false, + "WebGLVertexArrayObject": false, + "webkitRequestFileSystem": false, + "webkitRequestFileSystemSync": false, + "webkitResolveLocalFileSystemSyncURL": false, + "webkitResolveLocalFileSystemURL": false, "WebSocket": false, + "WebSocketError": false, + "WebSocketStream": false, + "WebTransport": false, + "WebTransportBidirectionalStream": false, + "WebTransportDatagramDuplexStream": false, + "WebTransportError": false, + "WGSLLanguageFeatures": false, "Worker": false, "WorkerGlobalScope": false, + "WorkerLocation": false, + "WorkerNavigator": false, "WritableStream": false, "WritableStreamDefaultController": false, "WritableStreamDefaultWriter": false, - "XMLHttpRequest": false + "XMLHttpRequest": false, + "XMLHttpRequestEventTarget": false, + "XMLHttpRequestUpload": false }, "node": { "__dirname": false, @@ -1259,12 +1755,15 @@ "FormData": false, "global": false, "Headers": false, - "Intl": false, + "Iterator": false, "MessageChannel": false, "MessageEvent": false, "MessagePort": false, "module": false, + "navigator": false, + "Navigator": false, "performance": false, + "Performance": false, "PerformanceEntry": false, "PerformanceMark": false, "PerformanceMeasure": false, @@ -1296,6 +1795,7 @@ "URL": false, "URLSearchParams": false, "WebAssembly": false, + "WebSocket": false, "WritableStream": false, "WritableStreamDefaultController": false, "WritableStreamDefaultWriter": false @@ -1328,11 +1828,14 @@ "FormData": false, "global": false, "Headers": false, - "Intl": false, + "Iterator": false, "MessageChannel": false, "MessageEvent": false, "MessagePort": false, + "navigator": false, + "Navigator": false, "performance": false, + "Performance": false, "PerformanceEntry": false, "PerformanceMark": false, "PerformanceMeasure": false, @@ -1363,6 +1866,7 @@ "URL": false, "URLSearchParams": false, "WebAssembly": false, + "WebSocket": false, "WritableStream": false, "WritableStreamDefaultController": false, "WritableStreamDefaultWriter": false @@ -1429,12 +1933,9 @@ "beforeEach": false, "describe": false, "expect": false, - "fdescribe": false, "fit": false, "it": false, "jest": false, - "pit": false, - "require": false, "test": false, "xdescribe": false, "xit": false, @@ -1563,6 +2064,7 @@ "exit": false, "find": false, "grep": false, + "head": false, "ln": false, "ls": false, "mkdir": false, @@ -1573,10 +2075,13 @@ "rm": false, "sed": false, "set": false, - "target": false, + "ShellString": false, + "sort": false, + "tail": false, "tempdir": false, "test": false, "touch": false, + "uniq": false, "which": false }, "prototypejs": { @@ -1792,7 +2297,6 @@ "PerformanceResourceTiming": false, "PerformanceTiming": false, "postMessage": true, - "Promise": false, "queueMicrotask": false, "ReadableByteStreamController": false, "ReadableStream": false, @@ -1894,11 +2398,14 @@ "File": false, "FormData": false, "Headers": false, - "Intl": false, + "Iterator": false, "MessageChannel": false, "MessageEvent": false, "MessagePort": false, + "navigator": false, + "Navigator": false, "performance": false, + "Performance": false, "PerformanceEntry": false, "PerformanceMark": false, "PerformanceMeasure": false, @@ -1927,6 +2434,7 @@ "URL": false, "URLSearchParams": false, "WebAssembly": false, + "WebSocket": false, "WritableStream": false, "WritableStreamDefaultController": false, "WritableStreamDefaultWriter": false diff --git a/tools/node_modules/eslint/node_modules/globals/package.json b/tools/node_modules/eslint/node_modules/globals/package.json index 78e26649802471..434bba0118421d 100644 --- a/tools/node_modules/eslint/node_modules/globals/package.json +++ b/tools/node_modules/eslint/node_modules/globals/package.json @@ -1,6 +1,6 @@ { "name": "globals", - "version": "13.24.0", + "version": "15.3.0", "description": "Global identifiers from different JavaScript environments", "license": "MIT", "repository": "sindresorhus/globals", @@ -12,10 +12,21 @@ }, "sideEffects": false, "engines": { - "node": ">=8" + "node": ">=18" }, "scripts": { - "test": "xo && ava" + "test": "npm run build && xo && ava && tsd", + "prepare": "npm run build", + "update": "node scripts/update.mjs", + "update:browser": "node scripts/update.mjs --environment=browser", + "update:builtin": "node scripts/update.mjs --environment=builtin", + "update:nodeBuiltin": "node scripts/update.mjs --environment=nodeBuiltin", + "update:worker": "node scripts/update.mjs --environment=worker", + "update:shelljs": "node scripts/update.mjs --environment=shelljs", + "update:jest": "node scripts/update.mjs --environment=jest", + "build": "run-s build:data build:types", + "build:data": "node scripts/generate-data.mjs", + "build:types": "node scripts/generate-types.mjs" }, "files": [ "index.js", @@ -32,21 +43,44 @@ "eslint", "environments" ], - "dependencies": { - "type-fest": "^0.20.2" - }, "devDependencies": { - "ava": "^2.4.0", - "tsd": "^0.14.0", - "xo": "^0.36.1" + "ava": "^6.1.1", + "cheerio": "^1.0.0-rc.12", + "eslint-plugin-jest": "^27.9.0", + "execa": "^8.0.1", + "get-port": "^7.0.0", + "npm-run-all2": "^6.1.2", + "outdent": "^0.8.0", + "puppeteer": "^22.1.0", + "shelljs": "^0.8.5", + "tsd": "^0.30.4", + "type-fest": "^4.10.2", + "xo": "^0.57.0" }, "xo": { - "ignores": [ - "get-browser-globals.js" - ], "rules": { - "node/no-unsupported-features/es-syntax": "off" - } + "unicorn/prefer-module": "off" + }, + "overrides": [ + { + "files": [ + "data/*.mjs" + ], + "rules": { + "import/no-anonymous-default-export": "off", + "camelcase": "off", + "unicorn/filename-case": [ + "error", + { + "cases": { + "camelCase": true, + "kebabCase": true + } + } + ] + } + } + ] }, "tsd": { "compilerOptions": { diff --git a/tools/node_modules/eslint/node_modules/graphemer/lib/Graphemer.js b/tools/node_modules/eslint/node_modules/graphemer/lib/Graphemer.js deleted file mode 100644 index 8ed00ca56fb3e6..00000000000000 --- a/tools/node_modules/eslint/node_modules/graphemer/lib/Graphemer.js +++ /dev/null @@ -1,11959 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const boundaries_1 = require("./boundaries"); -const GraphemerHelper_1 = __importDefault(require("./GraphemerHelper")); -const GraphemerIterator_1 = __importDefault(require("./GraphemerIterator")); -class Graphemer { - /** - * Returns the next grapheme break in the string after the given index - * @param string {string} - * @param index {number} - * @returns {number} - */ - static nextBreak(string, index) { - if (index === undefined) { - index = 0; - } - if (index < 0) { - return 0; - } - if (index >= string.length - 1) { - return string.length; - } - const prevCP = GraphemerHelper_1.default.codePointAt(string, index); - const prev = Graphemer.getGraphemeBreakProperty(prevCP); - const prevEmoji = Graphemer.getEmojiProperty(prevCP); - const mid = []; - const midEmoji = []; - for (let i = index + 1; i < string.length; i++) { - // check for already processed low surrogates - if (GraphemerHelper_1.default.isSurrogate(string, i - 1)) { - continue; - } - const nextCP = GraphemerHelper_1.default.codePointAt(string, i); - const next = Graphemer.getGraphemeBreakProperty(nextCP); - const nextEmoji = Graphemer.getEmojiProperty(nextCP); - if (GraphemerHelper_1.default.shouldBreak(prev, mid, next, prevEmoji, midEmoji, nextEmoji)) { - return i; - } - mid.push(next); - midEmoji.push(nextEmoji); - } - return string.length; - } - /** - * Breaks the given string into an array of grapheme clusters - * @param str {string} - * @returns {string[]} - */ - splitGraphemes(str) { - const res = []; - let index = 0; - let brk; - while ((brk = Graphemer.nextBreak(str, index)) < str.length) { - res.push(str.slice(index, brk)); - index = brk; - } - if (index < str.length) { - res.push(str.slice(index)); - } - return res; - } - /** - * Returns an iterator of grapheme clusters in the given string - * @param str {string} - * @returns {GraphemerIterator} - */ - iterateGraphemes(str) { - return new GraphemerIterator_1.default(str, Graphemer.nextBreak); - } - /** - * Returns the number of grapheme clusters in the given string - * @param str {string} - * @returns {number} - */ - countGraphemes(str) { - let count = 0; - let index = 0; - let brk; - while ((brk = Graphemer.nextBreak(str, index)) < str.length) { - index = brk; - count++; - } - if (index < str.length) { - count++; - } - return count; - } - /** - * Given a Unicode code point, determines this symbol's grapheme break property - * @param code {number} Unicode code point - * @returns {number} - */ - static getGraphemeBreakProperty(code) { - // Grapheme break property taken from: - // https://www.unicode.org/Public/UCD/latest/ucd/auxiliary/GraphemeBreakProperty.txt - // and generated by - // node ./scripts/generate-grapheme-break.js - if (code < 0xbf09) { - if (code < 0xac54) { - if (code < 0x102d) { - if (code < 0xb02) { - if (code < 0x93b) { - if (code < 0x6df) { - if (code < 0x5bf) { - if (code < 0x7f) { - if (code < 0xb) { - if (code < 0xa) { - // Cc [10] .. - if (0x0 <= code && code <= 0x9) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Cc - if (0xa === code) { - return boundaries_1.CLUSTER_BREAK.LF; - } - } - } - else { - if (code < 0xd) { - // Cc [2] .. - if (0xb <= code && code <= 0xc) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - if (code < 0xe) { - // Cc - if (0xd === code) { - return boundaries_1.CLUSTER_BREAK.CR; - } - } - else { - // Cc [18] .. - if (0xe <= code && code <= 0x1f) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - } - } - } - else { - if (code < 0x300) { - if (code < 0xad) { - // Cc [33] .. - if (0x7f <= code && code <= 0x9f) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Cf SOFT HYPHEN - if (0xad === code) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - } - else { - if (code < 0x483) { - // Mn [112] COMBINING GRAVE ACCENT..COMBINING LATIN SMALL LETTER X - if (0x300 <= code && code <= 0x36f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x591) { - // Mn [5] COMBINING CYRILLIC TITLO..COMBINING CYRILLIC POKRYTIE - // Me [2] COMBINING CYRILLIC HUNDRED THOUSANDS SIGN..COMBINING CYRILLIC MILLIONS SIGN - if (0x483 <= code && code <= 0x489) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [45] HEBREW ACCENT ETNAHTA..HEBREW POINT METEG - if (0x591 <= code && code <= 0x5bd) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x610) { - if (code < 0x5c4) { - if (code < 0x5c1) { - // Mn HEBREW POINT RAFE - if (0x5bf === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] HEBREW POINT SHIN DOT..HEBREW POINT SIN DOT - if (0x5c1 <= code && code <= 0x5c2) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x5c7) { - // Mn [2] HEBREW MARK UPPER DOT..HEBREW MARK LOWER DOT - if (0x5c4 <= code && code <= 0x5c5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x600) { - // Mn HEBREW POINT QAMATS QATAN - if (0x5c7 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf [6] ARABIC NUMBER SIGN..ARABIC NUMBER MARK ABOVE - if (0x600 <= code && code <= 0x605) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - } - } - } - else { - if (code < 0x670) { - if (code < 0x61c) { - // Mn [11] ARABIC SIGN SALLALLAHOU ALAYHE WASSALLAM..ARABIC SMALL KASRA - if (0x610 <= code && code <= 0x61a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x64b) { - // Cf ARABIC LETTER MARK - if (0x61c === code) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Mn [21] ARABIC FATHATAN..ARABIC WAVY HAMZA BELOW - if (0x64b <= code && code <= 0x65f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x6d6) { - // Mn ARABIC LETTER SUPERSCRIPT ALEF - if (0x670 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x6dd) { - // Mn [7] ARABIC SMALL HIGH LIGATURE SAD WITH LAM WITH ALEF MAKSURA..ARABIC SMALL HIGH SEEN - if (0x6d6 <= code && code <= 0x6dc) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf ARABIC END OF AYAH - if (0x6dd === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - } - } - } - } - } - else { - if (code < 0x81b) { - if (code < 0x730) { - if (code < 0x6ea) { - if (code < 0x6e7) { - // Mn [6] ARABIC SMALL HIGH ROUNDED ZERO..ARABIC SMALL HIGH MADDA - if (0x6df <= code && code <= 0x6e4) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] ARABIC SMALL HIGH YEH..ARABIC SMALL HIGH NOON - if (0x6e7 <= code && code <= 0x6e8) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x70f) { - // Mn [4] ARABIC EMPTY CENTRE LOW STOP..ARABIC SMALL LOW MEEM - if (0x6ea <= code && code <= 0x6ed) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf SYRIAC ABBREVIATION MARK - if (0x70f === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - // Mn SYRIAC LETTER SUPERSCRIPT ALAPH - if (0x711 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x7eb) { - if (code < 0x7a6) { - // Mn [27] SYRIAC PTHAHA ABOVE..SYRIAC BARREKH - if (0x730 <= code && code <= 0x74a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [11] THAANA ABAFILI..THAANA SUKUN - if (0x7a6 <= code && code <= 0x7b0) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x7fd) { - // Mn [9] NKO COMBINING SHORT HIGH TONE..NKO COMBINING DOUBLE DOT ABOVE - if (0x7eb <= code && code <= 0x7f3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x816) { - // Mn NKO DANTAYALAN - if (0x7fd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [4] SAMARITAN MARK IN..SAMARITAN MARK DAGESH - if (0x816 <= code && code <= 0x819) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x898) { - if (code < 0x829) { - if (code < 0x825) { - // Mn [9] SAMARITAN MARK EPENTHETIC YUT..SAMARITAN VOWEL SIGN A - if (0x81b <= code && code <= 0x823) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [3] SAMARITAN VOWEL SIGN SHORT A..SAMARITAN VOWEL SIGN U - if (0x825 <= code && code <= 0x827) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x859) { - // Mn [5] SAMARITAN VOWEL SIGN LONG I..SAMARITAN MARK NEQUDAA - if (0x829 <= code && code <= 0x82d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x890) { - // Mn [3] MANDAIC AFFRICATION MARK..MANDAIC GEMINATION MARK - if (0x859 <= code && code <= 0x85b) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf [2] ARABIC POUND MARK ABOVE..ARABIC PIASTRE MARK ABOVE - if (0x890 <= code && code <= 0x891) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - } - } - } - else { - if (code < 0x8e3) { - if (code < 0x8ca) { - // Mn [8] ARABIC SMALL HIGH WORD AL-JUZ..ARABIC HALF MADDA OVER MADDA - if (0x898 <= code && code <= 0x89f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x8e2) { - // Mn [24] ARABIC SMALL HIGH FARSI YEH..ARABIC SMALL HIGH SIGN SAFHA - if (0x8ca <= code && code <= 0x8e1) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf ARABIC DISPUTED END OF AYAH - if (0x8e2 === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - } - } - else { - if (code < 0x903) { - // Mn [32] ARABIC TURNED DAMMA BELOW..DEVANAGARI SIGN ANUSVARA - if (0x8e3 <= code && code <= 0x902) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc DEVANAGARI SIGN VISARGA - if (0x903 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn DEVANAGARI VOWEL SIGN OE - if (0x93a === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0xa01) { - if (code < 0x982) { - if (code < 0x94d) { - if (code < 0x93e) { - // Mc DEVANAGARI VOWEL SIGN OOE - if (0x93b === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn DEVANAGARI SIGN NUKTA - if (0x93c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x941) { - // Mc [3] DEVANAGARI VOWEL SIGN AA..DEVANAGARI VOWEL SIGN II - if (0x93e <= code && code <= 0x940) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x949) { - // Mn [8] DEVANAGARI VOWEL SIGN U..DEVANAGARI VOWEL SIGN AI - if (0x941 <= code && code <= 0x948) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [4] DEVANAGARI VOWEL SIGN CANDRA O..DEVANAGARI VOWEL SIGN AU - if (0x949 <= code && code <= 0x94c) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x951) { - if (code < 0x94e) { - // Mn DEVANAGARI SIGN VIRAMA - if (0x94d === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] DEVANAGARI VOWEL SIGN PRISHTHAMATRA E..DEVANAGARI VOWEL SIGN AW - if (0x94e <= code && code <= 0x94f) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x962) { - // Mn [7] DEVANAGARI STRESS SIGN UDATTA..DEVANAGARI VOWEL SIGN UUE - if (0x951 <= code && code <= 0x957) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x981) { - // Mn [2] DEVANAGARI VOWEL SIGN VOCALIC L..DEVANAGARI VOWEL SIGN VOCALIC LL - if (0x962 <= code && code <= 0x963) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn BENGALI SIGN CANDRABINDU - if (0x981 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x9c7) { - if (code < 0x9be) { - if (code < 0x9bc) { - // Mc [2] BENGALI SIGN ANUSVARA..BENGALI SIGN VISARGA - if (0x982 <= code && code <= 0x983) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn BENGALI SIGN NUKTA - if (0x9bc === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x9bf) { - // Mc BENGALI VOWEL SIGN AA - if (0x9be === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x9c1) { - // Mc [2] BENGALI VOWEL SIGN I..BENGALI VOWEL SIGN II - if (0x9bf <= code && code <= 0x9c0) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] BENGALI VOWEL SIGN U..BENGALI VOWEL SIGN VOCALIC RR - if (0x9c1 <= code && code <= 0x9c4) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x9d7) { - if (code < 0x9cb) { - // Mc [2] BENGALI VOWEL SIGN E..BENGALI VOWEL SIGN AI - if (0x9c7 <= code && code <= 0x9c8) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x9cd) { - // Mc [2] BENGALI VOWEL SIGN O..BENGALI VOWEL SIGN AU - if (0x9cb <= code && code <= 0x9cc) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn BENGALI SIGN VIRAMA - if (0x9cd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x9e2) { - // Mc BENGALI AU LENGTH MARK - if (0x9d7 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x9fe) { - // Mn [2] BENGALI VOWEL SIGN VOCALIC L..BENGALI VOWEL SIGN VOCALIC LL - if (0x9e2 <= code && code <= 0x9e3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn BENGALI SANDHI MARK - if (0x9fe === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0xa83) { - if (code < 0xa47) { - if (code < 0xa3c) { - if (code < 0xa03) { - // Mn [2] GURMUKHI SIGN ADAK BINDI..GURMUKHI SIGN BINDI - if (0xa01 <= code && code <= 0xa02) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc GURMUKHI SIGN VISARGA - if (0xa03 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0xa3e) { - // Mn GURMUKHI SIGN NUKTA - if (0xa3c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xa41) { - // Mc [3] GURMUKHI VOWEL SIGN AA..GURMUKHI VOWEL SIGN II - if (0xa3e <= code && code <= 0xa40) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] GURMUKHI VOWEL SIGN U..GURMUKHI VOWEL SIGN UU - if (0xa41 <= code && code <= 0xa42) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xa70) { - if (code < 0xa4b) { - // Mn [2] GURMUKHI VOWEL SIGN EE..GURMUKHI VOWEL SIGN AI - if (0xa47 <= code && code <= 0xa48) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xa51) { - // Mn [3] GURMUKHI VOWEL SIGN OO..GURMUKHI SIGN VIRAMA - if (0xa4b <= code && code <= 0xa4d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn GURMUKHI SIGN UDAAT - if (0xa51 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xa75) { - // Mn [2] GURMUKHI TIPPI..GURMUKHI ADDAK - if (0xa70 <= code && code <= 0xa71) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xa81) { - // Mn GURMUKHI SIGN YAKASH - if (0xa75 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] GUJARATI SIGN CANDRABINDU..GUJARATI SIGN ANUSVARA - if (0xa81 <= code && code <= 0xa82) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xac9) { - if (code < 0xabe) { - // Mc GUJARATI SIGN VISARGA - if (0xa83 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn GUJARATI SIGN NUKTA - if (0xabc === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xac1) { - // Mc [3] GUJARATI VOWEL SIGN AA..GUJARATI VOWEL SIGN II - if (0xabe <= code && code <= 0xac0) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xac7) { - // Mn [5] GUJARATI VOWEL SIGN U..GUJARATI VOWEL SIGN CANDRA E - if (0xac1 <= code && code <= 0xac5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] GUJARATI VOWEL SIGN E..GUJARATI VOWEL SIGN AI - if (0xac7 <= code && code <= 0xac8) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xae2) { - if (code < 0xacb) { - // Mc GUJARATI VOWEL SIGN CANDRA O - if (0xac9 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xacd) { - // Mc [2] GUJARATI VOWEL SIGN O..GUJARATI VOWEL SIGN AU - if (0xacb <= code && code <= 0xacc) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn GUJARATI SIGN VIRAMA - if (0xacd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xafa) { - // Mn [2] GUJARATI VOWEL SIGN VOCALIC L..GUJARATI VOWEL SIGN VOCALIC LL - if (0xae2 <= code && code <= 0xae3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xb01) { - // Mn [6] GUJARATI SIGN SUKUN..GUJARATI SIGN TWO-CIRCLE NUKTA ABOVE - if (0xafa <= code && code <= 0xaff) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn ORIYA SIGN CANDRABINDU - if (0xb01 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - } - else { - if (code < 0xcf3) { - if (code < 0xc04) { - if (code < 0xb82) { - if (code < 0xb47) { - if (code < 0xb3e) { - if (code < 0xb3c) { - // Mc [2] ORIYA SIGN ANUSVARA..ORIYA SIGN VISARGA - if (0xb02 <= code && code <= 0xb03) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn ORIYA SIGN NUKTA - if (0xb3c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xb40) { - // Mc ORIYA VOWEL SIGN AA - // Mn ORIYA VOWEL SIGN I - if (0xb3e <= code && code <= 0xb3f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xb41) { - // Mc ORIYA VOWEL SIGN II - if (0xb40 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] ORIYA VOWEL SIGN U..ORIYA VOWEL SIGN VOCALIC RR - if (0xb41 <= code && code <= 0xb44) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xb4d) { - if (code < 0xb4b) { - // Mc [2] ORIYA VOWEL SIGN E..ORIYA VOWEL SIGN AI - if (0xb47 <= code && code <= 0xb48) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc [2] ORIYA VOWEL SIGN O..ORIYA VOWEL SIGN AU - if (0xb4b <= code && code <= 0xb4c) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0xb55) { - // Mn ORIYA SIGN VIRAMA - if (0xb4d === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xb62) { - // Mn [2] ORIYA SIGN OVERLINE..ORIYA AI LENGTH MARK - // Mc ORIYA AU LENGTH MARK - if (0xb55 <= code && code <= 0xb57) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] ORIYA VOWEL SIGN VOCALIC L..ORIYA VOWEL SIGN VOCALIC LL - if (0xb62 <= code && code <= 0xb63) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xbc6) { - if (code < 0xbbf) { - // Mn TAMIL SIGN ANUSVARA - if (0xb82 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc TAMIL VOWEL SIGN AA - if (0xbbe === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xbc0) { - // Mc TAMIL VOWEL SIGN I - if (0xbbf === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xbc1) { - // Mn TAMIL VOWEL SIGN II - if (0xbc0 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] TAMIL VOWEL SIGN U..TAMIL VOWEL SIGN UU - if (0xbc1 <= code && code <= 0xbc2) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0xbd7) { - if (code < 0xbca) { - // Mc [3] TAMIL VOWEL SIGN E..TAMIL VOWEL SIGN AI - if (0xbc6 <= code && code <= 0xbc8) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xbcd) { - // Mc [3] TAMIL VOWEL SIGN O..TAMIL VOWEL SIGN AU - if (0xbca <= code && code <= 0xbcc) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn TAMIL SIGN VIRAMA - if (0xbcd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xc00) { - // Mc TAMIL AU LENGTH MARK - if (0xbd7 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xc01) { - // Mn TELUGU SIGN COMBINING CANDRABINDU ABOVE - if (0xc00 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [3] TELUGU SIGN CANDRABINDU..TELUGU SIGN VISARGA - if (0xc01 <= code && code <= 0xc03) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - else { - if (code < 0xcbe) { - if (code < 0xc4a) { - if (code < 0xc3e) { - // Mn TELUGU SIGN COMBINING ANUSVARA ABOVE - if (0xc04 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn TELUGU SIGN NUKTA - if (0xc3c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xc41) { - // Mn [3] TELUGU VOWEL SIGN AA..TELUGU VOWEL SIGN II - if (0xc3e <= code && code <= 0xc40) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xc46) { - // Mc [4] TELUGU VOWEL SIGN U..TELUGU VOWEL SIGN VOCALIC RR - if (0xc41 <= code && code <= 0xc44) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [3] TELUGU VOWEL SIGN E..TELUGU VOWEL SIGN AI - if (0xc46 <= code && code <= 0xc48) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xc81) { - if (code < 0xc55) { - // Mn [4] TELUGU VOWEL SIGN O..TELUGU SIGN VIRAMA - if (0xc4a <= code && code <= 0xc4d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xc62) { - // Mn [2] TELUGU LENGTH MARK..TELUGU AI LENGTH MARK - if (0xc55 <= code && code <= 0xc56) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] TELUGU VOWEL SIGN VOCALIC L..TELUGU VOWEL SIGN VOCALIC LL - if (0xc62 <= code && code <= 0xc63) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xc82) { - // Mn KANNADA SIGN CANDRABINDU - if (0xc81 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xcbc) { - // Mc [2] KANNADA SIGN ANUSVARA..KANNADA SIGN VISARGA - if (0xc82 <= code && code <= 0xc83) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn KANNADA SIGN NUKTA - if (0xcbc === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xcc6) { - if (code < 0xcc0) { - // Mc KANNADA VOWEL SIGN AA - if (0xcbe === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn KANNADA VOWEL SIGN I - if (0xcbf === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xcc2) { - // Mc [2] KANNADA VOWEL SIGN II..KANNADA VOWEL SIGN U - if (0xcc0 <= code && code <= 0xcc1) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xcc3) { - // Mc KANNADA VOWEL SIGN UU - if (0xcc2 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] KANNADA VOWEL SIGN VOCALIC R..KANNADA VOWEL SIGN VOCALIC RR - if (0xcc3 <= code && code <= 0xcc4) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0xccc) { - if (code < 0xcc7) { - // Mn KANNADA VOWEL SIGN E - if (0xcc6 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xcca) { - // Mc [2] KANNADA VOWEL SIGN EE..KANNADA VOWEL SIGN AI - if (0xcc7 <= code && code <= 0xcc8) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc [2] KANNADA VOWEL SIGN O..KANNADA VOWEL SIGN OO - if (0xcca <= code && code <= 0xccb) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0xcd5) { - // Mn [2] KANNADA VOWEL SIGN AU..KANNADA SIGN VIRAMA - if (0xccc <= code && code <= 0xccd) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xce2) { - // Mc [2] KANNADA LENGTH MARK..KANNADA AI LENGTH MARK - if (0xcd5 <= code && code <= 0xcd6) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] KANNADA VOWEL SIGN VOCALIC L..KANNADA VOWEL SIGN VOCALIC LL - if (0xce2 <= code && code <= 0xce3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - else { - if (code < 0xddf) { - if (code < 0xd4e) { - if (code < 0xd3f) { - if (code < 0xd02) { - if (code < 0xd00) { - // Mc KANNADA SIGN COMBINING ANUSVARA ABOVE RIGHT - if (0xcf3 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] MALAYALAM SIGN COMBINING ANUSVARA ABOVE..MALAYALAM SIGN CANDRABINDU - if (0xd00 <= code && code <= 0xd01) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xd3b) { - // Mc [2] MALAYALAM SIGN ANUSVARA..MALAYALAM SIGN VISARGA - if (0xd02 <= code && code <= 0xd03) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xd3e) { - // Mn [2] MALAYALAM SIGN VERTICAL BAR VIRAMA..MALAYALAM SIGN CIRCULAR VIRAMA - if (0xd3b <= code && code <= 0xd3c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc MALAYALAM VOWEL SIGN AA - if (0xd3e === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xd46) { - if (code < 0xd41) { - // Mc [2] MALAYALAM VOWEL SIGN I..MALAYALAM VOWEL SIGN II - if (0xd3f <= code && code <= 0xd40) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] MALAYALAM VOWEL SIGN U..MALAYALAM VOWEL SIGN VOCALIC RR - if (0xd41 <= code && code <= 0xd44) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xd4a) { - // Mc [3] MALAYALAM VOWEL SIGN E..MALAYALAM VOWEL SIGN AI - if (0xd46 <= code && code <= 0xd48) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xd4d) { - // Mc [3] MALAYALAM VOWEL SIGN O..MALAYALAM VOWEL SIGN AU - if (0xd4a <= code && code <= 0xd4c) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn MALAYALAM SIGN VIRAMA - if (0xd4d === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xdca) { - if (code < 0xd62) { - // Lo MALAYALAM LETTER DOT REPH - if (0xd4e === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - // Mc MALAYALAM AU LENGTH MARK - if (0xd57 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xd81) { - // Mn [2] MALAYALAM VOWEL SIGN VOCALIC L..MALAYALAM VOWEL SIGN VOCALIC LL - if (0xd62 <= code && code <= 0xd63) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xd82) { - // Mn SINHALA SIGN CANDRABINDU - if (0xd81 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SINHALA SIGN ANUSVARAYA..SINHALA SIGN VISARGAYA - if (0xd82 <= code && code <= 0xd83) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0xdd2) { - if (code < 0xdcf) { - // Mn SINHALA SIGN AL-LAKUNA - if (0xdca === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xdd0) { - // Mc SINHALA VOWEL SIGN AELA-PILLA - if (0xdcf === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SINHALA VOWEL SIGN KETTI AEDA-PILLA..SINHALA VOWEL SIGN DIGA AEDA-PILLA - if (0xdd0 <= code && code <= 0xdd1) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0xdd6) { - // Mn [3] SINHALA VOWEL SIGN KETTI IS-PILLA..SINHALA VOWEL SIGN KETTI PAA-PILLA - if (0xdd2 <= code && code <= 0xdd4) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xdd8) { - // Mn SINHALA VOWEL SIGN DIGA PAA-PILLA - if (0xdd6 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [7] SINHALA VOWEL SIGN GAETTA-PILLA..SINHALA VOWEL SIGN KOMBUVA HAA GAYANUKITTA - if (0xdd8 <= code && code <= 0xdde) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - else { - if (code < 0xf35) { - if (code < 0xe47) { - if (code < 0xe31) { - if (code < 0xdf2) { - // Mc SINHALA VOWEL SIGN GAYANUKITTA - if (0xddf === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SINHALA VOWEL SIGN DIGA GAETTA-PILLA..SINHALA VOWEL SIGN DIGA GAYANUKITTA - if (0xdf2 <= code && code <= 0xdf3) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0xe33) { - // Mn THAI CHARACTER MAI HAN-AKAT - if (0xe31 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xe34) { - // Lo THAI CHARACTER SARA AM - if (0xe33 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [7] THAI CHARACTER SARA I..THAI CHARACTER PHINTHU - if (0xe34 <= code && code <= 0xe3a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xeb4) { - if (code < 0xeb1) { - // Mn [8] THAI CHARACTER MAITAIKHU..THAI CHARACTER YAMAKKAN - if (0xe47 <= code && code <= 0xe4e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn LAO VOWEL SIGN MAI KAN - if (0xeb1 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Lo LAO VOWEL SIGN AM - if (0xeb3 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0xec8) { - // Mn [9] LAO VOWEL SIGN I..LAO SEMIVOWEL SIGN LO - if (0xeb4 <= code && code <= 0xebc) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xf18) { - // Mn [7] LAO TONE MAI EK..LAO YAMAKKAN - if (0xec8 <= code && code <= 0xece) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] TIBETAN ASTROLOGICAL SIGN -KHYUD PA..TIBETAN ASTROLOGICAL SIGN SDONG TSHUGS - if (0xf18 <= code && code <= 0xf19) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xf7f) { - if (code < 0xf39) { - // Mn TIBETAN MARK NGAS BZUNG NYI ZLA - if (0xf35 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn TIBETAN MARK NGAS BZUNG SGOR RTAGS - if (0xf37 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xf3e) { - // Mn TIBETAN MARK TSA -PHRU - if (0xf39 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xf71) { - // Mc [2] TIBETAN SIGN YAR TSHES..TIBETAN SIGN MAR TSHES - if (0xf3e <= code && code <= 0xf3f) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [14] TIBETAN VOWEL SIGN AA..TIBETAN SIGN RJES SU NGA RO - if (0xf71 <= code && code <= 0xf7e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xf8d) { - if (code < 0xf80) { - // Mc TIBETAN SIGN RNAM BCAD - if (0xf7f === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xf86) { - // Mn [5] TIBETAN VOWEL SIGN REVERSED I..TIBETAN MARK HALANTA - if (0xf80 <= code && code <= 0xf84) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] TIBETAN SIGN LCI RTAGS..TIBETAN SIGN YANG RTAGS - if (0xf86 <= code && code <= 0xf87) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xf99) { - // Mn [11] TIBETAN SUBJOINED SIGN LCE TSA CAN..TIBETAN SUBJOINED LETTER JA - if (0xf8d <= code && code <= 0xf97) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xfc6) { - // Mn [36] TIBETAN SUBJOINED LETTER NYA..TIBETAN SUBJOINED LETTER FIXED-FORM RA - if (0xf99 <= code && code <= 0xfbc) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn TIBETAN SYMBOL PADMA GDAN - if (0xfc6 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0x1c24) { - if (code < 0x1930) { - if (code < 0x1732) { - if (code < 0x1082) { - if (code < 0x103d) { - if (code < 0x1032) { - if (code < 0x1031) { - // Mn [4] MYANMAR VOWEL SIGN I..MYANMAR VOWEL SIGN UU - if (0x102d <= code && code <= 0x1030) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc MYANMAR VOWEL SIGN E - if (0x1031 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x1039) { - // Mn [6] MYANMAR VOWEL SIGN AI..MYANMAR SIGN DOT BELOW - if (0x1032 <= code && code <= 0x1037) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x103b) { - // Mn [2] MYANMAR SIGN VIRAMA..MYANMAR SIGN ASAT - if (0x1039 <= code && code <= 0x103a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] MYANMAR CONSONANT SIGN MEDIAL YA..MYANMAR CONSONANT SIGN MEDIAL RA - if (0x103b <= code && code <= 0x103c) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x1058) { - if (code < 0x1056) { - // Mn [2] MYANMAR CONSONANT SIGN MEDIAL WA..MYANMAR CONSONANT SIGN MEDIAL HA - if (0x103d <= code && code <= 0x103e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] MYANMAR VOWEL SIGN VOCALIC R..MYANMAR VOWEL SIGN VOCALIC RR - if (0x1056 <= code && code <= 0x1057) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x105e) { - // Mn [2] MYANMAR VOWEL SIGN VOCALIC L..MYANMAR VOWEL SIGN VOCALIC LL - if (0x1058 <= code && code <= 0x1059) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1071) { - // Mn [3] MYANMAR CONSONANT SIGN MON MEDIAL NA..MYANMAR CONSONANT SIGN MON MEDIAL LA - if (0x105e <= code && code <= 0x1060) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [4] MYANMAR VOWEL SIGN GEBA KAREN I..MYANMAR VOWEL SIGN KAYAH EE - if (0x1071 <= code && code <= 0x1074) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x1100) { - if (code < 0x1085) { - // Mn MYANMAR CONSONANT SIGN SHAN MEDIAL WA - if (0x1082 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc MYANMAR VOWEL SIGN SHAN E - if (0x1084 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x108d) { - // Mn [2] MYANMAR VOWEL SIGN SHAN E ABOVE..MYANMAR VOWEL SIGN SHAN FINAL Y - if (0x1085 <= code && code <= 0x1086) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn MYANMAR SIGN SHAN COUNCIL EMPHATIC TONE - if (0x108d === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn MYANMAR VOWEL SIGN AITON AI - if (0x109d === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x135d) { - if (code < 0x1160) { - // Lo [96] HANGUL CHOSEONG KIYEOK..HANGUL CHOSEONG FILLER - if (0x1100 <= code && code <= 0x115f) { - return boundaries_1.CLUSTER_BREAK.L; - } - } - else { - if (code < 0x11a8) { - // Lo [72] HANGUL JUNGSEONG FILLER..HANGUL JUNGSEONG O-YAE - if (0x1160 <= code && code <= 0x11a7) { - return boundaries_1.CLUSTER_BREAK.V; - } - } - else { - // Lo [88] HANGUL JONGSEONG KIYEOK..HANGUL JONGSEONG SSANGNIEUN - if (0x11a8 <= code && code <= 0x11ff) { - return boundaries_1.CLUSTER_BREAK.T; - } - } - } - } - else { - if (code < 0x1712) { - // Mn [3] ETHIOPIC COMBINING GEMINATION AND VOWEL LENGTH MARK..ETHIOPIC COMBINING GEMINATION MARK - if (0x135d <= code && code <= 0x135f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1715) { - // Mn [3] TAGALOG VOWEL SIGN I..TAGALOG SIGN VIRAMA - if (0x1712 <= code && code <= 0x1714) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc TAGALOG SIGN PAMUDPOD - if (0x1715 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - else { - if (code < 0x17c9) { - if (code < 0x17b6) { - if (code < 0x1752) { - if (code < 0x1734) { - // Mn [2] HANUNOO VOWEL SIGN I..HANUNOO VOWEL SIGN U - if (0x1732 <= code && code <= 0x1733) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc HANUNOO SIGN PAMUDPOD - if (0x1734 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x1772) { - // Mn [2] BUHID VOWEL SIGN I..BUHID VOWEL SIGN U - if (0x1752 <= code && code <= 0x1753) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x17b4) { - // Mn [2] TAGBANWA VOWEL SIGN I..TAGBANWA VOWEL SIGN U - if (0x1772 <= code && code <= 0x1773) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] KHMER VOWEL INHERENT AQ..KHMER VOWEL INHERENT AA - if (0x17b4 <= code && code <= 0x17b5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x17be) { - if (code < 0x17b7) { - // Mc KHMER VOWEL SIGN AA - if (0x17b6 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [7] KHMER VOWEL SIGN I..KHMER VOWEL SIGN UA - if (0x17b7 <= code && code <= 0x17bd) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x17c6) { - // Mc [8] KHMER VOWEL SIGN OE..KHMER VOWEL SIGN AU - if (0x17be <= code && code <= 0x17c5) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x17c7) { - // Mn KHMER SIGN NIKAHIT - if (0x17c6 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] KHMER SIGN REAHMUK..KHMER SIGN YUUKALEAPINTU - if (0x17c7 <= code && code <= 0x17c8) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - else { - if (code < 0x1885) { - if (code < 0x180b) { - if (code < 0x17dd) { - // Mn [11] KHMER SIGN MUUSIKATOAN..KHMER SIGN BATHAMASAT - if (0x17c9 <= code && code <= 0x17d3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn KHMER SIGN ATTHACAN - if (0x17dd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x180e) { - // Mn [3] MONGOLIAN FREE VARIATION SELECTOR ONE..MONGOLIAN FREE VARIATION SELECTOR THREE - if (0x180b <= code && code <= 0x180d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf MONGOLIAN VOWEL SEPARATOR - if (0x180e === code) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - // Mn MONGOLIAN FREE VARIATION SELECTOR FOUR - if (0x180f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x1923) { - if (code < 0x18a9) { - // Mn [2] MONGOLIAN LETTER ALI GALI BALUDA..MONGOLIAN LETTER ALI GALI THREE BALUDA - if (0x1885 <= code && code <= 0x1886) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1920) { - // Mn MONGOLIAN LETTER ALI GALI DAGALGA - if (0x18a9 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [3] LIMBU VOWEL SIGN A..LIMBU VOWEL SIGN U - if (0x1920 <= code && code <= 0x1922) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x1927) { - // Mc [4] LIMBU VOWEL SIGN EE..LIMBU VOWEL SIGN AU - if (0x1923 <= code && code <= 0x1926) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1929) { - // Mn [2] LIMBU VOWEL SIGN E..LIMBU VOWEL SIGN O - if (0x1927 <= code && code <= 0x1928) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [3] LIMBU SUBJOINED LETTER YA..LIMBU SUBJOINED LETTER WA - if (0x1929 <= code && code <= 0x192b) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - } - else { - if (code < 0x1b3b) { - if (code < 0x1a58) { - if (code < 0x1a19) { - if (code < 0x1933) { - if (code < 0x1932) { - // Mc [2] LIMBU SMALL LETTER KA..LIMBU SMALL LETTER NGA - if (0x1930 <= code && code <= 0x1931) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn LIMBU SMALL LETTER ANUSVARA - if (0x1932 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1939) { - // Mc [6] LIMBU SMALL LETTER TA..LIMBU SMALL LETTER LA - if (0x1933 <= code && code <= 0x1938) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1a17) { - // Mn [3] LIMBU SIGN MUKPHRENG..LIMBU SIGN SA-I - if (0x1939 <= code && code <= 0x193b) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] BUGINESE VOWEL SIGN I..BUGINESE VOWEL SIGN U - if (0x1a17 <= code && code <= 0x1a18) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1a55) { - if (code < 0x1a1b) { - // Mc [2] BUGINESE VOWEL SIGN E..BUGINESE VOWEL SIGN O - if (0x1a19 <= code && code <= 0x1a1a) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn BUGINESE VOWEL SIGN AE - if (0x1a1b === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1a56) { - // Mc TAI THAM CONSONANT SIGN MEDIAL RA - if (0x1a55 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn TAI THAM CONSONANT SIGN MEDIAL LA - if (0x1a56 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc TAI THAM CONSONANT SIGN LA TANG LAI - if (0x1a57 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x1a73) { - if (code < 0x1a62) { - if (code < 0x1a60) { - // Mn [7] TAI THAM SIGN MAI KANG LAI..TAI THAM CONSONANT SIGN SA - if (0x1a58 <= code && code <= 0x1a5e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn TAI THAM SIGN SAKOT - if (0x1a60 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1a65) { - // Mn TAI THAM VOWEL SIGN MAI SAT - if (0x1a62 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1a6d) { - // Mn [8] TAI THAM VOWEL SIGN I..TAI THAM VOWEL SIGN OA BELOW - if (0x1a65 <= code && code <= 0x1a6c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [6] TAI THAM VOWEL SIGN OY..TAI THAM VOWEL SIGN THAM AI - if (0x1a6d <= code && code <= 0x1a72) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x1b00) { - if (code < 0x1a7f) { - // Mn [10] TAI THAM VOWEL SIGN OA ABOVE..TAI THAM SIGN KHUEN-LUE KARAN - if (0x1a73 <= code && code <= 0x1a7c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1ab0) { - // Mn TAI THAM COMBINING CRYPTOGRAMMIC DOT - if (0x1a7f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [14] COMBINING DOUBLED CIRCUMFLEX ACCENT..COMBINING PARENTHESES BELOW - // Me COMBINING PARENTHESES OVERLAY - // Mn [16] COMBINING LATIN SMALL LETTER W BELOW..COMBINING LATIN SMALL LETTER INSULAR T - if (0x1ab0 <= code && code <= 0x1ace) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x1b04) { - // Mn [4] BALINESE SIGN ULU RICEM..BALINESE SIGN SURANG - if (0x1b00 <= code && code <= 0x1b03) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1b34) { - // Mc BALINESE SIGN BISAH - if (0x1b04 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn BALINESE SIGN REREKAN - // Mc BALINESE VOWEL SIGN TEDUNG - // Mn [5] BALINESE VOWEL SIGN ULU..BALINESE VOWEL SIGN RA REPA - if (0x1b34 <= code && code <= 0x1b3a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0x1ba8) { - if (code < 0x1b6b) { - if (code < 0x1b3d) { - // Mc BALINESE VOWEL SIGN RA REPA TEDUNG - if (0x1b3b === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn BALINESE VOWEL SIGN LA LENGA - if (0x1b3c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1b42) { - // Mc [5] BALINESE VOWEL SIGN LA LENGA TEDUNG..BALINESE VOWEL SIGN TALING REPA TEDUNG - if (0x1b3d <= code && code <= 0x1b41) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1b43) { - // Mn BALINESE VOWEL SIGN PEPET - if (0x1b42 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] BALINESE VOWEL SIGN PEPET TEDUNG..BALINESE ADEG ADEG - if (0x1b43 <= code && code <= 0x1b44) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x1ba1) { - if (code < 0x1b80) { - // Mn [9] BALINESE MUSICAL SYMBOL COMBINING TEGEH..BALINESE MUSICAL SYMBOL COMBINING GONG - if (0x1b6b <= code && code <= 0x1b73) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1b82) { - // Mn [2] SUNDANESE SIGN PANYECEK..SUNDANESE SIGN PANGLAYAR - if (0x1b80 <= code && code <= 0x1b81) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc SUNDANESE SIGN PANGWISAD - if (0x1b82 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x1ba2) { - // Mc SUNDANESE CONSONANT SIGN PAMINGKAL - if (0x1ba1 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1ba6) { - // Mn [4] SUNDANESE CONSONANT SIGN PANYAKRA..SUNDANESE VOWEL SIGN PANYUKU - if (0x1ba2 <= code && code <= 0x1ba5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SUNDANESE VOWEL SIGN PANAELAENG..SUNDANESE VOWEL SIGN PANOLONG - if (0x1ba6 <= code && code <= 0x1ba7) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - else { - if (code < 0x1be8) { - if (code < 0x1bab) { - if (code < 0x1baa) { - // Mn [2] SUNDANESE VOWEL SIGN PAMEPET..SUNDANESE VOWEL SIGN PANEULEUNG - if (0x1ba8 <= code && code <= 0x1ba9) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc SUNDANESE SIGN PAMAAEH - if (0x1baa === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x1be6) { - // Mn [3] SUNDANESE SIGN VIRAMA..SUNDANESE CONSONANT SIGN PASANGAN WA - if (0x1bab <= code && code <= 0x1bad) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn BATAK SIGN TOMPI - if (0x1be6 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc BATAK VOWEL SIGN E - if (0x1be7 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x1bee) { - if (code < 0x1bea) { - // Mn [2] BATAK VOWEL SIGN PAKPAK E..BATAK VOWEL SIGN EE - if (0x1be8 <= code && code <= 0x1be9) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1bed) { - // Mc [3] BATAK VOWEL SIGN I..BATAK VOWEL SIGN O - if (0x1bea <= code && code <= 0x1bec) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn BATAK VOWEL SIGN KARO O - if (0x1bed === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x1bef) { - // Mc BATAK VOWEL SIGN U - if (0x1bee === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1bf2) { - // Mn [3] BATAK VOWEL SIGN U FOR SIMALUNGUN SA..BATAK CONSONANT SIGN H - if (0x1bef <= code && code <= 0x1bf1) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] BATAK PANGOLAT..BATAK PANONGONAN - if (0x1bf2 <= code && code <= 0x1bf3) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - } - } - else { - if (code < 0xa952) { - if (code < 0x2d7f) { - if (code < 0x1cf7) { - if (code < 0x1cd4) { - if (code < 0x1c34) { - if (code < 0x1c2c) { - // Mc [8] LEPCHA SUBJOINED LETTER YA..LEPCHA VOWEL SIGN UU - if (0x1c24 <= code && code <= 0x1c2b) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [8] LEPCHA VOWEL SIGN E..LEPCHA CONSONANT SIGN T - if (0x1c2c <= code && code <= 0x1c33) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1c36) { - // Mc [2] LEPCHA CONSONANT SIGN NYIN-DO..LEPCHA CONSONANT SIGN KANG - if (0x1c34 <= code && code <= 0x1c35) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1cd0) { - // Mn [2] LEPCHA SIGN RAN..LEPCHA SIGN NUKTA - if (0x1c36 <= code && code <= 0x1c37) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [3] VEDIC TONE KARSHANA..VEDIC TONE PRENKHA - if (0x1cd0 <= code && code <= 0x1cd2) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1ce2) { - if (code < 0x1ce1) { - // Mn [13] VEDIC SIGN YAJURVEDIC MIDLINE SVARITA..VEDIC TONE RIGVEDIC KASHMIRI INDEPENDENT SVARITA - if (0x1cd4 <= code && code <= 0x1ce0) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc VEDIC TONE ATHARVAVEDIC INDEPENDENT SVARITA - if (0x1ce1 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x1ced) { - // Mn [7] VEDIC SIGN VISARGA SVARITA..VEDIC SIGN VISARGA ANUDATTA WITH TAIL - if (0x1ce2 <= code && code <= 0x1ce8) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn VEDIC SIGN TIRYAK - if (0x1ced === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn VEDIC TONE CANDRA ABOVE - if (0x1cf4 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x200d) { - if (code < 0x1dc0) { - if (code < 0x1cf8) { - // Mc VEDIC SIGN ATIKRAMA - if (0x1cf7 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] VEDIC TONE RING ABOVE..VEDIC TONE DOUBLE RING ABOVE - if (0x1cf8 <= code && code <= 0x1cf9) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x200b) { - // Mn [64] COMBINING DOTTED GRAVE ACCENT..COMBINING RIGHT ARROWHEAD AND DOWN ARROWHEAD BELOW - if (0x1dc0 <= code && code <= 0x1dff) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cf ZERO WIDTH SPACE - if (0x200b === code) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - // Cf ZERO WIDTH NON-JOINER - if (0x200c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x2060) { - if (code < 0x200e) { - // Cf ZERO WIDTH JOINER - if (0x200d === code) { - return boundaries_1.CLUSTER_BREAK.ZWJ; - } - } - else { - if (code < 0x2028) { - // Cf [2] LEFT-TO-RIGHT MARK..RIGHT-TO-LEFT MARK - if (0x200e <= code && code <= 0x200f) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Zl LINE SEPARATOR - // Zp PARAGRAPH SEPARATOR - // Cf [5] LEFT-TO-RIGHT EMBEDDING..RIGHT-TO-LEFT OVERRIDE - if (0x2028 <= code && code <= 0x202e) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - } - } - else { - if (code < 0x20d0) { - // Cf [5] WORD JOINER..INVISIBLE PLUS - // Cn - // Cf [10] LEFT-TO-RIGHT ISOLATE..NOMINAL DIGIT SHAPES - if (0x2060 <= code && code <= 0x206f) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - if (code < 0x2cef) { - // Mn [13] COMBINING LEFT HARPOON ABOVE..COMBINING FOUR DOTS ABOVE - // Me [4] COMBINING ENCLOSING CIRCLE..COMBINING ENCLOSING CIRCLE BACKSLASH - // Mn COMBINING LEFT RIGHT ARROW ABOVE - // Me [3] COMBINING ENCLOSING SCREEN..COMBINING ENCLOSING UPWARD POINTING TRIANGLE - // Mn [12] COMBINING REVERSE SOLIDUS OVERLAY..COMBINING ASTERISK ABOVE - if (0x20d0 <= code && code <= 0x20f0) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [3] COPTIC COMBINING NI ABOVE..COPTIC COMBINING SPIRITUS LENIS - if (0x2cef <= code && code <= 0x2cf1) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0xa823) { - if (code < 0xa674) { - if (code < 0x302a) { - if (code < 0x2de0) { - // Mn TIFINAGH CONSONANT JOINER - if (0x2d7f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [32] COMBINING CYRILLIC LETTER BE..COMBINING CYRILLIC LETTER IOTIFIED BIG YUS - if (0x2de0 <= code && code <= 0x2dff) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x3099) { - // Mn [4] IDEOGRAPHIC LEVEL TONE MARK..IDEOGRAPHIC ENTERING TONE MARK - // Mc [2] HANGUL SINGLE DOT TONE MARK..HANGUL DOUBLE DOT TONE MARK - if (0x302a <= code && code <= 0x302f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xa66f) { - // Mn [2] COMBINING KATAKANA-HIRAGANA VOICED SOUND MARK..COMBINING KATAKANA-HIRAGANA SEMI-VOICED SOUND MARK - if (0x3099 <= code && code <= 0x309a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn COMBINING CYRILLIC VZMET - // Me [3] COMBINING CYRILLIC TEN MILLIONS SIGN..COMBINING CYRILLIC THOUSAND MILLIONS SIGN - if (0xa66f <= code && code <= 0xa672) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xa802) { - if (code < 0xa69e) { - // Mn [10] COMBINING CYRILLIC LETTER UKRAINIAN IE..COMBINING CYRILLIC PAYEROK - if (0xa674 <= code && code <= 0xa67d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xa6f0) { - // Mn [2] COMBINING CYRILLIC LETTER EF..COMBINING CYRILLIC LETTER IOTIFIED E - if (0xa69e <= code && code <= 0xa69f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] BAMUM COMBINING MARK KOQNDON..BAMUM COMBINING MARK TUKWENTIS - if (0xa6f0 <= code && code <= 0xa6f1) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xa806) { - // Mn SYLOTI NAGRI SIGN DVISVARA - if (0xa802 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn SYLOTI NAGRI SIGN HASANTA - if (0xa806 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn SYLOTI NAGRI SIGN ANUSVARA - if (0xa80b === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0xa8b4) { - if (code < 0xa827) { - if (code < 0xa825) { - // Mc [2] SYLOTI NAGRI VOWEL SIGN A..SYLOTI NAGRI VOWEL SIGN I - if (0xa823 <= code && code <= 0xa824) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] SYLOTI NAGRI VOWEL SIGN U..SYLOTI NAGRI VOWEL SIGN E - if (0xa825 <= code && code <= 0xa826) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xa82c) { - // Mc SYLOTI NAGRI VOWEL SIGN OO - if (0xa827 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xa880) { - // Mn SYLOTI NAGRI SIGN ALTERNATE HASANTA - if (0xa82c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SAURASHTRA SIGN ANUSVARA..SAURASHTRA SIGN VISARGA - if (0xa880 <= code && code <= 0xa881) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0xa8ff) { - if (code < 0xa8c4) { - // Mc [16] SAURASHTRA CONSONANT SIGN HAARU..SAURASHTRA VOWEL SIGN AU - if (0xa8b4 <= code && code <= 0xa8c3) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xa8e0) { - // Mn [2] SAURASHTRA SIGN VIRAMA..SAURASHTRA SIGN CANDRABINDU - if (0xa8c4 <= code && code <= 0xa8c5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [18] COMBINING DEVANAGARI DIGIT ZERO..COMBINING DEVANAGARI SIGN AVAGRAHA - if (0xa8e0 <= code && code <= 0xa8f1) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xa926) { - // Mn DEVANAGARI VOWEL SIGN AY - if (0xa8ff === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xa947) { - // Mn [8] KAYAH LI VOWEL UE..KAYAH LI TONE CALYA PLOPHU - if (0xa926 <= code && code <= 0xa92d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [11] REJANG VOWEL SIGN I..REJANG CONSONANT SIGN R - if (0xa947 <= code && code <= 0xa951) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - else { - if (code < 0xaab2) { - if (code < 0xa9e5) { - if (code < 0xa9b4) { - if (code < 0xa980) { - if (code < 0xa960) { - // Mc [2] REJANG CONSONANT SIGN H..REJANG VIRAMA - if (0xa952 <= code && code <= 0xa953) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Lo [29] HANGUL CHOSEONG TIKEUT-MIEUM..HANGUL CHOSEONG SSANGYEORINHIEUH - if (0xa960 <= code && code <= 0xa97c) { - return boundaries_1.CLUSTER_BREAK.L; - } - } - } - else { - if (code < 0xa983) { - // Mn [3] JAVANESE SIGN PANYANGGA..JAVANESE SIGN LAYAR - if (0xa980 <= code && code <= 0xa982) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc JAVANESE SIGN WIGNYAN - if (0xa983 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn JAVANESE SIGN CECAK TELU - if (0xa9b3 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xa9ba) { - if (code < 0xa9b6) { - // Mc [2] JAVANESE VOWEL SIGN TARUNG..JAVANESE VOWEL SIGN TOLONG - if (0xa9b4 <= code && code <= 0xa9b5) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] JAVANESE VOWEL SIGN WULU..JAVANESE VOWEL SIGN SUKU MENDUT - if (0xa9b6 <= code && code <= 0xa9b9) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xa9bc) { - // Mc [2] JAVANESE VOWEL SIGN TALING..JAVANESE VOWEL SIGN DIRGA MURE - if (0xa9ba <= code && code <= 0xa9bb) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xa9be) { - // Mn [2] JAVANESE VOWEL SIGN PEPET..JAVANESE CONSONANT SIGN KERET - if (0xa9bc <= code && code <= 0xa9bd) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [3] JAVANESE CONSONANT SIGN PENGKAL..JAVANESE PANGKON - if (0xa9be <= code && code <= 0xa9c0) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - else { - if (code < 0xaa35) { - if (code < 0xaa2f) { - if (code < 0xaa29) { - // Mn MYANMAR SIGN SHAN SAW - if (0xa9e5 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [6] CHAM VOWEL SIGN AA..CHAM VOWEL SIGN OE - if (0xaa29 <= code && code <= 0xaa2e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xaa31) { - // Mc [2] CHAM VOWEL SIGN O..CHAM VOWEL SIGN AI - if (0xaa2f <= code && code <= 0xaa30) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0xaa33) { - // Mn [2] CHAM VOWEL SIGN AU..CHAM VOWEL SIGN UE - if (0xaa31 <= code && code <= 0xaa32) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] CHAM CONSONANT SIGN YA..CHAM CONSONANT SIGN RA - if (0xaa33 <= code && code <= 0xaa34) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0xaa4d) { - if (code < 0xaa43) { - // Mn [2] CHAM CONSONANT SIGN LA..CHAM CONSONANT SIGN WA - if (0xaa35 <= code && code <= 0xaa36) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn CHAM CONSONANT SIGN FINAL NG - if (0xaa43 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn CHAM CONSONANT SIGN FINAL M - if (0xaa4c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xaa7c) { - // Mc CHAM CONSONANT SIGN FINAL H - if (0xaa4d === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn MYANMAR SIGN TAI LAING TONE-2 - if (0xaa7c === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn TAI VIET MAI KANG - if (0xaab0 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xabe6) { - if (code < 0xaaec) { - if (code < 0xaabe) { - if (code < 0xaab7) { - // Mn [3] TAI VIET VOWEL I..TAI VIET VOWEL U - if (0xaab2 <= code && code <= 0xaab4) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] TAI VIET MAI KHIT..TAI VIET VOWEL IA - if (0xaab7 <= code && code <= 0xaab8) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xaac1) { - // Mn [2] TAI VIET VOWEL AM..TAI VIET TONE MAI EK - if (0xaabe <= code && code <= 0xaabf) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn TAI VIET TONE MAI THO - if (0xaac1 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc MEETEI MAYEK VOWEL SIGN II - if (0xaaeb === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0xaaf6) { - if (code < 0xaaee) { - // Mn [2] MEETEI MAYEK VOWEL SIGN UU..MEETEI MAYEK VOWEL SIGN AAI - if (0xaaec <= code && code <= 0xaaed) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xaaf5) { - // Mc [2] MEETEI MAYEK VOWEL SIGN AU..MEETEI MAYEK VOWEL SIGN AAU - if (0xaaee <= code && code <= 0xaaef) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc MEETEI MAYEK VOWEL SIGN VISARGA - if (0xaaf5 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0xabe3) { - // Mn MEETEI MAYEK VIRAMA - if (0xaaf6 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xabe5) { - // Mc [2] MEETEI MAYEK VOWEL SIGN ONAP..MEETEI MAYEK VOWEL SIGN INAP - if (0xabe3 <= code && code <= 0xabe4) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn MEETEI MAYEK VOWEL SIGN ANAP - if (0xabe5 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0xac00) { - if (code < 0xabe9) { - if (code < 0xabe8) { - // Mc [2] MEETEI MAYEK VOWEL SIGN YENAP..MEETEI MAYEK VOWEL SIGN SOUNAP - if (0xabe6 <= code && code <= 0xabe7) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn MEETEI MAYEK VOWEL SIGN UNAP - if (0xabe8 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0xabec) { - // Mc [2] MEETEI MAYEK VOWEL SIGN CHEINAP..MEETEI MAYEK VOWEL SIGN NUNG - if (0xabe9 <= code && code <= 0xabea) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc MEETEI MAYEK LUM IYEK - if (0xabec === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn MEETEI MAYEK APUN IYEK - if (0xabed === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xac1d) { - if (code < 0xac01) { - // Lo HANGUL SYLLABLE GA - if (0xac00 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xac1c) { - // Lo [27] HANGUL SYLLABLE GAG..HANGUL SYLLABLE GAH - if (0xac01 <= code && code <= 0xac1b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GAE - if (0xac1c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xac38) { - // Lo [27] HANGUL SYLLABLE GAEG..HANGUL SYLLABLE GAEH - if (0xac1d <= code && code <= 0xac37) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xac39) { - // Lo HANGUL SYLLABLE GYA - if (0xac38 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GYAG..HANGUL SYLLABLE GYAH - if (0xac39 <= code && code <= 0xac53) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0xb5a1) { - if (code < 0xb0ed) { - if (code < 0xaea0) { - if (code < 0xad6d) { - if (code < 0xace0) { - if (code < 0xac8d) { - if (code < 0xac70) { - if (code < 0xac55) { - // Lo HANGUL SYLLABLE GYAE - if (0xac54 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GYAEG..HANGUL SYLLABLE GYAEH - if (0xac55 <= code && code <= 0xac6f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xac71) { - // Lo HANGUL SYLLABLE GEO - if (0xac70 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xac8c) { - // Lo [27] HANGUL SYLLABLE GEOG..HANGUL SYLLABLE GEOH - if (0xac71 <= code && code <= 0xac8b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GE - if (0xac8c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xaca9) { - if (code < 0xaca8) { - // Lo [27] HANGUL SYLLABLE GEG..HANGUL SYLLABLE GEH - if (0xac8d <= code && code <= 0xaca7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GYEO - if (0xaca8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xacc4) { - // Lo [27] HANGUL SYLLABLE GYEOG..HANGUL SYLLABLE GYEOH - if (0xaca9 <= code && code <= 0xacc3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xacc5) { - // Lo HANGUL SYLLABLE GYE - if (0xacc4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GYEG..HANGUL SYLLABLE GYEH - if (0xacc5 <= code && code <= 0xacdf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xad19) { - if (code < 0xacfc) { - if (code < 0xace1) { - // Lo HANGUL SYLLABLE GO - if (0xace0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GOG..HANGUL SYLLABLE GOH - if (0xace1 <= code && code <= 0xacfb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xacfd) { - // Lo HANGUL SYLLABLE GWA - if (0xacfc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xad18) { - // Lo [27] HANGUL SYLLABLE GWAG..HANGUL SYLLABLE GWAH - if (0xacfd <= code && code <= 0xad17) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GWAE - if (0xad18 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xad50) { - if (code < 0xad34) { - // Lo [27] HANGUL SYLLABLE GWAEG..HANGUL SYLLABLE GWAEH - if (0xad19 <= code && code <= 0xad33) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xad35) { - // Lo HANGUL SYLLABLE GOE - if (0xad34 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GOEG..HANGUL SYLLABLE GOEH - if (0xad35 <= code && code <= 0xad4f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xad51) { - // Lo HANGUL SYLLABLE GYO - if (0xad50 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xad6c) { - // Lo [27] HANGUL SYLLABLE GYOG..HANGUL SYLLABLE GYOH - if (0xad51 <= code && code <= 0xad6b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GU - if (0xad6c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xadf9) { - if (code < 0xadc0) { - if (code < 0xad89) { - if (code < 0xad88) { - // Lo [27] HANGUL SYLLABLE GUG..HANGUL SYLLABLE GUH - if (0xad6d <= code && code <= 0xad87) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GWEO - if (0xad88 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xada4) { - // Lo [27] HANGUL SYLLABLE GWEOG..HANGUL SYLLABLE GWEOH - if (0xad89 <= code && code <= 0xada3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xada5) { - // Lo HANGUL SYLLABLE GWE - if (0xada4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GWEG..HANGUL SYLLABLE GWEH - if (0xada5 <= code && code <= 0xadbf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xaddc) { - if (code < 0xadc1) { - // Lo HANGUL SYLLABLE GWI - if (0xadc0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GWIG..HANGUL SYLLABLE GWIH - if (0xadc1 <= code && code <= 0xaddb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xaddd) { - // Lo HANGUL SYLLABLE GYU - if (0xaddc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xadf8) { - // Lo [27] HANGUL SYLLABLE GYUG..HANGUL SYLLABLE GYUH - if (0xaddd <= code && code <= 0xadf7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GEU - if (0xadf8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xae4c) { - if (code < 0xae15) { - if (code < 0xae14) { - // Lo [27] HANGUL SYLLABLE GEUG..HANGUL SYLLABLE GEUH - if (0xadf9 <= code && code <= 0xae13) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GYI - if (0xae14 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xae30) { - // Lo [27] HANGUL SYLLABLE GYIG..HANGUL SYLLABLE GYIH - if (0xae15 <= code && code <= 0xae2f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xae31) { - // Lo HANGUL SYLLABLE GI - if (0xae30 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GIG..HANGUL SYLLABLE GIH - if (0xae31 <= code && code <= 0xae4b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xae69) { - if (code < 0xae4d) { - // Lo HANGUL SYLLABLE GGA - if (0xae4c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xae68) { - // Lo [27] HANGUL SYLLABLE GGAG..HANGUL SYLLABLE GGAH - if (0xae4d <= code && code <= 0xae67) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGAE - if (0xae68 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xae84) { - // Lo [27] HANGUL SYLLABLE GGAEG..HANGUL SYLLABLE GGAEH - if (0xae69 <= code && code <= 0xae83) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xae85) { - // Lo HANGUL SYLLABLE GGYA - if (0xae84 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGYAG..HANGUL SYLLABLE GGYAH - if (0xae85 <= code && code <= 0xae9f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - else { - if (code < 0xafb9) { - if (code < 0xaf2c) { - if (code < 0xaed9) { - if (code < 0xaebc) { - if (code < 0xaea1) { - // Lo HANGUL SYLLABLE GGYAE - if (0xaea0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGYAEG..HANGUL SYLLABLE GGYAEH - if (0xaea1 <= code && code <= 0xaebb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xaebd) { - // Lo HANGUL SYLLABLE GGEO - if (0xaebc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xaed8) { - // Lo [27] HANGUL SYLLABLE GGEOG..HANGUL SYLLABLE GGEOH - if (0xaebd <= code && code <= 0xaed7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGE - if (0xaed8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xaef5) { - if (code < 0xaef4) { - // Lo [27] HANGUL SYLLABLE GGEG..HANGUL SYLLABLE GGEH - if (0xaed9 <= code && code <= 0xaef3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGYEO - if (0xaef4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xaf10) { - // Lo [27] HANGUL SYLLABLE GGYEOG..HANGUL SYLLABLE GGYEOH - if (0xaef5 <= code && code <= 0xaf0f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xaf11) { - // Lo HANGUL SYLLABLE GGYE - if (0xaf10 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGYEG..HANGUL SYLLABLE GGYEH - if (0xaf11 <= code && code <= 0xaf2b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xaf65) { - if (code < 0xaf48) { - if (code < 0xaf2d) { - // Lo HANGUL SYLLABLE GGO - if (0xaf2c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGOG..HANGUL SYLLABLE GGOH - if (0xaf2d <= code && code <= 0xaf47) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xaf49) { - // Lo HANGUL SYLLABLE GGWA - if (0xaf48 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xaf64) { - // Lo [27] HANGUL SYLLABLE GGWAG..HANGUL SYLLABLE GGWAH - if (0xaf49 <= code && code <= 0xaf63) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGWAE - if (0xaf64 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xaf9c) { - if (code < 0xaf80) { - // Lo [27] HANGUL SYLLABLE GGWAEG..HANGUL SYLLABLE GGWAEH - if (0xaf65 <= code && code <= 0xaf7f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xaf81) { - // Lo HANGUL SYLLABLE GGOE - if (0xaf80 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGOEG..HANGUL SYLLABLE GGOEH - if (0xaf81 <= code && code <= 0xaf9b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xaf9d) { - // Lo HANGUL SYLLABLE GGYO - if (0xaf9c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xafb8) { - // Lo [27] HANGUL SYLLABLE GGYOG..HANGUL SYLLABLE GGYOH - if (0xaf9d <= code && code <= 0xafb7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGU - if (0xafb8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xb060) { - if (code < 0xb00c) { - if (code < 0xafd5) { - if (code < 0xafd4) { - // Lo [27] HANGUL SYLLABLE GGUG..HANGUL SYLLABLE GGUH - if (0xafb9 <= code && code <= 0xafd3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGWEO - if (0xafd4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xaff0) { - // Lo [27] HANGUL SYLLABLE GGWEOG..HANGUL SYLLABLE GGWEOH - if (0xafd5 <= code && code <= 0xafef) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xaff1) { - // Lo HANGUL SYLLABLE GGWE - if (0xaff0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGWEG..HANGUL SYLLABLE GGWEH - if (0xaff1 <= code && code <= 0xb00b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb029) { - if (code < 0xb00d) { - // Lo HANGUL SYLLABLE GGWI - if (0xb00c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb028) { - // Lo [27] HANGUL SYLLABLE GGWIG..HANGUL SYLLABLE GGWIH - if (0xb00d <= code && code <= 0xb027) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE GGYU - if (0xb028 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb044) { - // Lo [27] HANGUL SYLLABLE GGYUG..HANGUL SYLLABLE GGYUH - if (0xb029 <= code && code <= 0xb043) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb045) { - // Lo HANGUL SYLLABLE GGEU - if (0xb044 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGEUG..HANGUL SYLLABLE GGEUH - if (0xb045 <= code && code <= 0xb05f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xb099) { - if (code < 0xb07c) { - if (code < 0xb061) { - // Lo HANGUL SYLLABLE GGYI - if (0xb060 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE GGYIG..HANGUL SYLLABLE GGYIH - if (0xb061 <= code && code <= 0xb07b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb07d) { - // Lo HANGUL SYLLABLE GGI - if (0xb07c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb098) { - // Lo [27] HANGUL SYLLABLE GGIG..HANGUL SYLLABLE GGIH - if (0xb07d <= code && code <= 0xb097) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NA - if (0xb098 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb0d0) { - if (code < 0xb0b4) { - // Lo [27] HANGUL SYLLABLE NAG..HANGUL SYLLABLE NAH - if (0xb099 <= code && code <= 0xb0b3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb0b5) { - // Lo HANGUL SYLLABLE NAE - if (0xb0b4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NAEG..HANGUL SYLLABLE NAEH - if (0xb0b5 <= code && code <= 0xb0cf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xb0d1) { - // Lo HANGUL SYLLABLE NYA - if (0xb0d0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb0ec) { - // Lo [27] HANGUL SYLLABLE NYAG..HANGUL SYLLABLE NYAH - if (0xb0d1 <= code && code <= 0xb0eb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NYAE - if (0xb0ec === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - } - else { - if (code < 0xb354) { - if (code < 0xb220) { - if (code < 0xb179) { - if (code < 0xb140) { - if (code < 0xb109) { - if (code < 0xb108) { - // Lo [27] HANGUL SYLLABLE NYAEG..HANGUL SYLLABLE NYAEH - if (0xb0ed <= code && code <= 0xb107) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NEO - if (0xb108 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb124) { - // Lo [27] HANGUL SYLLABLE NEOG..HANGUL SYLLABLE NEOH - if (0xb109 <= code && code <= 0xb123) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb125) { - // Lo HANGUL SYLLABLE NE - if (0xb124 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NEG..HANGUL SYLLABLE NEH - if (0xb125 <= code && code <= 0xb13f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb15c) { - if (code < 0xb141) { - // Lo HANGUL SYLLABLE NYEO - if (0xb140 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NYEOG..HANGUL SYLLABLE NYEOH - if (0xb141 <= code && code <= 0xb15b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb15d) { - // Lo HANGUL SYLLABLE NYE - if (0xb15c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb178) { - // Lo [27] HANGUL SYLLABLE NYEG..HANGUL SYLLABLE NYEH - if (0xb15d <= code && code <= 0xb177) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NO - if (0xb178 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xb1cc) { - if (code < 0xb195) { - if (code < 0xb194) { - // Lo [27] HANGUL SYLLABLE NOG..HANGUL SYLLABLE NOH - if (0xb179 <= code && code <= 0xb193) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NWA - if (0xb194 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb1b0) { - // Lo [27] HANGUL SYLLABLE NWAG..HANGUL SYLLABLE NWAH - if (0xb195 <= code && code <= 0xb1af) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb1b1) { - // Lo HANGUL SYLLABLE NWAE - if (0xb1b0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NWAEG..HANGUL SYLLABLE NWAEH - if (0xb1b1 <= code && code <= 0xb1cb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb1e9) { - if (code < 0xb1cd) { - // Lo HANGUL SYLLABLE NOE - if (0xb1cc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb1e8) { - // Lo [27] HANGUL SYLLABLE NOEG..HANGUL SYLLABLE NOEH - if (0xb1cd <= code && code <= 0xb1e7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NYO - if (0xb1e8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb204) { - // Lo [27] HANGUL SYLLABLE NYOG..HANGUL SYLLABLE NYOH - if (0xb1e9 <= code && code <= 0xb203) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb205) { - // Lo HANGUL SYLLABLE NU - if (0xb204 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NUG..HANGUL SYLLABLE NUH - if (0xb205 <= code && code <= 0xb21f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xb2ad) { - if (code < 0xb259) { - if (code < 0xb23c) { - if (code < 0xb221) { - // Lo HANGUL SYLLABLE NWEO - if (0xb220 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NWEOG..HANGUL SYLLABLE NWEOH - if (0xb221 <= code && code <= 0xb23b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb23d) { - // Lo HANGUL SYLLABLE NWE - if (0xb23c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb258) { - // Lo [27] HANGUL SYLLABLE NWEG..HANGUL SYLLABLE NWEH - if (0xb23d <= code && code <= 0xb257) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NWI - if (0xb258 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb290) { - if (code < 0xb274) { - // Lo [27] HANGUL SYLLABLE NWIG..HANGUL SYLLABLE NWIH - if (0xb259 <= code && code <= 0xb273) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb275) { - // Lo HANGUL SYLLABLE NYU - if (0xb274 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE NYUG..HANGUL SYLLABLE NYUH - if (0xb275 <= code && code <= 0xb28f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xb291) { - // Lo HANGUL SYLLABLE NEU - if (0xb290 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb2ac) { - // Lo [27] HANGUL SYLLABLE NEUG..HANGUL SYLLABLE NEUH - if (0xb291 <= code && code <= 0xb2ab) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NYI - if (0xb2ac === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xb300) { - if (code < 0xb2c9) { - if (code < 0xb2c8) { - // Lo [27] HANGUL SYLLABLE NYIG..HANGUL SYLLABLE NYIH - if (0xb2ad <= code && code <= 0xb2c7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE NI - if (0xb2c8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb2e4) { - // Lo [27] HANGUL SYLLABLE NIG..HANGUL SYLLABLE NIH - if (0xb2c9 <= code && code <= 0xb2e3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb2e5) { - // Lo HANGUL SYLLABLE DA - if (0xb2e4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DAG..HANGUL SYLLABLE DAH - if (0xb2e5 <= code && code <= 0xb2ff) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb31d) { - if (code < 0xb301) { - // Lo HANGUL SYLLABLE DAE - if (0xb300 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb31c) { - // Lo [27] HANGUL SYLLABLE DAEG..HANGUL SYLLABLE DAEH - if (0xb301 <= code && code <= 0xb31b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DYA - if (0xb31c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb338) { - // Lo [27] HANGUL SYLLABLE DYAG..HANGUL SYLLABLE DYAH - if (0xb31d <= code && code <= 0xb337) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb339) { - // Lo HANGUL SYLLABLE DYAE - if (0xb338 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DYAEG..HANGUL SYLLABLE DYAEH - if (0xb339 <= code && code <= 0xb353) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - else { - if (code < 0xb46d) { - if (code < 0xb3e0) { - if (code < 0xb38d) { - if (code < 0xb370) { - if (code < 0xb355) { - // Lo HANGUL SYLLABLE DEO - if (0xb354 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DEOG..HANGUL SYLLABLE DEOH - if (0xb355 <= code && code <= 0xb36f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb371) { - // Lo HANGUL SYLLABLE DE - if (0xb370 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb38c) { - // Lo [27] HANGUL SYLLABLE DEG..HANGUL SYLLABLE DEH - if (0xb371 <= code && code <= 0xb38b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DYEO - if (0xb38c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb3a9) { - if (code < 0xb3a8) { - // Lo [27] HANGUL SYLLABLE DYEOG..HANGUL SYLLABLE DYEOH - if (0xb38d <= code && code <= 0xb3a7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DYE - if (0xb3a8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb3c4) { - // Lo [27] HANGUL SYLLABLE DYEG..HANGUL SYLLABLE DYEH - if (0xb3a9 <= code && code <= 0xb3c3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb3c5) { - // Lo HANGUL SYLLABLE DO - if (0xb3c4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DOG..HANGUL SYLLABLE DOH - if (0xb3c5 <= code && code <= 0xb3df) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xb419) { - if (code < 0xb3fc) { - if (code < 0xb3e1) { - // Lo HANGUL SYLLABLE DWA - if (0xb3e0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DWAG..HANGUL SYLLABLE DWAH - if (0xb3e1 <= code && code <= 0xb3fb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb3fd) { - // Lo HANGUL SYLLABLE DWAE - if (0xb3fc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb418) { - // Lo [27] HANGUL SYLLABLE DWAEG..HANGUL SYLLABLE DWAEH - if (0xb3fd <= code && code <= 0xb417) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DOE - if (0xb418 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb450) { - if (code < 0xb434) { - // Lo [27] HANGUL SYLLABLE DOEG..HANGUL SYLLABLE DOEH - if (0xb419 <= code && code <= 0xb433) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb435) { - // Lo HANGUL SYLLABLE DYO - if (0xb434 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DYOG..HANGUL SYLLABLE DYOH - if (0xb435 <= code && code <= 0xb44f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xb451) { - // Lo HANGUL SYLLABLE DU - if (0xb450 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb46c) { - // Lo [27] HANGUL SYLLABLE DUG..HANGUL SYLLABLE DUH - if (0xb451 <= code && code <= 0xb46b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DWEO - if (0xb46c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xb514) { - if (code < 0xb4c0) { - if (code < 0xb489) { - if (code < 0xb488) { - // Lo [27] HANGUL SYLLABLE DWEOG..HANGUL SYLLABLE DWEOH - if (0xb46d <= code && code <= 0xb487) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DWE - if (0xb488 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb4a4) { - // Lo [27] HANGUL SYLLABLE DWEG..HANGUL SYLLABLE DWEH - if (0xb489 <= code && code <= 0xb4a3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb4a5) { - // Lo HANGUL SYLLABLE DWI - if (0xb4a4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DWIG..HANGUL SYLLABLE DWIH - if (0xb4a5 <= code && code <= 0xb4bf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb4dd) { - if (code < 0xb4c1) { - // Lo HANGUL SYLLABLE DYU - if (0xb4c0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb4dc) { - // Lo [27] HANGUL SYLLABLE DYUG..HANGUL SYLLABLE DYUH - if (0xb4c1 <= code && code <= 0xb4db) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DEU - if (0xb4dc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb4f8) { - // Lo [27] HANGUL SYLLABLE DEUG..HANGUL SYLLABLE DEUH - if (0xb4dd <= code && code <= 0xb4f7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb4f9) { - // Lo HANGUL SYLLABLE DYI - if (0xb4f8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DYIG..HANGUL SYLLABLE DYIH - if (0xb4f9 <= code && code <= 0xb513) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xb54d) { - if (code < 0xb530) { - if (code < 0xb515) { - // Lo HANGUL SYLLABLE DI - if (0xb514 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DIG..HANGUL SYLLABLE DIH - if (0xb515 <= code && code <= 0xb52f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb531) { - // Lo HANGUL SYLLABLE DDA - if (0xb530 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb54c) { - // Lo [27] HANGUL SYLLABLE DDAG..HANGUL SYLLABLE DDAH - if (0xb531 <= code && code <= 0xb54b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDAE - if (0xb54c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb584) { - if (code < 0xb568) { - // Lo [27] HANGUL SYLLABLE DDAEG..HANGUL SYLLABLE DDAEH - if (0xb54d <= code && code <= 0xb567) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb569) { - // Lo HANGUL SYLLABLE DDYA - if (0xb568 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDYAG..HANGUL SYLLABLE DDYAH - if (0xb569 <= code && code <= 0xb583) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xb585) { - // Lo HANGUL SYLLABLE DDYAE - if (0xb584 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb5a0) { - // Lo [27] HANGUL SYLLABLE DDYAEG..HANGUL SYLLABLE DDYAEH - if (0xb585 <= code && code <= 0xb59f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDEO - if (0xb5a0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0xba55) { - if (code < 0xb808) { - if (code < 0xb6d4) { - if (code < 0xb62d) { - if (code < 0xb5f4) { - if (code < 0xb5bd) { - if (code < 0xb5bc) { - // Lo [27] HANGUL SYLLABLE DDEOG..HANGUL SYLLABLE DDEOH - if (0xb5a1 <= code && code <= 0xb5bb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDE - if (0xb5bc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb5d8) { - // Lo [27] HANGUL SYLLABLE DDEG..HANGUL SYLLABLE DDEH - if (0xb5bd <= code && code <= 0xb5d7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb5d9) { - // Lo HANGUL SYLLABLE DDYEO - if (0xb5d8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDYEOG..HANGUL SYLLABLE DDYEOH - if (0xb5d9 <= code && code <= 0xb5f3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb610) { - if (code < 0xb5f5) { - // Lo HANGUL SYLLABLE DDYE - if (0xb5f4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDYEG..HANGUL SYLLABLE DDYEH - if (0xb5f5 <= code && code <= 0xb60f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb611) { - // Lo HANGUL SYLLABLE DDO - if (0xb610 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb62c) { - // Lo [27] HANGUL SYLLABLE DDOG..HANGUL SYLLABLE DDOH - if (0xb611 <= code && code <= 0xb62b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDWA - if (0xb62c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xb680) { - if (code < 0xb649) { - if (code < 0xb648) { - // Lo [27] HANGUL SYLLABLE DDWAG..HANGUL SYLLABLE DDWAH - if (0xb62d <= code && code <= 0xb647) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDWAE - if (0xb648 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb664) { - // Lo [27] HANGUL SYLLABLE DDWAEG..HANGUL SYLLABLE DDWAEH - if (0xb649 <= code && code <= 0xb663) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb665) { - // Lo HANGUL SYLLABLE DDOE - if (0xb664 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDOEG..HANGUL SYLLABLE DDOEH - if (0xb665 <= code && code <= 0xb67f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb69d) { - if (code < 0xb681) { - // Lo HANGUL SYLLABLE DDYO - if (0xb680 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb69c) { - // Lo [27] HANGUL SYLLABLE DDYOG..HANGUL SYLLABLE DDYOH - if (0xb681 <= code && code <= 0xb69b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDU - if (0xb69c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb6b8) { - // Lo [27] HANGUL SYLLABLE DDUG..HANGUL SYLLABLE DDUH - if (0xb69d <= code && code <= 0xb6b7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb6b9) { - // Lo HANGUL SYLLABLE DDWEO - if (0xb6b8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDWEOG..HANGUL SYLLABLE DDWEOH - if (0xb6b9 <= code && code <= 0xb6d3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xb761) { - if (code < 0xb70d) { - if (code < 0xb6f0) { - if (code < 0xb6d5) { - // Lo HANGUL SYLLABLE DDWE - if (0xb6d4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDWEG..HANGUL SYLLABLE DDWEH - if (0xb6d5 <= code && code <= 0xb6ef) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb6f1) { - // Lo HANGUL SYLLABLE DDWI - if (0xb6f0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb70c) { - // Lo [27] HANGUL SYLLABLE DDWIG..HANGUL SYLLABLE DDWIH - if (0xb6f1 <= code && code <= 0xb70b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDYU - if (0xb70c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb744) { - if (code < 0xb728) { - // Lo [27] HANGUL SYLLABLE DDYUG..HANGUL SYLLABLE DDYUH - if (0xb70d <= code && code <= 0xb727) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb729) { - // Lo HANGUL SYLLABLE DDEU - if (0xb728 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE DDEUG..HANGUL SYLLABLE DDEUH - if (0xb729 <= code && code <= 0xb743) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xb745) { - // Lo HANGUL SYLLABLE DDYI - if (0xb744 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb760) { - // Lo [27] HANGUL SYLLABLE DDYIG..HANGUL SYLLABLE DDYIH - if (0xb745 <= code && code <= 0xb75f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE DDI - if (0xb760 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xb7b4) { - if (code < 0xb77d) { - if (code < 0xb77c) { - // Lo [27] HANGUL SYLLABLE DDIG..HANGUL SYLLABLE DDIH - if (0xb761 <= code && code <= 0xb77b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RA - if (0xb77c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb798) { - // Lo [27] HANGUL SYLLABLE RAG..HANGUL SYLLABLE RAH - if (0xb77d <= code && code <= 0xb797) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb799) { - // Lo HANGUL SYLLABLE RAE - if (0xb798 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE RAEG..HANGUL SYLLABLE RAEH - if (0xb799 <= code && code <= 0xb7b3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb7d1) { - if (code < 0xb7b5) { - // Lo HANGUL SYLLABLE RYA - if (0xb7b4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb7d0) { - // Lo [27] HANGUL SYLLABLE RYAG..HANGUL SYLLABLE RYAH - if (0xb7b5 <= code && code <= 0xb7cf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RYAE - if (0xb7d0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb7ec) { - // Lo [27] HANGUL SYLLABLE RYAEG..HANGUL SYLLABLE RYAEH - if (0xb7d1 <= code && code <= 0xb7eb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb7ed) { - // Lo HANGUL SYLLABLE REO - if (0xb7ec === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE REOG..HANGUL SYLLABLE REOH - if (0xb7ed <= code && code <= 0xb807) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - else { - if (code < 0xb921) { - if (code < 0xb894) { - if (code < 0xb841) { - if (code < 0xb824) { - if (code < 0xb809) { - // Lo HANGUL SYLLABLE RE - if (0xb808 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE REG..HANGUL SYLLABLE REH - if (0xb809 <= code && code <= 0xb823) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb825) { - // Lo HANGUL SYLLABLE RYEO - if (0xb824 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb840) { - // Lo [27] HANGUL SYLLABLE RYEOG..HANGUL SYLLABLE RYEOH - if (0xb825 <= code && code <= 0xb83f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RYE - if (0xb840 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb85d) { - if (code < 0xb85c) { - // Lo [27] HANGUL SYLLABLE RYEG..HANGUL SYLLABLE RYEH - if (0xb841 <= code && code <= 0xb85b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RO - if (0xb85c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb878) { - // Lo [27] HANGUL SYLLABLE ROG..HANGUL SYLLABLE ROH - if (0xb85d <= code && code <= 0xb877) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb879) { - // Lo HANGUL SYLLABLE RWA - if (0xb878 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE RWAG..HANGUL SYLLABLE RWAH - if (0xb879 <= code && code <= 0xb893) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xb8cd) { - if (code < 0xb8b0) { - if (code < 0xb895) { - // Lo HANGUL SYLLABLE RWAE - if (0xb894 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE RWAEG..HANGUL SYLLABLE RWAEH - if (0xb895 <= code && code <= 0xb8af) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb8b1) { - // Lo HANGUL SYLLABLE ROE - if (0xb8b0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb8cc) { - // Lo [27] HANGUL SYLLABLE ROEG..HANGUL SYLLABLE ROEH - if (0xb8b1 <= code && code <= 0xb8cb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RYO - if (0xb8cc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xb904) { - if (code < 0xb8e8) { - // Lo [27] HANGUL SYLLABLE RYOG..HANGUL SYLLABLE RYOH - if (0xb8cd <= code && code <= 0xb8e7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb8e9) { - // Lo HANGUL SYLLABLE RU - if (0xb8e8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE RUG..HANGUL SYLLABLE RUH - if (0xb8e9 <= code && code <= 0xb903) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xb905) { - // Lo HANGUL SYLLABLE RWEO - if (0xb904 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb920) { - // Lo [27] HANGUL SYLLABLE RWEOG..HANGUL SYLLABLE RWEOH - if (0xb905 <= code && code <= 0xb91f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RWE - if (0xb920 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xb9c8) { - if (code < 0xb974) { - if (code < 0xb93d) { - if (code < 0xb93c) { - // Lo [27] HANGUL SYLLABLE RWEG..HANGUL SYLLABLE RWEH - if (0xb921 <= code && code <= 0xb93b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RWI - if (0xb93c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xb958) { - // Lo [27] HANGUL SYLLABLE RWIG..HANGUL SYLLABLE RWIH - if (0xb93d <= code && code <= 0xb957) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb959) { - // Lo HANGUL SYLLABLE RYU - if (0xb958 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE RYUG..HANGUL SYLLABLE RYUH - if (0xb959 <= code && code <= 0xb973) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xb991) { - if (code < 0xb975) { - // Lo HANGUL SYLLABLE REU - if (0xb974 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xb990) { - // Lo [27] HANGUL SYLLABLE REUG..HANGUL SYLLABLE REUH - if (0xb975 <= code && code <= 0xb98f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE RYI - if (0xb990 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xb9ac) { - // Lo [27] HANGUL SYLLABLE RYIG..HANGUL SYLLABLE RYIH - if (0xb991 <= code && code <= 0xb9ab) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xb9ad) { - // Lo HANGUL SYLLABLE RI - if (0xb9ac === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE RIG..HANGUL SYLLABLE RIH - if (0xb9ad <= code && code <= 0xb9c7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xba01) { - if (code < 0xb9e4) { - if (code < 0xb9c9) { - // Lo HANGUL SYLLABLE MA - if (0xb9c8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MAG..HANGUL SYLLABLE MAH - if (0xb9c9 <= code && code <= 0xb9e3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xb9e5) { - // Lo HANGUL SYLLABLE MAE - if (0xb9e4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xba00) { - // Lo [27] HANGUL SYLLABLE MAEG..HANGUL SYLLABLE MAEH - if (0xb9e5 <= code && code <= 0xb9ff) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE MYA - if (0xba00 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xba38) { - if (code < 0xba1c) { - // Lo [27] HANGUL SYLLABLE MYAG..HANGUL SYLLABLE MYAH - if (0xba01 <= code && code <= 0xba1b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xba1d) { - // Lo HANGUL SYLLABLE MYAE - if (0xba1c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MYAEG..HANGUL SYLLABLE MYAEH - if (0xba1d <= code && code <= 0xba37) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xba39) { - // Lo HANGUL SYLLABLE MEO - if (0xba38 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xba54) { - // Lo [27] HANGUL SYLLABLE MEOG..HANGUL SYLLABLE MEOH - if (0xba39 <= code && code <= 0xba53) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE ME - if (0xba54 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - } - else { - if (code < 0xbcbc) { - if (code < 0xbb88) { - if (code < 0xbae1) { - if (code < 0xbaa8) { - if (code < 0xba71) { - if (code < 0xba70) { - // Lo [27] HANGUL SYLLABLE MEG..HANGUL SYLLABLE MEH - if (0xba55 <= code && code <= 0xba6f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE MYEO - if (0xba70 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xba8c) { - // Lo [27] HANGUL SYLLABLE MYEOG..HANGUL SYLLABLE MYEOH - if (0xba71 <= code && code <= 0xba8b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xba8d) { - // Lo HANGUL SYLLABLE MYE - if (0xba8c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MYEG..HANGUL SYLLABLE MYEH - if (0xba8d <= code && code <= 0xbaa7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xbac4) { - if (code < 0xbaa9) { - // Lo HANGUL SYLLABLE MO - if (0xbaa8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MOG..HANGUL SYLLABLE MOH - if (0xbaa9 <= code && code <= 0xbac3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xbac5) { - // Lo HANGUL SYLLABLE MWA - if (0xbac4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbae0) { - // Lo [27] HANGUL SYLLABLE MWAG..HANGUL SYLLABLE MWAH - if (0xbac5 <= code && code <= 0xbadf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE MWAE - if (0xbae0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xbb34) { - if (code < 0xbafd) { - if (code < 0xbafc) { - // Lo [27] HANGUL SYLLABLE MWAEG..HANGUL SYLLABLE MWAEH - if (0xbae1 <= code && code <= 0xbafb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE MOE - if (0xbafc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xbb18) { - // Lo [27] HANGUL SYLLABLE MOEG..HANGUL SYLLABLE MOEH - if (0xbafd <= code && code <= 0xbb17) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbb19) { - // Lo HANGUL SYLLABLE MYO - if (0xbb18 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MYOG..HANGUL SYLLABLE MYOH - if (0xbb19 <= code && code <= 0xbb33) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xbb51) { - if (code < 0xbb35) { - // Lo HANGUL SYLLABLE MU - if (0xbb34 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbb50) { - // Lo [27] HANGUL SYLLABLE MUG..HANGUL SYLLABLE MUH - if (0xbb35 <= code && code <= 0xbb4f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE MWEO - if (0xbb50 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xbb6c) { - // Lo [27] HANGUL SYLLABLE MWEOG..HANGUL SYLLABLE MWEOH - if (0xbb51 <= code && code <= 0xbb6b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbb6d) { - // Lo HANGUL SYLLABLE MWE - if (0xbb6c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MWEG..HANGUL SYLLABLE MWEH - if (0xbb6d <= code && code <= 0xbb87) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xbc15) { - if (code < 0xbbc1) { - if (code < 0xbba4) { - if (code < 0xbb89) { - // Lo HANGUL SYLLABLE MWI - if (0xbb88 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MWIG..HANGUL SYLLABLE MWIH - if (0xbb89 <= code && code <= 0xbba3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xbba5) { - // Lo HANGUL SYLLABLE MYU - if (0xbba4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbbc0) { - // Lo [27] HANGUL SYLLABLE MYUG..HANGUL SYLLABLE MYUH - if (0xbba5 <= code && code <= 0xbbbf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE MEU - if (0xbbc0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xbbf8) { - if (code < 0xbbdc) { - // Lo [27] HANGUL SYLLABLE MEUG..HANGUL SYLLABLE MEUH - if (0xbbc1 <= code && code <= 0xbbdb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbbdd) { - // Lo HANGUL SYLLABLE MYI - if (0xbbdc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE MYIG..HANGUL SYLLABLE MYIH - if (0xbbdd <= code && code <= 0xbbf7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xbbf9) { - // Lo HANGUL SYLLABLE MI - if (0xbbf8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbc14) { - // Lo [27] HANGUL SYLLABLE MIG..HANGUL SYLLABLE MIH - if (0xbbf9 <= code && code <= 0xbc13) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BA - if (0xbc14 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xbc68) { - if (code < 0xbc31) { - if (code < 0xbc30) { - // Lo [27] HANGUL SYLLABLE BAG..HANGUL SYLLABLE BAH - if (0xbc15 <= code && code <= 0xbc2f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BAE - if (0xbc30 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xbc4c) { - // Lo [27] HANGUL SYLLABLE BAEG..HANGUL SYLLABLE BAEH - if (0xbc31 <= code && code <= 0xbc4b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbc4d) { - // Lo HANGUL SYLLABLE BYA - if (0xbc4c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BYAG..HANGUL SYLLABLE BYAH - if (0xbc4d <= code && code <= 0xbc67) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xbc85) { - if (code < 0xbc69) { - // Lo HANGUL SYLLABLE BYAE - if (0xbc68 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbc84) { - // Lo [27] HANGUL SYLLABLE BYAEG..HANGUL SYLLABLE BYAEH - if (0xbc69 <= code && code <= 0xbc83) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BEO - if (0xbc84 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xbca0) { - // Lo [27] HANGUL SYLLABLE BEOG..HANGUL SYLLABLE BEOH - if (0xbc85 <= code && code <= 0xbc9f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbca1) { - // Lo HANGUL SYLLABLE BE - if (0xbca0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BEG..HANGUL SYLLABLE BEH - if (0xbca1 <= code && code <= 0xbcbb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - else { - if (code < 0xbdd5) { - if (code < 0xbd48) { - if (code < 0xbcf5) { - if (code < 0xbcd8) { - if (code < 0xbcbd) { - // Lo HANGUL SYLLABLE BYEO - if (0xbcbc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BYEOG..HANGUL SYLLABLE BYEOH - if (0xbcbd <= code && code <= 0xbcd7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xbcd9) { - // Lo HANGUL SYLLABLE BYE - if (0xbcd8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbcf4) { - // Lo [27] HANGUL SYLLABLE BYEG..HANGUL SYLLABLE BYEH - if (0xbcd9 <= code && code <= 0xbcf3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BO - if (0xbcf4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xbd11) { - if (code < 0xbd10) { - // Lo [27] HANGUL SYLLABLE BOG..HANGUL SYLLABLE BOH - if (0xbcf5 <= code && code <= 0xbd0f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BWA - if (0xbd10 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xbd2c) { - // Lo [27] HANGUL SYLLABLE BWAG..HANGUL SYLLABLE BWAH - if (0xbd11 <= code && code <= 0xbd2b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbd2d) { - // Lo HANGUL SYLLABLE BWAE - if (0xbd2c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BWAEG..HANGUL SYLLABLE BWAEH - if (0xbd2d <= code && code <= 0xbd47) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xbd81) { - if (code < 0xbd64) { - if (code < 0xbd49) { - // Lo HANGUL SYLLABLE BOE - if (0xbd48 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BOEG..HANGUL SYLLABLE BOEH - if (0xbd49 <= code && code <= 0xbd63) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xbd65) { - // Lo HANGUL SYLLABLE BYO - if (0xbd64 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbd80) { - // Lo [27] HANGUL SYLLABLE BYOG..HANGUL SYLLABLE BYOH - if (0xbd65 <= code && code <= 0xbd7f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BU - if (0xbd80 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xbdb8) { - if (code < 0xbd9c) { - // Lo [27] HANGUL SYLLABLE BUG..HANGUL SYLLABLE BUH - if (0xbd81 <= code && code <= 0xbd9b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbd9d) { - // Lo HANGUL SYLLABLE BWEO - if (0xbd9c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BWEOG..HANGUL SYLLABLE BWEOH - if (0xbd9d <= code && code <= 0xbdb7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xbdb9) { - // Lo HANGUL SYLLABLE BWE - if (0xbdb8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbdd4) { - // Lo [27] HANGUL SYLLABLE BWEG..HANGUL SYLLABLE BWEH - if (0xbdb9 <= code && code <= 0xbdd3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BWI - if (0xbdd4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xbe7c) { - if (code < 0xbe28) { - if (code < 0xbdf1) { - if (code < 0xbdf0) { - // Lo [27] HANGUL SYLLABLE BWIG..HANGUL SYLLABLE BWIH - if (0xbdd5 <= code && code <= 0xbdef) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BYU - if (0xbdf0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xbe0c) { - // Lo [27] HANGUL SYLLABLE BYUG..HANGUL SYLLABLE BYUH - if (0xbdf1 <= code && code <= 0xbe0b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbe0d) { - // Lo HANGUL SYLLABLE BEU - if (0xbe0c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BEUG..HANGUL SYLLABLE BEUH - if (0xbe0d <= code && code <= 0xbe27) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xbe45) { - if (code < 0xbe29) { - // Lo HANGUL SYLLABLE BYI - if (0xbe28 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbe44) { - // Lo [27] HANGUL SYLLABLE BYIG..HANGUL SYLLABLE BYIH - if (0xbe29 <= code && code <= 0xbe43) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BI - if (0xbe44 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xbe60) { - // Lo [27] HANGUL SYLLABLE BIG..HANGUL SYLLABLE BIH - if (0xbe45 <= code && code <= 0xbe5f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbe61) { - // Lo HANGUL SYLLABLE BBA - if (0xbe60 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBAG..HANGUL SYLLABLE BBAH - if (0xbe61 <= code && code <= 0xbe7b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xbeb5) { - if (code < 0xbe98) { - if (code < 0xbe7d) { - // Lo HANGUL SYLLABLE BBAE - if (0xbe7c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBAEG..HANGUL SYLLABLE BBAEH - if (0xbe7d <= code && code <= 0xbe97) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xbe99) { - // Lo HANGUL SYLLABLE BBYA - if (0xbe98 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbeb4) { - // Lo [27] HANGUL SYLLABLE BBYAG..HANGUL SYLLABLE BBYAH - if (0xbe99 <= code && code <= 0xbeb3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBYAE - if (0xbeb4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xbeec) { - if (code < 0xbed0) { - // Lo [27] HANGUL SYLLABLE BBYAEG..HANGUL SYLLABLE BBYAEH - if (0xbeb5 <= code && code <= 0xbecf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbed1) { - // Lo HANGUL SYLLABLE BBEO - if (0xbed0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBEOG..HANGUL SYLLABLE BBEOH - if (0xbed1 <= code && code <= 0xbeeb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xbeed) { - // Lo HANGUL SYLLABLE BBE - if (0xbeec === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbf08) { - // Lo [27] HANGUL SYLLABLE BBEG..HANGUL SYLLABLE BBEH - if (0xbeed <= code && code <= 0xbf07) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBYEO - if (0xbf08 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0xd1d8) { - if (code < 0xc870) { - if (code < 0xc3bc) { - if (code < 0xc155) { - if (code < 0xc03c) { - if (code < 0xbf95) { - if (code < 0xbf5c) { - if (code < 0xbf25) { - if (code < 0xbf24) { - // Lo [27] HANGUL SYLLABLE BBYEOG..HANGUL SYLLABLE BBYEOH - if (0xbf09 <= code && code <= 0xbf23) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBYE - if (0xbf24 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xbf40) { - // Lo [27] HANGUL SYLLABLE BBYEG..HANGUL SYLLABLE BBYEH - if (0xbf25 <= code && code <= 0xbf3f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbf41) { - // Lo HANGUL SYLLABLE BBO - if (0xbf40 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBOG..HANGUL SYLLABLE BBOH - if (0xbf41 <= code && code <= 0xbf5b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xbf78) { - if (code < 0xbf5d) { - // Lo HANGUL SYLLABLE BBWA - if (0xbf5c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBWAG..HANGUL SYLLABLE BBWAH - if (0xbf5d <= code && code <= 0xbf77) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xbf79) { - // Lo HANGUL SYLLABLE BBWAE - if (0xbf78 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xbf94) { - // Lo [27] HANGUL SYLLABLE BBWAEG..HANGUL SYLLABLE BBWAEH - if (0xbf79 <= code && code <= 0xbf93) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBOE - if (0xbf94 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xbfe8) { - if (code < 0xbfb1) { - if (code < 0xbfb0) { - // Lo [27] HANGUL SYLLABLE BBOEG..HANGUL SYLLABLE BBOEH - if (0xbf95 <= code && code <= 0xbfaf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBYO - if (0xbfb0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xbfcc) { - // Lo [27] HANGUL SYLLABLE BBYOG..HANGUL SYLLABLE BBYOH - if (0xbfb1 <= code && code <= 0xbfcb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xbfcd) { - // Lo HANGUL SYLLABLE BBU - if (0xbfcc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBUG..HANGUL SYLLABLE BBUH - if (0xbfcd <= code && code <= 0xbfe7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc005) { - if (code < 0xbfe9) { - // Lo HANGUL SYLLABLE BBWEO - if (0xbfe8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc004) { - // Lo [27] HANGUL SYLLABLE BBWEOG..HANGUL SYLLABLE BBWEOH - if (0xbfe9 <= code && code <= 0xc003) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBWE - if (0xc004 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xc020) { - // Lo [27] HANGUL SYLLABLE BBWEG..HANGUL SYLLABLE BBWEH - if (0xc005 <= code && code <= 0xc01f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc021) { - // Lo HANGUL SYLLABLE BBWI - if (0xc020 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBWIG..HANGUL SYLLABLE BBWIH - if (0xc021 <= code && code <= 0xc03b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xc0c8) { - if (code < 0xc075) { - if (code < 0xc058) { - if (code < 0xc03d) { - // Lo HANGUL SYLLABLE BBYU - if (0xc03c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE BBYUG..HANGUL SYLLABLE BBYUH - if (0xc03d <= code && code <= 0xc057) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc059) { - // Lo HANGUL SYLLABLE BBEU - if (0xc058 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc074) { - // Lo [27] HANGUL SYLLABLE BBEUG..HANGUL SYLLABLE BBEUH - if (0xc059 <= code && code <= 0xc073) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBYI - if (0xc074 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc091) { - if (code < 0xc090) { - // Lo [27] HANGUL SYLLABLE BBYIG..HANGUL SYLLABLE BBYIH - if (0xc075 <= code && code <= 0xc08f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE BBI - if (0xc090 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc0ac) { - // Lo [27] HANGUL SYLLABLE BBIG..HANGUL SYLLABLE BBIH - if (0xc091 <= code && code <= 0xc0ab) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc0ad) { - // Lo HANGUL SYLLABLE SA - if (0xc0ac === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SAG..HANGUL SYLLABLE SAH - if (0xc0ad <= code && code <= 0xc0c7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xc101) { - if (code < 0xc0e4) { - if (code < 0xc0c9) { - // Lo HANGUL SYLLABLE SAE - if (0xc0c8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SAEG..HANGUL SYLLABLE SAEH - if (0xc0c9 <= code && code <= 0xc0e3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc0e5) { - // Lo HANGUL SYLLABLE SYA - if (0xc0e4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc100) { - // Lo [27] HANGUL SYLLABLE SYAG..HANGUL SYLLABLE SYAH - if (0xc0e5 <= code && code <= 0xc0ff) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SYAE - if (0xc100 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc138) { - if (code < 0xc11c) { - // Lo [27] HANGUL SYLLABLE SYAEG..HANGUL SYLLABLE SYAEH - if (0xc101 <= code && code <= 0xc11b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc11d) { - // Lo HANGUL SYLLABLE SEO - if (0xc11c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SEOG..HANGUL SYLLABLE SEOH - if (0xc11d <= code && code <= 0xc137) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xc139) { - // Lo HANGUL SYLLABLE SE - if (0xc138 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc154) { - // Lo [27] HANGUL SYLLABLE SEG..HANGUL SYLLABLE SEH - if (0xc139 <= code && code <= 0xc153) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SYEO - if (0xc154 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - else { - if (code < 0xc288) { - if (code < 0xc1e1) { - if (code < 0xc1a8) { - if (code < 0xc171) { - if (code < 0xc170) { - // Lo [27] HANGUL SYLLABLE SYEOG..HANGUL SYLLABLE SYEOH - if (0xc155 <= code && code <= 0xc16f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SYE - if (0xc170 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc18c) { - // Lo [27] HANGUL SYLLABLE SYEG..HANGUL SYLLABLE SYEH - if (0xc171 <= code && code <= 0xc18b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc18d) { - // Lo HANGUL SYLLABLE SO - if (0xc18c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SOG..HANGUL SYLLABLE SOH - if (0xc18d <= code && code <= 0xc1a7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc1c4) { - if (code < 0xc1a9) { - // Lo HANGUL SYLLABLE SWA - if (0xc1a8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SWAG..HANGUL SYLLABLE SWAH - if (0xc1a9 <= code && code <= 0xc1c3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc1c5) { - // Lo HANGUL SYLLABLE SWAE - if (0xc1c4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc1e0) { - // Lo [27] HANGUL SYLLABLE SWAEG..HANGUL SYLLABLE SWAEH - if (0xc1c5 <= code && code <= 0xc1df) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SOE - if (0xc1e0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xc234) { - if (code < 0xc1fd) { - if (code < 0xc1fc) { - // Lo [27] HANGUL SYLLABLE SOEG..HANGUL SYLLABLE SOEH - if (0xc1e1 <= code && code <= 0xc1fb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SYO - if (0xc1fc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc218) { - // Lo [27] HANGUL SYLLABLE SYOG..HANGUL SYLLABLE SYOH - if (0xc1fd <= code && code <= 0xc217) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc219) { - // Lo HANGUL SYLLABLE SU - if (0xc218 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SUG..HANGUL SYLLABLE SUH - if (0xc219 <= code && code <= 0xc233) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc251) { - if (code < 0xc235) { - // Lo HANGUL SYLLABLE SWEO - if (0xc234 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc250) { - // Lo [27] HANGUL SYLLABLE SWEOG..HANGUL SYLLABLE SWEOH - if (0xc235 <= code && code <= 0xc24f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SWE - if (0xc250 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xc26c) { - // Lo [27] HANGUL SYLLABLE SWEG..HANGUL SYLLABLE SWEH - if (0xc251 <= code && code <= 0xc26b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc26d) { - // Lo HANGUL SYLLABLE SWI - if (0xc26c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SWIG..HANGUL SYLLABLE SWIH - if (0xc26d <= code && code <= 0xc287) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xc315) { - if (code < 0xc2c1) { - if (code < 0xc2a4) { - if (code < 0xc289) { - // Lo HANGUL SYLLABLE SYU - if (0xc288 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SYUG..HANGUL SYLLABLE SYUH - if (0xc289 <= code && code <= 0xc2a3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc2a5) { - // Lo HANGUL SYLLABLE SEU - if (0xc2a4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc2c0) { - // Lo [27] HANGUL SYLLABLE SEUG..HANGUL SYLLABLE SEUH - if (0xc2a5 <= code && code <= 0xc2bf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SYI - if (0xc2c0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc2f8) { - if (code < 0xc2dc) { - // Lo [27] HANGUL SYLLABLE SYIG..HANGUL SYLLABLE SYIH - if (0xc2c1 <= code && code <= 0xc2db) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc2dd) { - // Lo HANGUL SYLLABLE SI - if (0xc2dc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SIG..HANGUL SYLLABLE SIH - if (0xc2dd <= code && code <= 0xc2f7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xc2f9) { - // Lo HANGUL SYLLABLE SSA - if (0xc2f8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc314) { - // Lo [27] HANGUL SYLLABLE SSAG..HANGUL SYLLABLE SSAH - if (0xc2f9 <= code && code <= 0xc313) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSAE - if (0xc314 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xc368) { - if (code < 0xc331) { - if (code < 0xc330) { - // Lo [27] HANGUL SYLLABLE SSAEG..HANGUL SYLLABLE SSAEH - if (0xc315 <= code && code <= 0xc32f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSYA - if (0xc330 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc34c) { - // Lo [27] HANGUL SYLLABLE SSYAG..HANGUL SYLLABLE SSYAH - if (0xc331 <= code && code <= 0xc34b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc34d) { - // Lo HANGUL SYLLABLE SSYAE - if (0xc34c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSYAEG..HANGUL SYLLABLE SSYAEH - if (0xc34d <= code && code <= 0xc367) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc385) { - if (code < 0xc369) { - // Lo HANGUL SYLLABLE SSEO - if (0xc368 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc384) { - // Lo [27] HANGUL SYLLABLE SSEOG..HANGUL SYLLABLE SSEOH - if (0xc369 <= code && code <= 0xc383) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSE - if (0xc384 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xc3a0) { - // Lo [27] HANGUL SYLLABLE SSEG..HANGUL SYLLABLE SSEH - if (0xc385 <= code && code <= 0xc39f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc3a1) { - // Lo HANGUL SYLLABLE SSYEO - if (0xc3a0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSYEOG..HANGUL SYLLABLE SSYEOH - if (0xc3a1 <= code && code <= 0xc3bb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - } - else { - if (code < 0xc609) { - if (code < 0xc4d5) { - if (code < 0xc448) { - if (code < 0xc3f5) { - if (code < 0xc3d8) { - if (code < 0xc3bd) { - // Lo HANGUL SYLLABLE SSYE - if (0xc3bc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSYEG..HANGUL SYLLABLE SSYEH - if (0xc3bd <= code && code <= 0xc3d7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc3d9) { - // Lo HANGUL SYLLABLE SSO - if (0xc3d8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc3f4) { - // Lo [27] HANGUL SYLLABLE SSOG..HANGUL SYLLABLE SSOH - if (0xc3d9 <= code && code <= 0xc3f3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSWA - if (0xc3f4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc411) { - if (code < 0xc410) { - // Lo [27] HANGUL SYLLABLE SSWAG..HANGUL SYLLABLE SSWAH - if (0xc3f5 <= code && code <= 0xc40f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSWAE - if (0xc410 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc42c) { - // Lo [27] HANGUL SYLLABLE SSWAEG..HANGUL SYLLABLE SSWAEH - if (0xc411 <= code && code <= 0xc42b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc42d) { - // Lo HANGUL SYLLABLE SSOE - if (0xc42c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSOEG..HANGUL SYLLABLE SSOEH - if (0xc42d <= code && code <= 0xc447) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xc481) { - if (code < 0xc464) { - if (code < 0xc449) { - // Lo HANGUL SYLLABLE SSYO - if (0xc448 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSYOG..HANGUL SYLLABLE SSYOH - if (0xc449 <= code && code <= 0xc463) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc465) { - // Lo HANGUL SYLLABLE SSU - if (0xc464 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc480) { - // Lo [27] HANGUL SYLLABLE SSUG..HANGUL SYLLABLE SSUH - if (0xc465 <= code && code <= 0xc47f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSWEO - if (0xc480 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc4b8) { - if (code < 0xc49c) { - // Lo [27] HANGUL SYLLABLE SSWEOG..HANGUL SYLLABLE SSWEOH - if (0xc481 <= code && code <= 0xc49b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc49d) { - // Lo HANGUL SYLLABLE SSWE - if (0xc49c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSWEG..HANGUL SYLLABLE SSWEH - if (0xc49d <= code && code <= 0xc4b7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xc4b9) { - // Lo HANGUL SYLLABLE SSWI - if (0xc4b8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc4d4) { - // Lo [27] HANGUL SYLLABLE SSWIG..HANGUL SYLLABLE SSWIH - if (0xc4b9 <= code && code <= 0xc4d3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSYU - if (0xc4d4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xc57c) { - if (code < 0xc528) { - if (code < 0xc4f1) { - if (code < 0xc4f0) { - // Lo [27] HANGUL SYLLABLE SSYUG..HANGUL SYLLABLE SSYUH - if (0xc4d5 <= code && code <= 0xc4ef) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE SSEU - if (0xc4f0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc50c) { - // Lo [27] HANGUL SYLLABLE SSEUG..HANGUL SYLLABLE SSEUH - if (0xc4f1 <= code && code <= 0xc50b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc50d) { - // Lo HANGUL SYLLABLE SSYI - if (0xc50c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE SSYIG..HANGUL SYLLABLE SSYIH - if (0xc50d <= code && code <= 0xc527) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc545) { - if (code < 0xc529) { - // Lo HANGUL SYLLABLE SSI - if (0xc528 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc544) { - // Lo [27] HANGUL SYLLABLE SSIG..HANGUL SYLLABLE SSIH - if (0xc529 <= code && code <= 0xc543) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE A - if (0xc544 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xc560) { - // Lo [27] HANGUL SYLLABLE AG..HANGUL SYLLABLE AH - if (0xc545 <= code && code <= 0xc55f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc561) { - // Lo HANGUL SYLLABLE AE - if (0xc560 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE AEG..HANGUL SYLLABLE AEH - if (0xc561 <= code && code <= 0xc57b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xc5b5) { - if (code < 0xc598) { - if (code < 0xc57d) { - // Lo HANGUL SYLLABLE YA - if (0xc57c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE YAG..HANGUL SYLLABLE YAH - if (0xc57d <= code && code <= 0xc597) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc599) { - // Lo HANGUL SYLLABLE YAE - if (0xc598 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc5b4) { - // Lo [27] HANGUL SYLLABLE YAEG..HANGUL SYLLABLE YAEH - if (0xc599 <= code && code <= 0xc5b3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE EO - if (0xc5b4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc5ec) { - if (code < 0xc5d0) { - // Lo [27] HANGUL SYLLABLE EOG..HANGUL SYLLABLE EOH - if (0xc5b5 <= code && code <= 0xc5cf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc5d1) { - // Lo HANGUL SYLLABLE E - if (0xc5d0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE EG..HANGUL SYLLABLE EH - if (0xc5d1 <= code && code <= 0xc5eb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xc5ed) { - // Lo HANGUL SYLLABLE YEO - if (0xc5ec === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc608) { - // Lo [27] HANGUL SYLLABLE YEOG..HANGUL SYLLABLE YEOH - if (0xc5ed <= code && code <= 0xc607) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE YE - if (0xc608 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - else { - if (code < 0xc73c) { - if (code < 0xc695) { - if (code < 0xc65c) { - if (code < 0xc625) { - if (code < 0xc624) { - // Lo [27] HANGUL SYLLABLE YEG..HANGUL SYLLABLE YEH - if (0xc609 <= code && code <= 0xc623) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE O - if (0xc624 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc640) { - // Lo [27] HANGUL SYLLABLE OG..HANGUL SYLLABLE OH - if (0xc625 <= code && code <= 0xc63f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc641) { - // Lo HANGUL SYLLABLE WA - if (0xc640 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE WAG..HANGUL SYLLABLE WAH - if (0xc641 <= code && code <= 0xc65b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc678) { - if (code < 0xc65d) { - // Lo HANGUL SYLLABLE WAE - if (0xc65c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE WAEG..HANGUL SYLLABLE WAEH - if (0xc65d <= code && code <= 0xc677) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc679) { - // Lo HANGUL SYLLABLE OE - if (0xc678 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc694) { - // Lo [27] HANGUL SYLLABLE OEG..HANGUL SYLLABLE OEH - if (0xc679 <= code && code <= 0xc693) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE YO - if (0xc694 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xc6e8) { - if (code < 0xc6b1) { - if (code < 0xc6b0) { - // Lo [27] HANGUL SYLLABLE YOG..HANGUL SYLLABLE YOH - if (0xc695 <= code && code <= 0xc6af) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE U - if (0xc6b0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc6cc) { - // Lo [27] HANGUL SYLLABLE UG..HANGUL SYLLABLE UH - if (0xc6b1 <= code && code <= 0xc6cb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc6cd) { - // Lo HANGUL SYLLABLE WEO - if (0xc6cc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE WEOG..HANGUL SYLLABLE WEOH - if (0xc6cd <= code && code <= 0xc6e7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc705) { - if (code < 0xc6e9) { - // Lo HANGUL SYLLABLE WE - if (0xc6e8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc704) { - // Lo [27] HANGUL SYLLABLE WEG..HANGUL SYLLABLE WEH - if (0xc6e9 <= code && code <= 0xc703) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE WI - if (0xc704 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xc720) { - // Lo [27] HANGUL SYLLABLE WIG..HANGUL SYLLABLE WIH - if (0xc705 <= code && code <= 0xc71f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc721) { - // Lo HANGUL SYLLABLE YU - if (0xc720 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE YUG..HANGUL SYLLABLE YUH - if (0xc721 <= code && code <= 0xc73b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xc7c9) { - if (code < 0xc775) { - if (code < 0xc758) { - if (code < 0xc73d) { - // Lo HANGUL SYLLABLE EU - if (0xc73c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE EUG..HANGUL SYLLABLE EUH - if (0xc73d <= code && code <= 0xc757) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc759) { - // Lo HANGUL SYLLABLE YI - if (0xc758 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc774) { - // Lo [27] HANGUL SYLLABLE YIG..HANGUL SYLLABLE YIH - if (0xc759 <= code && code <= 0xc773) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE I - if (0xc774 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc7ac) { - if (code < 0xc790) { - // Lo [27] HANGUL SYLLABLE IG..HANGUL SYLLABLE IH - if (0xc775 <= code && code <= 0xc78f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc791) { - // Lo HANGUL SYLLABLE JA - if (0xc790 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JAG..HANGUL SYLLABLE JAH - if (0xc791 <= code && code <= 0xc7ab) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xc7ad) { - // Lo HANGUL SYLLABLE JAE - if (0xc7ac === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc7c8) { - // Lo [27] HANGUL SYLLABLE JAEG..HANGUL SYLLABLE JAEH - if (0xc7ad <= code && code <= 0xc7c7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JYA - if (0xc7c8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xc81c) { - if (code < 0xc7e5) { - if (code < 0xc7e4) { - // Lo [27] HANGUL SYLLABLE JYAG..HANGUL SYLLABLE JYAH - if (0xc7c9 <= code && code <= 0xc7e3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JYAE - if (0xc7e4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc800) { - // Lo [27] HANGUL SYLLABLE JYAEG..HANGUL SYLLABLE JYAEH - if (0xc7e5 <= code && code <= 0xc7ff) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc801) { - // Lo HANGUL SYLLABLE JEO - if (0xc800 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JEOG..HANGUL SYLLABLE JEOH - if (0xc801 <= code && code <= 0xc81b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc839) { - if (code < 0xc81d) { - // Lo HANGUL SYLLABLE JE - if (0xc81c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc838) { - // Lo [27] HANGUL SYLLABLE JEG..HANGUL SYLLABLE JEH - if (0xc81d <= code && code <= 0xc837) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JYEO - if (0xc838 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xc854) { - // Lo [27] HANGUL SYLLABLE JYEOG..HANGUL SYLLABLE JYEOH - if (0xc839 <= code && code <= 0xc853) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc855) { - // Lo HANGUL SYLLABLE JYE - if (0xc854 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JYEG..HANGUL SYLLABLE JYEH - if (0xc855 <= code && code <= 0xc86f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0xcd24) { - if (code < 0xcabd) { - if (code < 0xc989) { - if (code < 0xc8fc) { - if (code < 0xc8a9) { - if (code < 0xc88c) { - if (code < 0xc871) { - // Lo HANGUL SYLLABLE JO - if (0xc870 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JOG..HANGUL SYLLABLE JOH - if (0xc871 <= code && code <= 0xc88b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc88d) { - // Lo HANGUL SYLLABLE JWA - if (0xc88c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc8a8) { - // Lo [27] HANGUL SYLLABLE JWAG..HANGUL SYLLABLE JWAH - if (0xc88d <= code && code <= 0xc8a7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JWAE - if (0xc8a8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc8c5) { - if (code < 0xc8c4) { - // Lo [27] HANGUL SYLLABLE JWAEG..HANGUL SYLLABLE JWAEH - if (0xc8a9 <= code && code <= 0xc8c3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JOE - if (0xc8c4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc8e0) { - // Lo [27] HANGUL SYLLABLE JOEG..HANGUL SYLLABLE JOEH - if (0xc8c5 <= code && code <= 0xc8df) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc8e1) { - // Lo HANGUL SYLLABLE JYO - if (0xc8e0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JYOG..HANGUL SYLLABLE JYOH - if (0xc8e1 <= code && code <= 0xc8fb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xc935) { - if (code < 0xc918) { - if (code < 0xc8fd) { - // Lo HANGUL SYLLABLE JU - if (0xc8fc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JUG..HANGUL SYLLABLE JUH - if (0xc8fd <= code && code <= 0xc917) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xc919) { - // Lo HANGUL SYLLABLE JWEO - if (0xc918 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc934) { - // Lo [27] HANGUL SYLLABLE JWEOG..HANGUL SYLLABLE JWEOH - if (0xc919 <= code && code <= 0xc933) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JWE - if (0xc934 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xc96c) { - if (code < 0xc950) { - // Lo [27] HANGUL SYLLABLE JWEG..HANGUL SYLLABLE JWEH - if (0xc935 <= code && code <= 0xc94f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc951) { - // Lo HANGUL SYLLABLE JWI - if (0xc950 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JWIG..HANGUL SYLLABLE JWIH - if (0xc951 <= code && code <= 0xc96b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xc96d) { - // Lo HANGUL SYLLABLE JYU - if (0xc96c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc988) { - // Lo [27] HANGUL SYLLABLE JYUG..HANGUL SYLLABLE JYUH - if (0xc96d <= code && code <= 0xc987) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JEU - if (0xc988 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xca30) { - if (code < 0xc9dc) { - if (code < 0xc9a5) { - if (code < 0xc9a4) { - // Lo [27] HANGUL SYLLABLE JEUG..HANGUL SYLLABLE JEUH - if (0xc989 <= code && code <= 0xc9a3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JYI - if (0xc9a4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xc9c0) { - // Lo [27] HANGUL SYLLABLE JYIG..HANGUL SYLLABLE JYIH - if (0xc9a5 <= code && code <= 0xc9bf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xc9c1) { - // Lo HANGUL SYLLABLE JI - if (0xc9c0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JIG..HANGUL SYLLABLE JIH - if (0xc9c1 <= code && code <= 0xc9db) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xc9f9) { - if (code < 0xc9dd) { - // Lo HANGUL SYLLABLE JJA - if (0xc9dc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xc9f8) { - // Lo [27] HANGUL SYLLABLE JJAG..HANGUL SYLLABLE JJAH - if (0xc9dd <= code && code <= 0xc9f7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJAE - if (0xc9f8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xca14) { - // Lo [27] HANGUL SYLLABLE JJAEG..HANGUL SYLLABLE JJAEH - if (0xc9f9 <= code && code <= 0xca13) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xca15) { - // Lo HANGUL SYLLABLE JJYA - if (0xca14 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJYAG..HANGUL SYLLABLE JJYAH - if (0xca15 <= code && code <= 0xca2f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xca69) { - if (code < 0xca4c) { - if (code < 0xca31) { - // Lo HANGUL SYLLABLE JJYAE - if (0xca30 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJYAEG..HANGUL SYLLABLE JJYAEH - if (0xca31 <= code && code <= 0xca4b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xca4d) { - // Lo HANGUL SYLLABLE JJEO - if (0xca4c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xca68) { - // Lo [27] HANGUL SYLLABLE JJEOG..HANGUL SYLLABLE JJEOH - if (0xca4d <= code && code <= 0xca67) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJE - if (0xca68 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xcaa0) { - if (code < 0xca84) { - // Lo [27] HANGUL SYLLABLE JJEG..HANGUL SYLLABLE JJEH - if (0xca69 <= code && code <= 0xca83) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xca85) { - // Lo HANGUL SYLLABLE JJYEO - if (0xca84 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJYEOG..HANGUL SYLLABLE JJYEOH - if (0xca85 <= code && code <= 0xca9f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xcaa1) { - // Lo HANGUL SYLLABLE JJYE - if (0xcaa0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcabc) { - // Lo [27] HANGUL SYLLABLE JJYEG..HANGUL SYLLABLE JJYEH - if (0xcaa1 <= code && code <= 0xcabb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJO - if (0xcabc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - else { - if (code < 0xcbf0) { - if (code < 0xcb49) { - if (code < 0xcb10) { - if (code < 0xcad9) { - if (code < 0xcad8) { - // Lo [27] HANGUL SYLLABLE JJOG..HANGUL SYLLABLE JJOH - if (0xcabd <= code && code <= 0xcad7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJWA - if (0xcad8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xcaf4) { - // Lo [27] HANGUL SYLLABLE JJWAG..HANGUL SYLLABLE JJWAH - if (0xcad9 <= code && code <= 0xcaf3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcaf5) { - // Lo HANGUL SYLLABLE JJWAE - if (0xcaf4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJWAEG..HANGUL SYLLABLE JJWAEH - if (0xcaf5 <= code && code <= 0xcb0f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xcb2c) { - if (code < 0xcb11) { - // Lo HANGUL SYLLABLE JJOE - if (0xcb10 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJOEG..HANGUL SYLLABLE JJOEH - if (0xcb11 <= code && code <= 0xcb2b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xcb2d) { - // Lo HANGUL SYLLABLE JJYO - if (0xcb2c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcb48) { - // Lo [27] HANGUL SYLLABLE JJYOG..HANGUL SYLLABLE JJYOH - if (0xcb2d <= code && code <= 0xcb47) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJU - if (0xcb48 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xcb9c) { - if (code < 0xcb65) { - if (code < 0xcb64) { - // Lo [27] HANGUL SYLLABLE JJUG..HANGUL SYLLABLE JJUH - if (0xcb49 <= code && code <= 0xcb63) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJWEO - if (0xcb64 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xcb80) { - // Lo [27] HANGUL SYLLABLE JJWEOG..HANGUL SYLLABLE JJWEOH - if (0xcb65 <= code && code <= 0xcb7f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcb81) { - // Lo HANGUL SYLLABLE JJWE - if (0xcb80 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJWEG..HANGUL SYLLABLE JJWEH - if (0xcb81 <= code && code <= 0xcb9b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xcbb9) { - if (code < 0xcb9d) { - // Lo HANGUL SYLLABLE JJWI - if (0xcb9c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcbb8) { - // Lo [27] HANGUL SYLLABLE JJWIG..HANGUL SYLLABLE JJWIH - if (0xcb9d <= code && code <= 0xcbb7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE JJYU - if (0xcbb8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xcbd4) { - // Lo [27] HANGUL SYLLABLE JJYUG..HANGUL SYLLABLE JJYUH - if (0xcbb9 <= code && code <= 0xcbd3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcbd5) { - // Lo HANGUL SYLLABLE JJEU - if (0xcbd4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJEUG..HANGUL SYLLABLE JJEUH - if (0xcbd5 <= code && code <= 0xcbef) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xcc7d) { - if (code < 0xcc29) { - if (code < 0xcc0c) { - if (code < 0xcbf1) { - // Lo HANGUL SYLLABLE JJYI - if (0xcbf0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE JJYIG..HANGUL SYLLABLE JJYIH - if (0xcbf1 <= code && code <= 0xcc0b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xcc0d) { - // Lo HANGUL SYLLABLE JJI - if (0xcc0c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcc28) { - // Lo [27] HANGUL SYLLABLE JJIG..HANGUL SYLLABLE JJIH - if (0xcc0d <= code && code <= 0xcc27) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CA - if (0xcc28 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xcc60) { - if (code < 0xcc44) { - // Lo [27] HANGUL SYLLABLE CAG..HANGUL SYLLABLE CAH - if (0xcc29 <= code && code <= 0xcc43) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcc45) { - // Lo HANGUL SYLLABLE CAE - if (0xcc44 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE CAEG..HANGUL SYLLABLE CAEH - if (0xcc45 <= code && code <= 0xcc5f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xcc61) { - // Lo HANGUL SYLLABLE CYA - if (0xcc60 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcc7c) { - // Lo [27] HANGUL SYLLABLE CYAG..HANGUL SYLLABLE CYAH - if (0xcc61 <= code && code <= 0xcc7b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CYAE - if (0xcc7c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xccd0) { - if (code < 0xcc99) { - if (code < 0xcc98) { - // Lo [27] HANGUL SYLLABLE CYAEG..HANGUL SYLLABLE CYAEH - if (0xcc7d <= code && code <= 0xcc97) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CEO - if (0xcc98 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xccb4) { - // Lo [27] HANGUL SYLLABLE CEOG..HANGUL SYLLABLE CEOH - if (0xcc99 <= code && code <= 0xccb3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xccb5) { - // Lo HANGUL SYLLABLE CE - if (0xccb4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE CEG..HANGUL SYLLABLE CEH - if (0xccb5 <= code && code <= 0xcccf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xcced) { - if (code < 0xccd1) { - // Lo HANGUL SYLLABLE CYEO - if (0xccd0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xccec) { - // Lo [27] HANGUL SYLLABLE CYEOG..HANGUL SYLLABLE CYEOH - if (0xccd1 <= code && code <= 0xcceb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CYE - if (0xccec === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xcd08) { - // Lo [27] HANGUL SYLLABLE CYEG..HANGUL SYLLABLE CYEH - if (0xcced <= code && code <= 0xcd07) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcd09) { - // Lo HANGUL SYLLABLE CO - if (0xcd08 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE COG..HANGUL SYLLABLE COH - if (0xcd09 <= code && code <= 0xcd23) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - } - else { - if (code < 0xcf71) { - if (code < 0xce3d) { - if (code < 0xcdb0) { - if (code < 0xcd5d) { - if (code < 0xcd40) { - if (code < 0xcd25) { - // Lo HANGUL SYLLABLE CWA - if (0xcd24 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE CWAG..HANGUL SYLLABLE CWAH - if (0xcd25 <= code && code <= 0xcd3f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xcd41) { - // Lo HANGUL SYLLABLE CWAE - if (0xcd40 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcd5c) { - // Lo [27] HANGUL SYLLABLE CWAEG..HANGUL SYLLABLE CWAEH - if (0xcd41 <= code && code <= 0xcd5b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE COE - if (0xcd5c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xcd79) { - if (code < 0xcd78) { - // Lo [27] HANGUL SYLLABLE COEG..HANGUL SYLLABLE COEH - if (0xcd5d <= code && code <= 0xcd77) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CYO - if (0xcd78 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xcd94) { - // Lo [27] HANGUL SYLLABLE CYOG..HANGUL SYLLABLE CYOH - if (0xcd79 <= code && code <= 0xcd93) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcd95) { - // Lo HANGUL SYLLABLE CU - if (0xcd94 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE CUG..HANGUL SYLLABLE CUH - if (0xcd95 <= code && code <= 0xcdaf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xcde9) { - if (code < 0xcdcc) { - if (code < 0xcdb1) { - // Lo HANGUL SYLLABLE CWEO - if (0xcdb0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE CWEOG..HANGUL SYLLABLE CWEOH - if (0xcdb1 <= code && code <= 0xcdcb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xcdcd) { - // Lo HANGUL SYLLABLE CWE - if (0xcdcc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcde8) { - // Lo [27] HANGUL SYLLABLE CWEG..HANGUL SYLLABLE CWEH - if (0xcdcd <= code && code <= 0xcde7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CWI - if (0xcde8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xce20) { - if (code < 0xce04) { - // Lo [27] HANGUL SYLLABLE CWIG..HANGUL SYLLABLE CWIH - if (0xcde9 <= code && code <= 0xce03) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xce05) { - // Lo HANGUL SYLLABLE CYU - if (0xce04 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE CYUG..HANGUL SYLLABLE CYUH - if (0xce05 <= code && code <= 0xce1f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xce21) { - // Lo HANGUL SYLLABLE CEU - if (0xce20 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xce3c) { - // Lo [27] HANGUL SYLLABLE CEUG..HANGUL SYLLABLE CEUH - if (0xce21 <= code && code <= 0xce3b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CYI - if (0xce3c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xcee4) { - if (code < 0xce90) { - if (code < 0xce59) { - if (code < 0xce58) { - // Lo [27] HANGUL SYLLABLE CYIG..HANGUL SYLLABLE CYIH - if (0xce3d <= code && code <= 0xce57) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE CI - if (0xce58 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xce74) { - // Lo [27] HANGUL SYLLABLE CIG..HANGUL SYLLABLE CIH - if (0xce59 <= code && code <= 0xce73) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xce75) { - // Lo HANGUL SYLLABLE KA - if (0xce74 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KAG..HANGUL SYLLABLE KAH - if (0xce75 <= code && code <= 0xce8f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xcead) { - if (code < 0xce91) { - // Lo HANGUL SYLLABLE KAE - if (0xce90 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xceac) { - // Lo [27] HANGUL SYLLABLE KAEG..HANGUL SYLLABLE KAEH - if (0xce91 <= code && code <= 0xceab) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KYA - if (0xceac === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xcec8) { - // Lo [27] HANGUL SYLLABLE KYAG..HANGUL SYLLABLE KYAH - if (0xcead <= code && code <= 0xcec7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcec9) { - // Lo HANGUL SYLLABLE KYAE - if (0xcec8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KYAEG..HANGUL SYLLABLE KYAEH - if (0xcec9 <= code && code <= 0xcee3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xcf1d) { - if (code < 0xcf00) { - if (code < 0xcee5) { - // Lo HANGUL SYLLABLE KEO - if (0xcee4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KEOG..HANGUL SYLLABLE KEOH - if (0xcee5 <= code && code <= 0xceff) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xcf01) { - // Lo HANGUL SYLLABLE KE - if (0xcf00 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcf1c) { - // Lo [27] HANGUL SYLLABLE KEG..HANGUL SYLLABLE KEH - if (0xcf01 <= code && code <= 0xcf1b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KYEO - if (0xcf1c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xcf54) { - if (code < 0xcf38) { - // Lo [27] HANGUL SYLLABLE KYEOG..HANGUL SYLLABLE KYEOH - if (0xcf1d <= code && code <= 0xcf37) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcf39) { - // Lo HANGUL SYLLABLE KYE - if (0xcf38 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KYEG..HANGUL SYLLABLE KYEH - if (0xcf39 <= code && code <= 0xcf53) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xcf55) { - // Lo HANGUL SYLLABLE KO - if (0xcf54 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcf70) { - // Lo [27] HANGUL SYLLABLE KOG..HANGUL SYLLABLE KOH - if (0xcf55 <= code && code <= 0xcf6f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KWA - if (0xcf70 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - else { - if (code < 0xd0a4) { - if (code < 0xcffd) { - if (code < 0xcfc4) { - if (code < 0xcf8d) { - if (code < 0xcf8c) { - // Lo [27] HANGUL SYLLABLE KWAG..HANGUL SYLLABLE KWAH - if (0xcf71 <= code && code <= 0xcf8b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KWAE - if (0xcf8c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xcfa8) { - // Lo [27] HANGUL SYLLABLE KWAEG..HANGUL SYLLABLE KWAEH - if (0xcf8d <= code && code <= 0xcfa7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xcfa9) { - // Lo HANGUL SYLLABLE KOE - if (0xcfa8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KOEG..HANGUL SYLLABLE KOEH - if (0xcfa9 <= code && code <= 0xcfc3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xcfe0) { - if (code < 0xcfc5) { - // Lo HANGUL SYLLABLE KYO - if (0xcfc4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KYOG..HANGUL SYLLABLE KYOH - if (0xcfc5 <= code && code <= 0xcfdf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xcfe1) { - // Lo HANGUL SYLLABLE KU - if (0xcfe0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xcffc) { - // Lo [27] HANGUL SYLLABLE KUG..HANGUL SYLLABLE KUH - if (0xcfe1 <= code && code <= 0xcffb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KWEO - if (0xcffc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xd050) { - if (code < 0xd019) { - if (code < 0xd018) { - // Lo [27] HANGUL SYLLABLE KWEOG..HANGUL SYLLABLE KWEOH - if (0xcffd <= code && code <= 0xd017) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KWE - if (0xd018 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd034) { - // Lo [27] HANGUL SYLLABLE KWEG..HANGUL SYLLABLE KWEH - if (0xd019 <= code && code <= 0xd033) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd035) { - // Lo HANGUL SYLLABLE KWI - if (0xd034 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KWIG..HANGUL SYLLABLE KWIH - if (0xd035 <= code && code <= 0xd04f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd06d) { - if (code < 0xd051) { - // Lo HANGUL SYLLABLE KYU - if (0xd050 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd06c) { - // Lo [27] HANGUL SYLLABLE KYUG..HANGUL SYLLABLE KYUH - if (0xd051 <= code && code <= 0xd06b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE KEU - if (0xd06c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xd088) { - // Lo [27] HANGUL SYLLABLE KEUG..HANGUL SYLLABLE KEUH - if (0xd06d <= code && code <= 0xd087) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd089) { - // Lo HANGUL SYLLABLE KYI - if (0xd088 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KYIG..HANGUL SYLLABLE KYIH - if (0xd089 <= code && code <= 0xd0a3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0xd131) { - if (code < 0xd0dd) { - if (code < 0xd0c0) { - if (code < 0xd0a5) { - // Lo HANGUL SYLLABLE KI - if (0xd0a4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE KIG..HANGUL SYLLABLE KIH - if (0xd0a5 <= code && code <= 0xd0bf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd0c1) { - // Lo HANGUL SYLLABLE TA - if (0xd0c0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd0dc) { - // Lo [27] HANGUL SYLLABLE TAG..HANGUL SYLLABLE TAH - if (0xd0c1 <= code && code <= 0xd0db) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TAE - if (0xd0dc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xd114) { - if (code < 0xd0f8) { - // Lo [27] HANGUL SYLLABLE TAEG..HANGUL SYLLABLE TAEH - if (0xd0dd <= code && code <= 0xd0f7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd0f9) { - // Lo HANGUL SYLLABLE TYA - if (0xd0f8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TYAG..HANGUL SYLLABLE TYAH - if (0xd0f9 <= code && code <= 0xd113) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xd115) { - // Lo HANGUL SYLLABLE TYAE - if (0xd114 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd130) { - // Lo [27] HANGUL SYLLABLE TYAEG..HANGUL SYLLABLE TYAEH - if (0xd115 <= code && code <= 0xd12f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TEO - if (0xd130 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xd184) { - if (code < 0xd14d) { - if (code < 0xd14c) { - // Lo [27] HANGUL SYLLABLE TEOG..HANGUL SYLLABLE TEOH - if (0xd131 <= code && code <= 0xd14b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TE - if (0xd14c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd168) { - // Lo [27] HANGUL SYLLABLE TEG..HANGUL SYLLABLE TEH - if (0xd14d <= code && code <= 0xd167) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd169) { - // Lo HANGUL SYLLABLE TYEO - if (0xd168 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TYEOG..HANGUL SYLLABLE TYEOH - if (0xd169 <= code && code <= 0xd183) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd1a1) { - if (code < 0xd185) { - // Lo HANGUL SYLLABLE TYE - if (0xd184 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd1a0) { - // Lo [27] HANGUL SYLLABLE TYEG..HANGUL SYLLABLE TYEH - if (0xd185 <= code && code <= 0xd19f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TO - if (0xd1a0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xd1bc) { - // Lo [27] HANGUL SYLLABLE TOG..HANGUL SYLLABLE TOH - if (0xd1a1 <= code && code <= 0xd1bb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd1bd) { - // Lo HANGUL SYLLABLE TWA - if (0xd1bc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TWAG..HANGUL SYLLABLE TWAH - if (0xd1bd <= code && code <= 0xd1d7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0x1133b) { - if (code < 0xd671) { - if (code < 0xd424) { - if (code < 0xd2f1) { - if (code < 0xd264) { - if (code < 0xd211) { - if (code < 0xd1f4) { - if (code < 0xd1d9) { - // Lo HANGUL SYLLABLE TWAE - if (0xd1d8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TWAEG..HANGUL SYLLABLE TWAEH - if (0xd1d9 <= code && code <= 0xd1f3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd1f5) { - // Lo HANGUL SYLLABLE TOE - if (0xd1f4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd210) { - // Lo [27] HANGUL SYLLABLE TOEG..HANGUL SYLLABLE TOEH - if (0xd1f5 <= code && code <= 0xd20f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TYO - if (0xd210 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xd22d) { - if (code < 0xd22c) { - // Lo [27] HANGUL SYLLABLE TYOG..HANGUL SYLLABLE TYOH - if (0xd211 <= code && code <= 0xd22b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TU - if (0xd22c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd248) { - // Lo [27] HANGUL SYLLABLE TUG..HANGUL SYLLABLE TUH - if (0xd22d <= code && code <= 0xd247) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd249) { - // Lo HANGUL SYLLABLE TWEO - if (0xd248 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TWEOG..HANGUL SYLLABLE TWEOH - if (0xd249 <= code && code <= 0xd263) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xd29d) { - if (code < 0xd280) { - if (code < 0xd265) { - // Lo HANGUL SYLLABLE TWE - if (0xd264 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TWEG..HANGUL SYLLABLE TWEH - if (0xd265 <= code && code <= 0xd27f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd281) { - // Lo HANGUL SYLLABLE TWI - if (0xd280 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd29c) { - // Lo [27] HANGUL SYLLABLE TWIG..HANGUL SYLLABLE TWIH - if (0xd281 <= code && code <= 0xd29b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TYU - if (0xd29c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xd2d4) { - if (code < 0xd2b8) { - // Lo [27] HANGUL SYLLABLE TYUG..HANGUL SYLLABLE TYUH - if (0xd29d <= code && code <= 0xd2b7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd2b9) { - // Lo HANGUL SYLLABLE TEU - if (0xd2b8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE TEUG..HANGUL SYLLABLE TEUH - if (0xd2b9 <= code && code <= 0xd2d3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xd2d5) { - // Lo HANGUL SYLLABLE TYI - if (0xd2d4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd2f0) { - // Lo [27] HANGUL SYLLABLE TYIG..HANGUL SYLLABLE TYIH - if (0xd2d5 <= code && code <= 0xd2ef) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE TI - if (0xd2f0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xd37d) { - if (code < 0xd344) { - if (code < 0xd30d) { - if (code < 0xd30c) { - // Lo [27] HANGUL SYLLABLE TIG..HANGUL SYLLABLE TIH - if (0xd2f1 <= code && code <= 0xd30b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PA - if (0xd30c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd328) { - // Lo [27] HANGUL SYLLABLE PAG..HANGUL SYLLABLE PAH - if (0xd30d <= code && code <= 0xd327) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd329) { - // Lo HANGUL SYLLABLE PAE - if (0xd328 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PAEG..HANGUL SYLLABLE PAEH - if (0xd329 <= code && code <= 0xd343) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd360) { - if (code < 0xd345) { - // Lo HANGUL SYLLABLE PYA - if (0xd344 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PYAG..HANGUL SYLLABLE PYAH - if (0xd345 <= code && code <= 0xd35f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd361) { - // Lo HANGUL SYLLABLE PYAE - if (0xd360 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd37c) { - // Lo [27] HANGUL SYLLABLE PYAEG..HANGUL SYLLABLE PYAEH - if (0xd361 <= code && code <= 0xd37b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PEO - if (0xd37c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xd3d0) { - if (code < 0xd399) { - if (code < 0xd398) { - // Lo [27] HANGUL SYLLABLE PEOG..HANGUL SYLLABLE PEOH - if (0xd37d <= code && code <= 0xd397) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PE - if (0xd398 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd3b4) { - // Lo [27] HANGUL SYLLABLE PEG..HANGUL SYLLABLE PEH - if (0xd399 <= code && code <= 0xd3b3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd3b5) { - // Lo HANGUL SYLLABLE PYEO - if (0xd3b4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PYEOG..HANGUL SYLLABLE PYEOH - if (0xd3b5 <= code && code <= 0xd3cf) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd3ed) { - if (code < 0xd3d1) { - // Lo HANGUL SYLLABLE PYE - if (0xd3d0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd3ec) { - // Lo [27] HANGUL SYLLABLE PYEG..HANGUL SYLLABLE PYEH - if (0xd3d1 <= code && code <= 0xd3eb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PO - if (0xd3ec === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xd408) { - // Lo [27] HANGUL SYLLABLE POG..HANGUL SYLLABLE POH - if (0xd3ed <= code && code <= 0xd407) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd409) { - // Lo HANGUL SYLLABLE PWA - if (0xd408 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PWAG..HANGUL SYLLABLE PWAH - if (0xd409 <= code && code <= 0xd423) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - } - else { - if (code < 0xd53d) { - if (code < 0xd4b0) { - if (code < 0xd45d) { - if (code < 0xd440) { - if (code < 0xd425) { - // Lo HANGUL SYLLABLE PWAE - if (0xd424 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PWAEG..HANGUL SYLLABLE PWAEH - if (0xd425 <= code && code <= 0xd43f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd441) { - // Lo HANGUL SYLLABLE POE - if (0xd440 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd45c) { - // Lo [27] HANGUL SYLLABLE POEG..HANGUL SYLLABLE POEH - if (0xd441 <= code && code <= 0xd45b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PYO - if (0xd45c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xd479) { - if (code < 0xd478) { - // Lo [27] HANGUL SYLLABLE PYOG..HANGUL SYLLABLE PYOH - if (0xd45d <= code && code <= 0xd477) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PU - if (0xd478 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd494) { - // Lo [27] HANGUL SYLLABLE PUG..HANGUL SYLLABLE PUH - if (0xd479 <= code && code <= 0xd493) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd495) { - // Lo HANGUL SYLLABLE PWEO - if (0xd494 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PWEOG..HANGUL SYLLABLE PWEOH - if (0xd495 <= code && code <= 0xd4af) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xd4e9) { - if (code < 0xd4cc) { - if (code < 0xd4b1) { - // Lo HANGUL SYLLABLE PWE - if (0xd4b0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PWEG..HANGUL SYLLABLE PWEH - if (0xd4b1 <= code && code <= 0xd4cb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd4cd) { - // Lo HANGUL SYLLABLE PWI - if (0xd4cc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd4e8) { - // Lo [27] HANGUL SYLLABLE PWIG..HANGUL SYLLABLE PWIH - if (0xd4cd <= code && code <= 0xd4e7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PYU - if (0xd4e8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xd520) { - if (code < 0xd504) { - // Lo [27] HANGUL SYLLABLE PYUG..HANGUL SYLLABLE PYUH - if (0xd4e9 <= code && code <= 0xd503) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd505) { - // Lo HANGUL SYLLABLE PEU - if (0xd504 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE PEUG..HANGUL SYLLABLE PEUH - if (0xd505 <= code && code <= 0xd51f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xd521) { - // Lo HANGUL SYLLABLE PYI - if (0xd520 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd53c) { - // Lo [27] HANGUL SYLLABLE PYIG..HANGUL SYLLABLE PYIH - if (0xd521 <= code && code <= 0xd53b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE PI - if (0xd53c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - else { - if (code < 0xd5e4) { - if (code < 0xd590) { - if (code < 0xd559) { - if (code < 0xd558) { - // Lo [27] HANGUL SYLLABLE PIG..HANGUL SYLLABLE PIH - if (0xd53d <= code && code <= 0xd557) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HA - if (0xd558 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd574) { - // Lo [27] HANGUL SYLLABLE HAG..HANGUL SYLLABLE HAH - if (0xd559 <= code && code <= 0xd573) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd575) { - // Lo HANGUL SYLLABLE HAE - if (0xd574 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HAEG..HANGUL SYLLABLE HAEH - if (0xd575 <= code && code <= 0xd58f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd5ad) { - if (code < 0xd591) { - // Lo HANGUL SYLLABLE HYA - if (0xd590 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd5ac) { - // Lo [27] HANGUL SYLLABLE HYAG..HANGUL SYLLABLE HYAH - if (0xd591 <= code && code <= 0xd5ab) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HYAE - if (0xd5ac === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xd5c8) { - // Lo [27] HANGUL SYLLABLE HYAEG..HANGUL SYLLABLE HYAEH - if (0xd5ad <= code && code <= 0xd5c7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd5c9) { - // Lo HANGUL SYLLABLE HEO - if (0xd5c8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HEOG..HANGUL SYLLABLE HEOH - if (0xd5c9 <= code && code <= 0xd5e3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - else { - if (code < 0xd61d) { - if (code < 0xd600) { - if (code < 0xd5e5) { - // Lo HANGUL SYLLABLE HE - if (0xd5e4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HEG..HANGUL SYLLABLE HEH - if (0xd5e5 <= code && code <= 0xd5ff) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd601) { - // Lo HANGUL SYLLABLE HYEO - if (0xd600 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd61c) { - // Lo [27] HANGUL SYLLABLE HYEOG..HANGUL SYLLABLE HYEOH - if (0xd601 <= code && code <= 0xd61b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HYE - if (0xd61c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - else { - if (code < 0xd654) { - if (code < 0xd638) { - // Lo [27] HANGUL SYLLABLE HYEG..HANGUL SYLLABLE HYEH - if (0xd61d <= code && code <= 0xd637) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd639) { - // Lo HANGUL SYLLABLE HO - if (0xd638 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HOG..HANGUL SYLLABLE HOH - if (0xd639 <= code && code <= 0xd653) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - else { - if (code < 0xd655) { - // Lo HANGUL SYLLABLE HWA - if (0xd654 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd670) { - // Lo [27] HANGUL SYLLABLE HWAG..HANGUL SYLLABLE HWAH - if (0xd655 <= code && code <= 0xd66f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HWAE - if (0xd670 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - } - } - } - else { - if (code < 0x11000) { - if (code < 0xd7b0) { - if (code < 0xd6fd) { - if (code < 0xd6c4) { - if (code < 0xd68d) { - if (code < 0xd68c) { - // Lo [27] HANGUL SYLLABLE HWAEG..HANGUL SYLLABLE HWAEH - if (0xd671 <= code && code <= 0xd68b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HOE - if (0xd68c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd6a8) { - // Lo [27] HANGUL SYLLABLE HOEG..HANGUL SYLLABLE HOEH - if (0xd68d <= code && code <= 0xd6a7) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd6a9) { - // Lo HANGUL SYLLABLE HYO - if (0xd6a8 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HYOG..HANGUL SYLLABLE HYOH - if (0xd6a9 <= code && code <= 0xd6c3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd6e0) { - if (code < 0xd6c5) { - // Lo HANGUL SYLLABLE HU - if (0xd6c4 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HUG..HANGUL SYLLABLE HUH - if (0xd6c5 <= code && code <= 0xd6df) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - else { - if (code < 0xd6e1) { - // Lo HANGUL SYLLABLE HWEO - if (0xd6e0 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd6fc) { - // Lo [27] HANGUL SYLLABLE HWEOG..HANGUL SYLLABLE HWEOH - if (0xd6e1 <= code && code <= 0xd6fb) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HWE - if (0xd6fc === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - } - } - else { - if (code < 0xd750) { - if (code < 0xd719) { - if (code < 0xd718) { - // Lo [27] HANGUL SYLLABLE HWEG..HANGUL SYLLABLE HWEH - if (0xd6fd <= code && code <= 0xd717) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HWI - if (0xd718 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - else { - if (code < 0xd734) { - // Lo [27] HANGUL SYLLABLE HWIG..HANGUL SYLLABLE HWIH - if (0xd719 <= code && code <= 0xd733) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd735) { - // Lo HANGUL SYLLABLE HYU - if (0xd734 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HYUG..HANGUL SYLLABLE HYUH - if (0xd735 <= code && code <= 0xd74f) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - else { - if (code < 0xd76d) { - if (code < 0xd751) { - // Lo HANGUL SYLLABLE HEU - if (0xd750 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - if (code < 0xd76c) { - // Lo [27] HANGUL SYLLABLE HEUG..HANGUL SYLLABLE HEUH - if (0xd751 <= code && code <= 0xd76b) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - // Lo HANGUL SYLLABLE HYI - if (0xd76c === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - } - } - else { - if (code < 0xd788) { - // Lo [27] HANGUL SYLLABLE HYIG..HANGUL SYLLABLE HYIH - if (0xd76d <= code && code <= 0xd787) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - else { - if (code < 0xd789) { - // Lo HANGUL SYLLABLE HI - if (0xd788 === code) { - return boundaries_1.CLUSTER_BREAK.LV; - } - } - else { - // Lo [27] HANGUL SYLLABLE HIG..HANGUL SYLLABLE HIH - if (0xd789 <= code && code <= 0xd7a3) { - return boundaries_1.CLUSTER_BREAK.LVT; - } - } - } - } - } - } - } - else { - if (code < 0x10a01) { - if (code < 0xfeff) { - if (code < 0xfb1e) { - if (code < 0xd7cb) { - // Lo [23] HANGUL JUNGSEONG O-YEO..HANGUL JUNGSEONG ARAEA-E - if (0xd7b0 <= code && code <= 0xd7c6) { - return boundaries_1.CLUSTER_BREAK.V; - } - } - else { - // Lo [49] HANGUL JONGSEONG NIEUN-RIEUL..HANGUL JONGSEONG PHIEUPH-THIEUTH - if (0xd7cb <= code && code <= 0xd7fb) { - return boundaries_1.CLUSTER_BREAK.T; - } - } - } - else { - if (code < 0xfe00) { - // Mn HEBREW POINT JUDEO-SPANISH VARIKA - if (0xfb1e === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xfe20) { - // Mn [16] VARIATION SELECTOR-1..VARIATION SELECTOR-16 - if (0xfe00 <= code && code <= 0xfe0f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [16] COMBINING LIGATURE LEFT HALF..COMBINING CYRILLIC TITLO RIGHT HALF - if (0xfe20 <= code && code <= 0xfe2f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x101fd) { - if (code < 0xff9e) { - // Cf ZERO WIDTH NO-BREAK SPACE - if (0xfeff === code) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - if (code < 0xfff0) { - // Lm [2] HALFWIDTH KATAKANA VOICED SOUND MARK..HALFWIDTH KATAKANA SEMI-VOICED SOUND MARK - if (0xff9e <= code && code <= 0xff9f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cn [9] .. - // Cf [3] INTERLINEAR ANNOTATION ANCHOR..INTERLINEAR ANNOTATION TERMINATOR - if (0xfff0 <= code && code <= 0xfffb) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - } - } - else { - if (code < 0x102e0) { - // Mn PHAISTOS DISC SIGN COMBINING OBLIQUE STROKE - if (0x101fd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x10376) { - // Mn COPTIC EPACT THOUSANDS MARK - if (0x102e0 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [5] COMBINING OLD PERMIC LETTER AN..COMBINING OLD PERMIC LETTER SII - if (0x10376 <= code && code <= 0x1037a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x10ae5) { - if (code < 0x10a0c) { - if (code < 0x10a05) { - // Mn [3] KHAROSHTHI VOWEL SIGN I..KHAROSHTHI VOWEL SIGN VOCALIC R - if (0x10a01 <= code && code <= 0x10a03) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] KHAROSHTHI VOWEL SIGN E..KHAROSHTHI VOWEL SIGN O - if (0x10a05 <= code && code <= 0x10a06) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x10a38) { - // Mn [4] KHAROSHTHI VOWEL LENGTH MARK..KHAROSHTHI SIGN VISARGA - if (0x10a0c <= code && code <= 0x10a0f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x10a3f) { - // Mn [3] KHAROSHTHI SIGN BAR ABOVE..KHAROSHTHI SIGN DOT BELOW - if (0x10a38 <= code && code <= 0x10a3a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn KHAROSHTHI VIRAMA - if (0x10a3f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x10efd) { - if (code < 0x10d24) { - // Mn [2] MANICHAEAN ABBREVIATION MARK ABOVE..MANICHAEAN ABBREVIATION MARK BELOW - if (0x10ae5 <= code && code <= 0x10ae6) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x10eab) { - // Mn [4] HANIFI ROHINGYA SIGN HARBAHAY..HANIFI ROHINGYA SIGN TASSI - if (0x10d24 <= code && code <= 0x10d27) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] YEZIDI COMBINING HAMZA MARK..YEZIDI COMBINING MADDA MARK - if (0x10eab <= code && code <= 0x10eac) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x10f46) { - // Mn [3] ARABIC SMALL LOW WORD SAKTA..ARABIC SMALL LOW WORD MADDA - if (0x10efd <= code && code <= 0x10eff) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x10f82) { - // Mn [11] SOGDIAN COMBINING DOT BELOW..SOGDIAN COMBINING STROKE BELOW - if (0x10f46 <= code && code <= 0x10f50) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [4] OLD UYGHUR COMBINING DOT ABOVE..OLD UYGHUR COMBINING TWO DOTS BELOW - if (0x10f82 <= code && code <= 0x10f85) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - else { - if (code < 0x11180) { - if (code < 0x110b7) { - if (code < 0x11073) { - if (code < 0x11002) { - // Mc BRAHMI SIGN CANDRABINDU - if (0x11000 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn BRAHMI SIGN ANUSVARA - if (0x11001 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11038) { - // Mc BRAHMI SIGN VISARGA - if (0x11002 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x11070) { - // Mn [15] BRAHMI VOWEL SIGN AA..BRAHMI VIRAMA - if (0x11038 <= code && code <= 0x11046) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn BRAHMI SIGN OLD TAMIL VIRAMA - if (0x11070 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x11082) { - if (code < 0x1107f) { - // Mn [2] BRAHMI VOWEL SIGN OLD TAMIL SHORT E..BRAHMI VOWEL SIGN OLD TAMIL SHORT O - if (0x11073 <= code && code <= 0x11074) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [3] BRAHMI NUMBER JOINER..KAITHI SIGN ANUSVARA - if (0x1107f <= code && code <= 0x11081) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x110b0) { - // Mc KAITHI SIGN VISARGA - if (0x11082 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x110b3) { - // Mc [3] KAITHI VOWEL SIGN AA..KAITHI VOWEL SIGN II - if (0x110b0 <= code && code <= 0x110b2) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] KAITHI VOWEL SIGN U..KAITHI VOWEL SIGN AI - if (0x110b3 <= code && code <= 0x110b6) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x11100) { - if (code < 0x110bd) { - if (code < 0x110b9) { - // Mc [2] KAITHI VOWEL SIGN O..KAITHI VOWEL SIGN AU - if (0x110b7 <= code && code <= 0x110b8) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] KAITHI SIGN VIRAMA..KAITHI SIGN NUKTA - if (0x110b9 <= code && code <= 0x110ba) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x110c2) { - // Cf KAITHI NUMBER SIGN - if (0x110bd === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - // Mn KAITHI VOWEL SIGN VOCALIC R - if (0x110c2 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Cf KAITHI NUMBER SIGN ABOVE - if (0x110cd === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - } - } - else { - if (code < 0x1112d) { - if (code < 0x11127) { - // Mn [3] CHAKMA SIGN CANDRABINDU..CHAKMA SIGN VISARGA - if (0x11100 <= code && code <= 0x11102) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1112c) { - // Mn [5] CHAKMA VOWEL SIGN A..CHAKMA VOWEL SIGN UU - if (0x11127 <= code && code <= 0x1112b) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc CHAKMA VOWEL SIGN E - if (0x1112c === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x11145) { - // Mn [8] CHAKMA VOWEL SIGN AI..CHAKMA MAAYYAA - if (0x1112d <= code && code <= 0x11134) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11173) { - // Mc [2] CHAKMA VOWEL SIGN AA..CHAKMA VOWEL SIGN EI - if (0x11145 <= code && code <= 0x11146) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn MAHAJANI SIGN NUKTA - if (0x11173 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0x11232) { - if (code < 0x111c2) { - if (code < 0x111b3) { - if (code < 0x11182) { - // Mn [2] SHARADA SIGN CANDRABINDU..SHARADA SIGN ANUSVARA - if (0x11180 <= code && code <= 0x11181) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc SHARADA SIGN VISARGA - if (0x11182 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x111b6) { - // Mc [3] SHARADA VOWEL SIGN AA..SHARADA VOWEL SIGN II - if (0x111b3 <= code && code <= 0x111b5) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x111bf) { - // Mn [9] SHARADA VOWEL SIGN U..SHARADA VOWEL SIGN O - if (0x111b6 <= code && code <= 0x111be) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SHARADA VOWEL SIGN AU..SHARADA SIGN VIRAMA - if (0x111bf <= code && code <= 0x111c0) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x111cf) { - if (code < 0x111c9) { - // Lo [2] SHARADA SIGN JIHVAMULIYA..SHARADA SIGN UPADHMANIYA - if (0x111c2 <= code && code <= 0x111c3) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - if (code < 0x111ce) { - // Mn [4] SHARADA SANDHI MARK..SHARADA EXTRA SHORT VOWEL MARK - if (0x111c9 <= code && code <= 0x111cc) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc SHARADA VOWEL SIGN PRISHTHAMATRA E - if (0x111ce === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x1122c) { - // Mn SHARADA SIGN INVERTED CANDRABINDU - if (0x111cf === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1122f) { - // Mc [3] KHOJKI VOWEL SIGN AA..KHOJKI VOWEL SIGN II - if (0x1122c <= code && code <= 0x1122e) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [3] KHOJKI VOWEL SIGN U..KHOJKI VOWEL SIGN AI - if (0x1122f <= code && code <= 0x11231) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x11241) { - if (code < 0x11235) { - if (code < 0x11234) { - // Mc [2] KHOJKI VOWEL SIGN O..KHOJKI VOWEL SIGN AU - if (0x11232 <= code && code <= 0x11233) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn KHOJKI SIGN ANUSVARA - if (0x11234 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x11236) { - // Mc KHOJKI SIGN VIRAMA - if (0x11235 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1123e) { - // Mn [2] KHOJKI SIGN NUKTA..KHOJKI SIGN SHADDA - if (0x11236 <= code && code <= 0x11237) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn KHOJKI SIGN SUKUN - if (0x1123e === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x112e3) { - if (code < 0x112df) { - // Mn KHOJKI VOWEL SIGN VOCALIC R - if (0x11241 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x112e0) { - // Mn KHUDAWADI SIGN ANUSVARA - if (0x112df === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [3] KHUDAWADI VOWEL SIGN AA..KHUDAWADI VOWEL SIGN II - if (0x112e0 <= code && code <= 0x112e2) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x11300) { - // Mn [8] KHUDAWADI VOWEL SIGN U..KHUDAWADI SIGN VIRAMA - if (0x112e3 <= code && code <= 0x112ea) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11302) { - // Mn [2] GRANTHA SIGN COMBINING ANUSVARA ABOVE..GRANTHA SIGN CANDRABINDU - if (0x11300 <= code && code <= 0x11301) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] GRANTHA SIGN ANUSVARA..GRANTHA SIGN VISARGA - if (0x11302 <= code && code <= 0x11303) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - } - } - } - else { - if (code < 0x11a97) { - if (code < 0x116ab) { - if (code < 0x114b9) { - if (code < 0x11370) { - if (code < 0x11347) { - if (code < 0x1133f) { - if (code < 0x1133e) { - // Mn [2] COMBINING BINDU BELOW..GRANTHA SIGN NUKTA - if (0x1133b <= code && code <= 0x1133c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc GRANTHA VOWEL SIGN AA - if (0x1133e === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x11340) { - // Mc GRANTHA VOWEL SIGN I - if (0x1133f === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x11341) { - // Mn GRANTHA VOWEL SIGN II - if (0x11340 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [4] GRANTHA VOWEL SIGN U..GRANTHA VOWEL SIGN VOCALIC RR - if (0x11341 <= code && code <= 0x11344) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x11357) { - if (code < 0x1134b) { - // Mc [2] GRANTHA VOWEL SIGN EE..GRANTHA VOWEL SIGN AI - if (0x11347 <= code && code <= 0x11348) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc [3] GRANTHA VOWEL SIGN OO..GRANTHA SIGN VIRAMA - if (0x1134b <= code && code <= 0x1134d) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x11362) { - // Mc GRANTHA AU LENGTH MARK - if (0x11357 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11366) { - // Mc [2] GRANTHA VOWEL SIGN VOCALIC L..GRANTHA VOWEL SIGN VOCALIC LL - if (0x11362 <= code && code <= 0x11363) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [7] COMBINING GRANTHA DIGIT ZERO..COMBINING GRANTHA DIGIT SIX - if (0x11366 <= code && code <= 0x1136c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x11445) { - if (code < 0x11438) { - if (code < 0x11435) { - // Mn [5] COMBINING GRANTHA LETTER A..COMBINING GRANTHA LETTER PA - if (0x11370 <= code && code <= 0x11374) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [3] NEWA VOWEL SIGN AA..NEWA VOWEL SIGN II - if (0x11435 <= code && code <= 0x11437) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x11440) { - // Mn [8] NEWA VOWEL SIGN U..NEWA VOWEL SIGN AI - if (0x11438 <= code && code <= 0x1143f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11442) { - // Mc [2] NEWA VOWEL SIGN O..NEWA VOWEL SIGN AU - if (0x11440 <= code && code <= 0x11441) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [3] NEWA SIGN VIRAMA..NEWA SIGN ANUSVARA - if (0x11442 <= code && code <= 0x11444) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x114b0) { - if (code < 0x11446) { - // Mc NEWA SIGN VISARGA - if (0x11445 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn NEWA SIGN NUKTA - if (0x11446 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mn NEWA SANDHI MARK - if (0x1145e === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x114b1) { - // Mc TIRHUTA VOWEL SIGN AA - if (0x114b0 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x114b3) { - // Mc [2] TIRHUTA VOWEL SIGN I..TIRHUTA VOWEL SIGN II - if (0x114b1 <= code && code <= 0x114b2) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [6] TIRHUTA VOWEL SIGN U..TIRHUTA VOWEL SIGN VOCALIC LL - if (0x114b3 <= code && code <= 0x114b8) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0x115b8) { - if (code < 0x114bf) { - if (code < 0x114bb) { - // Mc TIRHUTA VOWEL SIGN E - if (0x114b9 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn TIRHUTA VOWEL SIGN SHORT E - if (0x114ba === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x114bd) { - // Mc [2] TIRHUTA VOWEL SIGN AI..TIRHUTA VOWEL SIGN O - if (0x114bb <= code && code <= 0x114bc) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc TIRHUTA VOWEL SIGN SHORT O - if (0x114bd === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc TIRHUTA VOWEL SIGN AU - if (0x114be === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x115af) { - if (code < 0x114c1) { - // Mn [2] TIRHUTA SIGN CANDRABINDU..TIRHUTA SIGN ANUSVARA - if (0x114bf <= code && code <= 0x114c0) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x114c2) { - // Mc TIRHUTA SIGN VISARGA - if (0x114c1 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] TIRHUTA SIGN VIRAMA..TIRHUTA SIGN NUKTA - if (0x114c2 <= code && code <= 0x114c3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x115b0) { - // Mc SIDDHAM VOWEL SIGN AA - if (0x115af === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x115b2) { - // Mc [2] SIDDHAM VOWEL SIGN I..SIDDHAM VOWEL SIGN II - if (0x115b0 <= code && code <= 0x115b1) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] SIDDHAM VOWEL SIGN U..SIDDHAM VOWEL SIGN VOCALIC RR - if (0x115b2 <= code && code <= 0x115b5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x11630) { - if (code < 0x115be) { - if (code < 0x115bc) { - // Mc [4] SIDDHAM VOWEL SIGN E..SIDDHAM VOWEL SIGN AU - if (0x115b8 <= code && code <= 0x115bb) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] SIDDHAM SIGN CANDRABINDU..SIDDHAM SIGN ANUSVARA - if (0x115bc <= code && code <= 0x115bd) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x115bf) { - // Mc SIDDHAM SIGN VISARGA - if (0x115be === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x115dc) { - // Mn [2] SIDDHAM SIGN VIRAMA..SIDDHAM SIGN NUKTA - if (0x115bf <= code && code <= 0x115c0) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] SIDDHAM VOWEL SIGN ALTERNATE U..SIDDHAM VOWEL SIGN ALTERNATE UU - if (0x115dc <= code && code <= 0x115dd) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1163d) { - if (code < 0x11633) { - // Mc [3] MODI VOWEL SIGN AA..MODI VOWEL SIGN II - if (0x11630 <= code && code <= 0x11632) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x1163b) { - // Mn [8] MODI VOWEL SIGN U..MODI VOWEL SIGN AI - if (0x11633 <= code && code <= 0x1163a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] MODI VOWEL SIGN O..MODI VOWEL SIGN AU - if (0x1163b <= code && code <= 0x1163c) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x1163e) { - // Mn MODI SIGN ANUSVARA - if (0x1163d === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1163f) { - // Mc MODI SIGN VISARGA - if (0x1163e === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] MODI SIGN VIRAMA..MODI SIGN ARDHACANDRA - if (0x1163f <= code && code <= 0x11640) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - else { - if (code < 0x1193f) { - if (code < 0x11727) { - if (code < 0x116b6) { - if (code < 0x116ad) { - // Mn TAKRI SIGN ANUSVARA - if (0x116ab === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc TAKRI SIGN VISARGA - if (0x116ac === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x116ae) { - // Mn TAKRI VOWEL SIGN AA - if (0x116ad === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x116b0) { - // Mc [2] TAKRI VOWEL SIGN I..TAKRI VOWEL SIGN II - if (0x116ae <= code && code <= 0x116af) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [6] TAKRI VOWEL SIGN U..TAKRI VOWEL SIGN AU - if (0x116b0 <= code && code <= 0x116b5) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1171d) { - // Mc TAKRI SIGN VIRAMA - if (0x116b6 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn TAKRI SIGN NUKTA - if (0x116b7 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11722) { - // Mn [3] AHOM CONSONANT SIGN MEDIAL LA..AHOM CONSONANT SIGN MEDIAL LIGATING RA - if (0x1171d <= code && code <= 0x1171f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11726) { - // Mn [4] AHOM VOWEL SIGN I..AHOM VOWEL SIGN UU - if (0x11722 <= code && code <= 0x11725) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc AHOM VOWEL SIGN E - if (0x11726 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - else { - if (code < 0x11930) { - if (code < 0x1182f) { - if (code < 0x1182c) { - // Mn [5] AHOM VOWEL SIGN AW..AHOM SIGN KILLER - if (0x11727 <= code && code <= 0x1172b) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [3] DOGRA VOWEL SIGN AA..DOGRA VOWEL SIGN II - if (0x1182c <= code && code <= 0x1182e) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x11838) { - // Mn [9] DOGRA VOWEL SIGN U..DOGRA SIGN ANUSVARA - if (0x1182f <= code && code <= 0x11837) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11839) { - // Mc DOGRA SIGN VISARGA - if (0x11838 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] DOGRA SIGN VIRAMA..DOGRA SIGN NUKTA - if (0x11839 <= code && code <= 0x1183a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1193b) { - if (code < 0x11931) { - // Mc DIVES AKURU VOWEL SIGN AA - if (0x11930 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11937) { - // Mc [5] DIVES AKURU VOWEL SIGN I..DIVES AKURU VOWEL SIGN E - if (0x11931 <= code && code <= 0x11935) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc [2] DIVES AKURU VOWEL SIGN AI..DIVES AKURU VOWEL SIGN O - if (0x11937 <= code && code <= 0x11938) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x1193d) { - // Mn [2] DIVES AKURU SIGN ANUSVARA..DIVES AKURU SIGN CANDRABINDU - if (0x1193b <= code && code <= 0x1193c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc DIVES AKURU SIGN HALANTA - if (0x1193d === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn DIVES AKURU VIRAMA - if (0x1193e === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x11a01) { - if (code < 0x119d1) { - if (code < 0x11941) { - // Lo DIVES AKURU PREFIXED NASAL SIGN - if (0x1193f === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - // Mc DIVES AKURU MEDIAL YA - if (0x11940 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x11942) { - // Lo DIVES AKURU INITIAL RA - if (0x11941 === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - // Mc DIVES AKURU MEDIAL RA - if (0x11942 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn DIVES AKURU SIGN NUKTA - if (0x11943 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x119dc) { - if (code < 0x119d4) { - // Mc [3] NANDINAGARI VOWEL SIGN AA..NANDINAGARI VOWEL SIGN II - if (0x119d1 <= code && code <= 0x119d3) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x119da) { - // Mn [4] NANDINAGARI VOWEL SIGN U..NANDINAGARI VOWEL SIGN VOCALIC RR - if (0x119d4 <= code && code <= 0x119d7) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [2] NANDINAGARI VOWEL SIGN E..NANDINAGARI VOWEL SIGN AI - if (0x119da <= code && code <= 0x119db) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x119e0) { - // Mc [4] NANDINAGARI VOWEL SIGN O..NANDINAGARI SIGN VISARGA - if (0x119dc <= code && code <= 0x119df) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn NANDINAGARI SIGN VIRAMA - if (0x119e0 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc NANDINAGARI VOWEL SIGN PRISHTHAMATRA E - if (0x119e4 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x11a47) { - if (code < 0x11a39) { - if (code < 0x11a33) { - // Mn [10] ZANABAZAR SQUARE VOWEL SIGN I..ZANABAZAR SQUARE VOWEL LENGTH MARK - if (0x11a01 <= code && code <= 0x11a0a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [6] ZANABAZAR SQUARE FINAL CONSONANT MARK..ZANABAZAR SQUARE SIGN ANUSVARA - if (0x11a33 <= code && code <= 0x11a38) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x11a3a) { - // Mc ZANABAZAR SQUARE SIGN VISARGA - if (0x11a39 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x11a3b) { - // Lo ZANABAZAR SQUARE CLUSTER-INITIAL LETTER RA - if (0x11a3a === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - // Mn [4] ZANABAZAR SQUARE CLUSTER-FINAL LETTER YA..ZANABAZAR SQUARE CLUSTER-FINAL LETTER VA - if (0x11a3b <= code && code <= 0x11a3e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x11a59) { - if (code < 0x11a51) { - // Mn ZANABAZAR SQUARE SUBJOINER - if (0x11a47 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11a57) { - // Mn [6] SOYOMBO VOWEL SIGN I..SOYOMBO VOWEL SIGN OE - if (0x11a51 <= code && code <= 0x11a56) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] SOYOMBO VOWEL SIGN AI..SOYOMBO VOWEL SIGN AU - if (0x11a57 <= code && code <= 0x11a58) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - else { - if (code < 0x11a84) { - // Mn [3] SOYOMBO VOWEL SIGN VOCALIC R..SOYOMBO VOWEL LENGTH MARK - if (0x11a59 <= code && code <= 0x11a5b) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11a8a) { - // Lo [6] SOYOMBO SIGN JIHVAMULIYA..SOYOMBO CLUSTER-INITIAL LETTER SA - if (0x11a84 <= code && code <= 0x11a89) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - // Mn [13] SOYOMBO FINAL CONSONANT SIGN G..SOYOMBO SIGN ANUSVARA - if (0x11a8a <= code && code <= 0x11a96) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - } - else { - if (code < 0x16f51) { - if (code < 0x11d90) { - if (code < 0x11cb1) { - if (code < 0x11c3e) { - if (code < 0x11c2f) { - if (code < 0x11a98) { - // Mc SOYOMBO SIGN VISARGA - if (0x11a97 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] SOYOMBO GEMINATION MARK..SOYOMBO SUBJOINER - if (0x11a98 <= code && code <= 0x11a99) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x11c30) { - // Mc BHAIKSUKI VOWEL SIGN AA - if (0x11c2f === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x11c38) { - // Mn [7] BHAIKSUKI VOWEL SIGN I..BHAIKSUKI VOWEL SIGN VOCALIC L - if (0x11c30 <= code && code <= 0x11c36) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [6] BHAIKSUKI VOWEL SIGN E..BHAIKSUKI SIGN ANUSVARA - if (0x11c38 <= code && code <= 0x11c3d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x11c92) { - // Mc BHAIKSUKI SIGN VISARGA - if (0x11c3e === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn BHAIKSUKI SIGN VIRAMA - if (0x11c3f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11ca9) { - // Mn [22] MARCHEN SUBJOINED LETTER KA..MARCHEN SUBJOINED LETTER ZA - if (0x11c92 <= code && code <= 0x11ca7) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11caa) { - // Mc MARCHEN SUBJOINED LETTER YA - if (0x11ca9 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [7] MARCHEN SUBJOINED LETTER RA..MARCHEN VOWEL SIGN AA - if (0x11caa <= code && code <= 0x11cb0) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x11d3a) { - if (code < 0x11cb4) { - if (code < 0x11cb2) { - // Mc MARCHEN VOWEL SIGN I - if (0x11cb1 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] MARCHEN VOWEL SIGN U..MARCHEN VOWEL SIGN E - if (0x11cb2 <= code && code <= 0x11cb3) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x11cb5) { - // Mc MARCHEN VOWEL SIGN O - if (0x11cb4 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - if (code < 0x11d31) { - // Mn [2] MARCHEN SIGN ANUSVARA..MARCHEN SIGN CANDRABINDU - if (0x11cb5 <= code && code <= 0x11cb6) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [6] MASARAM GONDI VOWEL SIGN AA..MASARAM GONDI VOWEL SIGN VOCALIC R - if (0x11d31 <= code && code <= 0x11d36) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x11d46) { - if (code < 0x11d3c) { - // Mn MASARAM GONDI VOWEL SIGN E - if (0x11d3a === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11d3f) { - // Mn [2] MASARAM GONDI VOWEL SIGN AI..MASARAM GONDI VOWEL SIGN O - if (0x11d3c <= code && code <= 0x11d3d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [7] MASARAM GONDI VOWEL SIGN AU..MASARAM GONDI VIRAMA - if (0x11d3f <= code && code <= 0x11d45) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x11d47) { - // Lo MASARAM GONDI REPHA - if (0x11d46 === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - if (code < 0x11d8a) { - // Mn MASARAM GONDI RA-KARA - if (0x11d47 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [5] GUNJALA GONDI VOWEL SIGN AA..GUNJALA GONDI VOWEL SIGN UU - if (0x11d8a <= code && code <= 0x11d8e) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - } - else { - if (code < 0x11f36) { - if (code < 0x11ef3) { - if (code < 0x11d95) { - if (code < 0x11d93) { - // Mn [2] GUNJALA GONDI VOWEL SIGN EE..GUNJALA GONDI VOWEL SIGN AI - if (0x11d90 <= code && code <= 0x11d91) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] GUNJALA GONDI VOWEL SIGN OO..GUNJALA GONDI VOWEL SIGN AU - if (0x11d93 <= code && code <= 0x11d94) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x11d96) { - // Mn GUNJALA GONDI SIGN ANUSVARA - if (0x11d95 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc GUNJALA GONDI SIGN VISARGA - if (0x11d96 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn GUNJALA GONDI VIRAMA - if (0x11d97 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x11f02) { - if (code < 0x11ef5) { - // Mn [2] MAKASAR VOWEL SIGN I..MAKASAR VOWEL SIGN U - if (0x11ef3 <= code && code <= 0x11ef4) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x11f00) { - // Mc [2] MAKASAR VOWEL SIGN E..MAKASAR VOWEL SIGN O - if (0x11ef5 <= code && code <= 0x11ef6) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] KAWI SIGN CANDRABINDU..KAWI SIGN ANUSVARA - if (0x11f00 <= code && code <= 0x11f01) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x11f03) { - // Lo KAWI SIGN REPHA - if (0x11f02 === code) { - return boundaries_1.CLUSTER_BREAK.PREPEND; - } - } - else { - if (code < 0x11f34) { - // Mc KAWI SIGN VISARGA - if (0x11f03 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mc [2] KAWI VOWEL SIGN AA..KAWI VOWEL SIGN ALTERNATE AA - if (0x11f34 <= code && code <= 0x11f35) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - } - else { - if (code < 0x13430) { - if (code < 0x11f40) { - if (code < 0x11f3e) { - // Mn [5] KAWI VOWEL SIGN I..KAWI VOWEL SIGN VOCALIC R - if (0x11f36 <= code && code <= 0x11f3a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc [2] KAWI VOWEL SIGN E..KAWI VOWEL SIGN AI - if (0x11f3e <= code && code <= 0x11f3f) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x11f41) { - // Mn KAWI VOWEL SIGN EU - if (0x11f40 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc KAWI SIGN KILLER - if (0x11f41 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - // Mn KAWI CONJOINER - if (0x11f42 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x16af0) { - if (code < 0x13440) { - // Cf [16] EGYPTIAN HIEROGLYPH VERTICAL JOINER..EGYPTIAN HIEROGLYPH END WALLED ENCLOSURE - if (0x13430 <= code && code <= 0x1343f) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - if (code < 0x13447) { - // Mn EGYPTIAN HIEROGLYPH MIRROR HORIZONTALLY - if (0x13440 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [15] EGYPTIAN HIEROGLYPH MODIFIER DAMAGED AT TOP START..EGYPTIAN HIEROGLYPH MODIFIER DAMAGED - if (0x13447 <= code && code <= 0x13455) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x16b30) { - // Mn [5] BASSA VAH COMBINING HIGH TONE..BASSA VAH COMBINING HIGH-LOW TONE - if (0x16af0 <= code && code <= 0x16af4) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x16f4f) { - // Mn [7] PAHAWH HMONG MARK CIM TUB..PAHAWH HMONG MARK CIM TAUM - if (0x16b30 <= code && code <= 0x16b36) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn MIAO SIGN CONSONANT MODIFIER BAR - if (0x16f4f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - } - else { - if (code < 0x1da84) { - if (code < 0x1d167) { - if (code < 0x1bca0) { - if (code < 0x16fe4) { - if (code < 0x16f8f) { - // Mc [55] MIAO SIGN ASPIRATION..MIAO VOWEL SIGN UI - if (0x16f51 <= code && code <= 0x16f87) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [4] MIAO TONE RIGHT..MIAO TONE BELOW - if (0x16f8f <= code && code <= 0x16f92) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x16ff0) { - // Mn KHITAN SMALL SCRIPT FILLER - if (0x16fe4 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1bc9d) { - // Mc [2] VIETNAMESE ALTERNATE READING MARK CA..VIETNAMESE ALTERNATE READING MARK NHAY - if (0x16ff0 <= code && code <= 0x16ff1) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - else { - // Mn [2] DUPLOYAN THICK LETTER SELECTOR..DUPLOYAN DOUBLE MARK - if (0x1bc9d <= code && code <= 0x1bc9e) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1cf30) { - if (code < 0x1cf00) { - // Cf [4] SHORTHAND FORMAT LETTER OVERLAP..SHORTHAND FORMAT UP STEP - if (0x1bca0 <= code && code <= 0x1bca3) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Mn [46] ZNAMENNY COMBINING MARK GORAZDO NIZKO S KRYZHEM ON LEFT..ZNAMENNY COMBINING MARK KRYZH ON LEFT - if (0x1cf00 <= code && code <= 0x1cf2d) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1d165) { - // Mn [23] ZNAMENNY COMBINING TONAL RANGE MARK MRACHNO..ZNAMENNY PRIZNAK MODIFIER ROG - if (0x1cf30 <= code && code <= 0x1cf46) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc MUSICAL SYMBOL COMBINING STEM - if (0x1d165 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - // Mc MUSICAL SYMBOL COMBINING SPRECHGESANG STEM - if (0x1d166 === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - } - } - else { - if (code < 0x1d185) { - if (code < 0x1d16e) { - if (code < 0x1d16d) { - // Mn [3] MUSICAL SYMBOL COMBINING TREMOLO-1..MUSICAL SYMBOL COMBINING TREMOLO-3 - if (0x1d167 <= code && code <= 0x1d169) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mc MUSICAL SYMBOL COMBINING AUGMENTATION DOT - if (0x1d16d === code) { - return boundaries_1.CLUSTER_BREAK.SPACINGMARK; - } - } - } - else { - if (code < 0x1d173) { - // Mc [5] MUSICAL SYMBOL COMBINING FLAG-1..MUSICAL SYMBOL COMBINING FLAG-5 - if (0x1d16e <= code && code <= 0x1d172) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1d17b) { - // Cf [8] MUSICAL SYMBOL BEGIN BEAM..MUSICAL SYMBOL END PHRASE - if (0x1d173 <= code && code <= 0x1d17a) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Mn [8] MUSICAL SYMBOL COMBINING ACCENT..MUSICAL SYMBOL COMBINING LOURE - if (0x1d17b <= code && code <= 0x1d182) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1da00) { - if (code < 0x1d1aa) { - // Mn [7] MUSICAL SYMBOL COMBINING DOIT..MUSICAL SYMBOL COMBINING TRIPLE TONGUE - if (0x1d185 <= code && code <= 0x1d18b) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1d242) { - // Mn [4] MUSICAL SYMBOL COMBINING DOWN BOW..MUSICAL SYMBOL COMBINING SNAP PIZZICATO - if (0x1d1aa <= code && code <= 0x1d1ad) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [3] COMBINING GREEK MUSICAL TRISEME..COMBINING GREEK MUSICAL PENTASEME - if (0x1d242 <= code && code <= 0x1d244) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x1da3b) { - // Mn [55] SIGNWRITING HEAD RIM..SIGNWRITING AIR SUCKING IN - if (0x1da00 <= code && code <= 0x1da36) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1da75) { - // Mn [50] SIGNWRITING MOUTH CLOSED NEUTRAL..SIGNWRITING EXCITEMENT - if (0x1da3b <= code && code <= 0x1da6c) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn SIGNWRITING UPPER BODY TILTING FROM HIP JOINTS - if (0x1da75 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - } - else { - if (code < 0x1e2ec) { - if (code < 0x1e01b) { - if (code < 0x1daa1) { - if (code < 0x1da9b) { - // Mn SIGNWRITING LOCATION HEAD NECK - if (0x1da84 === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [5] SIGNWRITING FILL MODIFIER-2..SIGNWRITING FILL MODIFIER-6 - if (0x1da9b <= code && code <= 0x1da9f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1e000) { - // Mn [15] SIGNWRITING ROTATION MODIFIER-2..SIGNWRITING ROTATION MODIFIER-16 - if (0x1daa1 <= code && code <= 0x1daaf) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1e008) { - // Mn [7] COMBINING GLAGOLITIC LETTER AZU..COMBINING GLAGOLITIC LETTER ZHIVETE - if (0x1e000 <= code && code <= 0x1e006) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [17] COMBINING GLAGOLITIC LETTER ZEMLJA..COMBINING GLAGOLITIC LETTER HERU - if (0x1e008 <= code && code <= 0x1e018) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - else { - if (code < 0x1e08f) { - if (code < 0x1e023) { - // Mn [7] COMBINING GLAGOLITIC LETTER SHTA..COMBINING GLAGOLITIC LETTER YATI - if (0x1e01b <= code && code <= 0x1e021) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1e026) { - // Mn [2] COMBINING GLAGOLITIC LETTER YU..COMBINING GLAGOLITIC LETTER SMALL YUS - if (0x1e023 <= code && code <= 0x1e024) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [5] COMBINING GLAGOLITIC LETTER YO..COMBINING GLAGOLITIC LETTER FITA - if (0x1e026 <= code && code <= 0x1e02a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0x1e130) { - // Mn COMBINING CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I - if (0x1e08f === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1e2ae) { - // Mn [7] NYIAKENG PUACHUE HMONG TONE-B..NYIAKENG PUACHUE HMONG TONE-D - if (0x1e130 <= code && code <= 0x1e136) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn TOTO SIGN RISING TONE - if (0x1e2ae === code) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - } - } - else { - if (code < 0x1f3fb) { - if (code < 0x1e8d0) { - if (code < 0x1e4ec) { - // Mn [4] WANCHO TONE TUP..WANCHO TONE KOINI - if (0x1e2ec <= code && code <= 0x1e2ef) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Mn [4] NAG MUNDARI SIGN MUHOR..NAG MUNDARI SIGN SUTUH - if (0x1e4ec <= code && code <= 0x1e4ef) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - else { - if (code < 0x1e944) { - // Mn [7] MENDE KIKAKUI COMBINING NUMBER TEENS..MENDE KIKAKUI COMBINING NUMBER MILLIONS - if (0x1e8d0 <= code && code <= 0x1e8d6) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0x1f1e6) { - // Mn [7] ADLAM ALIF LENGTHENER..ADLAM NUKTA - if (0x1e944 <= code && code <= 0x1e94a) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // So [26] REGIONAL INDICATOR SYMBOL LETTER A..REGIONAL INDICATOR SYMBOL LETTER Z - if (0x1f1e6 <= code && code <= 0x1f1ff) { - return boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR; - } - } - } - } - } - else { - if (code < 0xe0080) { - if (code < 0xe0000) { - // Sk [5] EMOJI MODIFIER FITZPATRICK TYPE-1-2..EMOJI MODIFIER FITZPATRICK TYPE-6 - if (0x1f3fb <= code && code <= 0x1f3ff) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - if (code < 0xe0020) { - // Cn - // Cf LANGUAGE TAG - // Cn [30] .. - if (0xe0000 <= code && code <= 0xe001f) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - // Cf [96] TAG SPACE..CANCEL TAG - if (0xe0020 <= code && code <= 0xe007f) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - } - } - else { - if (code < 0xe0100) { - // Cn [128] .. - if (0xe0080 <= code && code <= 0xe00ff) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - else { - if (code < 0xe01f0) { - // Mn [240] VARIATION SELECTOR-17..VARIATION SELECTOR-256 - if (0xe0100 <= code && code <= 0xe01ef) { - return boundaries_1.CLUSTER_BREAK.EXTEND; - } - } - else { - // Cn [3600] .. - if (0xe01f0 <= code && code <= 0xe0fff) { - return boundaries_1.CLUSTER_BREAK.CONTROL; - } - } - } - } - } - } - } - } - } - } - } - } - // unlisted code points are treated as a break property of "Other" - return boundaries_1.CLUSTER_BREAK.OTHER; - } - /** - * Given a Unicode code point, returns if symbol is an extended pictographic or some other break - * @param code {number} Unicode code point - * @returns {number} - */ - static getEmojiProperty(code) { - // emoji property taken from: - // https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt - // and generated by - // node ./scripts/generate-emoji-extended-pictographic.js - if (code < 0x27b0) { - if (code < 0x2600) { - if (code < 0x2328) { - if (code < 0x2122) { - if (code < 0x203c) { - // E0.6 [1] (©️) copyright - if (0xa9 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (®️) registered - if (0xae === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (‼️) double exclamation mark - if (0x203c === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (⁉️) exclamation question mark - if (0x2049 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x2194) { - // E0.6 [1] (™️) trade mark - if (0x2122 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (ℹ️) information - if (0x2139 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x21a9) { - // E0.6 [6] (↔️..↙️) left-right arrow..down-left arrow - if (0x2194 <= code && code <= 0x2199) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x231a) { - // E0.6 [2] (↩️..↪️) right arrow curving left..left arrow curving right - if (0x21a9 <= code && code <= 0x21aa) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [2] (⌚..⌛) watch..hourglass done - if (0x231a <= code && code <= 0x231b) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - } - else { - if (code < 0x24c2) { - if (code < 0x23cf) { - // E1.0 [1] (⌨️) keyboard - if (0x2328 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.0 [1] (⎈) HELM SYMBOL - if (0x2388 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x23e9) { - // E1.0 [1] (⏏️) eject button - if (0x23cf === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x23f8) { - // E0.6 [4] (⏩..⏬) fast-forward button..fast down button - // E0.7 [2] (⏭️..⏮️) next track button..last track button - // E1.0 [1] (⏯️) play or pause button - // E0.6 [1] (⏰) alarm clock - // E1.0 [2] (⏱️..⏲️) stopwatch..timer clock - // E0.6 [1] (⏳) hourglass not done - if (0x23e9 <= code && code <= 0x23f3) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.7 [3] (⏸️..⏺️) pause button..record button - if (0x23f8 <= code && code <= 0x23fa) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x25b6) { - if (code < 0x25aa) { - // E0.6 [1] (Ⓜ️) circled M - if (0x24c2 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [2] (▪️..▫️) black small square..white small square - if (0x25aa <= code && code <= 0x25ab) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x25c0) { - // E0.6 [1] (▶️) play button - if (0x25b6 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x25fb) { - // E0.6 [1] (◀️) reverse button - if (0x25c0 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [4] (◻️..◾) white medium square..black medium-small square - if (0x25fb <= code && code <= 0x25fe) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - } - } - else { - if (code < 0x2733) { - if (code < 0x2714) { - if (code < 0x2614) { - if (code < 0x2607) { - // E0.6 [2] (☀️..☁️) sun..cloud - // E0.7 [2] (☂️..☃️) umbrella..snowman - // E1.0 [1] (☄️) comet - // E0.0 [1] (★) BLACK STAR - if (0x2600 <= code && code <= 0x2605) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [7] (☇..☍) LIGHTNING..OPPOSITION - // E0.6 [1] (☎️) telephone - // E0.0 [2] (☏..☐) WHITE TELEPHONE..BALLOT BOX - // E0.6 [1] (☑️) check box with check - // E0.0 [1] (☒) BALLOT BOX WITH X - if (0x2607 <= code && code <= 0x2612) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x2690) { - // E0.6 [2] (☔..☕) umbrella with rain drops..hot beverage - // E0.0 [2] (☖..☗) WHITE SHOGI PIECE..BLACK SHOGI PIECE - // E1.0 [1] (☘️) shamrock - // E0.0 [4] (☙..☜) REVERSED ROTATED FLORAL HEART BULLET..WHITE LEFT POINTING INDEX - // E0.6 [1] (☝️) index pointing up - // E0.0 [2] (☞..☟) WHITE RIGHT POINTING INDEX..WHITE DOWN POINTING INDEX - // E1.0 [1] (☠️) skull and crossbones - // E0.0 [1] (☡) CAUTION SIGN - // E1.0 [2] (☢️..☣️) radioactive..biohazard - // E0.0 [2] (☤..☥) CADUCEUS..ANKH - // E1.0 [1] (☦️) orthodox cross - // E0.0 [3] (☧..☩) CHI RHO..CROSS OF JERUSALEM - // E0.7 [1] (☪️) star and crescent - // E0.0 [3] (☫..☭) FARSI SYMBOL..HAMMER AND SICKLE - // E1.0 [1] (☮️) peace symbol - // E0.7 [1] (☯️) yin yang - // E0.0 [8] (☰..☷) TRIGRAM FOR HEAVEN..TRIGRAM FOR EARTH - // E0.7 [2] (☸️..☹️) wheel of dharma..frowning face - // E0.6 [1] (☺️) smiling face - // E0.0 [5] (☻..☿) BLACK SMILING FACE..MERCURY - // E4.0 [1] (♀️) female sign - // E0.0 [1] (♁) EARTH - // E4.0 [1] (♂️) male sign - // E0.0 [5] (♃..♇) JUPITER..PLUTO - // E0.6 [12] (♈..♓) Aries..Pisces - // E0.0 [11] (♔..♞) WHITE CHESS KING..BLACK CHESS KNIGHT - // E11.0 [1] (♟️) chess pawn - // E0.6 [1] (♠️) spade suit - // E0.0 [2] (♡..♢) WHITE HEART SUIT..WHITE DIAMOND SUIT - // E0.6 [1] (♣️) club suit - // E0.0 [1] (♤) WHITE SPADE SUIT - // E0.6 [2] (♥️..♦️) heart suit..diamond suit - // E0.0 [1] (♧) WHITE CLUB SUIT - // E0.6 [1] (♨️) hot springs - // E0.0 [18] (♩..♺) QUARTER NOTE..RECYCLING SYMBOL FOR GENERIC MATERIALS - // E0.6 [1] (♻️) recycling symbol - // E0.0 [2] (♼..♽) RECYCLED PAPER SYMBOL..PARTIALLY-RECYCLED PAPER SYMBOL - // E11.0 [1] (♾️) infinity - // E0.6 [1] (♿) wheelchair symbol - // E0.0 [6] (⚀..⚅) DIE FACE-1..DIE FACE-6 - if (0x2614 <= code && code <= 0x2685) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x2708) { - // E0.0 [2] (⚐..⚑) WHITE FLAG..BLACK FLAG - // E1.0 [1] (⚒️) hammer and pick - // E0.6 [1] (⚓) anchor - // E1.0 [1] (⚔️) crossed swords - // E4.0 [1] (⚕️) medical symbol - // E1.0 [2] (⚖️..⚗️) balance scale..alembic - // E0.0 [1] (⚘) FLOWER - // E1.0 [1] (⚙️) gear - // E0.0 [1] (⚚) STAFF OF HERMES - // E1.0 [2] (⚛️..⚜️) atom symbol..fleur-de-lis - // E0.0 [3] (⚝..⚟) OUTLINED WHITE STAR..THREE LINES CONVERGING LEFT - // E0.6 [2] (⚠️..⚡) warning..high voltage - // E0.0 [5] (⚢..⚦) DOUBLED FEMALE SIGN..MALE WITH STROKE SIGN - // E13.0 [1] (⚧️) transgender symbol - // E0.0 [2] (⚨..⚩) VERTICAL MALE WITH STROKE SIGN..HORIZONTAL MALE WITH STROKE SIGN - // E0.6 [2] (⚪..⚫) white circle..black circle - // E0.0 [4] (⚬..⚯) MEDIUM SMALL WHITE CIRCLE..UNMARRIED PARTNERSHIP SYMBOL - // E1.0 [2] (⚰️..⚱️) coffin..funeral urn - // E0.0 [11] (⚲..⚼) NEUTER..SESQUIQUADRATE - // E0.6 [2] (⚽..⚾) soccer ball..baseball - // E0.0 [5] (⚿..⛃) SQUARED KEY..BLACK DRAUGHTS KING - // E0.6 [2] (⛄..⛅) snowman without snow..sun behind cloud - // E0.0 [2] (⛆..⛇) RAIN..BLACK SNOWMAN - // E0.7 [1] (⛈️) cloud with lightning and rain - // E0.0 [5] (⛉..⛍) TURNED WHITE SHOGI PIECE..DISABLED CAR - // E0.6 [1] (⛎) Ophiuchus - // E0.7 [1] (⛏️) pick - // E0.0 [1] (⛐) CAR SLIDING - // E0.7 [1] (⛑️) rescue worker’s helmet - // E0.0 [1] (⛒) CIRCLED CROSSING LANES - // E0.7 [1] (⛓️) chains - // E0.6 [1] (⛔) no entry - // E0.0 [20] (⛕..⛨) ALTERNATE ONE-WAY LEFT WAY TRAFFIC..BLACK CROSS ON SHIELD - // E0.7 [1] (⛩️) shinto shrine - // E0.6 [1] (⛪) church - // E0.0 [5] (⛫..⛯) CASTLE..MAP SYMBOL FOR LIGHTHOUSE - // E0.7 [2] (⛰️..⛱️) mountain..umbrella on ground - // E0.6 [2] (⛲..⛳) fountain..flag in hole - // E0.7 [1] (⛴️) ferry - // E0.6 [1] (⛵) sailboat - // E0.0 [1] (⛶) SQUARE FOUR CORNERS - // E0.7 [3] (⛷️..⛹️) skier..person bouncing ball - // E0.6 [1] (⛺) tent - // E0.0 [2] (⛻..⛼) JAPANESE BANK SYMBOL..HEADSTONE GRAVEYARD SYMBOL - // E0.6 [1] (⛽) fuel pump - // E0.0 [4] (⛾..✁) CUP ON BLACK SQUARE..UPPER BLADE SCISSORS - // E0.6 [1] (✂️) scissors - // E0.0 [2] (✃..✄) LOWER BLADE SCISSORS..WHITE SCISSORS - // E0.6 [1] (✅) check mark button - if (0x2690 <= code && code <= 0x2705) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [5] (✈️..✌️) airplane..victory hand - // E0.7 [1] (✍️) writing hand - // E0.0 [1] (✎) LOWER RIGHT PENCIL - // E0.6 [1] (✏️) pencil - // E0.0 [2] (✐..✑) UPPER RIGHT PENCIL..WHITE NIB - // E0.6 [1] (✒️) black nib - if (0x2708 <= code && code <= 0x2712) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x271d) { - // E0.6 [1] (✔️) check mark - if (0x2714 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (✖️) multiply - if (0x2716 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x2721) { - // E0.7 [1] (✝️) latin cross - if (0x271d === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.7 [1] (✡️) star of David - if (0x2721 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (✨) sparkles - if (0x2728 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x2753) { - if (code < 0x2747) { - if (code < 0x2744) { - // E0.6 [2] (✳️..✴️) eight-spoked asterisk..eight-pointed star - if (0x2733 <= code && code <= 0x2734) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (❄️) snowflake - if (0x2744 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x274c) { - // E0.6 [1] (❇️) sparkle - if (0x2747 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (❌) cross mark - if (0x274c === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (❎) cross mark button - if (0x274e === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - else { - if (code < 0x2763) { - if (code < 0x2757) { - // E0.6 [3] (❓..❕) red question mark..white exclamation mark - if (0x2753 <= code && code <= 0x2755) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (❗) red exclamation mark - if (0x2757 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x2795) { - // E1.0 [1] (❣️) heart exclamation - // E0.6 [1] (❤️) red heart - // E0.0 [3] (❥..❧) ROTATED HEAVY BLACK HEART BULLET..ROTATED FLORAL HEART BULLET - if (0x2763 <= code && code <= 0x2767) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x27a1) { - // E0.6 [3] (➕..➗) plus..divide - if (0x2795 <= code && code <= 0x2797) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (➡️) right arrow - if (0x27a1 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - } - } - } - else { - if (code < 0x1f201) { - if (code < 0x3297) { - if (code < 0x2b1b) { - if (code < 0x2934) { - // E0.6 [1] (➰) curly loop - if (0x27b0 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E1.0 [1] (➿) double curly loop - if (0x27bf === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x2b05) { - // E0.6 [2] (⤴️..⤵️) right arrow curving up..right arrow curving down - if (0x2934 <= code && code <= 0x2935) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [3] (⬅️..⬇️) left arrow..down arrow - if (0x2b05 <= code && code <= 0x2b07) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - else { - if (code < 0x2b55) { - if (code < 0x2b50) { - // E0.6 [2] (⬛..⬜) black large square..white large square - if (0x2b1b <= code && code <= 0x2b1c) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (⭐) star - if (0x2b50 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x3030) { - // E0.6 [1] (⭕) hollow red circle - if (0x2b55 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (〰️) wavy dash - if (0x3030 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (〽️) part alternation mark - if (0x303d === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x1f16c) { - if (code < 0x1f000) { - // E0.6 [1] (㊗️) Japanese “congratulations” button - if (0x3297 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - // E0.6 [1] (㊙️) Japanese “secret” button - if (0x3299 === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1f10d) { - // E0.0 [4] (🀀..🀃) MAHJONG TILE EAST WIND..MAHJONG TILE NORTH WIND - // E0.6 [1] (🀄) mahjong red dragon - // E0.0 [202] (🀅..🃎) MAHJONG TILE GREEN DRAGON..PLAYING CARD KING OF DIAMONDS - // E0.6 [1] (🃏) joker - // E0.0 [48] (🃐..🃿) .. - if (0x1f000 <= code && code <= 0x1f0ff) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1f12f) { - // E0.0 [3] (🄍..🄏) CIRCLED ZERO WITH SLASH..CIRCLED DOLLAR SIGN WITH OVERLAID BACKSLASH - if (0x1f10d <= code && code <= 0x1f10f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [1] (🄯) COPYLEFT SYMBOL - if (0x1f12f === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x1f18e) { - if (code < 0x1f17e) { - // E0.0 [4] (🅬..🅯) RAISED MR SIGN..CIRCLED HUMAN FIGURE - // E0.6 [2] (🅰️..🅱️) A button (blood type)..B button (blood type) - if (0x1f16c <= code && code <= 0x1f171) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [2] (🅾️..🅿️) O button (blood type)..P button - if (0x1f17e <= code && code <= 0x1f17f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x1f191) { - // E0.6 [1] (🆎) AB button (blood type) - if (0x1f18e === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1f1ad) { - // E0.6 [10] (🆑..🆚) CL button..VS button - if (0x1f191 <= code && code <= 0x1f19a) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [57] (🆭..🇥) MASK WORK SYMBOL.. - if (0x1f1ad <= code && code <= 0x1f1e5) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - } - } - else { - if (code < 0x1f7d5) { - if (code < 0x1f249) { - if (code < 0x1f22f) { - if (code < 0x1f21a) { - // E0.6 [2] (🈁..🈂️) Japanese “here” button..Japanese “service charge” button - // E0.0 [13] (🈃..🈏) .. - if (0x1f201 <= code && code <= 0x1f20f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.6 [1] (🈚) Japanese “free of charge” button - if (0x1f21a === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x1f232) { - // E0.6 [1] (🈯) Japanese “reserved” button - if (0x1f22f === code) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1f23c) { - // E0.6 [9] (🈲..🈺) Japanese “prohibited” button..Japanese “open for business” button - if (0x1f232 <= code && code <= 0x1f23a) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [4] (🈼..🈿) .. - if (0x1f23c <= code && code <= 0x1f23f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x1f546) { - if (code < 0x1f400) { - // E0.0 [7] (🉉..🉏) .. - // E0.6 [2] (🉐..🉑) Japanese “bargain” button..Japanese “acceptable” button - // E0.0 [174] (🉒..🋿) .. - // E0.6 [13] (🌀..🌌) cyclone..milky way - // E0.7 [2] (🌍..🌎) globe showing Europe-Africa..globe showing Americas - // E0.6 [1] (🌏) globe showing Asia-Australia - // E1.0 [1] (🌐) globe with meridians - // E0.6 [1] (🌑) new moon - // E1.0 [1] (🌒) waxing crescent moon - // E0.6 [3] (🌓..🌕) first quarter moon..full moon - // E1.0 [3] (🌖..🌘) waning gibbous moon..waning crescent moon - // E0.6 [1] (🌙) crescent moon - // E1.0 [1] (🌚) new moon face - // E0.6 [1] (🌛) first quarter moon face - // E0.7 [1] (🌜) last quarter moon face - // E1.0 [2] (🌝..🌞) full moon face..sun with face - // E0.6 [2] (🌟..🌠) glowing star..shooting star - // E0.7 [1] (🌡️) thermometer - // E0.0 [2] (🌢..🌣) BLACK DROPLET..WHITE SUN - // E0.7 [9] (🌤️..🌬️) sun behind small cloud..wind face - // E1.0 [3] (🌭..🌯) hot dog..burrito - // E0.6 [2] (🌰..🌱) chestnut..seedling - // E1.0 [2] (🌲..🌳) evergreen tree..deciduous tree - // E0.6 [2] (🌴..🌵) palm tree..cactus - // E0.7 [1] (🌶️) hot pepper - // E0.6 [20] (🌷..🍊) tulip..tangerine - // E1.0 [1] (🍋) lemon - // E0.6 [4] (🍌..🍏) banana..green apple - // E1.0 [1] (🍐) pear - // E0.6 [43] (🍑..🍻) peach..clinking beer mugs - // E1.0 [1] (🍼) baby bottle - // E0.7 [1] (🍽️) fork and knife with plate - // E1.0 [2] (🍾..🍿) bottle with popping cork..popcorn - // E0.6 [20] (🎀..🎓) ribbon..graduation cap - // E0.0 [2] (🎔..🎕) HEART WITH TIP ON THE LEFT..BOUQUET OF FLOWERS - // E0.7 [2] (🎖️..🎗️) military medal..reminder ribbon - // E0.0 [1] (🎘) MUSICAL KEYBOARD WITH JACKS - // E0.7 [3] (🎙️..🎛️) studio microphone..control knobs - // E0.0 [2] (🎜..🎝) BEAMED ASCENDING MUSICAL NOTES..BEAMED DESCENDING MUSICAL NOTES - // E0.7 [2] (🎞️..🎟️) film frames..admission tickets - // E0.6 [37] (🎠..🏄) carousel horse..person surfing - // E1.0 [1] (🏅) sports medal - // E0.6 [1] (🏆) trophy - // E1.0 [1] (🏇) horse racing - // E0.6 [1] (🏈) american football - // E1.0 [1] (🏉) rugby football - // E0.6 [1] (🏊) person swimming - // E0.7 [4] (🏋️..🏎️) person lifting weights..racing car - // E1.0 [5] (🏏..🏓) cricket game..ping pong - // E0.7 [12] (🏔️..🏟️) snow-capped mountain..stadium - // E0.6 [4] (🏠..🏣) house..Japanese post office - // E1.0 [1] (🏤) post office - // E0.6 [12] (🏥..🏰) hospital..castle - // E0.0 [2] (🏱..🏲) WHITE PENNANT..BLACK PENNANT - // E0.7 [1] (🏳️) white flag - // E1.0 [1] (🏴) black flag - // E0.7 [1] (🏵️) rosette - // E0.0 [1] (🏶) BLACK ROSETTE - // E0.7 [1] (🏷️) label - // E1.0 [3] (🏸..🏺) badminton..amphora - if (0x1f249 <= code && code <= 0x1f3fa) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E1.0 [8] (🐀..🐇) rat..rabbit - // E0.7 [1] (🐈) cat - // E1.0 [3] (🐉..🐋) dragon..whale - // E0.6 [3] (🐌..🐎) snail..horse - // E1.0 [2] (🐏..🐐) ram..goat - // E0.6 [2] (🐑..🐒) ewe..monkey - // E1.0 [1] (🐓) rooster - // E0.6 [1] (🐔) chicken - // E0.7 [1] (🐕) dog - // E1.0 [1] (🐖) pig - // E0.6 [19] (🐗..🐩) boar..poodle - // E1.0 [1] (🐪) camel - // E0.6 [20] (🐫..🐾) two-hump camel..paw prints - // E0.7 [1] (🐿️) chipmunk - // E0.6 [1] (👀) eyes - // E0.7 [1] (👁️) eye - // E0.6 [35] (👂..👤) ear..bust in silhouette - // E1.0 [1] (👥) busts in silhouette - // E0.6 [6] (👦..👫) boy..woman and man holding hands - // E1.0 [2] (👬..👭) men holding hands..women holding hands - // E0.6 [63] (👮..💬) police officer..speech balloon - // E1.0 [1] (💭) thought balloon - // E0.6 [8] (💮..💵) white flower..dollar banknote - // E1.0 [2] (💶..💷) euro banknote..pound banknote - // E0.6 [52] (💸..📫) money with wings..closed mailbox with raised flag - // E0.7 [2] (📬..📭) open mailbox with raised flag..open mailbox with lowered flag - // E0.6 [1] (📮) postbox - // E1.0 [1] (📯) postal horn - // E0.6 [5] (📰..📴) newspaper..mobile phone off - // E1.0 [1] (📵) no mobile phones - // E0.6 [2] (📶..📷) antenna bars..camera - // E1.0 [1] (📸) camera with flash - // E0.6 [4] (📹..📼) video camera..videocassette - // E0.7 [1] (📽️) film projector - // E0.0 [1] (📾) PORTABLE STEREO - // E1.0 [4] (📿..🔂) prayer beads..repeat single button - // E0.6 [1] (🔃) clockwise vertical arrows - // E1.0 [4] (🔄..🔇) counterclockwise arrows button..muted speaker - // E0.7 [1] (🔈) speaker low volume - // E1.0 [1] (🔉) speaker medium volume - // E0.6 [11] (🔊..🔔) speaker high volume..bell - // E1.0 [1] (🔕) bell with slash - // E0.6 [22] (🔖..🔫) bookmark..water pistol - // E1.0 [2] (🔬..🔭) microscope..telescope - // E0.6 [16] (🔮..🔽) crystal ball..downwards button - if (0x1f400 <= code && code <= 0x1f53d) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x1f680) { - // E0.0 [3] (🕆..🕈) WHITE LATIN CROSS..CELTIC CROSS - // E0.7 [2] (🕉️..🕊️) om..dove - // E1.0 [4] (🕋..🕎) kaaba..menorah - // E0.0 [1] (🕏) BOWL OF HYGIEIA - // E0.6 [12] (🕐..🕛) one o’clock..twelve o’clock - // E0.7 [12] (🕜..🕧) one-thirty..twelve-thirty - // E0.0 [7] (🕨..🕮) RIGHT SPEAKER..BOOK - // E0.7 [2] (🕯️..🕰️) candle..mantelpiece clock - // E0.0 [2] (🕱..🕲) BLACK SKULL AND CROSSBONES..NO PIRACY - // E0.7 [7] (🕳️..🕹️) hole..joystick - // E3.0 [1] (🕺) man dancing - // E0.0 [12] (🕻..🖆) LEFT HAND TELEPHONE RECEIVER..PEN OVER STAMPED ENVELOPE - // E0.7 [1] (🖇️) linked paperclips - // E0.0 [2] (🖈..🖉) BLACK PUSHPIN..LOWER LEFT PENCIL - // E0.7 [4] (🖊️..🖍️) pen..crayon - // E0.0 [2] (🖎..🖏) LEFT WRITING HAND..TURNED OK HAND SIGN - // E0.7 [1] (🖐️) hand with fingers splayed - // E0.0 [4] (🖑..🖔) REVERSED RAISED HAND WITH FINGERS SPLAYED..REVERSED VICTORY HAND - // E1.0 [2] (🖕..🖖) middle finger..vulcan salute - // E0.0 [13] (🖗..🖣) WHITE DOWN POINTING LEFT HAND INDEX..BLACK DOWN POINTING BACKHAND INDEX - // E3.0 [1] (🖤) black heart - // E0.7 [1] (🖥️) desktop computer - // E0.0 [2] (🖦..🖧) KEYBOARD AND MOUSE..THREE NETWORKED COMPUTERS - // E0.7 [1] (🖨️) printer - // E0.0 [8] (🖩..🖰) POCKET CALCULATOR..TWO BUTTON MOUSE - // E0.7 [2] (🖱️..🖲️) computer mouse..trackball - // E0.0 [9] (🖳..🖻) OLD PERSONAL COMPUTER..DOCUMENT WITH PICTURE - // E0.7 [1] (🖼️) framed picture - // E0.0 [5] (🖽..🗁) FRAME WITH TILES..OPEN FOLDER - // E0.7 [3] (🗂️..🗄️) card index dividers..file cabinet - // E0.0 [12] (🗅..🗐) EMPTY NOTE..PAGES - // E0.7 [3] (🗑️..🗓️) wastebasket..spiral calendar - // E0.0 [8] (🗔..🗛) DESKTOP WINDOW..DECREASE FONT SIZE SYMBOL - // E0.7 [3] (🗜️..🗞️) clamp..rolled-up newspaper - // E0.0 [2] (🗟..🗠) PAGE WITH CIRCLED TEXT..STOCK CHART - // E0.7 [1] (🗡️) dagger - // E0.0 [1] (🗢) LIPS - // E0.7 [1] (🗣️) speaking head - // E0.0 [4] (🗤..🗧) THREE RAYS ABOVE..THREE RAYS RIGHT - // E2.0 [1] (🗨️) left speech bubble - // E0.0 [6] (🗩..🗮) RIGHT SPEECH BUBBLE..LEFT ANGER BUBBLE - // E0.7 [1] (🗯️) right anger bubble - // E0.0 [3] (🗰..🗲) MOOD BUBBLE..LIGHTNING MOOD - // E0.7 [1] (🗳️) ballot box with ballot - // E0.0 [6] (🗴..🗹) BALLOT SCRIPT X..BALLOT BOX WITH BOLD CHECK - // E0.7 [1] (🗺️) world map - // E0.6 [5] (🗻..🗿) mount fuji..moai - // E1.0 [1] (😀) grinning face - // E0.6 [6] (😁..😆) beaming face with smiling eyes..grinning squinting face - // E1.0 [2] (😇..😈) smiling face with halo..smiling face with horns - // E0.6 [5] (😉..😍) winking face..smiling face with heart-eyes - // E1.0 [1] (😎) smiling face with sunglasses - // E0.6 [1] (😏) smirking face - // E0.7 [1] (😐) neutral face - // E1.0 [1] (😑) expressionless face - // E0.6 [3] (😒..😔) unamused face..pensive face - // E1.0 [1] (😕) confused face - // E0.6 [1] (😖) confounded face - // E1.0 [1] (😗) kissing face - // E0.6 [1] (😘) face blowing a kiss - // E1.0 [1] (😙) kissing face with smiling eyes - // E0.6 [1] (😚) kissing face with closed eyes - // E1.0 [1] (😛) face with tongue - // E0.6 [3] (😜..😞) winking face with tongue..disappointed face - // E1.0 [1] (😟) worried face - // E0.6 [6] (😠..😥) angry face..sad but relieved face - // E1.0 [2] (😦..😧) frowning face with open mouth..anguished face - // E0.6 [4] (😨..😫) fearful face..tired face - // E1.0 [1] (😬) grimacing face - // E0.6 [1] (😭) loudly crying face - // E1.0 [2] (😮..😯) face with open mouth..hushed face - // E0.6 [4] (😰..😳) anxious face with sweat..flushed face - // E1.0 [1] (😴) sleeping face - // E0.6 [1] (😵) face with crossed-out eyes - // E1.0 [1] (😶) face without mouth - // E0.6 [10] (😷..🙀) face with medical mask..weary cat - // E1.0 [4] (🙁..🙄) slightly frowning face..face with rolling eyes - // E0.6 [11] (🙅..🙏) person gesturing NO..folded hands - if (0x1f546 <= code && code <= 0x1f64f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1f774) { - // E0.6 [1] (🚀) rocket - // E1.0 [2] (🚁..🚂) helicopter..locomotive - // E0.6 [3] (🚃..🚅) railway car..bullet train - // E1.0 [1] (🚆) train - // E0.6 [1] (🚇) metro - // E1.0 [1] (🚈) light rail - // E0.6 [1] (🚉) station - // E1.0 [2] (🚊..🚋) tram..tram car - // E0.6 [1] (🚌) bus - // E0.7 [1] (🚍) oncoming bus - // E1.0 [1] (🚎) trolleybus - // E0.6 [1] (🚏) bus stop - // E1.0 [1] (🚐) minibus - // E0.6 [3] (🚑..🚓) ambulance..police car - // E0.7 [1] (🚔) oncoming police car - // E0.6 [1] (🚕) taxi - // E1.0 [1] (🚖) oncoming taxi - // E0.6 [1] (🚗) automobile - // E0.7 [1] (🚘) oncoming automobile - // E0.6 [2] (🚙..🚚) sport utility vehicle..delivery truck - // E1.0 [7] (🚛..🚡) articulated lorry..aerial tramway - // E0.6 [1] (🚢) ship - // E1.0 [1] (🚣) person rowing boat - // E0.6 [2] (🚤..🚥) speedboat..horizontal traffic light - // E1.0 [1] (🚦) vertical traffic light - // E0.6 [7] (🚧..🚭) construction..no smoking - // E1.0 [4] (🚮..🚱) litter in bin sign..non-potable water - // E0.6 [1] (🚲) bicycle - // E1.0 [3] (🚳..🚵) no bicycles..person mountain biking - // E0.6 [1] (🚶) person walking - // E1.0 [2] (🚷..🚸) no pedestrians..children crossing - // E0.6 [6] (🚹..🚾) men’s room..water closet - // E1.0 [1] (🚿) shower - // E0.6 [1] (🛀) person taking bath - // E1.0 [5] (🛁..🛅) bathtub..left luggage - // E0.0 [5] (🛆..🛊) TRIANGLE WITH ROUNDED CORNERS..GIRLS SYMBOL - // E0.7 [1] (🛋️) couch and lamp - // E1.0 [1] (🛌) person in bed - // E0.7 [3] (🛍️..🛏️) shopping bags..bed - // E1.0 [1] (🛐) place of worship - // E3.0 [2] (🛑..🛒) stop sign..shopping cart - // E0.0 [2] (🛓..🛔) STUPA..PAGODA - // E12.0 [1] (🛕) hindu temple - // E13.0 [2] (🛖..🛗) hut..elevator - // E0.0 [4] (🛘..🛛) .. - // E15.0 [1] (🛜) wireless - // E14.0 [3] (🛝..🛟) playground slide..ring buoy - // E0.7 [6] (🛠️..🛥️) hammer and wrench..motor boat - // E0.0 [3] (🛦..🛨) UP-POINTING MILITARY AIRPLANE..UP-POINTING SMALL AIRPLANE - // E0.7 [1] (🛩️) small airplane - // E0.0 [1] (🛪) NORTHEAST-POINTING AIRPLANE - // E1.0 [2] (🛫..🛬) airplane departure..airplane arrival - // E0.0 [3] (🛭..🛯) .. - // E0.7 [1] (🛰️) satellite - // E0.0 [2] (🛱..🛲) ONCOMING FIRE ENGINE..DIESEL LOCOMOTIVE - // E0.7 [1] (🛳️) passenger ship - // E3.0 [3] (🛴..🛶) kick scooter..canoe - // E5.0 [2] (🛷..🛸) sled..flying saucer - // E11.0 [1] (🛹) skateboard - // E12.0 [1] (🛺) auto rickshaw - // E13.0 [2] (🛻..🛼) pickup truck..roller skate - // E0.0 [3] (🛽..🛿) .. - if (0x1f680 <= code && code <= 0x1f6ff) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [12] (🝴..🝿) LOT OF FORTUNE..ORCUS - if (0x1f774 <= code && code <= 0x1f77f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - } - else { - if (code < 0x1f8ae) { - if (code < 0x1f848) { - if (code < 0x1f80c) { - // E0.0 [11] (🟕..🟟) CIRCLED TRIANGLE.. - // E12.0 [12] (🟠..🟫) orange circle..brown square - // E0.0 [4] (🟬..🟯) .. - // E14.0 [1] (🟰) heavy equals sign - // E0.0 [15] (🟱..🟿) .. - if (0x1f7d5 <= code && code <= 0x1f7ff) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [4] (🠌..🠏) .. - if (0x1f80c <= code && code <= 0x1f80f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x1f85a) { - // E0.0 [8] (🡈..🡏) .. - if (0x1f848 <= code && code <= 0x1f84f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1f888) { - // E0.0 [6] (🡚..🡟) .. - if (0x1f85a <= code && code <= 0x1f85f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0 [8] (🢈..🢏) .. - if (0x1f888 <= code && code <= 0x1f88f) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - else { - if (code < 0x1f93c) { - if (code < 0x1f90c) { - // E0.0 [82] (🢮..🣿) .. - if (0x1f8ae <= code && code <= 0x1f8ff) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E13.0 [1] (🤌) pinched fingers - // E12.0 [3] (🤍..🤏) white heart..pinching hand - // E1.0 [9] (🤐..🤘) zipper-mouth face..sign of the horns - // E3.0 [6] (🤙..🤞) call me hand..crossed fingers - // E5.0 [1] (🤟) love-you gesture - // E3.0 [8] (🤠..🤧) cowboy hat face..sneezing face - // E5.0 [8] (🤨..🤯) face with raised eyebrow..exploding head - // E3.0 [1] (🤰) pregnant woman - // E5.0 [2] (🤱..🤲) breast-feeding..palms up together - // E3.0 [8] (🤳..🤺) selfie..person fencing - if (0x1f90c <= code && code <= 0x1f93a) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - else { - if (code < 0x1f947) { - // E3.0 [3] (🤼..🤾) people wrestling..person playing handball - // E12.0 [1] (🤿) diving mask - // E3.0 [6] (🥀..🥅) wilted flower..goal net - if (0x1f93c <= code && code <= 0x1f945) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - if (code < 0x1fc00) { - // E3.0 [5] (🥇..🥋) 1st place medal..martial arts uniform - // E5.0 [1] (🥌) curling stone - // E11.0 [3] (🥍..🥏) lacrosse..flying disc - // E3.0 [15] (🥐..🥞) croissant..pancakes - // E5.0 [13] (🥟..🥫) dumpling..canned food - // E11.0 [5] (🥬..🥰) leafy green..smiling face with hearts - // E12.0 [1] (🥱) yawning face - // E13.0 [1] (🥲) smiling face with tear - // E11.0 [4] (🥳..🥶) partying face..cold face - // E13.0 [2] (🥷..🥸) ninja..disguised face - // E14.0 [1] (🥹) face holding back tears - // E11.0 [1] (🥺) pleading face - // E12.0 [1] (🥻) sari - // E11.0 [4] (🥼..🥿) lab coat..flat shoe - // E1.0 [5] (🦀..🦄) crab..unicorn - // E3.0 [13] (🦅..🦑) eagle..squid - // E5.0 [6] (🦒..🦗) giraffe..cricket - // E11.0 [11] (🦘..🦢) kangaroo..swan - // E13.0 [2] (🦣..🦤) mammoth..dodo - // E12.0 [6] (🦥..🦪) sloth..oyster - // E13.0 [3] (🦫..🦭) beaver..seal - // E12.0 [2] (🦮..🦯) guide dog..white cane - // E11.0 [10] (🦰..🦹) red hair..supervillain - // E12.0 [6] (🦺..🦿) safety vest..mechanical leg - // E1.0 [1] (🧀) cheese wedge - // E11.0 [2] (🧁..🧂) cupcake..salt - // E12.0 [8] (🧃..🧊) beverage box..ice - // E13.0 [1] (🧋) bubble tea - // E14.0 [1] (🧌) troll - // E12.0 [3] (🧍..🧏) person standing..deaf person - // E5.0 [23] (🧐..🧦) face with monocle..socks - // E11.0 [25] (🧧..🧿) red envelope..nazar amulet - // E0.0 [112] (🨀..🩯) NEUTRAL CHESS KING.. - // E12.0 [4] (🩰..🩳) ballet shoes..shorts - // E13.0 [1] (🩴) thong sandal - // E15.0 [3] (🩵..🩷) light blue heart..pink heart - // E12.0 [3] (🩸..🩺) drop of blood..stethoscope - // E14.0 [2] (🩻..🩼) x-ray..crutch - // E0.0 [3] (🩽..🩿) .. - // E12.0 [3] (🪀..🪂) yo-yo..parachute - // E13.0 [4] (🪃..🪆) boomerang..nesting dolls - // E15.0 [2] (🪇..🪈) maracas..flute - // E0.0 [7] (🪉..🪏) .. - // E12.0 [6] (🪐..🪕) ringed planet..banjo - // E13.0 [19] (🪖..🪨) military helmet..rock - // E14.0 [4] (🪩..🪬) mirror ball..hamsa - // E15.0 [3] (🪭..🪯) folding hand fan..khanda - // E13.0 [7] (🪰..🪶) fly..feather - // E14.0 [4] (🪷..🪺) lotus..nest with eggs - // E15.0 [3] (🪻..🪽) hyacinth..wing - // E0.0 [1] (🪾) - // E15.0 [1] (🪿) goose - // E13.0 [3] (🫀..🫂) anatomical heart..people hugging - // E14.0 [3] (🫃..🫅) pregnant man..person with crown - // E0.0 [8] (🫆..🫍) .. - // E15.0 [2] (🫎..🫏) moose..donkey - // E13.0 [7] (🫐..🫖) blueberries..teapot - // E14.0 [3] (🫗..🫙) pouring liquid..jar - // E15.0 [2] (🫚..🫛) ginger root..pea pod - // E0.0 [4] (🫜..🫟) .. - // E14.0 [8] (🫠..🫧) melting face..bubbles - // E15.0 [1] (🫨) shaking face - // E0.0 [7] (🫩..🫯) .. - // E14.0 [7] (🫰..🫶) hand with index finger and thumb crossed..heart hands - // E15.0 [2] (🫷..🫸) leftwards pushing hand..rightwards pushing hand - // E0.0 [7] (🫹..🫿) .. - if (0x1f947 <= code && code <= 0x1faff) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - else { - // E0.0[1022] (🰀..🿽) .. - if (0x1fc00 <= code && code <= 0x1fffd) { - return boundaries_1.EXTENDED_PICTOGRAPHIC; - } - } - } - } - } - } - } - } - // unlisted code points are treated as a break property of "Other" - return boundaries_1.CLUSTER_BREAK.OTHER; - } -} -exports.default = Graphemer; diff --git a/tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerHelper.js b/tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerHelper.js deleted file mode 100644 index 9bc71ebd9cdd6a..00000000000000 --- a/tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerHelper.js +++ /dev/null @@ -1,169 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -const boundaries_1 = require("./boundaries"); -// BreakTypes -// @type {BreakType} -const NotBreak = 0; -const BreakStart = 1; -const Break = 2; -const BreakLastRegional = 3; -const BreakPenultimateRegional = 4; -class GraphemerHelper { - /** - * Check if the the character at the position {pos} of the string is surrogate - * @param str {string} - * @param pos {number} - * @returns {boolean} - */ - static isSurrogate(str, pos) { - return (0xd800 <= str.charCodeAt(pos) && - str.charCodeAt(pos) <= 0xdbff && - 0xdc00 <= str.charCodeAt(pos + 1) && - str.charCodeAt(pos + 1) <= 0xdfff); - } - /** - * The String.prototype.codePointAt polyfill - * Private function, gets a Unicode code point from a JavaScript UTF-16 string - * handling surrogate pairs appropriately - * @param str {string} - * @param idx {number} - * @returns {number} - */ - static codePointAt(str, idx) { - if (idx === undefined) { - idx = 0; - } - const code = str.charCodeAt(idx); - // if a high surrogate - if (0xd800 <= code && code <= 0xdbff && idx < str.length - 1) { - const hi = code; - const low = str.charCodeAt(idx + 1); - if (0xdc00 <= low && low <= 0xdfff) { - return (hi - 0xd800) * 0x400 + (low - 0xdc00) + 0x10000; - } - return hi; - } - // if a low surrogate - if (0xdc00 <= code && code <= 0xdfff && idx >= 1) { - const hi = str.charCodeAt(idx - 1); - const low = code; - if (0xd800 <= hi && hi <= 0xdbff) { - return (hi - 0xd800) * 0x400 + (low - 0xdc00) + 0x10000; - } - return low; - } - // just return the char if an unmatched surrogate half or a - // single-char codepoint - return code; - } - // - /** - * Private function, returns whether a break is allowed between the two given grapheme breaking classes - * Implemented the UAX #29 3.1.1 Grapheme Cluster Boundary Rules on extended grapheme clusters - * @param start {number} - * @param mid {Array} - * @param end {number} - * @param startEmoji {number} - * @param midEmoji {Array} - * @param endEmoji {number} - * @returns {number} - */ - static shouldBreak(start, mid, end, startEmoji, midEmoji, endEmoji) { - const all = [start].concat(mid).concat([end]); - const allEmoji = [startEmoji].concat(midEmoji).concat([endEmoji]); - const previous = all[all.length - 2]; - const next = end; - const nextEmoji = endEmoji; - // Lookahead terminator for: - // GB12. ^ (RI RI)* RI ? RI - // GB13. [^RI] (RI RI)* RI ? RI - const rIIndex = all.lastIndexOf(boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR); - if (rIIndex > 0 && - all.slice(1, rIIndex).every(function (c) { - return c === boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR; - }) && - [boundaries_1.CLUSTER_BREAK.PREPEND, boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR].indexOf(previous) === -1) { - if (all.filter(function (c) { - return c === boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR; - }).length % - 2 === - 1) { - return BreakLastRegional; - } - else { - return BreakPenultimateRegional; - } - } - // GB3. CR × LF - if (previous === boundaries_1.CLUSTER_BREAK.CR && next === boundaries_1.CLUSTER_BREAK.LF) { - return NotBreak; - } - // GB4. (Control|CR|LF) ÷ - else if (previous === boundaries_1.CLUSTER_BREAK.CONTROL || - previous === boundaries_1.CLUSTER_BREAK.CR || - previous === boundaries_1.CLUSTER_BREAK.LF) { - return BreakStart; - } - // GB5. ÷ (Control|CR|LF) - else if (next === boundaries_1.CLUSTER_BREAK.CONTROL || - next === boundaries_1.CLUSTER_BREAK.CR || - next === boundaries_1.CLUSTER_BREAK.LF) { - return BreakStart; - } - // GB6. L × (L|V|LV|LVT) - else if (previous === boundaries_1.CLUSTER_BREAK.L && - (next === boundaries_1.CLUSTER_BREAK.L || - next === boundaries_1.CLUSTER_BREAK.V || - next === boundaries_1.CLUSTER_BREAK.LV || - next === boundaries_1.CLUSTER_BREAK.LVT)) { - return NotBreak; - } - // GB7. (LV|V) × (V|T) - else if ((previous === boundaries_1.CLUSTER_BREAK.LV || previous === boundaries_1.CLUSTER_BREAK.V) && - (next === boundaries_1.CLUSTER_BREAK.V || next === boundaries_1.CLUSTER_BREAK.T)) { - return NotBreak; - } - // GB8. (LVT|T) × (T) - else if ((previous === boundaries_1.CLUSTER_BREAK.LVT || previous === boundaries_1.CLUSTER_BREAK.T) && - next === boundaries_1.CLUSTER_BREAK.T) { - return NotBreak; - } - // GB9. × (Extend|ZWJ) - else if (next === boundaries_1.CLUSTER_BREAK.EXTEND || next === boundaries_1.CLUSTER_BREAK.ZWJ) { - return NotBreak; - } - // GB9a. × SpacingMark - else if (next === boundaries_1.CLUSTER_BREAK.SPACINGMARK) { - return NotBreak; - } - // GB9b. Prepend × - else if (previous === boundaries_1.CLUSTER_BREAK.PREPEND) { - return NotBreak; - } - // GB11. \p{Extended_Pictographic} Extend* ZWJ × \p{Extended_Pictographic} - const previousNonExtendIndex = allEmoji - .slice(0, -1) - .lastIndexOf(boundaries_1.EXTENDED_PICTOGRAPHIC); - if (previousNonExtendIndex !== -1 && - allEmoji[previousNonExtendIndex] === boundaries_1.EXTENDED_PICTOGRAPHIC && - all.slice(previousNonExtendIndex + 1, -2).every(function (c) { - return c === boundaries_1.CLUSTER_BREAK.EXTEND; - }) && - previous === boundaries_1.CLUSTER_BREAK.ZWJ && - nextEmoji === boundaries_1.EXTENDED_PICTOGRAPHIC) { - return NotBreak; - } - // GB12. ^ (RI RI)* RI × RI - // GB13. [^RI] (RI RI)* RI × RI - if (mid.indexOf(boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR) !== -1) { - return Break; - } - if (previous === boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR && - next === boundaries_1.CLUSTER_BREAK.REGIONAL_INDICATOR) { - return NotBreak; - } - // GB999. Any ? Any - return BreakStart; - } -} -exports.default = GraphemerHelper; diff --git a/tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerIterator.js b/tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerIterator.js deleted file mode 100644 index dd21ce54d291f4..00000000000000 --- a/tools/node_modules/eslint/node_modules/graphemer/lib/GraphemerIterator.js +++ /dev/null @@ -1,36 +0,0 @@ -"use strict"; -Object.defineProperty(exports, "__esModule", { value: true }); -/** - * GraphemerIterator - * - * Takes a string and a "BreakHandler" method during initialisation - * and creates an iterable object that returns individual graphemes. - * - * @param str {string} - * @return GraphemerIterator - */ -class GraphemerIterator { - constructor(str, nextBreak) { - this._index = 0; - this._str = str; - this._nextBreak = nextBreak; - } - [Symbol.iterator]() { - return this; - } - next() { - let brk; - if ((brk = this._nextBreak(this._str, this._index)) < this._str.length) { - const value = this._str.slice(this._index, brk); - this._index = brk; - return { value: value, done: false }; - } - if (this._index < this._str.length) { - const value = this._str.slice(this._index); - this._index = this._str.length; - return { value: value, done: false }; - } - return { value: undefined, done: true }; - } -} -exports.default = GraphemerIterator; diff --git a/tools/node_modules/eslint/node_modules/graphemer/lib/boundaries.js b/tools/node_modules/eslint/node_modules/graphemer/lib/boundaries.js deleted file mode 100644 index 2c98c145680e10..00000000000000 --- a/tools/node_modules/eslint/node_modules/graphemer/lib/boundaries.js +++ /dev/null @@ -1,38 +0,0 @@ -"use strict"; -/** - * The Grapheme_Cluster_Break property value - * @see https://www.unicode.org/reports/tr29/#Default_Grapheme_Cluster_Table - */ -Object.defineProperty(exports, "__esModule", { value: true }); -exports.EXTENDED_PICTOGRAPHIC = exports.CLUSTER_BREAK = void 0; -var CLUSTER_BREAK; -(function (CLUSTER_BREAK) { - CLUSTER_BREAK[CLUSTER_BREAK["CR"] = 0] = "CR"; - CLUSTER_BREAK[CLUSTER_BREAK["LF"] = 1] = "LF"; - CLUSTER_BREAK[CLUSTER_BREAK["CONTROL"] = 2] = "CONTROL"; - CLUSTER_BREAK[CLUSTER_BREAK["EXTEND"] = 3] = "EXTEND"; - CLUSTER_BREAK[CLUSTER_BREAK["REGIONAL_INDICATOR"] = 4] = "REGIONAL_INDICATOR"; - CLUSTER_BREAK[CLUSTER_BREAK["SPACINGMARK"] = 5] = "SPACINGMARK"; - CLUSTER_BREAK[CLUSTER_BREAK["L"] = 6] = "L"; - CLUSTER_BREAK[CLUSTER_BREAK["V"] = 7] = "V"; - CLUSTER_BREAK[CLUSTER_BREAK["T"] = 8] = "T"; - CLUSTER_BREAK[CLUSTER_BREAK["LV"] = 9] = "LV"; - CLUSTER_BREAK[CLUSTER_BREAK["LVT"] = 10] = "LVT"; - CLUSTER_BREAK[CLUSTER_BREAK["OTHER"] = 11] = "OTHER"; - CLUSTER_BREAK[CLUSTER_BREAK["PREPEND"] = 12] = "PREPEND"; - CLUSTER_BREAK[CLUSTER_BREAK["E_BASE"] = 13] = "E_BASE"; - CLUSTER_BREAK[CLUSTER_BREAK["E_MODIFIER"] = 14] = "E_MODIFIER"; - CLUSTER_BREAK[CLUSTER_BREAK["ZWJ"] = 15] = "ZWJ"; - CLUSTER_BREAK[CLUSTER_BREAK["GLUE_AFTER_ZWJ"] = 16] = "GLUE_AFTER_ZWJ"; - CLUSTER_BREAK[CLUSTER_BREAK["E_BASE_GAZ"] = 17] = "E_BASE_GAZ"; -})(CLUSTER_BREAK = exports.CLUSTER_BREAK || (exports.CLUSTER_BREAK = {})); -/** - * The Emoji character property is an extension of UCD but shares the same namespace and structure - * @see http://www.unicode.org/reports/tr51/tr51-14.html#Emoji_Properties_and_Data_Files - * - * Here we model Extended_Pictograhpic only to implement UAX #29 GB11 - * \p{Extended_Pictographic} Extend* ZWJ × \p{Extended_Pictographic} - * - * The Emoji character property should not be mixed with Grapheme_Cluster_Break since they are not exclusive - */ -exports.EXTENDED_PICTOGRAPHIC = 101; diff --git a/tools/node_modules/eslint/node_modules/graphemer/lib/index.js b/tools/node_modules/eslint/node_modules/graphemer/lib/index.js deleted file mode 100644 index 548bdd017a34fb..00000000000000 --- a/tools/node_modules/eslint/node_modules/graphemer/lib/index.js +++ /dev/null @@ -1,7 +0,0 @@ -"use strict"; -var __importDefault = (this && this.__importDefault) || function (mod) { - return (mod && mod.__esModule) ? mod : { "default": mod }; -}; -Object.defineProperty(exports, "__esModule", { value: true }); -const Graphemer_1 = __importDefault(require("./Graphemer")); -exports.default = Graphemer_1.default; diff --git a/tools/node_modules/eslint/node_modules/graphemer/package.json b/tools/node_modules/eslint/node_modules/graphemer/package.json deleted file mode 100644 index cf0315ddc3eff0..00000000000000 --- a/tools/node_modules/eslint/node_modules/graphemer/package.json +++ /dev/null @@ -1,54 +0,0 @@ -{ - "name": "graphemer", - "version": "1.4.0", - "description": "A JavaScript library that breaks strings into their individual user-perceived characters (including emojis!)", - "homepage": "https://github.com/flmnt/graphemer", - "author": "Matt Davies (https://github.com/mattpauldavies)", - "contributors": [ - "Orlin Georgiev (https://github.com/orling)", - "Huáng Jùnliàng (https://github.com/JLHwung)" - ], - "main": "./lib/index.js", - "types": "./lib/index.d.ts", - "files": [ - "lib" - ], - "license": "MIT", - "keywords": [ - "utf-8", - "strings", - "emoji", - "split" - ], - "scripts": { - "prepublishOnly": "npm run build", - "build": "tsc --project tsconfig.json", - "pretest": "npm run build", - "test": "ts-node node_modules/tape/bin/tape tests/**.ts", - "prettier:check": "prettier --check .", - "prettier:fix": "prettier --write ." - }, - "repository": { - "type": "git", - "url": "https://github.com/flmnt/graphemer.git" - }, - "bugs": "https://github.com/flmnt/graphemer/issues", - "devDependencies": { - "@types/tape": "^4.13.0", - "husky": "^4.3.0", - "lint-staged": "^10.3.0", - "prettier": "^2.1.1", - "tape": "^4.6.3", - "ts-node": "^9.0.0", - "typescript": "^4.0.2" - }, - "husky": { - "hooks": { - "pre-commit": "lint-staged", - "pre-push": "npm test" - } - }, - "lint-staged": { - "*.{js,ts,md,json}": "prettier --write" - } -} diff --git a/tools/node_modules/eslint/node_modules/inflight/LICENSE b/tools/node_modules/eslint/node_modules/inflight/LICENSE deleted file mode 100644 index 05eeeb88c2ef4c..00000000000000 --- a/tools/node_modules/eslint/node_modules/inflight/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/inflight/inflight.js b/tools/node_modules/eslint/node_modules/inflight/inflight.js deleted file mode 100644 index 48202b3ca41d97..00000000000000 --- a/tools/node_modules/eslint/node_modules/inflight/inflight.js +++ /dev/null @@ -1,54 +0,0 @@ -var wrappy = require('wrappy') -var reqs = Object.create(null) -var once = require('once') - -module.exports = wrappy(inflight) - -function inflight (key, cb) { - if (reqs[key]) { - reqs[key].push(cb) - return null - } else { - reqs[key] = [cb] - return makeres(key) - } -} - -function makeres (key) { - return once(function RES () { - var cbs = reqs[key] - var len = cbs.length - var args = slice(arguments) - - // XXX It's somewhat ambiguous whether a new callback added in this - // pass should be queued for later execution if something in the - // list of callbacks throws, or if it should just be discarded. - // However, it's such an edge case that it hardly matters, and either - // choice is likely as surprising as the other. - // As it happens, we do go ahead and schedule it for later execution. - try { - for (var i = 0; i < len; i++) { - cbs[i].apply(null, args) - } - } finally { - if (cbs.length > len) { - // added more in the interim. - // de-zalgo, just in case, but don't call again. - cbs.splice(0, len) - process.nextTick(function () { - RES.apply(null, args) - }) - } else { - delete reqs[key] - } - } - }) -} - -function slice (args) { - var length = args.length - var array = [] - - for (var i = 0; i < length; i++) array[i] = args[i] - return array -} diff --git a/tools/node_modules/eslint/node_modules/inflight/package.json b/tools/node_modules/eslint/node_modules/inflight/package.json deleted file mode 100644 index 6084d3509a5d6d..00000000000000 --- a/tools/node_modules/eslint/node_modules/inflight/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "inflight", - "version": "1.0.6", - "description": "Add callbacks to requests in flight to avoid async duplication", - "main": "inflight.js", - "files": [ - "inflight.js" - ], - "dependencies": { - "once": "^1.3.0", - "wrappy": "1" - }, - "devDependencies": { - "tap": "^7.1.2" - }, - "scripts": { - "test": "tap test.js --100" - }, - "repository": { - "type": "git", - "url": "https://github.com/npm/inflight.git" - }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "bugs": { - "url": "https://github.com/isaacs/inflight/issues" - }, - "homepage": "https://github.com/isaacs/inflight", - "license": "ISC" -} diff --git a/tools/node_modules/eslint/node_modules/inherits/LICENSE b/tools/node_modules/eslint/node_modules/inherits/LICENSE deleted file mode 100644 index dea3013d6710ee..00000000000000 --- a/tools/node_modules/eslint/node_modules/inherits/LICENSE +++ /dev/null @@ -1,16 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH -REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND -FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, -INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM -LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR -OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR -PERFORMANCE OF THIS SOFTWARE. - diff --git a/tools/node_modules/eslint/node_modules/inherits/inherits.js b/tools/node_modules/eslint/node_modules/inherits/inherits.js deleted file mode 100644 index f71f2d93294a67..00000000000000 --- a/tools/node_modules/eslint/node_modules/inherits/inherits.js +++ /dev/null @@ -1,9 +0,0 @@ -try { - var util = require('util'); - /* istanbul ignore next */ - if (typeof util.inherits !== 'function') throw ''; - module.exports = util.inherits; -} catch (e) { - /* istanbul ignore next */ - module.exports = require('./inherits_browser.js'); -} diff --git a/tools/node_modules/eslint/node_modules/inherits/inherits_browser.js b/tools/node_modules/eslint/node_modules/inherits/inherits_browser.js deleted file mode 100644 index 86bbb3dc29e484..00000000000000 --- a/tools/node_modules/eslint/node_modules/inherits/inherits_browser.js +++ /dev/null @@ -1,27 +0,0 @@ -if (typeof Object.create === 'function') { - // implementation from standard node.js 'util' module - module.exports = function inherits(ctor, superCtor) { - if (superCtor) { - ctor.super_ = superCtor - ctor.prototype = Object.create(superCtor.prototype, { - constructor: { - value: ctor, - enumerable: false, - writable: true, - configurable: true - } - }) - } - }; -} else { - // old school shim for old browsers - module.exports = function inherits(ctor, superCtor) { - if (superCtor) { - ctor.super_ = superCtor - var TempCtor = function () {} - TempCtor.prototype = superCtor.prototype - ctor.prototype = new TempCtor() - ctor.prototype.constructor = ctor - } - } -} diff --git a/tools/node_modules/eslint/node_modules/inherits/package.json b/tools/node_modules/eslint/node_modules/inherits/package.json deleted file mode 100644 index 37b4366b83e63e..00000000000000 --- a/tools/node_modules/eslint/node_modules/inherits/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "inherits", - "description": "Browser-friendly inheritance fully compatible with standard node.js inherits()", - "version": "2.0.4", - "keywords": [ - "inheritance", - "class", - "klass", - "oop", - "object-oriented", - "inherits", - "browser", - "browserify" - ], - "main": "./inherits.js", - "browser": "./inherits_browser.js", - "repository": "git://github.com/isaacs/inherits", - "license": "ISC", - "scripts": { - "test": "tap" - }, - "devDependencies": { - "tap": "^14.2.4" - }, - "files": [ - "inherits.js", - "inherits_browser.js" - ] -} diff --git a/tools/node_modules/eslint/node_modules/once/LICENSE b/tools/node_modules/eslint/node_modules/once/LICENSE deleted file mode 100644 index 19129e315fe593..00000000000000 --- a/tools/node_modules/eslint/node_modules/once/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/once/once.js b/tools/node_modules/eslint/node_modules/once/once.js deleted file mode 100644 index 235406736d9d94..00000000000000 --- a/tools/node_modules/eslint/node_modules/once/once.js +++ /dev/null @@ -1,42 +0,0 @@ -var wrappy = require('wrappy') -module.exports = wrappy(once) -module.exports.strict = wrappy(onceStrict) - -once.proto = once(function () { - Object.defineProperty(Function.prototype, 'once', { - value: function () { - return once(this) - }, - configurable: true - }) - - Object.defineProperty(Function.prototype, 'onceStrict', { - value: function () { - return onceStrict(this) - }, - configurable: true - }) -}) - -function once (fn) { - var f = function () { - if (f.called) return f.value - f.called = true - return f.value = fn.apply(this, arguments) - } - f.called = false - return f -} - -function onceStrict (fn) { - var f = function () { - if (f.called) - throw new Error(f.onceError) - f.called = true - return f.value = fn.apply(this, arguments) - } - var name = fn.name || 'Function wrapped with `once`' - f.onceError = name + " shouldn't be called more than once" - f.called = false - return f -} diff --git a/tools/node_modules/eslint/node_modules/once/package.json b/tools/node_modules/eslint/node_modules/once/package.json deleted file mode 100644 index 16815b2fa11193..00000000000000 --- a/tools/node_modules/eslint/node_modules/once/package.json +++ /dev/null @@ -1,33 +0,0 @@ -{ - "name": "once", - "version": "1.4.0", - "description": "Run a function exactly one time", - "main": "once.js", - "directories": { - "test": "test" - }, - "dependencies": { - "wrappy": "1" - }, - "devDependencies": { - "tap": "^7.0.1" - }, - "scripts": { - "test": "tap test/*.js" - }, - "files": [ - "once.js" - ], - "repository": { - "type": "git", - "url": "git://github.com/isaacs/once" - }, - "keywords": [ - "once", - "function", - "one", - "single" - ], - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC" -} diff --git a/tools/node_modules/eslint/node_modules/optionator/lib/help.js b/tools/node_modules/eslint/node_modules/optionator/lib/help.js index d75b28b4adf5d9..59e6f9694c9584 100644 --- a/tools/node_modules/eslint/node_modules/optionator/lib/help.js +++ b/tools/node_modules/eslint/node_modules/optionator/lib/help.js @@ -3,7 +3,7 @@ var ref$, id, find, sort, min, max, map, unlines, nameToRaw, dasherize, naturalJoin, wordWrap, wordwrap, getPreText, setHelpStyleDefaults, generateHelpForOption, generateHelp; ref$ = require('prelude-ls'), id = ref$.id, find = ref$.find, sort = ref$.sort, min = ref$.min, max = ref$.max, map = ref$.map, unlines = ref$.unlines; ref$ = require('./util'), nameToRaw = ref$.nameToRaw, dasherize = ref$.dasherize, naturalJoin = ref$.naturalJoin; - wordWrap = require('@aashutoshrathi/word-wrap'); + wordWrap = require('word-wrap'); wordwrap = function(a, b){ var ref$, indent, width; ref$ = b === undefined diff --git a/tools/node_modules/eslint/node_modules/optionator/lib/index.js b/tools/node_modules/eslint/node_modules/optionator/lib/index.js index bb3ab0b0ec40cf..436b7cc929c997 100644 --- a/tools/node_modules/eslint/node_modules/optionator/lib/index.js +++ b/tools/node_modules/eslint/node_modules/optionator/lib/index.js @@ -1,7 +1,7 @@ // Generated by LiveScript 1.6.0 (function(){ var VERSION, ref$, id, map, compact, any, groupBy, partition, chars, isItNaN, keys, Obj, camelize, deepIs, closestString, nameToRaw, dasherize, naturalJoin, generateHelp, generateHelpForOption, parsedTypeCheck, parseType, parseLevn, camelizeKeys, parseString, main, toString$ = {}.toString, slice$ = [].slice, arrayFrom$ = Array.from || function(x){return slice$.call(x);}; - VERSION = '0.9.3'; + VERSION = '0.9.4'; ref$ = require('prelude-ls'), id = ref$.id, map = ref$.map, compact = ref$.compact, any = ref$.any, groupBy = ref$.groupBy, partition = ref$.partition, chars = ref$.chars, isItNaN = ref$.isItNaN, keys = ref$.keys, Obj = ref$.Obj, camelize = ref$.camelize; deepIs = require('deep-is'); ref$ = require('./util'), closestString = ref$.closestString, nameToRaw = ref$.nameToRaw, dasherize = ref$.dasherize, naturalJoin = ref$.naturalJoin; diff --git a/tools/node_modules/eslint/node_modules/optionator/package.json b/tools/node_modules/eslint/node_modules/optionator/package.json index 1965a0520d79bf..72b21bab6ed10c 100644 --- a/tools/node_modules/eslint/node_modules/optionator/package.json +++ b/tools/node_modules/eslint/node_modules/optionator/package.json @@ -1,6 +1,6 @@ { "name": "optionator", - "version": "0.9.3", + "version": "0.9.4", "author": "George Zahariev ", "description": "option parsing and help generation", "homepage": "https://github.com/gkz/optionator", @@ -31,13 +31,13 @@ "dependencies": { "prelude-ls": "^1.2.1", "deep-is": "^0.1.3", - "@aashutoshrathi/word-wrap": "^1.2.3", + "word-wrap": "^1.2.5", "type-check": "^0.4.0", "levn": "^0.4.1", "fast-levenshtein": "^2.0.6" }, "devDependencies": { "livescript": "^1.6.0", - "mocha": "^7.1.1" + "mocha": "^10.4.0" } } diff --git a/tools/node_modules/eslint/node_modules/path-is-absolute/index.js b/tools/node_modules/eslint/node_modules/path-is-absolute/index.js deleted file mode 100644 index 22aa6c35607997..00000000000000 --- a/tools/node_modules/eslint/node_modules/path-is-absolute/index.js +++ /dev/null @@ -1,20 +0,0 @@ -'use strict'; - -function posix(path) { - return path.charAt(0) === '/'; -} - -function win32(path) { - // https://github.com/nodejs/node/blob/b3fcc245fb25539909ef1d5eaa01dbf92e168633/lib/path.js#L56 - var splitDeviceRe = /^([a-zA-Z]:|[\\\/]{2}[^\\\/]+[\\\/]+[^\\\/]+)?([\\\/])?([\s\S]*?)$/; - var result = splitDeviceRe.exec(path); - var device = result[1] || ''; - var isUnc = Boolean(device && device.charAt(1) !== ':'); - - // UNC paths are always absolute - return Boolean(result[2] || isUnc); -} - -module.exports = process.platform === 'win32' ? win32 : posix; -module.exports.posix = posix; -module.exports.win32 = win32; diff --git a/tools/node_modules/eslint/node_modules/path-is-absolute/package.json b/tools/node_modules/eslint/node_modules/path-is-absolute/package.json deleted file mode 100644 index 91196d5e9c1336..00000000000000 --- a/tools/node_modules/eslint/node_modules/path-is-absolute/package.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name": "path-is-absolute", - "version": "1.0.1", - "description": "Node.js 0.12 path.isAbsolute() ponyfill", - "license": "MIT", - "repository": "sindresorhus/path-is-absolute", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "sindresorhus.com" - }, - "engines": { - "node": ">=0.10.0" - }, - "scripts": { - "test": "xo && node test.js" - }, - "files": [ - "index.js" - ], - "keywords": [ - "path", - "paths", - "file", - "dir", - "absolute", - "isabsolute", - "is-absolute", - "built-in", - "util", - "utils", - "core", - "ponyfill", - "polyfill", - "shim", - "is", - "detect", - "check" - ], - "devDependencies": { - "xo": "^0.16.0" - } -} diff --git a/tools/node_modules/eslint/node_modules/path-is-absolute/readme.md b/tools/node_modules/eslint/node_modules/path-is-absolute/readme.md deleted file mode 100644 index 8dbdf5fcb775e1..00000000000000 --- a/tools/node_modules/eslint/node_modules/path-is-absolute/readme.md +++ /dev/null @@ -1,59 +0,0 @@ -# path-is-absolute [![Build Status](https://travis-ci.org/sindresorhus/path-is-absolute.svg?branch=master)](https://travis-ci.org/sindresorhus/path-is-absolute) - -> Node.js 0.12 [`path.isAbsolute()`](http://nodejs.org/api/path.html#path_path_isabsolute_path) [ponyfill](https://ponyfill.com) - - -## Install - -``` -$ npm install --save path-is-absolute -``` - - -## Usage - -```js -const pathIsAbsolute = require('path-is-absolute'); - -// Running on Linux -pathIsAbsolute('/home/foo'); -//=> true -pathIsAbsolute('C:/Users/foo'); -//=> false - -// Running on Windows -pathIsAbsolute('C:/Users/foo'); -//=> true -pathIsAbsolute('/home/foo'); -//=> false - -// Running on any OS -pathIsAbsolute.posix('/home/foo'); -//=> true -pathIsAbsolute.posix('C:/Users/foo'); -//=> false -pathIsAbsolute.win32('C:/Users/foo'); -//=> true -pathIsAbsolute.win32('/home/foo'); -//=> false -``` - - -## API - -See the [`path.isAbsolute()` docs](http://nodejs.org/api/path.html#path_path_isabsolute_path). - -### pathIsAbsolute(path) - -### pathIsAbsolute.posix(path) - -POSIX specific version. - -### pathIsAbsolute.win32(path) - -Windows specific version. - - -## License - -MIT © [Sindre Sorhus](https://sindresorhus.com) diff --git a/tools/node_modules/eslint/node_modules/picocolors/package.json b/tools/node_modules/eslint/node_modules/picocolors/package.json index 85a12d523497c6..8cdcf5f3c62573 100644 --- a/tools/node_modules/eslint/node_modules/picocolors/package.json +++ b/tools/node_modules/eslint/node_modules/picocolors/package.json @@ -1,6 +1,6 @@ { "name": "picocolors", - "version": "1.0.0", + "version": "1.0.1", "main": "./picocolors.js", "types": "./picocolors.d.ts", "browser": { diff --git a/tools/node_modules/eslint/node_modules/picocolors/picocolors.js b/tools/node_modules/eslint/node_modules/picocolors/picocolors.js index fdb630451d89b1..8b8a23e41b156f 100644 --- a/tools/node_modules/eslint/node_modules/picocolors/picocolors.js +++ b/tools/node_modules/eslint/node_modules/picocolors/picocolors.js @@ -1,12 +1,12 @@ -let tty = require("tty") - +let argv = process.argv || [], + env = process.env let isColorSupported = - !("NO_COLOR" in process.env || process.argv.includes("--no-color")) && - ("FORCE_COLOR" in process.env || - process.argv.includes("--color") || + !("NO_COLOR" in env || argv.includes("--no-color")) && + ("FORCE_COLOR" in env || + argv.includes("--color") || process.platform === "win32" || - (tty.isatty(1) && process.env.TERM !== "dumb") || - "CI" in process.env) + (require != null && require("tty").isatty(1) && env.TERM !== "dumb") || + "CI" in env) let formatter = (open, close, replace = open) => @@ -19,40 +19,47 @@ let formatter = } let replaceClose = (string, close, replace, index) => { - let start = string.substring(0, index) + replace - let end = string.substring(index + close.length) - let nextIndex = end.indexOf(close) - return ~nextIndex ? start + replaceClose(end, close, replace, nextIndex) : start + end + let result = "" + let cursor = 0 + do { + result += string.substring(cursor, index) + replace + cursor = index + close.length + index = string.indexOf(close, cursor) + } while (~index) + return result + string.substring(cursor) } -let createColors = (enabled = isColorSupported) => ({ - isColorSupported: enabled, - reset: enabled ? s => `\x1b[0m${s}\x1b[0m` : String, - bold: enabled ? formatter("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m") : String, - dim: enabled ? formatter("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m") : String, - italic: enabled ? formatter("\x1b[3m", "\x1b[23m") : String, - underline: enabled ? formatter("\x1b[4m", "\x1b[24m") : String, - inverse: enabled ? formatter("\x1b[7m", "\x1b[27m") : String, - hidden: enabled ? formatter("\x1b[8m", "\x1b[28m") : String, - strikethrough: enabled ? formatter("\x1b[9m", "\x1b[29m") : String, - black: enabled ? formatter("\x1b[30m", "\x1b[39m") : String, - red: enabled ? formatter("\x1b[31m", "\x1b[39m") : String, - green: enabled ? formatter("\x1b[32m", "\x1b[39m") : String, - yellow: enabled ? formatter("\x1b[33m", "\x1b[39m") : String, - blue: enabled ? formatter("\x1b[34m", "\x1b[39m") : String, - magenta: enabled ? formatter("\x1b[35m", "\x1b[39m") : String, - cyan: enabled ? formatter("\x1b[36m", "\x1b[39m") : String, - white: enabled ? formatter("\x1b[37m", "\x1b[39m") : String, - gray: enabled ? formatter("\x1b[90m", "\x1b[39m") : String, - bgBlack: enabled ? formatter("\x1b[40m", "\x1b[49m") : String, - bgRed: enabled ? formatter("\x1b[41m", "\x1b[49m") : String, - bgGreen: enabled ? formatter("\x1b[42m", "\x1b[49m") : String, - bgYellow: enabled ? formatter("\x1b[43m", "\x1b[49m") : String, - bgBlue: enabled ? formatter("\x1b[44m", "\x1b[49m") : String, - bgMagenta: enabled ? formatter("\x1b[45m", "\x1b[49m") : String, - bgCyan: enabled ? formatter("\x1b[46m", "\x1b[49m") : String, - bgWhite: enabled ? formatter("\x1b[47m", "\x1b[49m") : String, -}) +let createColors = (enabled = isColorSupported) => { + let init = enabled ? formatter : () => String + return { + isColorSupported: enabled, + reset: init("\x1b[0m", "\x1b[0m"), + bold: init("\x1b[1m", "\x1b[22m", "\x1b[22m\x1b[1m"), + dim: init("\x1b[2m", "\x1b[22m", "\x1b[22m\x1b[2m"), + italic: init("\x1b[3m", "\x1b[23m"), + underline: init("\x1b[4m", "\x1b[24m"), + inverse: init("\x1b[7m", "\x1b[27m"), + hidden: init("\x1b[8m", "\x1b[28m"), + strikethrough: init("\x1b[9m", "\x1b[29m"), + black: init("\x1b[30m", "\x1b[39m"), + red: init("\x1b[31m", "\x1b[39m"), + green: init("\x1b[32m", "\x1b[39m"), + yellow: init("\x1b[33m", "\x1b[39m"), + blue: init("\x1b[34m", "\x1b[39m"), + magenta: init("\x1b[35m", "\x1b[39m"), + cyan: init("\x1b[36m", "\x1b[39m"), + white: init("\x1b[37m", "\x1b[39m"), + gray: init("\x1b[90m", "\x1b[39m"), + bgBlack: init("\x1b[40m", "\x1b[49m"), + bgRed: init("\x1b[41m", "\x1b[49m"), + bgGreen: init("\x1b[42m", "\x1b[49m"), + bgYellow: init("\x1b[43m", "\x1b[49m"), + bgBlue: init("\x1b[44m", "\x1b[49m"), + bgMagenta: init("\x1b[45m", "\x1b[49m"), + bgCyan: init("\x1b[46m", "\x1b[49m"), + bgWhite: init("\x1b[47m", "\x1b[49m"), + } +} module.exports = createColors() module.exports.createColors = createColors diff --git a/tools/node_modules/eslint/node_modules/rimraf/LICENSE b/tools/node_modules/eslint/node_modules/rimraf/LICENSE deleted file mode 100644 index 19129e315fe593..00000000000000 --- a/tools/node_modules/eslint/node_modules/rimraf/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/rimraf/bin.js b/tools/node_modules/eslint/node_modules/rimraf/bin.js deleted file mode 100755 index 023814cc93e849..00000000000000 --- a/tools/node_modules/eslint/node_modules/rimraf/bin.js +++ /dev/null @@ -1,68 +0,0 @@ -#!/usr/bin/env node - -const rimraf = require('./') - -const path = require('path') - -const isRoot = arg => /^(\/|[a-zA-Z]:\\)$/.test(path.resolve(arg)) -const filterOutRoot = arg => { - const ok = preserveRoot === false || !isRoot(arg) - if (!ok) { - console.error(`refusing to remove ${arg}`) - console.error('Set --no-preserve-root to allow this') - } - return ok -} - -let help = false -let dashdash = false -let noglob = false -let preserveRoot = true -const args = process.argv.slice(2).filter(arg => { - if (dashdash) - return !!arg - else if (arg === '--') - dashdash = true - else if (arg === '--no-glob' || arg === '-G') - noglob = true - else if (arg === '--glob' || arg === '-g') - noglob = false - else if (arg.match(/^(-+|\/)(h(elp)?|\?)$/)) - help = true - else if (arg === '--preserve-root') - preserveRoot = true - else if (arg === '--no-preserve-root') - preserveRoot = false - else - return !!arg -}).filter(arg => !preserveRoot || filterOutRoot(arg)) - -const go = n => { - if (n >= args.length) - return - const options = noglob ? { glob: false } : {} - rimraf(args[n], options, er => { - if (er) - throw er - go(n+1) - }) -} - -if (help || args.length === 0) { - // If they didn't ask for help, then this is not a "success" - const log = help ? console.log : console.error - log('Usage: rimraf [ ...]') - log('') - log(' Deletes all files and folders at "path" recursively.') - log('') - log('Options:') - log('') - log(' -h, --help Display this usage info') - log(' -G, --no-glob Do not expand glob patterns in arguments') - log(' -g, --glob Expand glob patterns in arguments (default)') - log(' --preserve-root Do not remove \'/\' (default)') - log(' --no-preserve-root Do not treat \'/\' specially') - log(' -- Stop parsing flags') - process.exit(help ? 0 : 1) -} else - go(0) diff --git a/tools/node_modules/eslint/node_modules/rimraf/package.json b/tools/node_modules/eslint/node_modules/rimraf/package.json deleted file mode 100644 index 1bf8d5e38775d7..00000000000000 --- a/tools/node_modules/eslint/node_modules/rimraf/package.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "name": "rimraf", - "version": "3.0.2", - "main": "rimraf.js", - "description": "A deep deletion module for node (like `rm -rf`)", - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC", - "repository": "git://github.com/isaacs/rimraf.git", - "scripts": { - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --follow-tags", - "test": "tap test/*.js" - }, - "bin": "./bin.js", - "dependencies": { - "glob": "^7.1.3" - }, - "files": [ - "LICENSE", - "README.md", - "bin.js", - "rimraf.js" - ], - "devDependencies": { - "mkdirp": "^0.5.1", - "tap": "^12.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } -} diff --git a/tools/node_modules/eslint/node_modules/rimraf/rimraf.js b/tools/node_modules/eslint/node_modules/rimraf/rimraf.js deleted file mode 100644 index 34da4171d75598..00000000000000 --- a/tools/node_modules/eslint/node_modules/rimraf/rimraf.js +++ /dev/null @@ -1,360 +0,0 @@ -const assert = require("assert") -const path = require("path") -const fs = require("fs") -let glob = undefined -try { - glob = require("glob") -} catch (_err) { - // treat glob as optional. -} - -const defaultGlobOpts = { - nosort: true, - silent: true -} - -// for EMFILE handling -let timeout = 0 - -const isWindows = (process.platform === "win32") - -const defaults = options => { - const methods = [ - 'unlink', - 'chmod', - 'stat', - 'lstat', - 'rmdir', - 'readdir' - ] - methods.forEach(m => { - options[m] = options[m] || fs[m] - m = m + 'Sync' - options[m] = options[m] || fs[m] - }) - - options.maxBusyTries = options.maxBusyTries || 3 - options.emfileWait = options.emfileWait || 1000 - if (options.glob === false) { - options.disableGlob = true - } - if (options.disableGlob !== true && glob === undefined) { - throw Error('glob dependency not found, set `options.disableGlob = true` if intentional') - } - options.disableGlob = options.disableGlob || false - options.glob = options.glob || defaultGlobOpts -} - -const rimraf = (p, options, cb) => { - if (typeof options === 'function') { - cb = options - options = {} - } - - assert(p, 'rimraf: missing path') - assert.equal(typeof p, 'string', 'rimraf: path should be a string') - assert.equal(typeof cb, 'function', 'rimraf: callback function required') - assert(options, 'rimraf: invalid options argument provided') - assert.equal(typeof options, 'object', 'rimraf: options should be object') - - defaults(options) - - let busyTries = 0 - let errState = null - let n = 0 - - const next = (er) => { - errState = errState || er - if (--n === 0) - cb(errState) - } - - const afterGlob = (er, results) => { - if (er) - return cb(er) - - n = results.length - if (n === 0) - return cb() - - results.forEach(p => { - const CB = (er) => { - if (er) { - if ((er.code === "EBUSY" || er.code === "ENOTEMPTY" || er.code === "EPERM") && - busyTries < options.maxBusyTries) { - busyTries ++ - // try again, with the same exact callback as this one. - return setTimeout(() => rimraf_(p, options, CB), busyTries * 100) - } - - // this one won't happen if graceful-fs is used. - if (er.code === "EMFILE" && timeout < options.emfileWait) { - return setTimeout(() => rimraf_(p, options, CB), timeout ++) - } - - // already gone - if (er.code === "ENOENT") er = null - } - - timeout = 0 - next(er) - } - rimraf_(p, options, CB) - }) - } - - if (options.disableGlob || !glob.hasMagic(p)) - return afterGlob(null, [p]) - - options.lstat(p, (er, stat) => { - if (!er) - return afterGlob(null, [p]) - - glob(p, options.glob, afterGlob) - }) - -} - -// Two possible strategies. -// 1. Assume it's a file. unlink it, then do the dir stuff on EPERM or EISDIR -// 2. Assume it's a directory. readdir, then do the file stuff on ENOTDIR -// -// Both result in an extra syscall when you guess wrong. However, there -// are likely far more normal files in the world than directories. This -// is based on the assumption that a the average number of files per -// directory is >= 1. -// -// If anyone ever complains about this, then I guess the strategy could -// be made configurable somehow. But until then, YAGNI. -const rimraf_ = (p, options, cb) => { - assert(p) - assert(options) - assert(typeof cb === 'function') - - // sunos lets the root user unlink directories, which is... weird. - // so we have to lstat here and make sure it's not a dir. - options.lstat(p, (er, st) => { - if (er && er.code === "ENOENT") - return cb(null) - - // Windows can EPERM on stat. Life is suffering. - if (er && er.code === "EPERM" && isWindows) - fixWinEPERM(p, options, er, cb) - - if (st && st.isDirectory()) - return rmdir(p, options, er, cb) - - options.unlink(p, er => { - if (er) { - if (er.code === "ENOENT") - return cb(null) - if (er.code === "EPERM") - return (isWindows) - ? fixWinEPERM(p, options, er, cb) - : rmdir(p, options, er, cb) - if (er.code === "EISDIR") - return rmdir(p, options, er, cb) - } - return cb(er) - }) - }) -} - -const fixWinEPERM = (p, options, er, cb) => { - assert(p) - assert(options) - assert(typeof cb === 'function') - - options.chmod(p, 0o666, er2 => { - if (er2) - cb(er2.code === "ENOENT" ? null : er) - else - options.stat(p, (er3, stats) => { - if (er3) - cb(er3.code === "ENOENT" ? null : er) - else if (stats.isDirectory()) - rmdir(p, options, er, cb) - else - options.unlink(p, cb) - }) - }) -} - -const fixWinEPERMSync = (p, options, er) => { - assert(p) - assert(options) - - try { - options.chmodSync(p, 0o666) - } catch (er2) { - if (er2.code === "ENOENT") - return - else - throw er - } - - let stats - try { - stats = options.statSync(p) - } catch (er3) { - if (er3.code === "ENOENT") - return - else - throw er - } - - if (stats.isDirectory()) - rmdirSync(p, options, er) - else - options.unlinkSync(p) -} - -const rmdir = (p, options, originalEr, cb) => { - assert(p) - assert(options) - assert(typeof cb === 'function') - - // try to rmdir first, and only readdir on ENOTEMPTY or EEXIST (SunOS) - // if we guessed wrong, and it's not a directory, then - // raise the original error. - options.rmdir(p, er => { - if (er && (er.code === "ENOTEMPTY" || er.code === "EEXIST" || er.code === "EPERM")) - rmkids(p, options, cb) - else if (er && er.code === "ENOTDIR") - cb(originalEr) - else - cb(er) - }) -} - -const rmkids = (p, options, cb) => { - assert(p) - assert(options) - assert(typeof cb === 'function') - - options.readdir(p, (er, files) => { - if (er) - return cb(er) - let n = files.length - if (n === 0) - return options.rmdir(p, cb) - let errState - files.forEach(f => { - rimraf(path.join(p, f), options, er => { - if (errState) - return - if (er) - return cb(errState = er) - if (--n === 0) - options.rmdir(p, cb) - }) - }) - }) -} - -// this looks simpler, and is strictly *faster*, but will -// tie up the JavaScript thread and fail on excessively -// deep directory trees. -const rimrafSync = (p, options) => { - options = options || {} - defaults(options) - - assert(p, 'rimraf: missing path') - assert.equal(typeof p, 'string', 'rimraf: path should be a string') - assert(options, 'rimraf: missing options') - assert.equal(typeof options, 'object', 'rimraf: options should be object') - - let results - - if (options.disableGlob || !glob.hasMagic(p)) { - results = [p] - } else { - try { - options.lstatSync(p) - results = [p] - } catch (er) { - results = glob.sync(p, options.glob) - } - } - - if (!results.length) - return - - for (let i = 0; i < results.length; i++) { - const p = results[i] - - let st - try { - st = options.lstatSync(p) - } catch (er) { - if (er.code === "ENOENT") - return - - // Windows can EPERM on stat. Life is suffering. - if (er.code === "EPERM" && isWindows) - fixWinEPERMSync(p, options, er) - } - - try { - // sunos lets the root user unlink directories, which is... weird. - if (st && st.isDirectory()) - rmdirSync(p, options, null) - else - options.unlinkSync(p) - } catch (er) { - if (er.code === "ENOENT") - return - if (er.code === "EPERM") - return isWindows ? fixWinEPERMSync(p, options, er) : rmdirSync(p, options, er) - if (er.code !== "EISDIR") - throw er - - rmdirSync(p, options, er) - } - } -} - -const rmdirSync = (p, options, originalEr) => { - assert(p) - assert(options) - - try { - options.rmdirSync(p) - } catch (er) { - if (er.code === "ENOENT") - return - if (er.code === "ENOTDIR") - throw originalEr - if (er.code === "ENOTEMPTY" || er.code === "EEXIST" || er.code === "EPERM") - rmkidsSync(p, options) - } -} - -const rmkidsSync = (p, options) => { - assert(p) - assert(options) - options.readdirSync(p).forEach(f => rimrafSync(path.join(p, f), options)) - - // We only end up here once we got ENOTEMPTY at least once, and - // at this point, we are guaranteed to have removed all the kids. - // So, we know that it won't be ENOENT or ENOTDIR or anything else. - // try really hard to delete stuff on windows, because it has a - // PROFOUNDLY annoying habit of not closing handles promptly when - // files are deleted, resulting in spurious ENOTEMPTY errors. - const retries = isWindows ? 100 : 1 - let i = 0 - do { - let threw = true - try { - const ret = options.rmdirSync(p, options) - threw = false - return ret - } finally { - if (++i < retries && threw) - continue - } - } while (true) -} - -module.exports = rimraf -rimraf.sync = rimrafSync diff --git a/tools/node_modules/eslint/node_modules/semver/bin/semver.js b/tools/node_modules/eslint/node_modules/semver/bin/semver.js index 242b7ade7314ff..f62b566f74bc63 100755 --- a/tools/node_modules/eslint/node_modules/semver/bin/semver.js +++ b/tools/node_modules/eslint/node_modules/semver/bin/semver.js @@ -119,7 +119,11 @@ const main = () => { return fail() } } - return success(versions) + versions + .sort((a, b) => semver[reverse ? 'rcompare' : 'compare'](a, b, options)) + .map(v => semver.clean(v, options)) + .map(v => inc ? semver.inc(v, inc, options, identifier, identifierBase) : v) + .forEach(v => console.log(v)) } const failInc = () => { @@ -129,19 +133,6 @@ const failInc = () => { const fail = () => process.exit(1) -const success = () => { - const compare = reverse ? 'rcompare' : 'compare' - versions.sort((a, b) => { - return semver[compare](a, b, options) - }).map((v) => { - return semver.clean(v, options) - }).map((v) => { - return inc ? semver.inc(v, inc, options, identifier, identifierBase) : v - }).forEach((v, i, _) => { - console.log(v) - }) -} - const help = () => console.log( `SemVer ${version} diff --git a/tools/node_modules/eslint/node_modules/semver/classes/range.js b/tools/node_modules/eslint/node_modules/semver/classes/range.js index 7e7c41410cbfdd..117b45a2b8e055 100644 --- a/tools/node_modules/eslint/node_modules/semver/classes/range.js +++ b/tools/node_modules/eslint/node_modules/semver/classes/range.js @@ -198,8 +198,8 @@ class Range { module.exports = Range -const LRU = require('lru-cache') -const cache = new LRU({ max: 1000 }) +const LRU = require('../internal/lrucache') +const cache = new LRU() const parseOptions = require('../internal/parse-options') const Comparator = require('./comparator') @@ -470,9 +470,10 @@ const replaceGTE0 = (comp, options) => { // 1.2 - 3.4.5 => >=1.2.0 <=3.4.5 // 1.2.3 - 3.4 => >=1.2.0 <3.5.0-0 Any 3.4.x will do // 1.2 - 3.4 => >=1.2.0 <3.5.0-0 +// TODO build? const hyphenReplace = incPr => ($0, from, fM, fm, fp, fpr, fb, - to, tM, tm, tp, tpr, tb) => { + to, tM, tm, tp, tpr) => { if (isX(fM)) { from = '' } else if (isX(fm)) { diff --git a/tools/node_modules/eslint/node_modules/semver/classes/semver.js b/tools/node_modules/eslint/node_modules/semver/classes/semver.js index 84e84590e38714..13e66ce4415694 100644 --- a/tools/node_modules/eslint/node_modules/semver/classes/semver.js +++ b/tools/node_modules/eslint/node_modules/semver/classes/semver.js @@ -158,7 +158,7 @@ class SemVer { do { const a = this.build[i] const b = other.build[i] - debug('prerelease compare', i, a, b) + debug('build compare', i, a, b) if (a === undefined && b === undefined) { return 0 } else if (b === undefined) { diff --git a/tools/node_modules/eslint/node_modules/semver/internal/lrucache.js b/tools/node_modules/eslint/node_modules/semver/internal/lrucache.js new file mode 100644 index 00000000000000..6d89ec948d0f1f --- /dev/null +++ b/tools/node_modules/eslint/node_modules/semver/internal/lrucache.js @@ -0,0 +1,40 @@ +class LRUCache { + constructor () { + this.max = 1000 + this.map = new Map() + } + + get (key) { + const value = this.map.get(key) + if (value === undefined) { + return undefined + } else { + // Remove the key from the map and add it to the end + this.map.delete(key) + this.map.set(key, value) + return value + } + } + + delete (key) { + return this.map.delete(key) + } + + set (key, value) { + const deleted = this.delete(key) + + if (!deleted && value !== undefined) { + // If cache is full, delete the least recently used item + if (this.map.size >= this.max) { + const firstKey = this.map.keys().next().value + this.delete(firstKey) + } + + this.map.set(key, value) + } + + return this + } +} + +module.exports = LRUCache diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/LICENSE b/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/LICENSE deleted file mode 100644 index 19129e315fe593..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/index.js b/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/index.js deleted file mode 100644 index 573b6b85b9779d..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/index.js +++ /dev/null @@ -1,334 +0,0 @@ -'use strict' - -// A linked list to keep track of recently-used-ness -const Yallist = require('yallist') - -const MAX = Symbol('max') -const LENGTH = Symbol('length') -const LENGTH_CALCULATOR = Symbol('lengthCalculator') -const ALLOW_STALE = Symbol('allowStale') -const MAX_AGE = Symbol('maxAge') -const DISPOSE = Symbol('dispose') -const NO_DISPOSE_ON_SET = Symbol('noDisposeOnSet') -const LRU_LIST = Symbol('lruList') -const CACHE = Symbol('cache') -const UPDATE_AGE_ON_GET = Symbol('updateAgeOnGet') - -const naiveLength = () => 1 - -// lruList is a yallist where the head is the youngest -// item, and the tail is the oldest. the list contains the Hit -// objects as the entries. -// Each Hit object has a reference to its Yallist.Node. This -// never changes. -// -// cache is a Map (or PseudoMap) that matches the keys to -// the Yallist.Node object. -class LRUCache { - constructor (options) { - if (typeof options === 'number') - options = { max: options } - - if (!options) - options = {} - - if (options.max && (typeof options.max !== 'number' || options.max < 0)) - throw new TypeError('max must be a non-negative number') - // Kind of weird to have a default max of Infinity, but oh well. - const max = this[MAX] = options.max || Infinity - - const lc = options.length || naiveLength - this[LENGTH_CALCULATOR] = (typeof lc !== 'function') ? naiveLength : lc - this[ALLOW_STALE] = options.stale || false - if (options.maxAge && typeof options.maxAge !== 'number') - throw new TypeError('maxAge must be a number') - this[MAX_AGE] = options.maxAge || 0 - this[DISPOSE] = options.dispose - this[NO_DISPOSE_ON_SET] = options.noDisposeOnSet || false - this[UPDATE_AGE_ON_GET] = options.updateAgeOnGet || false - this.reset() - } - - // resize the cache when the max changes. - set max (mL) { - if (typeof mL !== 'number' || mL < 0) - throw new TypeError('max must be a non-negative number') - - this[MAX] = mL || Infinity - trim(this) - } - get max () { - return this[MAX] - } - - set allowStale (allowStale) { - this[ALLOW_STALE] = !!allowStale - } - get allowStale () { - return this[ALLOW_STALE] - } - - set maxAge (mA) { - if (typeof mA !== 'number') - throw new TypeError('maxAge must be a non-negative number') - - this[MAX_AGE] = mA - trim(this) - } - get maxAge () { - return this[MAX_AGE] - } - - // resize the cache when the lengthCalculator changes. - set lengthCalculator (lC) { - if (typeof lC !== 'function') - lC = naiveLength - - if (lC !== this[LENGTH_CALCULATOR]) { - this[LENGTH_CALCULATOR] = lC - this[LENGTH] = 0 - this[LRU_LIST].forEach(hit => { - hit.length = this[LENGTH_CALCULATOR](hit.value, hit.key) - this[LENGTH] += hit.length - }) - } - trim(this) - } - get lengthCalculator () { return this[LENGTH_CALCULATOR] } - - get length () { return this[LENGTH] } - get itemCount () { return this[LRU_LIST].length } - - rforEach (fn, thisp) { - thisp = thisp || this - for (let walker = this[LRU_LIST].tail; walker !== null;) { - const prev = walker.prev - forEachStep(this, fn, walker, thisp) - walker = prev - } - } - - forEach (fn, thisp) { - thisp = thisp || this - for (let walker = this[LRU_LIST].head; walker !== null;) { - const next = walker.next - forEachStep(this, fn, walker, thisp) - walker = next - } - } - - keys () { - return this[LRU_LIST].toArray().map(k => k.key) - } - - values () { - return this[LRU_LIST].toArray().map(k => k.value) - } - - reset () { - if (this[DISPOSE] && - this[LRU_LIST] && - this[LRU_LIST].length) { - this[LRU_LIST].forEach(hit => this[DISPOSE](hit.key, hit.value)) - } - - this[CACHE] = new Map() // hash of items by key - this[LRU_LIST] = new Yallist() // list of items in order of use recency - this[LENGTH] = 0 // length of items in the list - } - - dump () { - return this[LRU_LIST].map(hit => - isStale(this, hit) ? false : { - k: hit.key, - v: hit.value, - e: hit.now + (hit.maxAge || 0) - }).toArray().filter(h => h) - } - - dumpLru () { - return this[LRU_LIST] - } - - set (key, value, maxAge) { - maxAge = maxAge || this[MAX_AGE] - - if (maxAge && typeof maxAge !== 'number') - throw new TypeError('maxAge must be a number') - - const now = maxAge ? Date.now() : 0 - const len = this[LENGTH_CALCULATOR](value, key) - - if (this[CACHE].has(key)) { - if (len > this[MAX]) { - del(this, this[CACHE].get(key)) - return false - } - - const node = this[CACHE].get(key) - const item = node.value - - // dispose of the old one before overwriting - // split out into 2 ifs for better coverage tracking - if (this[DISPOSE]) { - if (!this[NO_DISPOSE_ON_SET]) - this[DISPOSE](key, item.value) - } - - item.now = now - item.maxAge = maxAge - item.value = value - this[LENGTH] += len - item.length - item.length = len - this.get(key) - trim(this) - return true - } - - const hit = new Entry(key, value, len, now, maxAge) - - // oversized objects fall out of cache automatically. - if (hit.length > this[MAX]) { - if (this[DISPOSE]) - this[DISPOSE](key, value) - - return false - } - - this[LENGTH] += hit.length - this[LRU_LIST].unshift(hit) - this[CACHE].set(key, this[LRU_LIST].head) - trim(this) - return true - } - - has (key) { - if (!this[CACHE].has(key)) return false - const hit = this[CACHE].get(key).value - return !isStale(this, hit) - } - - get (key) { - return get(this, key, true) - } - - peek (key) { - return get(this, key, false) - } - - pop () { - const node = this[LRU_LIST].tail - if (!node) - return null - - del(this, node) - return node.value - } - - del (key) { - del(this, this[CACHE].get(key)) - } - - load (arr) { - // reset the cache - this.reset() - - const now = Date.now() - // A previous serialized cache has the most recent items first - for (let l = arr.length - 1; l >= 0; l--) { - const hit = arr[l] - const expiresAt = hit.e || 0 - if (expiresAt === 0) - // the item was created without expiration in a non aged cache - this.set(hit.k, hit.v) - else { - const maxAge = expiresAt - now - // dont add already expired items - if (maxAge > 0) { - this.set(hit.k, hit.v, maxAge) - } - } - } - } - - prune () { - this[CACHE].forEach((value, key) => get(this, key, false)) - } -} - -const get = (self, key, doUse) => { - const node = self[CACHE].get(key) - if (node) { - const hit = node.value - if (isStale(self, hit)) { - del(self, node) - if (!self[ALLOW_STALE]) - return undefined - } else { - if (doUse) { - if (self[UPDATE_AGE_ON_GET]) - node.value.now = Date.now() - self[LRU_LIST].unshiftNode(node) - } - } - return hit.value - } -} - -const isStale = (self, hit) => { - if (!hit || (!hit.maxAge && !self[MAX_AGE])) - return false - - const diff = Date.now() - hit.now - return hit.maxAge ? diff > hit.maxAge - : self[MAX_AGE] && (diff > self[MAX_AGE]) -} - -const trim = self => { - if (self[LENGTH] > self[MAX]) { - for (let walker = self[LRU_LIST].tail; - self[LENGTH] > self[MAX] && walker !== null;) { - // We know that we're about to delete this one, and also - // what the next least recently used key will be, so just - // go ahead and set it now. - const prev = walker.prev - del(self, walker) - walker = prev - } - } -} - -const del = (self, node) => { - if (node) { - const hit = node.value - if (self[DISPOSE]) - self[DISPOSE](hit.key, hit.value) - - self[LENGTH] -= hit.length - self[CACHE].delete(hit.key) - self[LRU_LIST].removeNode(node) - } -} - -class Entry { - constructor (key, value, length, now, maxAge) { - this.key = key - this.value = value - this.length = length - this.now = now - this.maxAge = maxAge || 0 - } -} - -const forEachStep = (self, fn, node, thisp) => { - let hit = node.value - if (isStale(self, hit)) { - del(self, node) - if (!self[ALLOW_STALE]) - hit = undefined - } - if (hit) - fn.call(thisp, hit.value, hit.key, self) -} - -module.exports = LRUCache diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/package.json b/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/package.json deleted file mode 100644 index 43b7502c3e7c79..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/lru-cache/package.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "name": "lru-cache", - "description": "A cache object that deletes the least-recently-used items.", - "version": "6.0.0", - "author": "Isaac Z. Schlueter ", - "keywords": [ - "mru", - "lru", - "cache" - ], - "scripts": { - "test": "tap", - "snap": "tap", - "preversion": "npm test", - "postversion": "npm publish", - "prepublishOnly": "git push origin --follow-tags" - }, - "main": "index.js", - "repository": "git://github.com/isaacs/node-lru-cache.git", - "devDependencies": { - "benchmark": "^2.1.4", - "tap": "^14.10.7" - }, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "files": [ - "index.js" - ], - "engines": { - "node": ">=10" - } -} diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/LICENSE b/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/LICENSE deleted file mode 100644 index 19129e315fe593..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/iterator.js b/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/iterator.js deleted file mode 100644 index d41c97a19f9849..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/iterator.js +++ /dev/null @@ -1,8 +0,0 @@ -'use strict' -module.exports = function (Yallist) { - Yallist.prototype[Symbol.iterator] = function* () { - for (let walker = this.head; walker; walker = walker.next) { - yield walker.value - } - } -} diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/package.json b/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/package.json deleted file mode 100644 index 8a083867d72e00..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "yallist", - "version": "4.0.0", - "description": "Yet Another Linked List", - "main": "yallist.js", - "directories": { - "test": "test" - }, - "files": [ - "yallist.js", - "iterator.js" - ], - "dependencies": {}, - "devDependencies": { - "tap": "^12.1.0" - }, - "scripts": { - "test": "tap test/*.js --100", - "preversion": "npm test", - "postversion": "npm publish", - "postpublish": "git push origin --all; git push origin --tags" - }, - "repository": { - "type": "git", - "url": "git+https://github.com/isaacs/yallist.git" - }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC" -} diff --git a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/yallist.js b/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/yallist.js deleted file mode 100644 index 4e83ab1c542a51..00000000000000 --- a/tools/node_modules/eslint/node_modules/semver/node_modules/yallist/yallist.js +++ /dev/null @@ -1,426 +0,0 @@ -'use strict' -module.exports = Yallist - -Yallist.Node = Node -Yallist.create = Yallist - -function Yallist (list) { - var self = this - if (!(self instanceof Yallist)) { - self = new Yallist() - } - - self.tail = null - self.head = null - self.length = 0 - - if (list && typeof list.forEach === 'function') { - list.forEach(function (item) { - self.push(item) - }) - } else if (arguments.length > 0) { - for (var i = 0, l = arguments.length; i < l; i++) { - self.push(arguments[i]) - } - } - - return self -} - -Yallist.prototype.removeNode = function (node) { - if (node.list !== this) { - throw new Error('removing node which does not belong to this list') - } - - var next = node.next - var prev = node.prev - - if (next) { - next.prev = prev - } - - if (prev) { - prev.next = next - } - - if (node === this.head) { - this.head = next - } - if (node === this.tail) { - this.tail = prev - } - - node.list.length-- - node.next = null - node.prev = null - node.list = null - - return next -} - -Yallist.prototype.unshiftNode = function (node) { - if (node === this.head) { - return - } - - if (node.list) { - node.list.removeNode(node) - } - - var head = this.head - node.list = this - node.next = head - if (head) { - head.prev = node - } - - this.head = node - if (!this.tail) { - this.tail = node - } - this.length++ -} - -Yallist.prototype.pushNode = function (node) { - if (node === this.tail) { - return - } - - if (node.list) { - node.list.removeNode(node) - } - - var tail = this.tail - node.list = this - node.prev = tail - if (tail) { - tail.next = node - } - - this.tail = node - if (!this.head) { - this.head = node - } - this.length++ -} - -Yallist.prototype.push = function () { - for (var i = 0, l = arguments.length; i < l; i++) { - push(this, arguments[i]) - } - return this.length -} - -Yallist.prototype.unshift = function () { - for (var i = 0, l = arguments.length; i < l; i++) { - unshift(this, arguments[i]) - } - return this.length -} - -Yallist.prototype.pop = function () { - if (!this.tail) { - return undefined - } - - var res = this.tail.value - this.tail = this.tail.prev - if (this.tail) { - this.tail.next = null - } else { - this.head = null - } - this.length-- - return res -} - -Yallist.prototype.shift = function () { - if (!this.head) { - return undefined - } - - var res = this.head.value - this.head = this.head.next - if (this.head) { - this.head.prev = null - } else { - this.tail = null - } - this.length-- - return res -} - -Yallist.prototype.forEach = function (fn, thisp) { - thisp = thisp || this - for (var walker = this.head, i = 0; walker !== null; i++) { - fn.call(thisp, walker.value, i, this) - walker = walker.next - } -} - -Yallist.prototype.forEachReverse = function (fn, thisp) { - thisp = thisp || this - for (var walker = this.tail, i = this.length - 1; walker !== null; i--) { - fn.call(thisp, walker.value, i, this) - walker = walker.prev - } -} - -Yallist.prototype.get = function (n) { - for (var i = 0, walker = this.head; walker !== null && i < n; i++) { - // abort out of the list early if we hit a cycle - walker = walker.next - } - if (i === n && walker !== null) { - return walker.value - } -} - -Yallist.prototype.getReverse = function (n) { - for (var i = 0, walker = this.tail; walker !== null && i < n; i++) { - // abort out of the list early if we hit a cycle - walker = walker.prev - } - if (i === n && walker !== null) { - return walker.value - } -} - -Yallist.prototype.map = function (fn, thisp) { - thisp = thisp || this - var res = new Yallist() - for (var walker = this.head; walker !== null;) { - res.push(fn.call(thisp, walker.value, this)) - walker = walker.next - } - return res -} - -Yallist.prototype.mapReverse = function (fn, thisp) { - thisp = thisp || this - var res = new Yallist() - for (var walker = this.tail; walker !== null;) { - res.push(fn.call(thisp, walker.value, this)) - walker = walker.prev - } - return res -} - -Yallist.prototype.reduce = function (fn, initial) { - var acc - var walker = this.head - if (arguments.length > 1) { - acc = initial - } else if (this.head) { - walker = this.head.next - acc = this.head.value - } else { - throw new TypeError('Reduce of empty list with no initial value') - } - - for (var i = 0; walker !== null; i++) { - acc = fn(acc, walker.value, i) - walker = walker.next - } - - return acc -} - -Yallist.prototype.reduceReverse = function (fn, initial) { - var acc - var walker = this.tail - if (arguments.length > 1) { - acc = initial - } else if (this.tail) { - walker = this.tail.prev - acc = this.tail.value - } else { - throw new TypeError('Reduce of empty list with no initial value') - } - - for (var i = this.length - 1; walker !== null; i--) { - acc = fn(acc, walker.value, i) - walker = walker.prev - } - - return acc -} - -Yallist.prototype.toArray = function () { - var arr = new Array(this.length) - for (var i = 0, walker = this.head; walker !== null; i++) { - arr[i] = walker.value - walker = walker.next - } - return arr -} - -Yallist.prototype.toArrayReverse = function () { - var arr = new Array(this.length) - for (var i = 0, walker = this.tail; walker !== null; i++) { - arr[i] = walker.value - walker = walker.prev - } - return arr -} - -Yallist.prototype.slice = function (from, to) { - to = to || this.length - if (to < 0) { - to += this.length - } - from = from || 0 - if (from < 0) { - from += this.length - } - var ret = new Yallist() - if (to < from || to < 0) { - return ret - } - if (from < 0) { - from = 0 - } - if (to > this.length) { - to = this.length - } - for (var i = 0, walker = this.head; walker !== null && i < from; i++) { - walker = walker.next - } - for (; walker !== null && i < to; i++, walker = walker.next) { - ret.push(walker.value) - } - return ret -} - -Yallist.prototype.sliceReverse = function (from, to) { - to = to || this.length - if (to < 0) { - to += this.length - } - from = from || 0 - if (from < 0) { - from += this.length - } - var ret = new Yallist() - if (to < from || to < 0) { - return ret - } - if (from < 0) { - from = 0 - } - if (to > this.length) { - to = this.length - } - for (var i = this.length, walker = this.tail; walker !== null && i > to; i--) { - walker = walker.prev - } - for (; walker !== null && i > from; i--, walker = walker.prev) { - ret.push(walker.value) - } - return ret -} - -Yallist.prototype.splice = function (start, deleteCount, ...nodes) { - if (start > this.length) { - start = this.length - 1 - } - if (start < 0) { - start = this.length + start; - } - - for (var i = 0, walker = this.head; walker !== null && i < start; i++) { - walker = walker.next - } - - var ret = [] - for (var i = 0; walker && i < deleteCount; i++) { - ret.push(walker.value) - walker = this.removeNode(walker) - } - if (walker === null) { - walker = this.tail - } - - if (walker !== this.head && walker !== this.tail) { - walker = walker.prev - } - - for (var i = 0; i < nodes.length; i++) { - walker = insert(this, walker, nodes[i]) - } - return ret; -} - -Yallist.prototype.reverse = function () { - var head = this.head - var tail = this.tail - for (var walker = head; walker !== null; walker = walker.prev) { - var p = walker.prev - walker.prev = walker.next - walker.next = p - } - this.head = tail - this.tail = head - return this -} - -function insert (self, node, value) { - var inserted = node === self.head ? - new Node(value, null, node, self) : - new Node(value, node, node.next, self) - - if (inserted.next === null) { - self.tail = inserted - } - if (inserted.prev === null) { - self.head = inserted - } - - self.length++ - - return inserted -} - -function push (self, item) { - self.tail = new Node(item, self.tail, null, self) - if (!self.head) { - self.head = self.tail - } - self.length++ -} - -function unshift (self, item) { - self.head = new Node(item, null, self.head, self) - if (!self.tail) { - self.tail = self.head - } - self.length++ -} - -function Node (value, prev, next, list) { - if (!(this instanceof Node)) { - return new Node(value, prev, next, list) - } - - this.list = list - this.value = value - - if (prev) { - prev.next = this - this.prev = prev - } else { - this.prev = null - } - - if (next) { - next.prev = this - this.next = next - } else { - this.next = null - } -} - -try { - // add if support for Symbol.iterator is present - require('./iterator.js')(Yallist) -} catch (er) {} diff --git a/tools/node_modules/eslint/node_modules/semver/package.json b/tools/node_modules/eslint/node_modules/semver/package.json index f00c6bddaebd92..cb8def45184df1 100644 --- a/tools/node_modules/eslint/node_modules/semver/package.json +++ b/tools/node_modules/eslint/node_modules/semver/package.json @@ -1,6 +1,6 @@ { "name": "semver", - "version": "7.6.0", + "version": "7.6.2", "description": "The semantic version parser used by npm.", "main": "index.js", "scripts": { @@ -14,13 +14,14 @@ }, "devDependencies": { "@npmcli/eslint-config": "^4.0.0", - "@npmcli/template-oss": "4.21.3", + "@npmcli/template-oss": "4.22.0", + "benchmark": "^2.1.4", "tap": "^16.0.0" }, "license": "ISC", "repository": { "type": "git", - "url": "https://github.com/npm/node-semver.git" + "url": "git+https://github.com/npm/node-semver.git" }, "bin": { "semver": "bin/semver.js" @@ -47,13 +48,10 @@ "engines": { "node": ">=10" }, - "dependencies": { - "lru-cache": "^6.0.0" - }, "author": "GitHub Inc.", "templateOSS": { "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.", - "version": "4.21.3", + "version": "4.22.0", "engines": ">=10", "distPaths": [ "classes/", @@ -71,7 +69,8 @@ "/ranges/", "/index.js", "/preload.js", - "/range.bnf" + "/range.bnf", + "/benchmarks" ], "publish": "true" } diff --git a/tools/node_modules/eslint/node_modules/type-fest/package.json b/tools/node_modules/eslint/node_modules/type-fest/package.json deleted file mode 100644 index 3ab9e4d927e350..00000000000000 --- a/tools/node_modules/eslint/node_modules/type-fest/package.json +++ /dev/null @@ -1,58 +0,0 @@ -{ - "name": "type-fest", - "version": "0.20.2", - "description": "A collection of essential TypeScript types", - "license": "(MIT OR CC0-1.0)", - "repository": "sindresorhus/type-fest", - "funding": "https://github.com/sponsors/sindresorhus", - "author": { - "name": "Sindre Sorhus", - "email": "sindresorhus@gmail.com", - "url": "https://sindresorhus.com" - }, - "engines": { - "node": ">=10" - }, - "scripts": { - "//test": "xo && tsd && tsc", - "test": "xo && tsc" - }, - "files": [ - "index.d.ts", - "base.d.ts", - "source", - "ts41" - ], - "keywords": [ - "typescript", - "ts", - "types", - "utility", - "util", - "utilities", - "omit", - "merge", - "json" - ], - "devDependencies": { - "@sindresorhus/tsconfig": "~0.7.0", - "tsd": "^0.13.1", - "typescript": "^4.1.2", - "xo": "^0.35.0" - }, - "types": "./index.d.ts", - "typesVersions": { - ">=4.1": { - "*": [ - "ts41/*" - ] - } - }, - "xo": { - "rules": { - "@typescript-eslint/ban-types": "off", - "@typescript-eslint/indent": "off", - "node/no-unsupported-features/es-builtins": "off" - } - } -} diff --git a/tools/node_modules/eslint/node_modules/type-fest/readme.md b/tools/node_modules/eslint/node_modules/type-fest/readme.md deleted file mode 100644 index 714df7868e1372..00000000000000 --- a/tools/node_modules/eslint/node_modules/type-fest/readme.md +++ /dev/null @@ -1,658 +0,0 @@ -
-
-
- type-fest -
-
- A collection of essential TypeScript types -
-
-
-
-
- -[![](https://img.shields.io/badge/unicorn-approved-ff69b4.svg)](https://giphy.com/gifs/illustration-rainbow-unicorn-26AHG5KGFxSkUWw1i) - - -Many of the types here should have been built-in. You can help by suggesting some of them to the [TypeScript project](https://github.com/Microsoft/TypeScript/blob/master/CONTRIBUTING.md). - -Either add this package as a dependency or copy-paste the needed types. No credit required. 👌 - -PR welcome for additional commonly needed types and docs improvements. Read the [contributing guidelines](.github/contributing.md) first. - -## Install - -``` -$ npm install type-fest -``` - -*Requires TypeScript >=3.4* - -## Usage - -```ts -import {Except} from 'type-fest'; - -type Foo = { - unicorn: string; - rainbow: boolean; -}; - -type FooWithoutRainbow = Except; -//=> {unicorn: string} -``` - -## API - -Click the type names for complete docs. - -### Basic - -- [`Primitive`](source/basic.d.ts) - Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive). -- [`Class`](source/basic.d.ts) - Matches a [`class` constructor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes). -- [`TypedArray`](source/basic.d.ts) - Matches any [typed array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), like `Uint8Array` or `Float64Array`. -- [`JsonObject`](source/basic.d.ts) - Matches a JSON object. -- [`JsonArray`](source/basic.d.ts) - Matches a JSON array. -- [`JsonValue`](source/basic.d.ts) - Matches any valid JSON value. -- [`ObservableLike`](source/basic.d.ts) - Matches a value that is like an [Observable](https://github.com/tc39/proposal-observable). - -### Utilities - -- [`Except`](source/except.d.ts) - Create a type from an object type without certain keys. This is a stricter version of [`Omit`](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-5.html#the-omit-helper-type). -- [`Mutable`](source/mutable.d.ts) - Convert an object with `readonly` keys into a mutable object. The inverse of `Readonly`. -- [`Merge`](source/merge.d.ts) - Merge two types into a new type. Keys of the second type overrides keys of the first type. -- [`MergeExclusive`](source/merge-exclusive.d.ts) - Create a type that has mutually exclusive keys. -- [`RequireAtLeastOne`](source/require-at-least-one.d.ts) - Create a type that requires at least one of the given keys. -- [`RequireExactlyOne`](source/require-exactly-one.d.ts) - Create a type that requires exactly a single key of the given keys and disallows more. -- [`PartialDeep`](source/partial-deep.d.ts) - Create a deeply optional version of another type. Use [`Partial`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1401-L1406) if you only need one level deep. -- [`ReadonlyDeep`](source/readonly-deep.d.ts) - Create a deeply immutable version of an `object`/`Map`/`Set`/`Array` type. Use [`Readonly`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1415-L1420) if you only need one level deep. -- [`LiteralUnion`](source/literal-union.d.ts) - Create a union type by combining primitive types and literal types without sacrificing auto-completion in IDEs for the literal type part of the union. Workaround for [Microsoft/TypeScript#29729](https://github.com/Microsoft/TypeScript/issues/29729). -- [`Promisable`](source/promisable.d.ts) - Create a type that represents either the value or the value wrapped in `PromiseLike`. -- [`Opaque`](source/opaque.d.ts) - Create an [opaque type](https://codemix.com/opaque-types-in-javascript/). -- [`SetOptional`](source/set-optional.d.ts) - Create a type that makes the given keys optional. -- [`SetRequired`](source/set-required.d.ts) - Create a type that makes the given keys required. -- [`ValueOf`](source/value-of.d.ts) - Create a union of the given object's values, and optionally specify which keys to get the values from. -- [`PromiseValue`](source/promise-value.d.ts) - Returns the type that is wrapped inside a `Promise`. -- [`AsyncReturnType`](source/async-return-type.d.ts) - Unwrap the return type of a function that returns a `Promise`. -- [`ConditionalKeys`](source/conditional-keys.d.ts) - Extract keys from a shape where values extend the given `Condition` type. -- [`ConditionalPick`](source/conditional-pick.d.ts) - Like `Pick` except it selects properties from a shape where the values extend the given `Condition` type. -- [`ConditionalExcept`](source/conditional-except.d.ts) - Like `Omit` except it removes properties from a shape where the values extend the given `Condition` type. -- [`UnionToIntersection`](source/union-to-intersection.d.ts) - Convert a union type to an intersection type. -- [`Stringified`](source/stringified.d.ts) - Create a type with the keys of the given type changed to `string` type. -- [`FixedLengthArray`](source/fixed-length-array.d.ts) - Create a type that represents an array of the given type and length. -- [`IterableElement`](source/iterable-element.d.ts) - Get the element type of an `Iterable`/`AsyncIterable`. For example, an array or a generator. -- [`Entry`](source/entry.d.ts) - Create a type that represents the type of an entry of a collection. -- [`Entries`](source/entries.d.ts) - Create a type that represents the type of the entries of a collection. -- [`SetReturnType`](source/set-return-type.d.ts) - Create a function type with a return type of your choice and the same parameters as the given function type. -- [`Asyncify`](source/asyncify.d.ts) - Create an async version of the given function type. - -### Template literal types - -*Note:* These require [TypeScript 4.1 or newer](https://devblogs.microsoft.com/typescript/announcing-typescript-4-1/#template-literal-types). - -- [`CamelCase`](ts41/camel-case.d.ts) – Convert a string literal to camel-case (`fooBar`). -- [`KebabCase`](ts41/kebab-case.d.ts) – Convert a string literal to kebab-case (`foo-bar`). -- [`PascalCase`](ts41/pascal-case.d.ts) – Converts a string literal to pascal-case (`FooBar`) -- [`SnakeCase`](ts41/snake-case.d.ts) – Convert a string literal to snake-case (`foo_bar`). -- [`DelimiterCase`](ts41/delimiter-case.d.ts) – Convert a string literal to a custom string delimiter casing. - -### Miscellaneous - -- [`PackageJson`](source/package-json.d.ts) - Type for [npm's `package.json` file](https://docs.npmjs.com/creating-a-package-json-file). -- [`TsConfigJson`](source/tsconfig-json.d.ts) - Type for [TypeScript's `tsconfig.json` file](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html) (TypeScript 3.7). - -## Declined types - -*If we decline a type addition, we will make sure to document the better solution here.* - -- [`Diff` and `Spread`](https://github.com/sindresorhus/type-fest/pull/7) - The PR author didn't provide any real-world use-cases and the PR went stale. If you think this type is useful, provide some real-world use-cases and we might reconsider. -- [`Dictionary`](https://github.com/sindresorhus/type-fest/issues/33) - You only save a few characters (`Dictionary` vs `Record`) from [`Record`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1429-L1434), which is more flexible and well-known. Also, you shouldn't use an object as a dictionary. We have `Map` in JavaScript now. -- [`SubType`](https://github.com/sindresorhus/type-fest/issues/22) - The type is powerful, but lacks good use-cases and is prone to misuse. -- [`ExtractProperties` and `ExtractMethods`](https://github.com/sindresorhus/type-fest/pull/4) - The types violate the single responsibility principle. Instead, refine your types into more granular type hierarchies. - -## Tips - -### Built-in types - -There are many advanced types most users don't know about. - -- [`Partial`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1401-L1406) - Make all properties in `T` optional. -
- - Example - - - [Playground](https://www.typescriptlang.org/play/#code/JYOwLgpgTgZghgYwgAgHIHsAmEDC6QzADmyA3gLABQyycADnanALYQBcyAzmFKEQNxUaddFDAcQAV2YAjaIMoBfKlQQAbOJ05osEAIIMAQpOBrsUMkOR1eANziRkCfISKSoD4Pg4ZseAsTIALyW1DS0DEysHADkvvoMMQA0VsKi4sgAzAAMuVaKClY2wPaOknSYDrguADwA0sgQAB6QIJjaANYQAJ7oMDp+LsQAfAAUXd0cdUnI9mo+uv6uANp1ALoAlKHhyGAAFsCcAHTOAW4eYF4gyxNrwbNwago0ypRWp66jH8QcAApwYmAjxq8SWIy2FDCNDA3ToKFBQyIdR69wmfQG1TOhShyBgomQX3w3GQE2Q6IA8jIAFYQBBgI4TTiEs5bTQYsFInrLTbbHZOIlgZDlSqQABqj0kKBC3yINx6a2xfOQwH6o2FVXFaklwSCIUkbQghBAEEwENSfNOlykEGefNe5uhB2O6sgS3GPRmLogmslG1tLxUOKgEDA7hAuydtteryAA) - - ```ts - interface NodeConfig { - appName: string; - port: number; - } - - class NodeAppBuilder { - private configuration: NodeConfig = { - appName: 'NodeApp', - port: 3000 - }; - - private updateConfig(key: Key, value: NodeConfig[Key]) { - this.configuration[key] = value; - } - - config(config: Partial) { - type NodeConfigKey = keyof NodeConfig; - - for (const key of Object.keys(config) as NodeConfigKey[]) { - const updateValue = config[key]; - - if (updateValue === undefined) { - continue; - } - - this.updateConfig(key, updateValue); - } - - return this; - } - } - - // `Partial`` allows us to provide only a part of the - // NodeConfig interface. - new NodeAppBuilder().config({appName: 'ToDoApp'}); - ``` -
- -- [`Required`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1408-L1413) - Make all properties in `T` required. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/AQ4SwOwFwUwJwGYEMDGNgGED21VQGJZwC2wA3gFCjXAzFJgA2A-AFzADOUckA5gNxUaIYjA4ckvGG07c+g6gF8KQkAgCuEFFDA5O6gEbEwUbLm2ESwABQIixACJIoSdgCUYAR3Vg4MACYAPGYuFvYAfACU5Ko0APRxwADKMBD+wFAAFuh2Vv7OSBlYGdmc8ABu8LHKsRyGxqY4oQT21pTCIHQMjOwA5DAAHgACxAAOjDAAdChYxL0ANLHUouKSMH0AEmAAhJhY6ozpAJ77GTCMjMCiV0ToSAb7UJPPC9WRgrEJwAAqR6MwSRQPFGUFocDgRHYxnEfGAowh-zgUCOwF6KwkUl6tXqJhCeEsxDaS1AXSYfUGI3GUxmc0WSneQA) - - ```ts - interface ContactForm { - email?: string; - message?: string; - } - - function submitContactForm(formData: Required) { - // Send the form data to the server. - } - - submitContactForm({ - email: 'ex@mple.com', - message: 'Hi! Could you tell me more about…', - }); - - // TypeScript error: missing property 'message' - submitContactForm({ - email: 'ex@mple.com', - }); - ``` -
- -- [`Readonly`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1415-L1420) - Make all properties in `T` readonly. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/AQ4UwOwVwW2AZA9gc3mAbmANsA3gKFCOAHkAzMgGkOJABEwAjKZa2kAUQCcvEu32AMQCGAF2FYBIAL4BufDRABLCKLBcywgMZgEKZOoDCiCGSXI8i4hGEwwALmABnUVxXJ57YFgzZHSVF8sT1BpBSItLGEnJz1kAy5LLy0TM2RHACUwYQATEywATwAeAITjU3MAPnkrCJMXLigtUT4AClxgGztKbyDgaX99I1TzAEokr1BRAAslJwA6FIqLAF48TtswHp9MHDla9hJGACswZvmyLjAwAC8wVpm5xZHkUZDaMKIwqyWXYCW0oN4sNlsA1h0ug5gAByACyBQAggAHJHQ7ZBIFoXbzBjMCz7OoQP5YIaJNYQMAAdziCVaALGNSIAHomcAACoFJFgADKWjcSNEwG4vC4ji0wggEEQguiTnMEGALWAV1yAFp8gVgEjeFyuKICvMrCTgVxnst5jtsGC4ljsPNhXxGaAWcAAOq6YRXYDCRg+RWIcA5JSC+kWdCepQ+v3RYCU3RInzRMCGwlpC19NYBW1Ye08R1AA) - - ```ts - enum LogLevel { - Off, - Debug, - Error, - Fatal - }; - - interface LoggerConfig { - name: string; - level: LogLevel; - } - - class Logger { - config: Readonly; - - constructor({name, level}: LoggerConfig) { - this.config = {name, level}; - Object.freeze(this.config); - } - } - - const config: LoggerConfig = { - name: 'MyApp', - level: LogLevel.Debug - }; - - const logger = new Logger(config); - - // TypeScript Error: cannot assign to read-only property. - logger.config.level = LogLevel.Error; - - // We are able to edit config variable as we please. - config.level = LogLevel.Error; - ``` -
- -- [`Pick`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1422-L1427) - From `T`, pick a set of properties whose keys are in the union `K`. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/AQ4SwOwFwUwJwGYEMDGNgEE5TCgNugN4BQoZwOUBAXMAM5RyQDmA3KeSFABYCuAtgCMISMHloMmENh04oA9tBjQJjFuzIBfYrOAB6PcADCcGElh1gEGAHcKATwAO6ebyjB5CTNlwFwSxFR0BX5HeToYABNgBDh5fm8cfBg6AHIKG3ldA2BHOOcfFNpUygJ0pAhokr4hETFUgDpswywkggAFUwA3MFtgAF5gQgowKhhVKTYKGuFRcXo1aVZgbTIoJ3RW3xhOmB6+wfbcAGsAHi3kgBpgEtGy4AAfG54BWfqAPnZm4AAlZUj4MAkMA8GAGB4vEgfMlLLw6CwPBA8PYRmMgZVgAC6CgmI4cIommQELwICh8RBgKZKvALh1ur0bHQABR5PYMui0Wk7em2ADaAF0AJS0AASABUALIAGQAogR+Mp3CROCAFBBwVC2ikBpj5CgBIqGjizLA5TAFdAmalImAuqlBRoVQh5HBgEy1eDWfs7J5cjzGYKhroVfpDEhHM4MV6GRR5NN0JrtnRg6BVirTFBeHAKYmYY6QNpdB73LmCJZBlSAXAubtvczeSmQMNSuMbmKNgBlHFgPEUNwusBIPAAQlS1xetTmxT0SDoESgdD0C4aACtHMwxytLrohawgA) - - ```ts - interface Article { - title: string; - thumbnail: string; - content: string; - } - - // Creates new type out of the `Article` interface composed - // from the Articles' two properties: `title` and `thumbnail`. - // `ArticlePreview = {title: string; thumbnail: string}` - type ArticlePreview = Pick; - - // Render a list of articles using only title and description. - function renderArticlePreviews(previews: ArticlePreview[]): HTMLElement { - const articles = document.createElement('div'); - - for (const preview of previews) { - // Append preview to the articles. - } - - return articles; - } - - const articles = renderArticlePreviews([ - { - title: 'TypeScript tutorial!', - thumbnail: '/assets/ts.jpg' - } - ]); - ``` -
- -- [`Record`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1429-L1434) - Construct a type with a set of properties `K` of type `T`. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/AQ4ejYAUHsGcCWAXBMB2dgwGbAKYC2ADgDYwCeeemCaWArgE7ADGMxAhmuQHQBQoYEnJE8wALKEARnkaxEKdMAC8wAOS0kstGuAAfdQBM8ANzxlRjXQbVaWACwC0JPB0NqA3HwGgIwAJJoWozYHCxixnAsjAhStADmwESMMJYo1Fi4HMCIaPEu+MRklHj8gpqyoeHAAKJFFFTAAN4+giDYCIxwSAByHAR4AFw5SDF5Xm2gJBzdfQPD3WPxE5PAlBxdAPLYNQAelgh4aOHDaPQEMowrIAC+3oJ+AMKMrlrAXFhSAFZ4LEhC9g4-0BmA4JBISXgiCkBQABpILrJ5MhUGhYcATGD6Bk4Hh-jNgABrPDkOBlXyQAAq9ngYmJpOAAHcEOCRjAXqwYODfoo6DhakUSph+Uh7GI4P0xER4Cj0OSQGwMP8tP1hgAlX7swwAHgRl2RvIANALSA08ABtAC6AD4VM1Wm0Kow0MMrYaHYJjGYLLJXZb3at1HYnC43Go-QHQDcvA6-JsmEJXARgCDgMYWAhjIYhDAU+YiMAAFIwex0ZmilMITCGF79TLAGRsAgJYAAZRwSEZGzEABFTOZUrJ5Yn+jwnWgeER6HB7AAKJrADpdXqS4ZqYultTG6azVfqHswPBbtauLY7fayQ7HIbAAAMwBuAEoYw9IBq2Ixs9h2eFMOQYPQObALQKJgggABeYhghCIpikkKRpOQRIknAsZUiIeCttECBEP8NSMCkjDDAARMGziuIYxHwYOjDCMBmDNnAuTxA6irdCOBB1Lh5Dqpqn66tISIykawBnOCtqqC0gbjqc9DgpGkxegOliyfJDrRkAA) - - ```ts - // Positions of employees in our company. - type MemberPosition = 'intern' | 'developer' | 'tech-lead'; - - // Interface describing properties of a single employee. - interface Employee { - firstName: string; - lastName: string; - yearsOfExperience: number; - } - - // Create an object that has all possible `MemberPosition` values set as keys. - // Those keys will store a collection of Employees of the same position. - const team: Record = { - intern: [], - developer: [], - 'tech-lead': [], - }; - - // Our team has decided to help John with his dream of becoming Software Developer. - team.intern.push({ - firstName: 'John', - lastName: 'Doe', - yearsOfExperience: 0 - }); - - // `Record` forces you to initialize all of the property keys. - // TypeScript Error: "tech-lead" property is missing - const teamEmpty: Record = { - intern: null, - developer: null, - }; - ``` -
- -- [`Exclude`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1436-L1439) - Exclude from `T` those types that are assignable to `U`. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/JYOwLgpgTgZghgYwgAgMrQG7QMIHsQzADmyA3gFDLIAOuUYAXMiAK4A2byAPsgM5hRQJHqwC2AI2gBucgF9y5MAE9qKAEoQAjiwj8AEnBAATNtGQBeZAAooWphu26wAGmS3e93bRC8IASgsAPmRDJRlyAHoI5ABRAA8ENhYjFFYOZGVVZBgoXFFkAAM0zh5+QRBhZhYJaAKAOkjogEkQZAQ4X2QAdwALCFbaemRgXmQtFjhOMFwq9K6ULuB0lk6U+HYwZAxJnQaYFhAEMGB8ZCIIMAAFOjAANR2IK0HGWISklIAedCgsKDwCYgAbQA5M9gQBdVzFQJ+JhiSRQMiUYYwayZCC4VHPCzmSzAspCYEBWxgFhQAZwKC+FpgJ43VwARgADH4ZFQSWSBjcZPJyPtDsdTvxKWBvr8rD1DCZoJ5HPopaYoK4EPhCEQmGKcKriLCtrhgEYkVQVT5Nr4fmZLLZtMBbFZgT0wGBqES6ghbHBIJqoBKFdBWQpjfh+DQbhY2tqiHVsbjLMVkAB+ZAAZiZaeQTHOVxu9ySjxNaujNwDVHNvzqbBGkBAdPoAfkQA) - - ```ts - interface ServerConfig { - port: null | string | number; - } - - type RequestHandler = (request: Request, response: Response) => void; - - // Exclude `null` type from `null | string | number`. - // In case the port is equal to `null`, we will use default value. - function getPortValue(port: Exclude): number { - if (typeof port === 'string') { - return parseInt(port, 10); - } - - return port; - } - - function startServer(handler: RequestHandler, config: ServerConfig): void { - const server = require('http').createServer(handler); - - const port = config.port === null ? 3000 : getPortValue(config.port); - server.listen(port); - } - ``` -
- -- [`Extract`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1441-L1444) - Extract from `T` those types that are assignable to `U`. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/CYUwxgNghgTiAEAzArgOzAFwJYHtXzSwEdkQBJYACgEoAueVZAWwCMQYBuAKDDwGcM8MgBF4AXngBlAJ6scESgHIRi6ty5ZUGdoihgEABXZ888AN5d48ANoiAuvUat23K6ihMQ9ATE0BzV3goPy8GZjZOLgBfLi4Aejj4AEEICBwAdz54MAALKFQQ+BxEeAAHY1NgKAwoIKy0grr4DByEUpgccpgMaXgAaxBerCzi+B9-ZulygDouFHRsU1z8kKMYE1RhaqgAHkt4AHkWACt4EAAPbVRgLLWNgBp9gGlBs8uQa6yAUUuYPQwdgNpKM7nh7mMML4CgA+R5WABqUAgpDeVxuhxO1he0jsXGh8EoOBO9COx3BQPo2PBADckaR6IjkSA6PBqTgsMBzPsicdrEC7OJWXSQNwYvFEgAVTS9JLXODpeDpKBZFg4GCoWa8VACIJykAKiQWKy2YQOAioYikCg0OEMDyhRSy4DyxS24KhAAMjyi6gS8AAwjh5OD0iBFHAkJoEOksC1mnkMJq8gUQKDNttKPlnfrwYp3J5XfBHXqoKpfYkAOI4ansTxaeDADmoRSCCBYAbxhC6TDx6rwYHIRX5bScjA4bLJwoDmDwDkfbA9JMrVMVdM1TN69LgkTgwgkchUahqIA) - - ```ts - declare function uniqueId(): number; - - const ID = Symbol('ID'); - - interface Person { - [ID]: number; - name: string; - age: number; - } - - // Allows changing the person data as long as the property key is of string type. - function changePersonData< - Obj extends Person, - Key extends Extract, - Value extends Obj[Key] - > (obj: Obj, key: Key, value: Value): void { - obj[key] = value; - } - - // Tiny Andrew was born. - const andrew = { - [ID]: uniqueId(), - name: 'Andrew', - age: 0, - }; - - // Cool, we're fine with that. - changePersonData(andrew, 'name', 'Pony'); - - // Goverment didn't like the fact that you wanted to change your identity. - changePersonData(andrew, ID, uniqueId()); - ``` -
- -- [`NonNullable`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1446-L1449) - Exclude `null` and `undefined` from `T`. -
- - Example - - Works with strictNullChecks set to true. (Read more here) - - [Playground](https://typescript-play.js.org/?target=6#code/C4TwDgpgBACg9gJ2AOQK4FsBGEFQLxQDOwCAlgHYDmUAPlORtrnQwDasDcAUFwPQBU-WAEMkUOADMowqAGNWwwoSgATCBIqlgpOOSjAAFsOBRSy1IQgr9cKJlSlW1mZYQA3HFH68u8xcoBlHA8EACEHJ08Aby4oKDBUTFZSWXjEFEYcAEIALihkXTR2YSSIAB54JDQsHAA+blj4xOTUsHSACkMzPKD3HHDHNQQAGjSkPMqMmoQASh7g-oihqBi4uNIpdraxPAI2VhmVxrX9AzMAOm2ppnwoAA4ABifuE4BfKAhWSyOTuK7CS7pao3AhXF5rV48E4ICDAVAIPT-cGQyG+XTEIgLMJLTx7CAAdygvRCA0iCHaMwarhJOIQjUBSHaACJHk8mYdeLwxtdcVAAOSsh58+lXdr7Dlcq7A3n3J4PEUdADMcspUE53OluAIUGVTx46oAKuAIAFZGQwCYAKIIBCILjUxaDHAMnla+iodjcIA) - - ```ts - type PortNumber = string | number | null; - - /** Part of a class definition that is used to build a server */ - class ServerBuilder { - portNumber!: NonNullable; - - port(this: ServerBuilder, port: PortNumber): ServerBuilder { - if (port == null) { - this.portNumber = 8000; - } else { - this.portNumber = port; - } - - return this; - } - } - - const serverBuilder = new ServerBuilder(); - - serverBuilder - .port('8000') // portNumber = '8000' - .port(null) // portNumber = 8000 - .port(3000); // portNumber = 3000 - - // TypeScript error - serverBuilder.portNumber = null; - ``` -
- -- [`Parameters`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1451-L1454) - Obtain the parameters of a function type in a tuple. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/GYVwdgxgLglg9mABAZwBYmMANgUwBQxgAOIUAXIgIZgCeA2gLoCUFAbnDACaIDeAUIkQB6IYgCypSlBxUATrMo1ECsJzgBbLEoipqAc0J7EMKMgDkiHLnU4wp46pwAPHMgB0fAL58+oSLARECEosLAA5ABUYG2QAHgAxJGdpVWREPDdMylk9ZApqemZEAF4APipacrw-CApEgBogkKwAYThwckQwEHUAIxxZJl4BYVEImiIZKF0oZRwiWVdbeygJmThgOYgcGFYcbhqApCJsyhtpWXcR1cnEePBoeDAABVPzgbTixFeFd8uEsClADcIxGiygIFkSEOT3SmTc2VydQeRx+ZxwF2QQ34gkEwDgsnSuFmMBKiAADEDjIhYk1Qm0OlSYABqZnYka4xA1DJZHJYkGc7yCbyeRA+CAIZCzNAYbA4CIAdxg2zJwVCkWirjwMswuEaACYmCCgA) - - ```ts - function shuffle(input: any[]): void { - // Mutate array randomly changing its' elements indexes. - } - - function callNTimes any> (func: Fn, callCount: number) { - // Type that represents the type of the received function parameters. - type FunctionParameters = Parameters; - - return function (...args: FunctionParameters) { - for (let i = 0; i < callCount; i++) { - func(...args); - } - } - } - - const shuffleTwice = callNTimes(shuffle, 2); - ``` -
- -- [`ConstructorParameters`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1456-L1459) - Obtain the parameters of a constructor function type in a tuple. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/MYGwhgzhAECCBOAXAlqApgWQPYBM0mgG8AoaaFRENALmgkXmQDsBzAblOmCycTV4D8teo1YdO3JiICuwRFngAKClWENmLAJRFOZRAAtkEAHQq00ALzlklNBzIBfYk+KhIMAJJTEYJsDQAwmDA+mgAPAAq0GgAHnxMODCKTGgA7tCKxllg8CwQtL4AngDaALraFgB80EWa1SRkAA6MAG5gfNAB4FABPDJyCrQR9tDNyG0dwMGhtBhgjWEiGgA00F70vv4RhY3hEZXVVinpc42KmuJkkv3y8Bly8EPaDWTkhiZd7r3e8LK3llwGCMXGQWGhEOsfH5zJlsrl8p0+gw-goAAo5MAAW3BaHgEEilU0tEhmzQ212BJ0ry4SOg+kg+gBBiMximIGA0nAfAQLGk2N4EAAEgzYcYcnkLsRdDTvNEYkYUKwSdCme9WdM0MYwYhFPSIPpJdTkAAzDKxBUaZX+aAAQgsVmkCTQxuYaBw2ng4Ok8CYcotSu8pMur09iG9vuObxZnx6SN+AyUWTF8MN0CcZE4Ywm5jZHK5aB5fP4iCFIqT4oRRTKRLo6lYVNeAHpG50wOzOe1zHr9NLQ+HoABybsD4HOKXXRA1JCoKhBELmI5pNaB6Fz0KKBAodDYPAgSUTmqYsAALx4m5nC6nW9nGq14KtaEUA9gR9PvuNCjQ9BgACNvcwNBtAcLiAA) - - ```ts - class ArticleModel { - title: string; - content?: string; - - constructor(title: string) { - this.title = title; - } - } - - class InstanceCache any)> { - private ClassConstructor: T; - private cache: Map> = new Map(); - - constructor (ctr: T) { - this.ClassConstructor = ctr; - } - - getInstance (...args: ConstructorParameters): InstanceType { - const hash = this.calculateArgumentsHash(...args); - - const existingInstance = this.cache.get(hash); - if (existingInstance !== undefined) { - return existingInstance; - } - - return new this.ClassConstructor(...args); - } - - private calculateArgumentsHash(...args: any[]): string { - // Calculate hash. - return 'hash'; - } - } - - const articleCache = new InstanceCache(ArticleModel); - const amazonArticle = articleCache.getInstance('Amazon forests burining!'); - ``` -
- -- [`ReturnType`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1461-L1464) – Obtain the return type of a function type. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/MYGwhgzhAECSAmICmBlJAnAbgS2E6A3gFDTTwD2AcuQC4AW2AdgOYAUAlAFzSbnbyEAvkWFFQkGJSQB3GMVI1sNZNwg10TZgG4S0YOUY0kh1es07d+xmvQBXYDXLpWi5UlMaWAGj0GjJ6BtNdkJdBQYIADpXZGgAXmgYpB1ScOwoq38aeN9DYxoU6GFRKzVoJjUwRjwAYXJbPPRuAFkwAAcAHgAxBodsAx9GWwBbACMMAD4cxhloVraOCyYjdAAzMDxoOut1e0d0UNIZ6WhWSPOwdGYIbiqATwBtAF0uaHudUQB6ACpv6ABpJBINqJdAbADW0Do5BOw3u5R2VTwMHIq2gAANtjZ0bkbHsnFCwJh8ONjHp0EgwEZ4JFoN9PkRVr1FAZoMwkDRYIjqkgOrosepoEgAB7+eAwAV2BxOLy6ACCVxgIrFEoMeOl6AACpcwMMORgIB1JRMiBNWKVdhruJKfOdIpdrtwFddXlzKjyACp3Nq842HaDIbL6BrZBIVGhIpB1EMYSLsmjmtWW-YhAA+qegAAYLKQLQj3ZsEsdccmnGcLor2Dn8xGedHGpEIBzEzspfsfMHDNAANTQACMVaIljV5GQkRA5DYmIpVKQAgAJARO9le33BDXIyi0YuLW2nJFGLqkOvxFB0YPdBSaLZ0IwNzyPkO8-xkGgsLh8Al427a3hWAhXwwHA8EHT5PmgAB1bAQBAANJ24adKWpft72RaBUTgRBUCAj89HAM8xCTaBjggABRQx0DuHJv25P9dCkWRZVIAAiBjoFImpmjlFBgA0NpsjadByDacgIDAEAIAAQmYpjoGYgAZSBsmGPw6DtZiiFA8CoJguDmAQmoZ2QvtUKQLdoAYmBTwgdEiCAA) - - ```ts - /** Provides every element of the iterable `iter` into the `callback` function and stores the results in an array. */ - function mapIter< - Elem, - Func extends (elem: Elem) => any, - Ret extends ReturnType - >(iter: Iterable, callback: Func): Ret[] { - const mapped: Ret[] = []; - - for (const elem of iter) { - mapped.push(callback(elem)); - } - - return mapped; - } - - const setObject: Set = new Set(); - const mapObject: Map = new Map(); - - mapIter(setObject, (value: string) => value.indexOf('Foo')); // number[] - - mapIter(mapObject, ([key, value]: [number, string]) => { - return key % 2 === 0 ? value : 'Odd'; - }); // string[] - ``` -
- -- [`InstanceType`](https://github.com/Microsoft/TypeScript/blob/2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3/src/lib/es5.d.ts#L1466-L1469) – Obtain the instance type of a constructor function type. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/MYGwhgzhAECSAmICmBlJAnAbgS2E6A3gFDTTwD2AcuQC4AW2AdgOYAUAlAFzSbnbyEAvkWFFQkGJSQB3GMVI1sNZNwg10TZgG4S0YOUY0kh1es07d+xmvQBXYDXLpWi5UlMaWAGj0GjJ6BtNdkJdBQYIADpXZGgAXmgYpB1ScOwoq38aeN9DYxoU6GFRKzVoJjUwRjwAYXJbPPRuAFkwAAcAHgAxBodsAx9GWwBbACMMAD4cxhloVraOCyYjdAAzMDxoOut1e0d0UNIZ6WhWSPOwdGYIbiqATwBtAF0uaHudUQB6ACpv6ABpJBINqJdAbADW0Do5BOw3u5R2VTwMHIq2gAANtjZ0bkbHsnFCwJh8ONjHp0EgwEZ4JFoN9PkRVr1FAZoMwkDRYIjqkgOrosepoEgAB7+eAwAV2BxOLy6ACCVxgIrFEoMeOl6AACpcwMMORgIB1JRMiBNWKVdhruJKfOdIpdrtwFddXlzKjyACp3Nq842HaDIbL6BrZBIVGhIpB1EMYSLsmjmtWW-YhAA+qegAAYLKQLQj3ZsEsdccmnGcLor2Dn8xGedHGpEIBzEzspfsfMHDNAANTQACMVaIljV5GQkRA5DYmIpVKQAgAJARO9le33BDXIyi0YuLW2nJFGLqkOvxFB0YPdBSaLZ0IwNzyPkO8-xkGgsLh8Al427a3hWAhXwwHA8EHT5PmgAB1bAQBAANJ24adKWpft72RaBUTgRBUCAj89HAM8xCTaBjggABRQx0DuHJv25P9dCkWRZVIAAiBjoFImpmjlFBgA0NpsjadByDacgIDAEAIAAQmYpjoGYgAZSBsmGPw6DtZiiFA8CoJguDmAQmoZ2QvtUKQLdoAYmBTwgdEiCAA) - - ```ts - class IdleService { - doNothing (): void {} - } - - class News { - title: string; - content: string; - - constructor(title: string, content: string) { - this.title = title; - this.content = content; - } - } - - const instanceCounter: Map = new Map(); - - interface Constructor { - new(...args: any[]): any; - } - - // Keep track how many instances of `Constr` constructor have been created. - function getInstance< - Constr extends Constructor, - Args extends ConstructorParameters - >(constructor: Constr, ...args: Args): InstanceType { - let count = instanceCounter.get(constructor) || 0; - - const instance = new constructor(...args); - - instanceCounter.set(constructor, count + 1); - - console.log(`Created ${count + 1} instances of ${Constr.name} class`); - - return instance; - } - - - const idleService = getInstance(IdleService); - // Will log: `Created 1 instances of IdleService class` - const newsEntry = getInstance(News, 'New ECMAScript proposals!', 'Last month...'); - // Will log: `Created 1 instances of News class` - ``` -
- -- [`Omit`](https://github.com/microsoft/TypeScript/blob/71af02f7459dc812e85ac31365bfe23daf14b4e4/src/lib/es5.d.ts#L1446) – Constructs a type by picking all properties from T and then removing K. -
- - Example - - - [Playground](https://typescript-play.js.org/?target=6#code/JYOwLgpgTgZghgYwgAgIImAWzgG2QbwChlks4BzCAVShwC5kBnMKUcgbmKYAcIFgIjBs1YgOXMpSFMWbANoBdTiW5woFddwAW0kfKWEAvoUIB6U8gDCUCHEiNkICAHdkYAJ69kz4GC3JcPG4oAHteKDABBxCYNAxsPFBIWEQUCAAPJG4wZABySUFcgJAAEzMLXNV1ck0dIuCw6EjBADpy5AB1FAQ4EGQAV0YUP2AHDy8wEOQbUugmBLwtEIA3OcmQnEjuZBgQqE7gAGtgZAhwKHdkHFGwNvGUdDIcAGUliIBJEF3kAF5kAHlML4ADyPBIAGjyBUYRQAPnkqho4NoYQA+TiEGD9EAISIhPozErQMG4AASK2gn2+AApek9pCSXm8wFSQooAJQMUkAFQAsgAZACiOAgmDOOSIJAQ+OYyGl4DgoDmf2QJRCCH6YvALQQNjsEGFovF1NyJWAy1y7OUyHMyE+yRAuFImG4Iq1YDswHxbRINjA-SgfXlHqVUE4xiAA) - - ```ts - interface Animal { - imageUrl: string; - species: string; - images: string[]; - paragraphs: string[]; - } - - // Creates new type with all properties of the `Animal` interface - // except 'images' and 'paragraphs' properties. We can use this - // type to render small hover tooltip for a wiki entry list. - type AnimalShortInfo = Omit; - - function renderAnimalHoverInfo (animals: AnimalShortInfo[]): HTMLElement { - const container = document.createElement('div'); - // Internal implementation. - return container; - } - ``` -
- -You can find some examples in the [TypeScript docs](https://www.typescriptlang.org/docs/handbook/advanced-types.html#predefined-conditional-types). - -## Maintainers - -- [Sindre Sorhus](https://github.com/sindresorhus) -- [Jarek Radosz](https://github.com/CvX) -- [Dimitri Benin](https://github.com/BendingBender) -- [Pelle Wessman](https://github.com/voxpelli) - -## License - -(MIT OR CC0-1.0) - ---- - -
- - Get professional support for this package with a Tidelift subscription - -
- - Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies. -
-
diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/.devcontainer.json b/tools/node_modules/eslint/node_modules/update-browserslist-db/.devcontainer.json new file mode 100644 index 00000000000000..55fb9b04fb6c51 --- /dev/null +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/.devcontainer.json @@ -0,0 +1,42 @@ +{ + "image": "localhost/ai-opensource:latest", + "forwardPorts": [], + "mounts": [ + { + "source": "pnpm-store", + "target": "/home/ai/.local/share/pnpm/store", + "type": "volume" + }, + { + "source": "shell-history", + "target": "/home/ai/.shell-history/", + "type": "volume" + } + ], + "workspaceMount": "", + "runArgs": [ + "--userns=keep-id:uid=1000,gid=1000", + "--volume=${localWorkspaceFolder}:/workspaces/${localWorkspaceFolderBasename}:Z" + ], + "customizations": { + "vscode": { + "extensions": [ + "connor4312.nodejs-testing", + "dbaeumer.vscode-eslint", + "esbenp.prettier-vscode", + "stylelint.vscode-stylelint", + "svelte.svelte-vscode", + "yoavbls.pretty-ts-errors", + "tamasfe.even-better-toml", + "streetsidesoftware.code-spell-checker", + "editorconfig.editorconfig", + "yzhang.markdown-all-in-one", + "streetsidesoftware.code-spell-checker-russian", + "christian-kohler.path-intellisense", + "christian-kohler.npm-intellisense", + "VisualStudioExptTeam.vscodeintellicode", + "davidlday.languagetool-linter" + ] + } + } +} diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/check-npm-version.js b/tools/node_modules/eslint/node_modules/update-browserslist-db/check-npm-version.js index 5a37592b9a1fa7..b06811a5223917 100644 --- a/tools/node_modules/eslint/node_modules/update-browserslist-db/check-npm-version.js +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/check-npm-version.js @@ -7,10 +7,11 @@ try { process.stderr.write( pico.red( 'Update npm or call ' + - pico.yellow('npx update-browserslist-db@latest') + + pico.yellow('npx browserslist@latest --update-db') + '\n' ) ) process.exit(1) } + // eslint-disable-next-line no-unused-vars } catch (e) {} diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/index.js b/tools/node_modules/eslint/node_modules/update-browserslist-db/index.js index 7fc0d3a4ed7b35..9235d1fe76054e 100644 --- a/tools/node_modules/eslint/node_modules/update-browserslist-db/index.js +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/index.js @@ -17,6 +17,10 @@ function BrowserslistUpdateError(message) { BrowserslistUpdateError.prototype = Error.prototype +// Check if HADOOP_HOME is set to determine if this is running in a Hadoop environment +const IsHadoopExists = !!process.env.HADOOP_HOME +const yarnCommand = IsHadoopExists ? 'yarnpkg' : 'yarn' + /* c8 ignore next 3 */ function defaultPrint(str) { process.stdout.write(str) @@ -59,11 +63,12 @@ function detectLockfile() { function getLatestInfo(lock) { if (lock.mode === 'yarn') { if (lock.version === 1) { - return JSON.parse(execSync('yarnpkg info caniuse-lite --json').toString()) - .data + return JSON.parse( + execSync(yarnCommand + ' info caniuse-lite --json').toString() + ).data } else { return JSON.parse( - execSync('yarnpkg npm info caniuse-lite --json').toString() + execSync(yarnCommand + ' npm info caniuse-lite --json').toString() ) } } @@ -209,10 +214,11 @@ function updatePackageManually(print, lock, latest) { ) writeFileSync(lock.file, lockfileData.content) - let install = lock.mode === 'yarn' ? 'yarnpkg add -W' : lock.mode + ' install' + let install = + lock.mode === 'yarn' ? yarnCommand + ' add -W' : lock.mode + ' install' print( 'Installing new caniuse-lite version\n' + - pico.yellow('$ ' + install.replace('yarnpkg', 'yarn') + ' caniuse-lite') + + pico.yellow('$ ' + install + ' caniuse-lite') + '\n' ) try { @@ -233,21 +239,17 @@ function updatePackageManually(print, lock, latest) { } /* c8 ignore end */ let del = - lock.mode === 'yarn' ? 'yarnpkg remove -W' : lock.mode + ' uninstall' + lock.mode === 'yarn' ? yarnCommand + ' remove -W' : lock.mode + ' uninstall' print( 'Cleaning package.json dependencies from caniuse-lite\n' + - pico.yellow('$ ' + del.replace('yarnpkg', 'yarn') + ' caniuse-lite') + + pico.yellow('$ ' + del + ' caniuse-lite') + '\n' ) execSync(del + ' caniuse-lite') } function updateWith(print, cmd) { - print( - 'Updating caniuse-lite version\n' + - pico.yellow('$ ' + cmd.replace('yarnpkg', 'yarn')) + - '\n' - ) + print('Updating caniuse-lite version\n' + pico.yellow('$ ' + cmd) + '\n') try { execSync(cmd) } catch (e) /* c8 ignore start */ { @@ -282,7 +284,7 @@ module.exports = function updateDB(print = defaultPrint) { print('Latest version: ' + pico.bold(pico.green(latest.version)) + '\n') if (lock.mode === 'yarn' && lock.version !== 1) { - updateWith(print, 'yarnpkg up -R caniuse-lite') + updateWith(print, yarnCommand + ' up -R caniuse-lite') } else if (lock.mode === 'pnpm') { updateWith(print, 'pnpm up caniuse-lite') } else { @@ -301,15 +303,24 @@ module.exports = function updateDB(print = defaultPrint) { } if (listError) { - print( - pico.red( - '\n' + - listError.stack + - '\n\n' + - 'Problem with browser list retrieval.\n' + - 'Target browser changes won’t be shown.\n' + if (listError.message.includes("Cannot find module 'browserslist'")) { + print( + pico.gray( + 'Install `browserslist` to your direct dependencies ' + + 'to see target browser changes\n' + ) ) - ) + } else { + print( + pico.red( + '\n' + + listError.stack + + '\n\n' + + 'Problem with browser list retrieval.\n' + + 'Target browser changes won’t be shown.\n' + ) + ) + } } else { let changes = diffBrowsers(oldList, newList) if (changes) { diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/package.json b/tools/node_modules/eslint/node_modules/update-browserslist-db/package.json index f1997a18443c0b..e0d7306a5dfbcb 100644 --- a/tools/node_modules/eslint/node_modules/update-browserslist-db/package.json +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/package.json @@ -1,6 +1,6 @@ { "name": "update-browserslist-db", - "version": "1.0.13", + "version": "1.0.16", "description": "CLI tool to update caniuse-lite to refresh target browsers from Browserslist config", "keywords": [ "caniuse", @@ -30,8 +30,8 @@ "./package.json": "./package.json" }, "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" + "escalade": "^3.1.2", + "picocolors": "^1.0.1" }, "peerDependencies": { "browserslist": ">= 4.21.0" diff --git a/tools/node_modules/eslint/node_modules/update-browserslist-db/utils.js b/tools/node_modules/eslint/node_modules/update-browserslist-db/utils.js index d3ac914d023c0b..c63b278c01079f 100644 --- a/tools/node_modules/eslint/node_modules/update-browserslist-db/utils.js +++ b/tools/node_modules/eslint/node_modules/update-browserslist-db/utils.js @@ -3,8 +3,11 @@ const { EOL } = require('os') const getFirstRegexpMatchOrDefault = (text, regexp, defaultValue) => { regexp.lastIndex = 0 // https://stackoverflow.com/a/11477448/4536543 let match = regexp.exec(text) - if (match !== null) return match[1] - return defaultValue + if (match !== null) { + return match[1] + } else { + return defaultValue + } } const DEFAULT_INDENT = ' ' diff --git a/tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/LICENSE b/tools/node_modules/eslint/node_modules/word-wrap/LICENSE similarity index 100% rename from tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/LICENSE rename to tools/node_modules/eslint/node_modules/word-wrap/LICENSE diff --git a/tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/index.js b/tools/node_modules/eslint/node_modules/word-wrap/index.js similarity index 79% rename from tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/index.js rename to tools/node_modules/eslint/node_modules/word-wrap/index.js index 461a17cdc6e291..08f1e41d779f6c 100644 --- a/tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/index.js +++ b/tools/node_modules/eslint/node_modules/word-wrap/index.js @@ -5,9 +5,18 @@ * Released under the MIT License. */ +function trimEnd(str) { + let lastCharPos = str.length - 1; + let lastChar = str[lastCharPos]; + while(lastChar === ' ' || lastChar === '\t') { + lastChar = str[--lastCharPos]; + } + return str.substring(0, lastCharPos + 1); +} + function trimTabAndSpaces(str) { const lines = str.split('\n'); - const trimmedLines = lines.map((line) => line.trimEnd()); + const trimmedLines = lines.map((line) => trimEnd(line)); return trimmedLines.join('\n'); } @@ -20,7 +29,7 @@ module.exports = function(str, options) { var width = options.width || 50; var indent = (typeof options.indent === 'string') ? options.indent - : ''; + : ' '; var newline = options.newline || '\n' + indent; var escape = typeof options.escape === 'function' diff --git a/tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/package.json b/tools/node_modules/eslint/node_modules/word-wrap/package.json similarity index 80% rename from tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/package.json rename to tools/node_modules/eslint/node_modules/word-wrap/package.json index e33e077cdf2a39..459246d5447a1e 100644 --- a/tools/node_modules/eslint/node_modules/@aashutoshrathi/word-wrap/package.json +++ b/tools/node_modules/eslint/node_modules/word-wrap/package.json @@ -1,11 +1,10 @@ { - "name": "@aashutoshrathi/word-wrap", + "name": "word-wrap", "description": "Wrap words to a specified length.", - "version": "1.2.6", - "homepage": "https://github.com/aashutoshrathi/word-wrap", + "version": "1.2.5", + "homepage": "https://github.com/jonschlinkert/word-wrap", "author": "Jon Schlinkert (https://github.com/jonschlinkert)", "contributors": [ - "Aashutosh Rathi ", "Danilo Sampaio (localhost:8080)", "Fede Ramirez (https://2fd.github.io)", "Joe Hildebrand (https://twitter.com/hildjj)", @@ -15,12 +14,9 @@ "Wolfgang Faust (http://www.linestarve.com)", "Zach Hale (http://zachhale.com)" ], - "repository": { - "type": "git", - "url": "git+https://github.com/aashutoshrathi/word-wrap.git" - }, + "repository": "jonschlinkert/word-wrap", "bugs": { - "url": "https://github.com/aashutoshrathi/word-wrap/issues" + "url": "https://github.com/jonschlinkert/word-wrap/issues" }, "license": "MIT", "files": [ @@ -36,7 +32,7 @@ }, "devDependencies": { "gulp-format-md": "^0.1.11", - "mocha": "^10.2.0" + "mocha": "^3.2.0" }, "keywords": [ "break", diff --git a/tools/node_modules/eslint/node_modules/wrappy/LICENSE b/tools/node_modules/eslint/node_modules/wrappy/LICENSE deleted file mode 100644 index 19129e315fe593..00000000000000 --- a/tools/node_modules/eslint/node_modules/wrappy/LICENSE +++ /dev/null @@ -1,15 +0,0 @@ -The ISC License - -Copyright (c) Isaac Z. Schlueter and Contributors - -Permission to use, copy, modify, and/or distribute this software for any -purpose with or without fee is hereby granted, provided that the above -copyright notice and this permission notice appear in all copies. - -THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR -IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. diff --git a/tools/node_modules/eslint/node_modules/wrappy/package.json b/tools/node_modules/eslint/node_modules/wrappy/package.json deleted file mode 100644 index 130752046714d6..00000000000000 --- a/tools/node_modules/eslint/node_modules/wrappy/package.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "name": "wrappy", - "version": "1.0.2", - "description": "Callback wrapping utility", - "main": "wrappy.js", - "files": [ - "wrappy.js" - ], - "directories": { - "test": "test" - }, - "dependencies": {}, - "devDependencies": { - "tap": "^2.3.1" - }, - "scripts": { - "test": "tap --coverage test/*.js" - }, - "repository": { - "type": "git", - "url": "https://github.com/npm/wrappy" - }, - "author": "Isaac Z. Schlueter (http://blog.izs.me/)", - "license": "ISC", - "bugs": { - "url": "https://github.com/npm/wrappy/issues" - }, - "homepage": "https://github.com/npm/wrappy" -} diff --git a/tools/node_modules/eslint/node_modules/wrappy/wrappy.js b/tools/node_modules/eslint/node_modules/wrappy/wrappy.js deleted file mode 100644 index bb7e7d6fcf70fd..00000000000000 --- a/tools/node_modules/eslint/node_modules/wrappy/wrappy.js +++ /dev/null @@ -1,33 +0,0 @@ -// Returns a wrapper function that returns a wrapped callback -// The wrapper function should do some stuff, and return a -// presumably different callback function. -// This makes sure that own properties are retained, so that -// decorations and such are not lost along the way. -module.exports = wrappy -function wrappy (fn, cb) { - if (fn && cb) return wrappy(fn)(cb) - - if (typeof fn !== 'function') - throw new TypeError('need wrapper function') - - Object.keys(fn).forEach(function (k) { - wrapper[k] = fn[k] - }) - - return wrapper - - function wrapper() { - var args = new Array(arguments.length) - for (var i = 0; i < args.length; i++) { - args[i] = arguments[i] - } - var ret = fn.apply(this, args) - var cb = args[args.length-1] - if (typeof ret === 'function' && ret !== cb) { - Object.keys(cb).forEach(function (k) { - ret[k] = cb[k] - }) - } - return ret - } -} diff --git a/tools/node_modules/eslint/package.json b/tools/node_modules/eslint/package.json index 1998c0c23c12d6..d812aa20c4e71d 100644 --- a/tools/node_modules/eslint/package.json +++ b/tools/node_modules/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint", - "version": "8.57.0", + "version": "9.3.0", "author": "Nicholas C. Zakas ", "description": "An AST-based pattern checker for JavaScript.", "bin": { @@ -17,20 +17,24 @@ "build:site": "node Makefile.js gensite", "build:webpack": "node Makefile.js webpack", "build:readme": "node tools/update-readme.js", + "build:rules-index": "node Makefile.js generateRuleIndexPage", "lint": "node Makefile.js lint", "lint:docs:js": "node Makefile.js lintDocsJS", "lint:docs:rule-examples": "node Makefile.js checkRuleExamples", "lint:fix": "node Makefile.js lint -- fix", "lint:fix:docs:js": "node Makefile.js lintDocsJS -- fix", + "lint:unused": "knip", "release:generate:alpha": "node Makefile.js generatePrerelease -- alpha", "release:generate:beta": "node Makefile.js generatePrerelease -- beta", "release:generate:latest": "node Makefile.js generateRelease", "release:generate:rc": "node Makefile.js generatePrerelease -- rc", "release:publish": "node Makefile.js publishRelease", "test": "node Makefile.js test", + "test:browser": "node Makefile.js wdio", "test:cli": "mocha", "test:fuzz": "node Makefile.js fuzz", - "test:performance": "node Makefile.js perf" + "test:performance": "node Makefile.js perf", + "test:emfile": "node tools/check-emfile-handling.js" }, "gitHooks": { "pre-commit": "lint-staged" @@ -47,7 +51,7 @@ "node tools/fetch-docs-links.js", "git add docs/src/_data/further_reading_links.json" ], - "docs/**/*.svg": "npx svgo -r --multipass" + "docs/**/*.svg": "npx -y svgo -r --multipass" }, "files": [ "LICENSE", @@ -64,34 +68,30 @@ "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.3.0", + "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.0", "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", - "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", + "eslint-scope": "^8.0.1", + "eslint-visitor-keys": "^4.0.0", + "espree": "^10.0.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", + "file-entry-cache": "^8.0.0", "find-up": "^5.0.0", "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", @@ -103,6 +103,9 @@ }, "devDependencies": { "@babel/preset-env": "^7.4.3", + "@eslint-community/eslint-plugin-eslint-comments": "^4.3.0", + "@types/estree": "^1.0.5", + "@types/node": "^20.11.5", "@wdio/browser-runner": "^8.14.6", "@wdio/cli": "^8.14.6", "@wdio/concise-reporter": "^8.14.0", @@ -117,27 +120,27 @@ "ejs": "^3.0.2", "eslint": "file:.", "eslint-config-eslint": "file:packages/eslint-config-eslint", - "eslint-plugin-eslint-comments": "^3.2.0", - "eslint-plugin-eslint-plugin": "^5.2.1", + "eslint-plugin-eslint-plugin": "^6.0.0", "eslint-plugin-internal-rules": "file:tools/internal-rules", - "eslint-plugin-n": "^16.6.0", - "eslint-plugin-unicorn": "^49.0.0", - "eslint-release": "^3.2.0", + "eslint-plugin-n": "^17.2.0", + "eslint-plugin-unicorn": "^52.0.0", + "eslint-release": "^3.2.2", "eslump": "^3.0.0", "esprima": "^4.0.1", "fast-glob": "^3.2.11", "fs-teardown": "^0.1.3", - "glob": "^7.1.6", + "glob": "^10.0.0", "got": "^11.8.3", "gray-matter": "^4.0.3", + "js-yaml": "^4.1.0", + "knip": "^5.8.0", "lint-staged": "^11.0.0", "load-perf": "^0.2.0", "markdown-it": "^12.2.0", "markdown-it-container": "^3.0.0", - "markdownlint": "^0.32.0", - "markdownlint-cli": "^0.37.0", + "markdownlint": "^0.34.0", + "markdownlint-cli": "^0.40.0", "marked": "^4.0.8", - "memfs": "^3.0.1", "metascraper": "^5.25.7", "metascraper-description": "^5.25.7", "metascraper-image": "^5.29.3", @@ -145,7 +148,6 @@ "metascraper-logo-favicon": "^5.25.7", "metascraper-title": "^5.25.7", "mocha": "^8.3.2", - "mocha-junit-reporter": "^2.0.0", "node-polyfill-webpack-plugin": "^1.0.3", "npm-license": "^0.3.3", "pirates": "^4.0.5", @@ -155,10 +157,10 @@ "regenerator-runtime": "^0.14.0", "rollup-plugin-node-polyfills": "^0.2.1", "semver": "^7.5.3", - "shelljs": "^0.8.2", + "shelljs": "^0.8.5", "sinon": "^11.0.0", + "typescript": "^5.3.3", "vite-plugin-commonjs": "^0.10.0", - "webdriverio": "^8.14.6", "webpack": "^5.23.0", "webpack-cli": "^4.5.0", "yorkie": "^2.0.0" @@ -172,6 +174,6 @@ ], "license": "MIT", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" } } diff --git a/vcbuild.bat b/vcbuild.bat index 8a72e50cb494fe..ec30beca3ae668 100644 --- a/vcbuild.bat +++ b/vcbuild.bat @@ -710,7 +710,7 @@ goto lint-js if not defined lint_js goto lint-md-build if not exist tools\node_modules\eslint goto no-lint echo running lint-js -%node_exe% tools\node_modules\eslint\bin\eslint.js --cache --max-warnings=0 --report-unused-disable-directives --rule "linebreak-style: 0" .eslintrc.js benchmark doc lib test tools +%node_exe% tools\node_modules\eslint\bin\eslint.js --cache --max-warnings=0 --report-unused-disable-directives --rule "@stylistic/js/linebreak-style: 0" eslint.config.mjs benchmark doc lib test tools goto lint-md-build :no-lint